/* ============================================================
   The Coffee Club – JLT  ·  Warm, appetite-led editorial
   Palette + type from research/brand-system.md
   ============================================================ */

:root {
  /* Brand tokens */
  --bg:        #FFF8EF;   /* surface cream */
  --surface:   #FFFDF9;   /* card / lifted surface */
  --surface-2: #FBEFE0;   /* warm tint block */
  --text:      #271A12;
  --muted:     #7A6654;
  --primary:   #B64A2E;   /* terracotta */
  --primary-d: #9C3C23;
  --secondary: #17453B;   /* deep green */
  --secondary-d:#0F332B;
  --accent:    #E7A93B;   /* gold */
  --border:    #EADCCB;
  --ink:       #241212;   /* photo dark / footer */
  --focus:     #B64A2E;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(39,26,18,.06), 0 4px 14px rgba(39,26,18,.05);
  --shadow-md: 0 8px 30px rgba(39,26,18,.10), 0 2px 8px rgba(39,26,18,.06);
  --shadow-lg: 0 30px 70px -24px rgba(39,26,18,.34);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
  font-optical-sizing: auto;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

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

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--primary);
  display: inline-block;
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 5.2vw, 58px);
  margin-top: 18px;
}
.section-head .lead {
  margin-top: 18px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px -10px rgba(182,74,46,.7); }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn-dark { background: var(--secondary); color: #FFF8EF; }
.btn-dark:hover { background: var(--secondary-d); transform: translateY(-2px); }
.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-light { background: #fff; color: var(--text); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  transition: background .35s var(--ease), box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,248,239,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(39,26,18,.5);
}
.nav.scrolled .nav-inner { padding-block: 11px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; transition: width .35s, height .35s; }
.nav.scrolled .brand img { width: 38px; height: 38px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt .bt-name { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--secondary); letter-spacing: -.01em; }
.brand-txt .bt-sub { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; font-size: 14.5px; font-weight: 500; color: var(--text);
  border-radius: 100px; transition: background .2s, color .2s; position: relative;
}
.nav-links a:hover { color: var(--primary); background: rgba(182,74,46,.07); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--text); }
.nav-toggle svg { width: 26px; height: 26px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
  padding: 22px var(--gut) 40px;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mm-top { display: flex; align-items: center; justify-content: space-between; }
.mm-close { background: transparent; border: 0; padding: 8px; color: var(--text); }
.mm-close svg { width: 28px; height: 28px; }
.mm-links { display: flex; flex-direction: column; margin-top: 24px; border-top: 1px solid var(--border); }
.mm-links a {
  font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--secondary);
  padding: 18px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mm-links a span { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 500; }
.mm-foot { margin-top: auto; display: grid; gap: 12px; }
.mm-call { font-family: var(--serif); font-size: 24px; color: var(--primary); font-weight: 600; }

/* ===================== HERO ===================== */
.hero { position: relative; padding-top: 120px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  margin-top: 22px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-lead {
  margin-top: 24px; font-size: clamp(17px, 1.9vw, 20px); color: var(--muted);
  max-width: 30em;
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 11px; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.rating-txt { font-size: 14px; color: var(--muted); }
.rating-txt b { color: var(--text); font-variant-numeric: tabular-nums; }
.meta-div { width: 1px; height: 34px; background: var(--border); }
.hero-where { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-where svg { width: 16px; height: 16px; color: var(--primary); }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 38px;
  background: var(--surface); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border);
}
.hero-badge .hb-mark { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); display:grid; place-items:center; }
.hero-badge .hb-mark img { width: 34px; height: 34px; }
.hero-badge .hb-txt small { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero-badge .hb-txt strong { font-family: var(--serif); font-size: 17px; color: var(--secondary); }
.hero-chip {
  position: absolute; right: -14px; top: 30px;
  background: var(--secondary); color: #FFF8EF;
  padding: 11px 17px; border-radius: 100px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 9px;
}
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #7BC47F; box-shadow: 0 0 0 4px rgba(123,196,127,.25); }

/* ===================== TRUST STRIP ===================== */
.trust { border-block: 1px solid var(--border); background: var(--surface); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
.trust-cell {
  padding: 30px var(--gut); text-align: center;
  border-right: 1px solid var(--border);
}
.trust-cell:last-child { border-right: 0; }
.trust-cell .tc-num { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 600; color: var(--secondary); font-variant-numeric: tabular-nums; }
.trust-cell .tc-lab { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* ===================== HIGHLIGHTS (categories) ===================== */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); isolation: isolate;
  display: block;
}
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,18,18,.82) 0%, rgba(36,18,18,.25) 42%, rgba(36,18,18,0) 70%);
}
.cat:hover img { transform: scale(1.06); }
.cat-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px; color: #fff; }
.cat-body .num { font-size: 12px; font-weight: 600; letter-spacing: .14em; color: var(--accent); }
.cat-body h3 { font-size: 23px; margin-top: 8px; color: #fff; }
.cat-body p { font-size: 13.5px; color: rgba(255,255,255,.82); margin-top: 6px; }

/* ===================== MENU HIGHLIGHTS ===================== */
.menu-sec { background: var(--secondary); color: #FBEFE0; position: relative; }
.menu-sec .eyebrow { color: var(--accent); }
.menu-sec .eyebrow::before, .menu-sec .eyebrow::after { background: var(--accent); }
.menu-sec h2 { color: #FFF8EF; }
.menu-sec .lead { color: rgba(251,239,224,.72); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.dish {
  background: rgba(255,248,239,.04); border: 1px solid rgba(255,248,239,.12);
  border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.dish:hover { transform: translateY(-5px); border-color: rgba(231,169,59,.5); background: rgba(255,248,239,.07); }
.dish-img { aspect-ratio: 1/1; overflow: hidden; background: #0F332B; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.05); }
.dish-body { padding: 20px 22px 24px; }
.dish-body .tag { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.dish-body h3 { font-size: 21px; color: #FFF8EF; margin-top: 9px; }
.dish-body p { font-size: 14px; color: rgba(251,239,224,.66); margin-top: 8px; line-height: 1.5; }
.menu-note {
  margin-top: 40px; text-align: center; font-size: 14.5px; color: rgba(251,239,224,.62);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.menu-note .pill { border: 1px solid rgba(255,248,239,.2); border-radius: 100px; padding: 5px 14px; }

/* ===================== GALLERY ===================== */
.gallery-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
  grid-auto-flow: dense;
}
.g-item {
  position: relative; overflow: hidden; border-radius: 14px; cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--surface-2);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(36,18,18,0);
  transition: background .3s; pointer-events: none;
}
.g-item:hover::after { background: rgba(36,18,18,.16); }
.g-item .g-zoom {
  position: absolute; right: 12px; bottom: 12px; width: 36px; height: 36px;
  background: rgba(255,248,239,.92); border-radius: 50%; display: grid; place-items: center;
  opacity: 0; transform: scale(.7); transition: .3s var(--ease); pointer-events: none;
}
.g-item:hover .g-zoom { opacity: 1; transform: scale(1); }
.g-item .g-zoom svg { width: 18px; height: 18px; color: var(--secondary); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-big { grid-column: span 2; grid-row: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(20,10,8,.92);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .3s; backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,248,239,.12); border: 1px solid rgba(255,248,239,.3); color: #fff; border-radius: 50%; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,248,239,.26); }
.lb-close svg, .lb-nav svg { width: 24px; height: 24px; }
.lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,248,239,.8); font-size: 14px; }

/* ===================== ABOUT ===================== */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.about-copy h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 18px; }
.about-copy .lead { margin-top: 22px; font-size: 18px; color: var(--muted); }
.about-copy p + p { margin-top: 16px; }
.about-points { margin-top: 30px; display: grid; gap: 16px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point .ap-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--surface-2); display: grid; place-items: center; color: var(--primary); }
.about-point .ap-ic svg { width: 20px; height: 20px; }
.about-point h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; }
.about-point p { font-size: 14px; color: var(--muted); margin-top: 2px; }

.about-visual { position: relative; }
.about-stack { display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.about-stack img { border-radius: 16px; box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; }
.as-main { grid-row: 1 / 3; min-height: 340px; }
.as-a, .as-b { aspect-ratio: 1/1; }

.quote {
  margin-top: 26px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm);
  position: relative;
}
.quote .q-mark { font-family: var(--serif); font-size: 60px; line-height: .6; color: var(--accent); }
.quote p { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--secondary); margin-top: 4px; }
.quote .q-src { font-family: var(--sans); font-style: normal; font-size: 13px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.quote .q-src .stars svg { width: 14px; height: 14px; }

/* ===================== VISIT / LOCATION ===================== */
.visit-sec { background: var(--surface); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.visit-info { display: flex; flex-direction: column; }
.info-list { margin-top: 30px; display: grid; gap: 2px; }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row:first-child { border-top: 1px solid var(--border); }
.info-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; color: var(--primary); }
.info-ic svg { width: 21px; height: 21px; }
.info-row .ir-lab { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .ir-val { font-size: 17px; color: var(--text); margin-top: 4px; font-weight: 500; }
.info-row .ir-val.tnum { font-variant-numeric: tabular-nums; }
.info-row .ir-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.info-row a.ir-val:hover { color: var(--primary); }
.visit-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.map-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); min-height: 420px;
  background:
    radial-gradient(circle at 30% 30%, rgba(231,169,59,.10), transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(122,102,84,.08) 38px, rgba(122,102,84,.08) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(122,102,84,.08) 38px, rgba(122,102,84,.08) 39px),
    var(--surface-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.map-roads { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.map-roads span { position: absolute; background: rgba(122,102,84,.22); }
.map-roads .r1 { left: 0; right: 0; top: 38%; height: 8px; transform: rotate(-8deg); }
.map-roads .r2 { top: 0; bottom: 0; left: 58%; width: 8px; transform: rotate(6deg); }
.map-roads .r3 { left: 0; right: 0; bottom: 24%; height: 5px; }
.map-water { position: absolute; right: -6%; bottom: -8%; width: 46%; height: 50%; background: rgba(120,170,180,.22); border-radius: 50% 40% 46% 54%; transform: rotate(12deg); }
.map-pin {
  position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50% 50% 50% 4px;
  background: var(--primary); transform: rotate(45deg); display: grid; place-items: center;
  box-shadow: 0 16px 30px -10px rgba(182,74,46,.7);
  animation: pinFloat 3s var(--ease) infinite;
}
.map-pin img { transform: rotate(-45deg); width: 36px; height: 36px; }
@keyframes pinFloat { 0%,100%{ transform: rotate(45deg) translateY(0);} 50%{ transform: rotate(45deg) translateY(-7px);} }
@media (prefers-reduced-motion: reduce){ .map-pin { animation: none; } }
.map-label {
  position: relative; z-index: 2; margin-top: 26px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; padding: 16px 22px; box-shadow: var(--shadow-md);
}
.map-label strong { font-family: var(--serif); font-size: 18px; color: var(--secondary); display: block; }
.map-label span { font-size: 13px; color: var(--muted); }
.map-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(36,18,18,.7); color: #FBEFE0; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: 6px 12px; border-radius: 100px; }

/* ===================== ENQUIRY FORM ===================== */
.enquiry-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.enquiry-side .lead { margin-top: 20px; color: var(--muted); font-size: 18px; }
.enquiry-side .alt-call { margin-top: 28px; padding: 22px 24px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--border); }
.enquiry-side .alt-call small { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.enquiry-side .alt-call a { display: block; font-family: var(--serif); font-size: 28px; color: var(--primary); font-weight: 600; margin-top: 8px; font-variant-numeric: tabular-nums; }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: clamp(24px, 3.4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 15px;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; color: var(--text);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #b7a591; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(182,74,46,.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C0392B; background: #fdf3f1; }
.field .err { font-size: 12.5px; color: #C0392B; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 15px; border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--bg); font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: .2s; user-select: none;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--secondary); border-color: var(--secondary); color: #FFF8EF; }
.form-submit { margin-top: 6px; width: 100%; padding: 16px; font-size: 16px; }
.form-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }

.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .fs-ic { width: 70px; height: 70px; border-radius: 50%; background: var(--secondary); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .fs-ic svg { width: 34px; height: 34px; color: #fff; }
.form-success h3 { font-size: 28px; color: var(--secondary); }
.form-success p { color: var(--muted); margin-top: 10px; }
.form-success .btn { margin-top: 22px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); color: #E9D9C7; padding-top: clamp(56px, 7vw, 96px); }
.footer a { color: #E9D9C7; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,248,239,.12); }
.footer-brand .fb-lock { display: flex; align-items: center; gap: 13px; }
.footer-brand .fb-lock img { width: 52px; height: 52px; }
.footer-brand .fb-lock .fl-name { font-family: var(--serif); font-size: 22px; color: #FFF8EF; }
.footer-brand .fb-lock .fl-sub { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }
.footer-brand p { margin-top: 20px; font-size: 14px; color: rgba(233,217,199,.7); max-width: 30ch; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.footer-col ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.footer-col ul a { font-size: 14.5px; color: rgba(233,217,199,.82); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-col .fc-num { font-variant-numeric: tabular-nums; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,248,239,.18); display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; color: #E9D9C7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding: 26px 0 36px; font-size: 12.5px; color: rgba(233,217,199,.6); }
.footer-bottom .fb-note { max-width: 60ch; }

/* ===================== MOBILE ACTION BAR ===================== */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,248,239,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border); box-shadow: 0 -8px 30px -16px rgba(39,26,18,.4);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 11px 6px; font-size: 11.5px; font-weight: 600; color: var(--text);
  border-right: 1px solid var(--border);
}
.action-bar a:last-child { border-right: 0; }
.action-bar a svg { width: 21px; height: 21px; color: var(--primary); }
.action-bar a.ab-primary { background: var(--primary); color: #fff; }
.action-bar a.ab-primary svg { color: #fff; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 8px auto 0; }
  .hero { padding-top: 104px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(2) { border-right: 0; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .action-bar { display: grid; }
  body { padding-bottom: 64px; }
}
@media (max-width: 600px) {
  .cats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 11px; }
  .g-big { grid-column: span 2; grid-row: span 2; }
  .g-wide { grid-column: span 2; }
  .about-stack { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .cats { grid-template-columns: 1fr; }
}

