/* ─────────────────────────────────────────────────────────────────
   Avika Storøya · Order & Pick Up
   Fonts   : Outfit (body) · Playfair Display (headings)
   Palette : --accent #E8500A  --green #1A5C2F  --ink #1A1208
             --muted #6B5B3E   --cream #FAF3E4  --warm-white #FDF8F0
───────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --accent:       #E8500A;
  --accent-dark:  #C7420A;
  --green:        #1A5C2F;
  --green-dark:   #0D3A1D;
  --ink:          #1A1208;
  --muted:        #6B5B3E;
  --cream:        #FAF3E4;
  --warm-white:   #FDF8F0;
  --border:       rgba(26,18,8,0.10);
  --border-light: rgba(255,255,255,0.12);
  --shadow-sm:    0 2px 14px rgba(26,18,8,0.07);
  --shadow-md:    0 8px 36px rgba(26,18,8,0.10);
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  36px;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-y: scroll; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1rem;   /* 16px base */
  line-height: 1.75;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; }
p { color: var(--muted); }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.brand-name {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.3;
  font-weight: 500;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
}
.header-nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.header-nav-link:hover {
  background: #fff;
  border-color: var(--border);
  color: var(--accent);
}
.hamburger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(253,248,240,0.98);
  padding: 10px 20px 14px;
}
.mobile-menu-link {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
}
.mobile-menu-link:hover { background: #fff; }
.mobile-menu-link--download {
  color: #fff;
  background: var(--accent);
  margin-top: 6px;
}

/* language toggle */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2px;
  background: rgba(26,18,8,0.05);
  border-radius: 99px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 99px;
  transition: background 140ms, color 140ms;
  letter-spacing: 0.04em;
}
.lang-btn.active,
.lang-btn:hover { background: #fff; color: var(--ink); }
.lang-sep { color: var(--border); font-size: 0.93rem; user-select: none; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  white-space: nowrap;
  color: var(--ink);
  background: rgba(255,255,255,0.55);
  transition: background 140ms, border-color 140ms, transform 140ms;
}
.phone-link-icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}
.phone-link:hover {
  background: #fff;
  border-color: rgba(26,18,8,0.22);
  transform: translateY(-1px);
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  padding: 72px 0 84px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
/* faded background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
}
.hero-layout {
  position: relative;
  z-index: 1;
  max-width: none;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: min(100%, 760px);
}

/* eyebrow */
.eyebrow {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--ink);
  margin-bottom: 22px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 36px;
}


/* ── HOW IT WORKS ────────────────────────────────────────────────── */
.section-steps {
  background: var(--green-dark);
  padding: 72px 0 84px;
}
.steps-header {
  margin-bottom: 36px;
}
.steps-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin-top: 10px;
}

/* 3-column cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* connector between cards */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 54px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.18);
  z-index: 1;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.step-icon {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--green);
  flex-shrink: 0;
}
.step-icon svg { width: 28px; height: 28px; display: block; }

.step-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}
.step-title {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

/* step 1 spans both rows on desktop so it has space for two sub-sections */
.step-card--order {
  grid-row: span 1; /* same height as others; content grows naturally */
}

/* order button inside step 1 */
.btn-step-order {
  display: block;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 99px;
  text-align: center;
  margin: 10px 0 10px;
  transition: background 160ms, transform 160ms;
  box-shadow: 0 3px 12px rgba(232,80,10,0.28);
}
.btn-step-order:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* order flow hint inside step 1 */
.step-order-hint {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 10px;
}

/* payment badges inside step 1 */
.step-payment-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.step-payment-label {
  font-size: 0.93rem;
  color: var(--muted);
  font-weight: 500;
}
.step-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.step-payment-badges span {
  font-size: 0.93rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
}

/* call button inside step 1 */
.btn-step-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(26,92,47,0.30);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 99px;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 10px 0 10px;
  transition: background 160ms, border-color 160ms;
}
.btn-step-call-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.btn-step-call:hover {
  background: rgba(26,92,47,0.07);
  border-color: var(--green);
}

.order-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.order-actions .btn-step-order,
.order-actions .btn-step-call {
  margin: 0;
}
.order-actions .btn-step-order {
  min-width: 240px;
}
.order-actions .btn-step-call {
  min-width: 180px;
  background: #fff;
  color: var(--green-dark);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.order-actions .btn-step-call:hover {
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.30);
}

/* colour the call sub-choice differently */
.step-choice--call { border-left-color: rgba(26,92,47,0.40); }

/* take-away / dine-in sub-options (step 3) */
.step-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.step-choice {
  border-left: 3px solid var(--green);
  padding: 10px 13px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: rgba(26,92,47,0.05);
}
.choice-tag {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.step-choice p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}


/* ── GALLERY ─────────────────────────────────────────────────────── */
.section-gallery {
  padding: 88px 0 96px;
  background: var(--warm-white);
}
.section-gallery h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}
.gallery-card.card-tall  { grid-row: span 2; }
.gallery-card.card-wide  { grid-column: span 2; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}
.gallery-card:hover img { transform: scale(1.05); }

.gallery-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(14,20,10,0.68));
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding-top: 52px;
  padding-bottom: 22px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-col strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-about {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.80;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-about p,
.footer-hours p,
.footer-links p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 3px;
}
.footer-about strong { color: rgba(255,255,255,0.90); letter-spacing: 0; text-transform: none; font-size: 1rem; margin-bottom: 6px; }

.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: 5px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  vertical-align: top;
  line-height: 1.6;
}
.hours-table td:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  width: 86px;
  padding-right: 8px;
  white-space: nowrap;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.92);
  transition: background 140ms, border-color 140ms, transform 140ms;
  min-width: 0;
}
.footer-contact-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.footer-contact-item small {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.10em;
  text-transform: none;
  color: rgba(255,255,255,0.46);
  margin-bottom: 2px;
}
.footer-contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-transform: none;
}
.footer-contact-item > span:not(.footer-contact-icon) {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}
.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}
.footer-contact-item--primary {
  background: rgba(232,80,10,0.12);
  border-color: rgba(232,80,10,0.24);
}
.footer-contact-item--primary .footer-contact-icon {
  background: rgba(232,80,10,0.18);
}
.footer-contact-item--primary small {
  color: rgba(255,255,255,0.58);
}
.footer-contact-item--primary strong {
  color: #fff;
}

.footer-copy {
  padding-top: 22px;
  text-align: center;
}
.footer-copy p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.28);
}

/* ── HERO ACTIONS — two matched pill buttons ─────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 160ms, color 160ms, border-color 160ms, transform 160ms, box-shadow 160ms;
  white-space: nowrap;
  text-align: center;
}
.btn-hero--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232,80,10,0.28);
}
.btn-hero--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,80,10,0.32);
}
.btn-hero--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,18,8,0.22);
}
.btn-hero--outline:hover {
  background: rgba(26,18,8,0.05);
  border-color: rgba(26,18,8,0.40);
}
.btn-hero-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-right: 8px;
}

/* "How does it work?" scroll link in hero */
.how-it-works-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.17rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 140ms;
}
.how-it-works-link:hover { color: var(--ink); }
.how-it-works-link--secondary {
  margin-top: -12px;
  color: rgba(107,91,62,0.88);
}
.how-it-works-link--secondary:hover { color: var(--green); }

/* phone link inside step descriptions */
.step-desc a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(26,92,47,0.35);
  text-underline-offset: 2px;
}
.step-desc a:hover { color: var(--accent); }

/* ── ORDER HINT ──────────────────────────────────────────────────── */
.order-hint {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(26,18,8,0.04);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}

/* ── KITCHEN GALLERY (auto-scroll) ──────────────────────────────── */
.section-kitchen {
  padding: 68px 0 76px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.section-kitchen h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 40px;
  text-align: left;
}

.kitchen-gallery {
  position: relative;
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.kitchen-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: kitchen-scroll 32s linear infinite;
  will-change: transform;
}
.kitchen-track:hover {
  animation-play-state: paused;
}
.kitchen-slide {
  width: 340px;
  aspect-ratio: 10 / 11;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}
.kitchen-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes kitchen-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SAVE TO HOME SCREEN ─────────────────────────────────────────── */
.section-homescreen {
  padding: 72px 0 84px;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
}
.section-homescreen h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 14px;
  text-align: left;
}
.section-homescreen .lead {
  margin-bottom: 48px;
  text-align: left;
  margin-inline: 0;
}
.homescreen-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.homescreen-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.homescreen-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.homescreen-icon--apple   { background: #1C1C1E; }
.homescreen-icon--android { background: #3DDC84; }
.homescreen-icon svg { width: 26px; height: 26px; }
.homescreen-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.homescreen-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: hs-step;
}
.homescreen-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
  counter-increment: hs-step;
}
.homescreen-steps li::before {
  content: counter(hs-step);
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.homescreen-steps li span { color: var(--muted); }
.homescreen-steps strong  { color: var(--ink); font-weight: 700; }

/* ── CONTACT FORM ──────────────────────────────────────────────── */
.section-contact {
  padding: 76px 0 88px;
  background: linear-gradient(180deg, #fff 0%, rgba(250,243,228,0.55) 100%);
  border-top: 1px solid var(--border);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 16px;
}
.contact-copy p {
  font-size: 1rem;
  max-width: 58ch;
  margin-bottom: 28px;
}
.contact-points {
  display: grid;
  gap: 14px;
}
.contact-point {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
}
.contact-point strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-point a {
  color: var(--ink);
  font-weight: 600;
}
.contact-form-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.form-required {
  color: var(--accent);
}
.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  transition: border-color 140ms, box-shadow 140ms;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(232,80,10,0.45);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.12);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  cursor: pointer;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-status {
  min-height: 1.4em;
}
.form-status .alert {
  margin-top: 2px;
}
.privacy-modal[hidden] { display: none; }
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.58);
  backdrop-filter: blur(4px);
}
.privacy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(26,18,8,0.22);
  padding: clamp(24px, 4vw, 40px);
}
.privacy-modal-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.privacy-modal-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.privacy-modal-panel p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}
.privacy-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.privacy-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(26,18,8,0.06);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.privacy-modal-close:hover { background: rgba(26,18,8,0.10); }
.alert {
  padding: 14px 16px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.55;
}
.alert-success {
  background: rgba(26,92,47,0.10);
  border: 1px solid rgba(26,92,47,0.18);
  color: var(--green-dark);
}
.alert-error {
  background: rgba(200, 56, 56, 0.08);
  border: 1px solid rgba(200, 56, 56, 0.18);
  color: #9f2f2f;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 965px) {
  .header-nav { display: none; }
  .hamburger-btn { display: inline-flex; }
  .mobile-menu.is-open { display: block; }
}
@media (max-width: 500px) {
  .container { width: min(100% - 24px, 1160px); }
  .header-inner { min-height: 66px; gap: 8px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-logo { width: 54px; height: 54px; }
  .brand-name { font-size: 1.12rem; }
  .header-right { gap: 2px; }
  .lang-switch { padding: 2px; }
  .lang-btn { font-size: 0.82rem; padding: 4px 7px; }
  .lang-sep { font-size: 0.82rem; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-hero { width: 100%; }
  .contact-layout { gap: 24px; }
  .btn-call { border-left: none; padding-left: 0; border-top: 2px solid var(--border); padding-top: 16px; flex-direction: row; align-items: center; gap: 10px; }
  .btn-call-label { display: none; }
  .btn-call-number { font-size: 1.1rem; }
}
@media (max-width: 360px) {
  .container { width: min(100% - 18px, 1160px); }
  .header-inner { gap: 6px; min-height: 62px; }
  .brand { gap: 8px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-name { font-size: 0.88rem; }
  .lang-switch { padding: 1px; }
  .lang-btn { font-size: 0.72rem; padding: 3px 5px; }
  .lang-sep { font-size: 0.72rem; }
  .hero { padding: 36px 0 48px; }
  .eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; margin-bottom: 14px; }
  h1 { font-size: clamp(1.8rem, 10vw, 2.35rem); margin-bottom: 18px; }
  .lead { font-size: 0.98rem; line-height: 1.7; margin-bottom: 28px; }
  .hero-actions { gap: 10px; }
  .btn-hero { width: 100%; padding: 13px 18px; font-size: 0.92rem; }
  .hero-actions .btn-hero--outline { justify-content: center; }
  .how-it-works-link { font-size: 1.05rem; margin-bottom: 14px; line-height: 1.35; }
  .section-kitchen h2,
  .section-homescreen h2,
  .contact-copy h2,
  .steps-header h2 { margin-bottom: 28px; }
  .step-card { padding: 24px 18px 20px; }
  .step-head { gap: 8px; margin-bottom: 6px; }
  .step-icon { width: 24px; height: 24px; }
  .step-icon svg { width: 24px; height: 24px; }
  .step-card--order .step-order-hint,
  .step-card--order .step-payment-row { font-size: 0.9rem; }
  .order-actions .btn-step-order,
  .order-actions .btn-step-call { padding-left: 16px; padding-right: 16px; }
  .kitchen-slide { width: 220px; }
}
@media (max-width: 320px) {
  .container { width: min(100% - 14px, 1160px); }
  .header-inner { min-height: 56px; gap: 4px; }
  .brand-logo { width: 32px; height: 32px; }
  .brand-name { font-size: 0.74rem; }
  .hamburger-btn { width: 34px; height: 34px; }
  .hamburger-btn span { width: 15px; }
  .lang-btn { font-size: 0.66rem; padding: 2px 4px; }
  h1 { font-size: clamp(1.55rem, 9vw, 1.9rem); }
  .lead { font-size: 0.9rem; }
  .how-it-works-link { font-size: 0.95rem; }
  .mobile-menu { padding: 8px 12px 12px; }
  .mobile-menu-link { font-size: 0.88rem; padding: 8px 10px; }
}
@media (max-width: 720px) {
  .homescreen-cards { grid-template-columns: 1fr; }
  .kitchen-slide { width: 250px; aspect-ratio: 10 / 11; }
}
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card::after { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-about { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-card.card-tall { grid-row: span 1; }
  .gallery-card.card-wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .hero { padding: 40px 0 48px; }
  h1 { font-size: 2rem; }
  .section-steps { padding: 40px 0 52px; }
  .section-kitchen { padding: 52px 0 60px; }
  .section-homescreen { padding: 52px 0 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-about { grid-column: span 1; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .gallery-card.card-wide { grid-column: span 2; }
  .brand-sub { display: none; }
  .footer-contact-item {
    padding: 12px 12px;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    margin-top: 2px;
  }
  .footer-contact-icon svg {
    width: 16px;
    height: 16px;
  }
  .footer-contact-item small {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  .footer-contact-item strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }
  .btn-hero { padding: 14px 26px; font-size: 1rem; }
  .step-card--order { padding: 24px 20px 22px; }
  .step-card--order .step-title { margin-bottom: 10px; }
  .step-card--order .step-order-hint { font-size: 0.95rem; line-height: 1.55; }
  .step-card--order .step-payment-row { margin-top: 12px; }
  .order-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
  }
  .order-actions .btn-step-order,
  .order-actions .btn-step-call {
    width: 100%;
    min-width: 0;
  }
  .privacy-modal { padding: 16px; }
  .privacy-modal-actions .btn-hero { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 0.96rem; }
  .lang-btn { font-size: 0.78rem; padding: 3px 6px; }
  .hero { padding-top: 36px; }
  .contact-form-card { padding: 24px 18px; }
  .footer-contact-item {
    padding: 10px;
    gap: 8px;
  }
  .footer-contact-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .footer-contact-item strong {
    font-size: 0.86rem;
  }
}

@media (min-width: 601px) {
  .section-kitchen h2,
  .section-homescreen h2 {
    text-align: left;
  }
}

/* ── PRIVACY PAGE ─────────────────────────────────────────────── */
.privacy-hero {
  background: var(--cream);
  padding: var(--space-16) 0 var(--space-10);
  text-align: center;
}
.privacy-hero h1 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); margin-bottom: var(--space-3); }
.privacy-hero p { font-size: var(--text-base); color: var(--muted); }
.privacy-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-24);
}
.privacy-section { margin-bottom: var(--space-10); }
.privacy-section h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--ink);
}
.privacy-section p,
.privacy-section li {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}
.privacy-section ul { padding-left: var(--space-5); list-style: disc; }
.privacy-section ul li { margin-bottom: var(--space-2); }
.privacy-updated {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
.privacy-contact-box {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  border: 1px solid var(--border);
}
.privacy-contact-box h2 { margin-bottom: var(--space-3); }
.privacy-contact-box a { color: var(--accent); font-weight: 500; }
