/* ============================================================
   Uptown Social — all-day social house, JLT Dubai
   Design system & styles
   ============================================================ */

:root {
  /* Brand palette */
  --terracotta: #B64A2E;
  --terracotta-deep: #963A22;
  --forest: #17453B;
  --forest-deep: #0F332B;
  --amber: #E7A93B;
  --amber-soft: #F0C875;
  --cream: #FFF8EF;
  --cream-2: #FBEEDD;
  --ink: #271A12;
  --muted: #7A6654;
  --border: #EADCCB;
  --dark: #241212;

  --shadow-sm: 0 1px 2px rgba(39, 26, 18, .06), 0 2px 8px rgba(39, 26, 18, .05);
  --shadow-md: 0 8px 28px rgba(39, 26, 18, .12);
  --shadow-lg: 0 28px 70px rgba(39, 26, 18, .28);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  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; }

::selection { background: var(--amber); color: var(--ink); }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); }
.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-optical-sizing: auto;
}
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0;
}
.eyebrow.on-dark { color: var(--amber); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: -.015em; }
h2.display { font-size: clamp(34px, 5.2vw, 64px); }
p { text-wrap: pretty; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 14px 26px; border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 20px rgba(182,74,46,.28); }
.btn-primary:hover { background: var(--terracotta-deep); box-shadow: 0 12px 26px rgba(182,74,46,.36); }
.btn-amber { background: var(--amber); color: var(--ink); box-shadow: 0 8px 20px rgba(231,169,59,.32); }
.btn-amber:hover { background: var(--amber-soft); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease, color .35s ease;
  color: #fff;
  text-shadow: 0 1px 14px rgba(20,10,8,.45);
}
.nav.scrolled { text-shadow: none; }
.nav.scrolled {
  background: rgba(255,248,239,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--border);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: baseline; gap: .42em; font-family: var(--serif); line-height: 1; }
.brand .b-up { font-weight: 600; font-size: 22px; letter-spacing: .01em; }
.brand .b-div { width: 1.5px; height: 20px; background: currentColor; opacity: .5; transform: translateY(3px); }
.brand .b-soc { font-style: italic; font-weight: 500; font-size: 25px; }
.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: 0; height: 1.5px; width: 0; background: var(--amber);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.nav .btn { padding: 11px 22px; font-size: 14px; }
.nav.scrolled .btn-ghost-light { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .btn-ghost-light:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

.nav-toggle { display: none; background: none; border: 0; color: inherit; padding: 6px; }
.nav-toggle svg { display: block; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--forest); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 34px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu a .script { color: var(--amber-soft); }
.mobile-menu .mm-close { position: absolute; top: 22px; right: var(--gutter); background: none; border: 0; color: var(--cream); }
.mobile-menu .mm-foot { margin-top: 26px; border: 0; font-family: var(--sans); font-size: 15px; font-weight: 500; display: flex; gap: 20px; }
.mobile-menu .mm-foot a { font-size: 15px; border: 0; padding: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 38px;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-bg img { animation: none; transform: none; } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,10,8,.62) 0%, rgba(20,10,8,.12) 22%, rgba(20,10,8,.05) 46%, rgba(20,10,8,.55) 82%, rgba(20,10,8,.82) 100%),
    linear-gradient(95deg, rgba(15,51,43,.66) 0%, rgba(15,51,43,.18) 42%, rgba(20,10,8,0) 68%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 30px; }
.hero-eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--amber-soft); margin: 0 0 18px;
}
.hero-wordmark { font-family: var(--serif); line-height: .86; margin: 0 0 24px; }
.hero-wordmark .l1 { display: block; font-weight: 600; font-size: clamp(58px, 11vw, 158px); letter-spacing: -.025em; }
.hero-wordmark .l2 { display: block; font-style: italic; font-weight: 500; font-size: clamp(64px, 12vw, 176px); color: var(--amber); margin-top: -.1em; margin-left: -.02em; }
.hero-lead { font-size: clamp(17px, 1.6vw, 21px); color: rgba(255,248,239,.92); max-width: 46ch; margin: 0 0 32px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-seal {
  position: absolute; z-index: 2; right: var(--gutter); bottom: 150px;
  width: 132px; height: 132px; display: grid; place-content: center; text-align: center;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-seal { animation: none; } }
.hero-seal svg { width: 132px; height: 132px; }
.hero-seal svg text { fill: rgba(255,248,239,.82); font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.hero-seal .seal-mono { position: absolute; inset: 0; display: grid; place-content: center; font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--amber-soft); }

.hero-foot {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 18px 30px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid rgba(255,248,239,.22);
}
.hf-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; font-size: 14px; color: rgba(255,248,239,.85); }
.hf-meta b { color: var(--cream); font-weight: 600; }
.hf-meta .star { color: var(--amber); }
.hf-div { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,248,239,.4); }
.hero-scroll { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); }
.hero-scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll svg { animation: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--forest); color: var(--cream);
  overflow: hidden; white-space: nowrap; padding: 15px 0;
  border-block: 1px solid var(--forest-deep);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 19px; padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; }
.marquee span::after { content: "✦"; font-style: normal; color: var(--amber); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   STORY
   ============================================================ */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 92px); align-items: center; }
.story-copy h2 { margin: 16px 0 22px; }
.story-copy p { color: var(--muted); font-size: 18px; margin: 0 0 18px; max-width: 46ch; }
.story-copy p.lead-para { font-size: 21px; color: var(--ink); }
.story-stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 36px; }
.stat .n { font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; display: flex; align-items: baseline; gap: 5px; }
.stat .n .star { color: var(--amber); font-size: 26px; }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: .02em; }
.story-media { position: relative; }
.story-media .m-main { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.story-media .m-main img { width: 100%; height: 100%; object-fit: cover; }
.story-media .m-inset {
  position: absolute; right: -30px; bottom: -34px; width: 46%; aspect-ratio: 3/4;
  border-radius: 6px; overflow: hidden; border: 6px solid var(--cream); box-shadow: var(--shadow-md);
}
.story-media .m-inset img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer { background: var(--cream-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 6vw, 66px); }
.section-head h2 { margin: 14px 0 18px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.offer-card {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/4.1; box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.offer-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,18,18,.82) 0%, rgba(36,18,18,.15) 48%, rgba(36,18,18,.05) 100%); }
.offer-card .oc-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 22px 20px; color: #fff; }
.offer-card .oc-k { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-soft); }
.offer-card h3 { font-size: 26px; margin: 6px 0 6px; }
.offer-card p { font-size: 13.5px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.45; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease, margin .4s ease; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card:hover img { transform: scale(1.06); }
.offer-card:hover p { max-height: 80px; opacity: 1; }

/* ============================================================
   MENU
   ============================================================ */
.menu-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.menu-tabs { display: inline-flex; gap: 6px; background: var(--cream-2); padding: 6px; border-radius: 100px; margin: 22px 0 34px; }
.menu-tab { border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: 14.5px; padding: 10px 20px; border-radius: 100px; transition: background .25s, color .25s; }
.menu-tab.active { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp .5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--border); }
.menu-item:last-child { border-bottom: 0; }
.mi-name { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.mi-tag { display: inline-block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--forest); background: rgba(23,69,59,.09); padding: 3px 8px; border-radius: 100px; margin-left: 10px; vertical-align: middle; }
.mi-price { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 16px; color: var(--terracotta); }
.mi-desc { grid-column: 1 / -1; color: var(--muted); font-size: 15px; margin: 2px 0 0; max-width: 52ch; }
.menu-media { position: sticky; top: 100px; }
.menu-media .mm-img { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; }
.menu-media .mm-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-media .mm-cap { font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.menu-note { font-size: 12.5px; color: var(--muted); margin-top: 26px; font-style: italic; }

/* ============================================================
   GALLERY / THE SPACE
   ============================================================ */
.space { background: var(--forest); color: var(--cream); }
.space .section-head h2 { color: var(--cream); }
.space .section-head p { color: rgba(255,248,239,.72); }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.gtile { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gtile::after { content: ""; position: absolute; inset: 0; background: rgba(15,51,43,.16); opacity: 0; transition: opacity .35s; }
.gtile:hover img { transform: scale(1.07); }
.gtile:hover::after { opacity: 1; }
.gtile .g-plus { position: absolute; right: 14px; bottom: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,248,239,.9); color: var(--forest); display: grid; place-content: center; opacity: 0; transform: scale(.8); transition: opacity .35s, transform .35s; font-size: 18px; }
.gtile:hover .g-plus { opacity: 1; transform: scale(1); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,10,8,.92); display: none; align-items: center; justify-content: center; padding: 5vw; opacity: 0; transition: opacity .3s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: grid; place-content: center; transition: background .25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 28px; right: 28px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 48px; }
.rating-badge { display: flex; align-items: center; gap: 18px; }
.rating-badge .big { font-family: var(--serif); font-size: 64px; font-weight: 600; line-height: 1; }
.rating-badge .stars { color: var(--amber); font-size: 18px; letter-spacing: 3px; }
.rating-badge .sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: transform .35s, box-shadow .35s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; }
.review-card .quote { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink); margin: 0; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--terracotta); color: #fff; display: grid; place-content: center; font-weight: 600; font-family: var(--serif); }
.review-card .who .nm { font-weight: 600; font-size: 14.5px; }
.review-card .who .mt { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--cream-2); }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: stretch; }
.visit-info h2 { margin: 14px 0 28px; }
.vrow { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.vrow:first-of-type { border-top: 1px solid var(--border); }
.vrow .vi { flex: 0 0 22px; color: var(--terracotta); margin-top: 2px; }
.vrow .vk { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 5px; }
.vrow .vv { font-size: 16.5px; line-height: 1.5; margin: 0; }
.vrow .vv a:hover { color: var(--terracotta); }
.hours-list { display: grid; gap: 3px; }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; max-width: 280px; font-variant-numeric: tabular-nums; }
.hours-list .day { color: var(--muted); }
.visit-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.visit-media { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.visit-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit-map { width: 100%; height: 100%; border: 0; filter: saturate(.92); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border); display: grid; place-content: center; color: var(--ink); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.socials a:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); transform: translateY(-3px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--terracotta); color: #fff; text-align: center; }
.cta-band .container { padding-block: clamp(64px, 8vw, 104px); }
.cta-band h2 { color: #fff; margin: 0 auto 18px; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 48ch; margin: 0 auto 32px; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #d9c7ba; padding: clamp(56px, 7vw, 88px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .f-brand .brand { color: var(--cream); margin-bottom: 18px; }
.footer .f-brand p { font-size: 14.5px; color: #b09a8c; max-width: 30ch; margin: 0; }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--amber-soft); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a, .footer .f-contact div { font-size: 14.5px; color: #c9b6a8; }
.footer ul a:hover { color: var(--cream); }
.footer .f-contact { display: grid; gap: 12px; }
.footer .f-contact b { color: var(--cream); font-weight: 600; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 24px; font-size: 12.5px; color: #8f7c6f; }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .hero { padding-bottom: 30px; }
  .hero-seal { width: 100px; height: 100px; bottom: auto; top: 92px; right: 18px; }
  .hero-seal svg { width: 100px; height: 100px; }
  .hero-seal .seal-mono { font-size: 26px; }
  .hero-bg img { object-position: center 38%; }
  .story-grid, .menu-grid, .visit-grid, .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid { gap: 18px; }
  .menu-media { position: static; }
  .story-media { margin-bottom: 30px; }
  .story-media .m-inset { right: 18px; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .offer-card { aspect-ratio: 16/11; }
  .offer-card p { max-height: 80px; opacity: 1; margin-top: 6px; }
  .hero-cta .btn, .visit-cta .btn { flex: 1 1 auto; justify-content: center; }
}
