/* ============================================================
   Girl & the Goose — Restaurante Centroamericano
   Design system + styles
   Palette/type per research/brand-system.md
   ============================================================ */

:root {
  /* light theme (default) */
  --bg: #FFF8EF;
  --surface: #FFFCF6;
  --surface-2: #F4E9D8;
  --text: #271A12;
  --muted: #7A6654;
  --primary: #B64A2E;   /* terracotta */
  --secondary: #17453B; /* deep green */
  --accent: #E7A93B;    /* gold */
  --border: #EADCCB;
  --deep: #241712;      /* deep brown panels/footer */
  --deep-ink: #F6E9D9;
  --deep-muted: #C3A78C;
  --focus: #B64A2E;

  /* cta colour (driven by accent tweak) */
  --cta: #E7A93B;
  --cta-ink: #271A12;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(39,26,18,.06), 0 2px 8px rgba(39,26,18,.05);
  --shadow-md: 0 8px 30px rgba(39,26,18,.10);
  --shadow-lg: 0 24px 60px rgba(39,26,18,.18);
  --ease: cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] {
  --bg: #1C1310;
  --surface: #261A14;
  --surface-2: #30221A;
  --text: #F6E9D9;
  --muted: #C3A78C;
  --primary: #D9744F;
  --secondary: #4FA98C;
  --accent: #E7A93B;
  --border: rgba(246,233,217,.13);
  --deep: #140D0A;
  --deep-ink: #F6E9D9;
  --deep-muted: #C3A78C;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
}

/* accent variants */
[data-accent="gold"]      { --accent:#E7A93B; --cta:#E7A93B; --cta-ink:#271A12; }
[data-accent="terracotta"]{ --accent:#B64A2E; --cta:#B64A2E; --cta-ink:#FFF6EE; }
[data-accent="green"]     { --accent:#17453B; --cta:#17453B; --cta-ink:#F3FBF7; }
[data-theme="dark"][data-accent="green"] { --cta:#2E8C6F; }

/* display font variants */
[data-display="cormorant"] { --font-display:'Cormorant Garamond', Georgia, serif; }
[data-display="fraunces"]  { --font-display:'Fraunces', Georgia, serif; }
[data-display="playfair"]  { --font-display:'Playfair Display', Georgia, serif; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content:""; width: 26px; height: 1.5px; background: currentColor; opacity:.7; }
.eyebrow.center::before { display:none; }

.btn {
  display: inline-flex; align-items: center; justify-content:center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--cta); color: var(--cta-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ondark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn-ondark:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1 !important; transform:none !important; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav.scrolled { background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(14px) saturate(1.2); border-bottom-color: var(--border); }
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-brand img { width: 44px; height: 44px; }
.nav-brand .bname { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1; letter-spacing: .01em; }
.nav-brand .bsub { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
.nav-brand .bname b { color: var(--primary); font-weight: 700; }
.nav.over-hero:not(.scrolled) .bname,
.nav.over-hero:not(.scrolled) .nav-links a { color: #fff; }
.nav.over-hero:not(.scrolled) .bsub { color: rgba(255,255,255,.7); }
.nav.over-hero:not(.scrolled) .bname b { color: var(--accent); }
.nav.over-hero:not(.scrolled) .nav-burger span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; letter-spacing: .01em; position: relative; padding: 4px 0; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-1px; height:1.5px; width:0; background: var(--primary); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-burger { display: none; width: 44px; height: 44px; border: none; background: transparent; flex-direction: column; gap: 5px; align-items:center; justify-content:center; }
.nav-burger span { display:block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity: 0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 55; pointer-events: none; }
.drawer-scrim { position:absolute; inset:0; background: rgba(20,13,10,.5); opacity:0; transition: opacity .35s; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 96px 32px 32px; display: flex; flex-direction: column;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a { font-family: var(--font-display); font-size: 27px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.drawer-panel a:last-of-type { border-bottom: none; }
.drawer-cta { margin-top: auto; display: grid; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(20,13,10,.5) 0%, rgba(20,13,10,.05) 30%, rgba(20,13,10,.25) 60%, rgba(20,13,10,.86) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 96px); padding-top: 120px; }
.hero-emblem { width: 92px; height: 92px; margin-bottom: 22px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.4)); }
.hero h1 { color: #fff; font-size: clamp(46px, 8.5vw, 104px); font-weight: 600; letter-spacing: -.02em; max-width: 16ch; }
.hero h1 .amp { color: var(--accent); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.9); font-size: clamp(17px, 2.1vw, 21px); max-width: 52ch; margin-top: 22px; line-height: 1.5; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 40px; color: #fff; }
.hero-meta .mi { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; }
.hero-meta .mi svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.hero-meta .sep { width: 1px; height: 18px; background: rgba(255,255,255,.28); }
.hero-stars { color: var(--accent); letter-spacing: 2px; }

.scrollcue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; display:flex; flex-direction:column; align-items:center; gap: 8px; }
.scrollcue .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: cue 2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%{transform:scaleY(0);}50%{transform:scaleY(1);}100%{transform:scaleY(0); transform-origin:bottom;} }

/* ============================================================
   MARQUEE / trust strip
   ============================================================ */
.strip { background: var(--secondary); color: #F3FBF7; }
[data-theme="dark"] .strip { background: var(--surface-2); }
.strip-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 48px; padding-block: 26px; text-align:center; }
.strip-item { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; letter-spacing:.01em; }
.strip-item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.strip-item b { font-weight: 700; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.about-copy h2 { font-size: clamp(34px, 5vw, 60px); margin-top: 20px; max-width: 14ch; }
.about-copy h2 em { color: var(--primary); font-style: italic; }
.about-copy p { color: var(--muted); font-size: 17.5px; margin-top: 22px; max-width: 50ch; }
.about-copy p.lead { color: var(--text); font-size: 20px; }
.about-figs { position: relative; }
.about-figs .f1 { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.about-figs .f1 img { width:100%; height:100%; object-fit: cover; }
.about-figs .f2 {
  position: absolute; right: -8%; bottom: -12%; width: 52%;
  border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg); aspect-ratio: 1/1;
}
.about-figs .f2 img { width:100%; height:100%; object-fit: cover; }
.about-badge {
  position:absolute; left: -6%; top: 8%;
  background: var(--cta); color: var(--cta-ink); border-radius: 999px;
  width: 118px; height: 118px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow: var(--shadow-md); transform: rotate(-7deg);
}
.about-badge .n { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height:1; }
.about-badge .t { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-top: 4px; }

/* feature row under about */
.feat-row { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: clamp(44px,6vw,80px); }
.feat { padding-top: 22px; border-top: 2px solid var(--primary); }
.feat .fi { color: var(--primary); }
.feat .fi svg { width: 26px; height: 26px; }
.feat h4 { font-family: var(--font-body); font-weight: 700; font-size: 16px; letter-spacing:.01em; margin-top: 14px; }
.feat p { color: var(--muted); font-size: 14.5px; margin-top: 7px; }

/* ============================================================
   DISHES
   ============================================================ */
.sec-head { display:flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head h2 { font-size: clamp(34px, 5.2vw, 62px); max-width: 16ch; }
.sec-head h2 em { color: var(--primary); font-style: italic; }
.sec-head .sh-r { max-width: 38ch; color: var(--muted); font-size: 16px; }

.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.dish { position: relative; border-radius: 6px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.dish-img { aspect-ratio: 4/5; overflow: hidden; }
.dish-img img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.06); }
.dish-body { padding: 20px 22px 24px; }
.dish .tag { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
[data-accent="gold"] .dish .tag { color: #B8881F; }
.dish h3 { font-size: 23px; margin-top: 8px; line-height: 1.12; }
.dish p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.dish.span2 { grid-column: span 2; }
.dish.span2 .dish-img { aspect-ratio: auto; height: 100%; min-height: 320px; }

/* feature dish layout: tall left, two stacked right handled by grid */
.dishes-note { margin-top: 26px; font-size: 14px; color: var(--muted); display:flex; gap:10px; align-items:flex-start; max-width: 70ch; }
.dishes-note svg { width: 17px; height: 17px; color: var(--primary); flex:none; margin-top: 2px; }

.price-band {
  margin-top: clamp(40px,5vw,64px);
  display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap: wrap;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 26px clamp(24px,3vw,40px);
}
.price-band .pb-l { display:flex; align-items:center; gap: 18px; }
.price-band .pb-icn { width: 52px; height:52px; border-radius:50%; background: var(--cta); color: var(--cta-ink); display:flex; align-items:center;justify-content:center; flex:none; }
.price-band .pb-icn svg{ width:24px;height:24px; }
.price-band h4 { font-family: var(--font-body); font-weight:700; font-size: 16px; }
.price-band p { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ============================================================
   QUOTE
   ============================================================ */
.quote { background: var(--deep); color: var(--deep-ink); position: relative; overflow: hidden; }
.quote .jungle { position:absolute; inset:0; opacity:.16; }
.quote .jungle img { width:100%; height:100%; object-fit: cover; }
.quote .jungle::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, var(--deep) 8%, transparent 50%, var(--deep) 92%); }
.quote-inner { position: relative; z-index:2; text-align:center; max-width: 30ch; margin: 0 auto; }
.quote-stars { color: var(--accent); letter-spacing: 5px; font-size: 18px; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 52px); line-height: 1.18; margin: 22px 0 0; font-weight: 500; }
.quote blockquote em { color: var(--accent); font-style: italic; }
.quote .qcite { margin-top: 26px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--deep-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gal { display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gal figure { margin:0; overflow:hidden; border-radius:5px; position: relative; cursor: pointer; background: var(--surface-2); }
.gal figure img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal figure:hover img { transform: scale(1.07); }
.gal figure::after { content:""; position:absolute; inset:0; background: linear-gradient(transparent 55%, rgba(20,13,10,.5)); opacity:0; transition: opacity .4s; }
.gal figure:hover::after { opacity:1; }
.gal figure figcaption { position:absolute; left:16px; bottom:14px; color:#fff; font-size:13px; font-weight:600; z-index:2; opacity:0; transform: translateY(8px); transition: .4s var(--ease); }
.gal figure:hover figcaption { opacity:1; transform:none; }
.gal .g-tall { grid-row: span 2; }
.gal .g-wide { grid-column: span 2; }

/* lightbox */
.lb { position: fixed; inset:0; z-index: 90; background: rgba(15,9,7,.92); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition: opacity .3s; backdrop-filter: blur(6px); }
.lb.open { opacity:1; pointer-events:auto; }
.lb img { max-width: 90vw; max-height: 82vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lb-cap { position:absolute; bottom: 26px; left:0; right:0; text-align:center; color:rgba(255,255,255,.85); font-size:14px; }
.lb-close, .lb-nav { position:absolute; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25); color:#fff; width:48px;height:48px;border-radius:50%; display:flex;align-items:center;justify-content:center; transition:.25s; }
.lb-close:hover,.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; }
.lb-nav.prev { left: 22px; top:50%; transform: translateY(-50%); }
.lb-nav.next { right: 22px; top:50%; transform: translateY(-50%); }
.lb-nav svg,.lb-close svg{ width:20px;height:20px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.visit-info h2 { font-size: clamp(32px,4.6vw,56px); margin-top: 18px; }
.contact-list { margin-top: 30px; display: grid; gap: 4px; }
.cl-item { display:flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items:flex-start; }
.cl-item:last-child { border-bottom: none; }
.cl-icn { width: 44px; height:44px; border-radius: 50%; background: var(--surface-2); color: var(--primary); display:flex;align-items:center;justify-content:center; flex:none; }
.cl-icn svg { width: 20px; height:20px; }
.cl-item .k { font-size: 12px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); font-weight:700; }
.cl-item .v { font-size: 17px; font-weight: 500; margin-top: 3px; font-variant-numeric: tabular-nums; }
.cl-item .v a:hover { color: var(--primary); }
.cl-item .note { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.visit-cta { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.map-card { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); min-height: 440px; position: relative; background: var(--surface-2); }
.map-card iframe { width:100%; height:100%; border:0; min-height: 440px; filter: saturate(.92); }
.map-flag { position:absolute; top:14px; left:14px; z-index:2; background: var(--bg); color:var(--text); font-size:12px; font-weight:600; padding:7px 13px; border-radius:999px; box-shadow: var(--shadow-sm); display:flex; gap:7px; align-items:center; }
.map-flag svg{ width:14px;height:14px;color:var(--primary); }

/* ============================================================
   ENQUIRY
   ============================================================ */
.enq { background: var(--secondary); color: #F3FBF7; position: relative; overflow:hidden; }
[data-theme="dark"] .enq { background: var(--surface); color: var(--text); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.enq-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.enq-l h2 { font-size: clamp(32px,4.6vw,56px); color: inherit; }
.enq-l h2 em { font-style: italic; color: var(--accent); }
.enq-l p { margin-top: 20px; opacity: .85; max-width: 42ch; font-size: 16.5px; }
.enq-quick { margin-top: 32px; display:grid; gap: 12px; }
.enq-quick a { display:flex; align-items:center; gap:14px; padding: 16px 20px; border-radius: 10px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); transition:.25s; }
[data-theme="dark"] .enq-quick a { background: var(--surface-2); border-color: var(--border); }
.enq-quick a:hover { background: rgba(255,255,255,.15); transform: translateX(4px); }
[data-theme="dark"] .enq-quick a:hover { background: var(--surface-2); }
.enq-quick .qi { width:42px;height:42px;border-radius:50%;background:var(--cta);color:var(--cta-ink); display:flex;align-items:center;justify-content:center;flex:none; }
.enq-quick .qi svg{width:19px;height:19px;}
.enq-quick .qk { font-size:12px; letter-spacing:.1em; text-transform:uppercase; opacity:.75; font-weight:700; }
.enq-quick .qv { font-size:16px; font-weight:600; font-variant-numeric: tabular-nums; }

.form-card { background: var(--bg); color: var(--text); border-radius: 12px; padding: clamp(24px,3vw,40px); box-shadow: var(--shadow-lg); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field.full { grid-column: 1 / -1; }
.field label { display:block; font-size: 12.5px; font-weight: 700; letter-spacing:.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text); font-family: inherit; font-size: 15.5px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent); }
.field.err input, .field.err select, .field.err textarea { border-color: #C0392B; }
.field .emsg { color:#C0392B; font-size: 12.5px; margin-top: 5px; }
.chips { display:flex; flex-wrap:wrap; gap: 9px; }
.chip { padding: 9px 15px; border-radius: 999px; border:1.5px solid var(--border); background: var(--surface); font-size: 13.5px; font-weight:600; color: var(--muted); transition:.2s; }
.chip.on { background: var(--cta); color: var(--cta-ink); border-color: var(--cta); }
.form-submit { width:100%; margin-top: 6px; padding: 16px; font-size: 16px; }
.form-foot { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align:center; }
.form-success { text-align:center; padding: 30px 10px; }
.form-success .ok { width:70px;height:70px;border-radius:50%;background:color-mix(in srgb,var(--secondary) 14%,transparent); color:var(--secondary); display:flex;align-items:center;justify-content:center;margin:0 auto 18px; }
.form-success .ok svg{width:34px;height:34px;}
.form-success h3 { font-size: 28px; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep); color: var(--deep-ink); padding-top: clamp(56px,7vw,90px); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display:flex; align-items:center; gap: 14px; }
.footer-brand img { width: 60px; height:60px; }
.footer-brand .bname { font-family: var(--font-display); font-size: 26px; font-weight:700; line-height:1.05; }
.footer-brand .bname b { color: var(--accent); }
.footer-brand .bsub { font-size: 10px; letter-spacing:.24em; text-transform:uppercase; color: var(--deep-muted); margin-top:5px; }
.footer-col h5 { font-family: var(--font-body); font-size: 12px; letter-spacing:.16em; text-transform: uppercase; color: var(--deep-muted); font-weight:700; margin-bottom: 16px; }
.footer-col a, .footer-col p { display:block; color: rgba(246,233,217,.82); font-size: 15px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-blurb { color: rgba(246,233,217,.7); font-size: 14.5px; margin-top: 18px; max-width: 38ch; }
.footer-social { display:flex; gap:10px; margin-top: 20px; }
.footer-social a { width:42px;height:42px;border-radius:50%;border:1px solid rgba(255,255,255,.2); display:flex;align-items:center;justify-content:center; color:#fff; transition:.25s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--deep); transform: translateY(-3px); }
.footer-social svg { width: 18px; height:18px; }
.footer-bot { display:flex; justify-content:space-between; gap: 16px; flex-wrap: wrap; padding-block: 26px; font-size: 12.5px; color: var(--deep-muted); }
.footer-bot a:hover { color: var(--accent); }
.footer-note { font-size: 11.5px; color: rgba(246,233,217,.4); padding-bottom: 30px; max-width: 80ch; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.mbar { position: fixed; left:0; right:0; bottom:0; z-index: 50; display:none; background: color-mix(in srgb, var(--bg) 94%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--border); padding: 9px 10px calc(9px + env(safe-area-inset-bottom)); }
.mbar-row { display:grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mbar a { display:flex; flex-direction:column; align-items:center; gap:4px; padding: 8px 4px; border-radius: 10px; font-size: 11px; font-weight: 700; letter-spacing:.02em; color: var(--text); transition: background .2s; }
.mbar a svg { width: 20px; height: 20px; color: var(--primary); }
.mbar a.acc { background: var(--cta); color: var(--cta-ink); }
.mbar a.acc svg { color: var(--cta-ink); }
.mbar a:active { background: var(--surface-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figs { max-width: 480px; margin: 12px auto 60px; }
  .visit-grid { grid-template-columns: 1fr; }
  .enq-grid { grid-template-columns: 1fr; }
  .gal { grid-auto-rows: 180px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { height: 66px; }
  .dishes { grid-template-columns: 1fr 1fr; }
  .dish.span2 { grid-column: span 2; }
  .feat-row { grid-template-columns: 1fr; gap: 0; }
  .feat { margin-top: 22px; }
  .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal .g-wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .mbar { display: block; }
  body { padding-bottom: 70px; }
  .price-band { flex-direction: column; align-items: stretch; }
  .price-band .btn { width: 100%; }
}
@media (max-width: 460px) {
  .dishes { grid-template-columns: 1fr; }
  .dish.span2 { grid-column: span 1; }
  .gal { grid-template-columns: 1fr 1fr; }
  .hero-meta .sep { display:none; }
}

/* BytesGlue mobile QA patch */
@media (max-width: 940px){.hero-inner,.hero__inner,.hero-copy,.hero .wrap{padding-top:30px!important;transform:translateY(30px)!important}}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
