/* =============================================================
   Zarathustra Cafe London - stylesheet
   Theme: warm "dawn / fire" - saffron, ember, espresso, cream.
   A nod to Zarathustra (Zoroaster: prophet of fire & light)
   over a homely, friendly London caff.
   ============================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* palette - Zarathustra brand: maroon · cream · gold */
  --cream:      #faf3e7;
  --cream-2:    #f4e8d4;
  --paper:      #fffdf8;
  --ink:        #2a1f16;   /* warm near-black - body text */
  --ink-soft:   #6b5742;   /* muted text */
  --espresso:   #4a1216;   /* dark sections - deep maroon */
  --espresso-2: #380d11;
  --saffron:    #c4974b;   /* gold highlight (on dark) */
  --amber:      #b9863c;
  --ember:      #7c1b20;   /* primary CTA - brand maroon */
  --ember-deep: #5d1317;   /* maroon hover / deep */
  --gold:       #a9763d;   /* logo gold (decorative) */
  --gold-deep:  #8a5f2e;   /* gold for small text on light (AA) */
  --sage:       #74804e;   /* veg / dietary accent */
  --line:       rgba(42, 31, 22, 0.12);
  --line-light: rgba(255, 253, 248, 0.16);

  /* type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* spacing / layout */
  --container: 1140px;
  --container-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(29, 22, 16, .06), 0 2px 8px rgba(29, 22, 16, .06);
  --shadow-md: 0 6px 20px rgba(29, 22, 16, .10), 0 2px 6px rgba(29, 22, 16, .06);
  --shadow-lg: 0 24px 60px rgba(29, 22, 16, .18);

  --header-h: 76px;
}

/* ----------  Reset & base  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

a { color: var(--ember-deep); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--ember); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 2px;
  border-radius: 4px;
}

/* skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--espresso);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ----------  Layout helpers  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--cream { background: var(--cream); }
.section--alt { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section--dark {
  background: var(--espresso);
  color: #efe3d2;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fdf6ea; }
.section--dark a { color: var(--saffron); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 .9rem;
}
.section--dark .eyebrow { color: var(--saffron); }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }
.section--dark .section-head p { color: #d9c9b3; }

.lede { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.3rem); color: var(--ink-soft); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .92em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--ember); color: #fff; box-shadow: 0 6px 18px rgba(124, 27, 32, .32); }
.btn--primary:hover { background: var(--ember-deep); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(42,31,22,.28); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--ink); }

.btn--on-dark { background: transparent; color: #fdf6ea; border-color: var(--line-light); }
.btn--on-dark:hover { border-color: var(--saffron); color: #fff; }

.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

/* ----------  Header / nav  ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 231, .82);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark { width: 52px; height: 32px; flex: none; background: url(../assets/mark-dark.png) center / contain no-repeat; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand .name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; letter-spacing: .045em; text-transform: uppercase; color: var(--ember); }
.brand .sub { font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }
.site-footer .brand .mark { background-image: url(../assets/mark-light.png); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  padding: .35rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ember-deep); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn { padding: .7em 1.15em; font-size: .95rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .2s ease;
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before { position: absolute; top: -6px; }
.nav-toggle .bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  color: #fbeede;
  background:
    linear-gradient(180deg, rgba(40,9,11,.78) 0%, rgba(74,16,20,.50) 45%, rgba(46,11,13,.82) 100%),
    url(../photos/homepage-hero.jpg) center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.hero::after { /* soft vignette for text contrast at top */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,.55) 0%, rgba(20,12,8,.12) 34%, transparent 60%);
  z-index: -1;
}
.hero-rays {
  position: absolute;
  left: 50%; bottom: -55vw;
  transform: translateX(-50%);
  width: 165vw; max-width: 1800px;
  aspect-ratio: 1;
  z-index: -1;
  pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 50% 100%,
     rgba(255,240,205,.16) 0deg 2deg, transparent 2deg 13deg);
  -webkit-mask: radial-gradient(58% 58% at 50% 100%, #000 12%, transparent 74%);
          mask: radial-gradient(58% 58% at 50% 100%, #000 12%, transparent 74%);
}
.hero-inner {
  position: relative;
  padding-block: clamp(4.5rem, 12vw, 8.5rem);
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.hero .eyebrow { color: #ffe2ad; justify-content: center; }
.hero .eyebrow::before, .hero .eyebrow::after { background: #ffe2ad; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 1.6rem + 5.4vw, 5rem);
  text-shadow: 0 2px 30px rgba(60, 20, 0, .35);
  margin-bottom: .35em;
}
.hero h1 .script { font-style: italic; font-weight: 400; }
.hero .hero-sub {
  font-size: clamp(1.08rem, 1rem + 0.7vw, 1.4rem);
  color: #ffeede;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 2.4rem;
  display: flex; gap: 1.4rem 2.2rem; justify-content: center; flex-wrap: wrap;
  font-size: .95rem; color: #ffedd6;
}
.hero-meta span { display: inline-flex; align-items: center; gap: .5em; }
.hero-meta .ico { width: 1.1em; height: 1.1em; opacity: .9; }

/* price flash badge */
.price-flash {
  position: absolute;
  top: clamp(1.5rem, 6vw, 3rem);
  right: clamp(1rem, 6vw, 4rem);
  width: clamp(96px, 14vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  transform: rotate(-9deg);
  border: 3px solid var(--saffron);
  z-index: 2;
}
.price-flash .from { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.price-flash .amt { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1; color: var(--ember); }
.price-flash .lbl { font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 600px) { .price-flash { display: none; } }

/* ----------  Marquee strip  ---------- */
.strip {
  background: var(--espresso);
  color: #f0dfc6;
  padding-block: .85rem;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.strip .container { display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.strip span { display: inline-flex; align-items: center; gap: .6em; white-space: nowrap; }
.strip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--saffron); }

/* ----------  Feature cards grid  ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-ico {
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border-radius: 14px;
  background: linear-gradient(150deg, #f0dcab, #cda04e);
  color: var(--ember-deep);
  margin-bottom: 1.1rem;
}
.card .card-ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-size: .98rem; }

/* ----------  Split / about preview  ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-body h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.7rem); }

/* photo placeholder - styled, intentional */
.photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.25), transparent 50%),
    linear-gradient(150deg, #b0632a 0%, #8c2a22 46%, #5d1317 100%);
  box-shadow: var(--shadow-md);
  color: #fff5e8;
  min-height: 340px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}
.photo::before { /* subtle grain/texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: .35;
  mix-blend-mode: soft-light;
}
.photo .photo-ico { width: 56px; height: 56px; margin: 0 auto .8rem; opacity: .92; }
.photo .photo-cap { font-size: .85rem; letter-spacing: .04em; opacity: .92; max-width: 22ch; margin-inline: auto; }
.photo .photo-tag {
  position: absolute; left: 14px; top: 14px;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(0,0,0,.28); color: #fff;
  padding: .35em .7em; border-radius: 999px;
}
.photo.tall { min-height: 460px; }
.photo.shape-2 { background: linear-gradient(150deg, #9c3a22 0%, #5d1317 100%); }
.photo.shape-3 { background: linear-gradient(150deg, #a8602b 0%, #6f1a1d 100%); }

/* real photos */
.photo-img { display: block; width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.photo-img.tall { min-height: 460px; }

/* photo gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.6vw, 1.1rem); }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--cream-2); }
.gallery-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img { transform: scale(1.06); }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .photo-img, .photo-img.tall { min-height: 280px; }
}

.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; }
.feature-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .85rem; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  display: grid; place-content: center;
  border-radius: 50%; background: rgba(124,27,32,.12); color: var(--ember);
}
.feature-list .tick svg { width: 14px; height: 14px; }

/* ----------  Menu preview tiles  ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,1.6rem); }
.dish {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex; flex-direction: column; gap: .35rem;
  box-shadow: var(--shadow-sm);
}
.dish .dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.dish h3 { font-size: 1.18rem; margin: 0; }
.dish .price { font-family: var(--font-display); font-weight: 600; color: var(--ember); white-space: nowrap; }
.dish p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ----------  Full menu (menu.html)  ---------- */
.menu-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4rem); }
.menu-cat { break-inside: avoid; }
.menu-cat h2 {
  font-size: 1.5rem;
  display: flex; align-items: center; gap: .7rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--line);
  margin-bottom: 1.1rem;
}
.menu-cat h2 .ico { width: 24px; height: 24px; color: var(--ember); flex: none; }
.menu-item { padding: .65rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item .row { display: flex; align-items: baseline; gap: .6rem; }
.menu-item .name { font-weight: 600; }
.menu-item .leader { flex: 1; border-bottom: 1px dotted rgba(42,31,22,.25); transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-display); font-weight: 600; color: var(--ember); white-space: nowrap; }
.menu-item .desc { font-size: .88rem; color: var(--ink-soft); margin: .15rem 0 0; }
.menu-item .tags { margin-top: .3rem; display: flex; gap: .35rem; flex-wrap: wrap; }

.tag {
  font-size: .64rem; font-weight: 700; letter-spacing: .06em;
  padding: .2em .55em; border-radius: 6px; text-transform: uppercase;
  background: rgba(116,128,78,.16); color: #4d5733;
}
.tag.v  { background: rgba(116,128,78,.18); color: #46522c; }
.tag.ve { background: rgba(74,124,89,.18); color: #2f5a3c; }
.tag.gf { background: rgba(199,154,58,.2); color: #7a5a16; }

.allergen-note {
  margin-top: 1.5rem;
  border-left: 4px solid var(--saffron);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  font-size: .9rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.allergen-note strong { color: var(--ink); }
.legend { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); }
.legend span { display: inline-flex; align-items: center; gap: .45em; }

/* ----------  Reviews  ---------- */
.quote {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.quote .stars { color: var(--saffron); letter-spacing: 2px; font-size: 1rem; }
.quote blockquote { margin: 0; font-size: 1.08rem; font-family: var(--font-display); font-style: italic; line-height: 1.5; color: var(--ink); }
.quote cite { font-style: normal; font-weight: 600; font-size: .9rem; color: var(--ink-soft); }

/* ----------  Visit / contact info  ---------- */
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row:last-child { border-bottom: none; }
.info-row .ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-content: center;
  background: rgba(124,27,32,.1); color: var(--ember);
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row h3 { font-size: 1.02rem; margin: 0 0 .15rem; font-family: var(--font-body); font-weight: 700; }
.info-row p, .info-row a { margin: 0; color: var(--ink-soft); text-decoration: none; }
.info-row a:hover { color: var(--ember); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table th { font-weight: 500; color: var(--ink); }
.hours-table td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--ember-deep); font-weight: 700; }
.hours-table tr.today td::after { content: " · Today"; font-size: .72rem; color: var(--sage); }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px;
  height: 100%;
  background: linear-gradient(150deg, #efe1c9, #e6cfa6);
}
/* shown behind the map - visible if the embed is blocked (privacy/ad-blockers) or offline */
.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-soft);
  text-decoration: none;
}
.map-fallback svg { width: 42px; height: 42px; color: var(--ember); }
.map-fallback span { font-weight: 600; color: var(--ink); }
.map-fallback small { font-size: .82rem; }
.map-embed {
  position: relative;
  z-index: 1;
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  filter: saturate(1.05);
}
.split.stretch { align-items: stretch; }

/* ----------  Forms  ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field .hint { font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea, .field select {
  font: inherit;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(124,27,32,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .82rem; color: var(--ink-soft); }

/* ----------  CTA band  ---------- */
.cta-band {
  background:
    radial-gradient(120% 160% at 90% 0%, rgba(232,161,58,.25), transparent 55%),
    var(--espresso);
  color: #f3e6d3;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band h2 { color: #fff7ec; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
.cta-band p { color: #d9c7ae; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-cta { margin-top: 1.6rem; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--espresso); color: #cdb79f; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.site-footer h4 { color: #f7ead6; font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #cdb79f; text-decoration: none; }
.site-footer a:hover { color: var(--saffron); }
.footer-brand .brand { color: #fdf6ea; }
.footer-brand .brand .name { color: #fdf6ea; }
.footer-brand .brand .sub { color: #b09a7e; }
.footer-brand p { margin-top: 1rem; font-size: .92rem; max-width: 30ch; color: #b6a085; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .6rem; font-size: .95rem; }
.footer-contact p { font-size: .95rem; margin-bottom: .5rem; }
.footer-contact .ico { width: 1em; height: 1em; vertical-align: -2px; margin-right: .4em; color: var(--saffron); }
.social { display: flex; gap: .7rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-content: center;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-light);
}
.social a:hover { background: var(--ember); border-color: var(--ember); color: #fff; }
.social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #9c876e;
}
.footer-bottom a { color: #9c876e; }

/* ----------  Page hero (interior pages)  ---------- */
.page-hero {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(232,161,58,.2), transparent 50%),
    linear-gradient(180deg, var(--espresso), var(--espresso-2));
  color: #f4e7d4;
  padding-block: clamp(3.2rem, 7vw, 5rem);
  text-align: center;
}
.page-hero .eyebrow { color: var(--saffron); justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 1.5rem + 3.5vw, 3.6rem); }
.page-hero p { color: #d9c7ae; max-width: 56ch; margin: .4rem auto 0; }

.breadcrumb { font-size: .82rem; color: #b6a085; margin-bottom: 1rem; }
.breadcrumb a { color: #d9c7ae; text-decoration: none; }
.breadcrumb a:hover { color: var(--saffron); }

/* ----------  FAQ  ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.3rem;
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; color: var(--ember); font-family: var(--font-display);
  transition: transform .2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: 1.1rem; margin: 0; color: var(--ink-soft); }

/* ----------  Misc  ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--ink-soft); }

/* 404 */
.notfound { min-height: 70vh; display: grid; place-content: center; text-align: center; padding: 3rem 1.5rem; }
.notfound .big { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); line-height: 1; color: var(--ember); margin: 0; }

/* prose (privacy) */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* ----------  Responsive  ---------- */
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .menu-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }

  /* mobile drawer */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) 1.2rem;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: .95rem 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links.open a::after { display: none; }
}
@media (max-width: 760px) {
  .grid-3, .dish-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .strip .container { gap: 1rem 1.4rem; }
  /* compact icon-only call button so the hamburger always fits */
  .call-btn span { display: none; }
  .call-btn { padding: .7em .85em; }
  .call-btn .ico { width: 1.3em; height: 1.3em; }
  .nav { gap: .75rem; }
}

/* ----------  Motion & print  ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
