/* ============================================================
   Alla Corte Di Bacco — style.css
   Palette: oklch — orange #E75A22 · charcoal #252525 · cream
   Fonts: Barlow Condensed (headings) + Barlow (body)
   ============================================================ */

:root {
  --orange:              oklch(57% 0.19 38);
  --orange-dim:          oklch(47% 0.16 38);
  --orange-light:        oklch(70% 0.14 50);
  --charcoal:            oklch(18% 0.005 260);
  --charcoal-mid:        oklch(26% 0.006 260);
  --charcoal-surface:    oklch(21% 0.005 260);
  --charcoal-deep:       oklch(13% 0.004 260);
  --cream:               oklch(96% 0.018 75);
  --cream-warm:          oklch(93% 0.022 75);
  --text-on-dark:        oklch(93% 0.012 75);
  --text-on-dark-muted:  oklch(63% 0.01 75);
  --text-on-light:       oklch(22% 0.008 55);
  --text-on-light-muted: oklch(48% 0.01 55);
  --border-on-dark:      oklch(30% 0.006 260);
  --border-on-light:     oklch(87% 0.012 75);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h:       72px;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text-on-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ──────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  display: block;
  margin-bottom: 1rem;
}
.label--orange { color: var(--orange); }
.label--light  { color: oklch(100% 0 0 / 0.55); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: background 0.22s var(--ease-out),
              border-color 0.22s,
              transform 0.22s var(--ease-out),
              box-shadow 0.22s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--orange);
  color: oklch(100% 0 0);
}
.btn--primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(8% 0.08 38 / 0.35);
}
.btn--ghost {
  border: 1.5px solid oklch(100% 0 0 / 0.38);
  color: oklch(100% 0 0);
}
.btn--ghost:hover {
  border-color: oklch(100% 0 0 / 0.75);
  background: oklch(100% 0 0 / 0.07);
}
.btn--full {
  width: 100%;
  padding-block: 1rem;
  font-size: 0.95rem;
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view            { opacity: 1; transform: none; }
.reveal--delay-1.in-view   { transition-delay: 0.1s; }
.reveal--delay-2.in-view   { transition-delay: 0.2s; }
.reveal--delay-3.in-view   { transition-delay: 0.3s; }
.reveal--delay-4.in-view   { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────────────────
   NAV
────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--charcoal);
  box-shadow: 0 1px 0 var(--border-on-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1400px;
  margin-inline: auto;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 42px; width: auto; object-fit: contain; }
.nav__logo-fallback {
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--charcoal-mid);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  border: 1.5px solid var(--border-on-dark);
  flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--text-on-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-on-dark);
  opacity: 0.78;
  letter-spacing: 0.02em;
  transition: opacity 0.18s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--orange) !important;
  color: oklch(100% 0 0) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.22s var(--ease-out) !important;
}
.nav__cta:hover { background: var(--orange-dim) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 10;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: oklch(100% 0 0);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-top: 1px solid var(--border-on-dark);
  }
  .nav__links.open    { transform: none; }
  .nav__links a       { font-size: 1.3rem; font-weight: 600; }
  .nav__cta           { padding: 0.9rem 2.5rem !important; font-size: 1.1rem !important; }
}

/* ──────────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    oklch(11% 0.06 35 / 0.93) 0%,
    oklch(14% 0.04 260 / 0.78) 55%,
    oklch(11% 0.02 260 / 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-inline: clamp(1.5rem, 7vw, 6rem);
  padding-top: var(--nav-h);
  max-width: 980px;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 11vw, 9.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 3rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.45;
}
.hero__scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, oklch(100% 0 0 / 0.6), transparent);
  animation: scrollPulse 2.2s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  48%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ──────────────────────────────────────────────────────────
   ABOUT
────────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--cream);
}

.about__media {
  overflow: hidden;
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s var(--ease-out);
}
.about__media:hover img { transform: scale(1.04); }

.about__body {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-on-light);
}
.about__body .label { color: var(--orange); }
.about__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.about__body p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-on-light-muted);
  max-width: 56ch;
  margin-bottom: 1rem;
}
.about__body p + p { margin-bottom: 0; }

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-on-light);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; }
  .about__media { height: 300px; }
  .about__stats { gap: 1.75rem; }
}
@media (max-width: 400px) {
  .about__stats { flex-wrap: wrap; gap: 1rem 2rem; }
}

/* ──────────────────────────────────────────────────────────
   SHOWCASE
────────────────────────────────────────────────────────── */
.showcase {
  background: var(--charcoal);
  padding: clamp(0.5rem, 1vw, 0.75rem);
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.4rem;
  height: clamp(480px, 65vh, 680px);
}
.showcase__card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.showcase__card--large { grid-row: span 2; }

.showcase__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
}
.showcase__card:hover img { transform: scale(1.05); }

.showcase__card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, oklch(9% 0.05 30 / 0.9) 0%, transparent 100%);
}
.showcase__card-body .label { margin-bottom: 0.35rem; font-size: 0.68rem; }
.showcase__card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  line-height: 1.15;
}

@media (max-width: 640px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 200px;
    height: auto;
  }
  .showcase__card--large { grid-row: auto; }
}

/* ──────────────────────────────────────────────────────────
   MENU QR
────────────────────────────────────────────────────────── */
.menu-qr {
  background: var(--charcoal-surface);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.menu-qr::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(oklch(57% 0.19 38 / 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.menu-qr__inner {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.menu-qr__copy .label { margin-bottom: 0.75rem; }
.menu-qr__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.97;
  color: oklch(100% 0 0);
  margin-bottom: 1.5rem;
}
.menu-qr__copy p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-on-dark-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.qr-frame {
  background: var(--cream);
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  box-shadow: 0 0 0 1.5px var(--orange), 0 0 32px oklch(57% 0.19 38 / 0.15);
}
.qr-img {
  width: 200px; height: 200px;
  object-fit: contain;
}
.qr-placeholder {
  width: 200px; height: 200px;
  align-items: center;
  justify-content: center;
}
.qr-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}

@media (max-width: 760px) {
  .menu-qr__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .menu-qr__copy p { margin-inline: auto; }
  .menu-qr__copy .btn { margin-inline: auto; }
}

/* ──────────────────────────────────────────────────────────
   BOOKING
────────────────────────────────────────────────────────── */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}

.booking__accent {
  background: var(--orange);
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking__accent .label { color: oklch(100% 0 0 / 0.6); }
.booking__accent h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.97;
  color: oklch(100% 0 0);
  margin-bottom: 1.5rem;
}
.booking__accent p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: oklch(100% 0 0 / 0.8);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

.booking__info { display: flex; flex-direction: column; gap: 1rem; }
.booking__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: oklch(100% 0 0 / 0.88);
  line-height: 1.5;
}
.booking__info-item svg { flex-shrink: 0; margin-top: 1px; opacity: 0.8; }

.booking__form-wrap {
  background: var(--cream);
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: flex-start;
}
.booking__form { width: 100%; max-width: 600px; }

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row--3 { grid-template-columns: repeat(3, 1fr); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  user-select: none;
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  background: oklch(100% 0 0);
  border: 1.5px solid var(--border-on-light);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-on-light);
  transition: border-color 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px oklch(57% 0.19 38 / 0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: oklch(55% 0.18 25); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: oklch(65% 0.008 75); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 88px; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.77rem;
  color: var(--text-on-light-muted);
  line-height: 1.6;
}

/* Success state */
.booking__success {
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: oklch(100% 0 0);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.booking__success h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.booking__success p {
  color: var(--text-on-light-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .form-row--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .booking__accent    { padding: 2.75rem 1.5rem; }
  .booking__form-wrap { padding: 2.75rem 1.5rem; }
}
@media (max-width: 540px) {
  .form-row,
  .form-row--3 { grid-template-columns: 1fr; }
  /* prevent iOS Safari auto-zoom on input focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }
}

/* ──────────────────────────────────────────────────────────
   ORDER ONLINE
────────────────────────────────────────────────────────── */
.order {
  background: var(--charcoal);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}
.order__inner { max-width: 860px; margin-inline: auto; }

.order__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.order__header .label {
  display: inline-block;
  margin-bottom: 1rem;
}
.order__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  line-height: 1.02;
  margin-bottom: 1rem;
}
.order__header p {
  color: var(--text-on-dark-muted);
  font-size: 1rem;
  max-width: 54ch;
  margin-inline: auto;
  line-height: 1.7;
}

.order__platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-radius: 4px;
  border: 1.5px solid var(--border-on-dark);
  background: var(--charcoal-mid);
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s;
}
.platform-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px oklch(6% 0.06 38 / 0.5);
  background: oklch(24% 0.006 260);
}
.platform-card__logo { flex-shrink: 0; }
.platform-card__body { flex: 1; }
.platform-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  line-height: 1;
  margin-bottom: 0.22rem;
}
.platform-card__desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}
.platform-card__arrow {
  flex-shrink: 0;
  color: var(--text-on-dark-muted);
  transition: transform 0.25s var(--ease-out), color 0.25s;
}
.platform-card:hover .platform-card__arrow {
  transform: translateX(5px);
  color: var(--orange);
}

@media (max-width: 560px) {
  .order__platforms { grid-template-columns: 1fr; }
  .platform-card { padding: 1.25rem 1.5rem; gap: 1rem; }
}

/* touch active feedback (replaces hover on devices without pointer) */
@media (hover: none) {
  .platform-card:active {
    border-color: var(--orange);
    background: oklch(24% 0.006 260);
    transform: none;
  }
  .platform-card:active .platform-card__arrow { color: var(--orange); }
}

/* ──────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────── */
.footer { background: var(--charcoal-deep); }

.footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 3rem 2rem;
}

.footer__logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(100% 0 0);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col li,
.footer__col li a {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  transition: color 0.18s;
}
.footer__col li a:hover { color: var(--orange); }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  color: var(--text-on-dark-muted);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.footer__social a:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: oklch(57% 0.19 38 / 0.1);
}

.footer__bottom {
  border-top: 1px solid var(--border-on-dark);
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin-inline: auto;
}
.footer__bottom p {
  font-size: 0.77rem;
  color: oklch(40% 0.006 260);
  line-height: 1.6;
}
.footer__bottom a {
  color: oklch(48% 0.008 260);
  transition: color 0.18s;
}
.footer__bottom a:hover { color: var(--orange); }

@media (max-width: 960px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   GDPR Checkbox
────────────────────────────────────────────────────────── */
.form-group--check {
  margin-bottom: 1.25rem;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-on-light-muted);
  user-select: none;
}
.check-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid var(--border-on-light);
  border-radius: 3px;
  background: oklch(100% 0 0);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
}
.check-label input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.check-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.check-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.check-label input[type="checkbox"].error {
  border-color: oklch(55% 0.18 25);
}
.check-label a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check-label a:hover { text-decoration: none; }

/* ──────────────────────────────────────────────────────────
   Cookie banner
────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal-deep);
  border-top: 1px solid var(--border-on-dark);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.show { transform: none; }

.cookie-banner__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  min-width: 240px;
}
.cookie-banner__text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__text a:hover { text-decoration: none; }

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--orange);
  color: oklch(100% 0 0);
}
.cookie-btn--accept:hover { background: var(--orange-dim); }
.cookie-btn--reject {
  background: none;
  color: var(--text-on-dark-muted);
  border: 1.5px solid var(--border-on-dark);
}
.cookie-btn--reject:hover {
  color: var(--text-on-dark);
  border-color: oklch(45% 0.008 260);
}

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ──────────────────────────────────────────────────────────
   Dove Siamo
────────────────────────────────────────────────────────── */
.dove-siamo {
  background: var(--charcoal-deep);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.dove-siamo__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
}

.dove-siamo__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 1rem 0 1.75rem;
  text-transform: uppercase;
}

.dove-siamo__content address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
}

.dove-siamo__content address p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}

.dove-siamo__content address svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.dove-siamo__content address a {
  color: var(--text-on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.dove-siamo__content address a:hover { color: var(--orange); }

.dove-siamo__hours h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.9rem;
}

.dove-siamo__hours dl {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dove-siamo__hours dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border-on-dark);
  font-size: 0.9rem;
}

.dove-siamo__hours dt {
  color: var(--text-on-dark-muted);
}

.dove-siamo__hours dd {
  margin: 0;
  color: var(--text-on-dark);
  font-weight: 500;
}

.dove-siamo__map {
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
  background: oklch(14% 0.006 260);
  border: 1px solid var(--border-on-dark);
}

.dove-siamo__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  filter: grayscale(20%);
}

@media (max-width: 800px) {
  .dove-siamo__inner {
    grid-template-columns: 1fr;
  }
  .dove-siamo__map { min-height: 300px; }
  .dove-siamo__map iframe { min-height: 300px; }
}

/* ──────────────────────────────────────────────────────────
   WhatsApp FAB
────────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  right: 1.75rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: oklch(53% 0.19 145);
  color: oklch(100% 0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px oklch(0% 0 0 / 0.35);
  transition: transform 0.2s var(--ease-out), background 0.2s;
  text-decoration: none;
}

.whatsapp-fab:hover  { transform: scale(1.08); background: oklch(47% 0.19 145); }
.whatsapp-fab:active { transform: scale(0.95); }

.whatsapp-fab:focus-visible {
  outline: 2px solid oklch(53% 0.19 145);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

/* map open-link (shown only on touch devices / mobile) */
.dove-siamo__map-link {
  display: none;
  margin-top: 0.75rem;
}
.dove-siamo__map-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
}
.dove-siamo__map-link a:hover { text-decoration: none; }

@media (hover: none), (max-width: 800px) {
  .dove-siamo__map-link { display: block; }
}

/* ──────────────────────────────────────────────────────────
   Accessibility: reduce motion
────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__scroll-line,
  .about__media img, .showcase__card img { transition: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
  .cookie-banner { transition: none; }
  .whatsapp-fab { transition: none; }
}
