/* ============================================================
   otherwise — style.css
   ------------------------------------------------------------
   Sections (in order):
     1. Tokens & reset
     2. Typography
     3. Layout helpers
     4. Components (buttons, marquee, eyebrows)
     5. Custom cursor
     6. Nav
     7. Hero
     8. About
     9. Signatures
    10. Menu
    11. Gallery
    12. Visit
    13. Footer
    14. Responsive overrides
   ============================================================ */


/* =====================  1. Tokens & reset  ===================== */
:root {
  /* palette — pulled from the green logo */
  --sage:        #9DA37A;
  --sage-deep:   #7B8159;
  --sage-darker: #5C6240;
  --sage-soft:   #C9CDB1;

  --cream:       #F2EDE2;
  --cream-soft:  #EAE3D2;
  --paper:       #FBF8F1;

  --ink:         #1F1F1B;
  --ink-soft:    #4B4B45;
  --ink-mute:    #8A8A82;

  --line:        rgba(31,31,27,0.10);
  --line-strong: rgba(31,31,27,0.22);

  /* spacing */
  --max:    1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;

  /* type */
  --serif: 'Fraunces', 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* motion */
  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-in: cubic-bezier(.6,.05,.35,1);
  --ease-out:cubic-bezier(.2,.9,.3,1);

  /* z */
  --z-cursor: 9999;
  --z-nav:    100;
  --z-modal:  90;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: transparent; border: 0; }
a { color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* paper grain overlay */
body::before {
  content:""; position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: .35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.16  0 0 0 0 0.14  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

::selection { background: var(--sage); color: var(--paper); }


/* =====================  2. Typography  ===================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}
h1 { font-size: clamp(48px, 9.6vw, 156px); }
h2 { font-size: clamp(38px, 6.4vw, 96px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
h4 { font-size: clamp(18px, 1.8vw, 22px); }

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
}

p { margin: 0; }


/* =====================  3. Layout helpers  ===================== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

section {
  padding-block: clamp(90px, 14vw, 180px);
  position: relative;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: clamp(50px, 8vw, 100px);
}
.section-head > * { min-width: 0; }
.section-head > :empty { display: none; }
.section-head .lede {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 38ch;
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: .22em;
  text-transform: uppercase;
}


/* =====================  4. Components  ===================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { display:inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary::before {
  content:""; position:absolute; inset:0; background: var(--sage-deep);
  transform: translateY(101%); transition: transform .5s var(--ease); z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  background: var(--sage);
  color: var(--paper);
  border-color: var(--sage);
}
.btn-ghost:hover { color: var(--paper); border-color: var(--sage-deep); }
.btn-ghost::before {
  content:""; position:absolute; inset:0; background: var(--sage-deep);
  transform: translateY(101%); transition: transform .5s var(--ease); z-index: -1;
}
.btn-ghost:hover::before { transform: translateY(0); }

/* Pill icon button */
.icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-grid; place-items: center;
  transition: all .3s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 22px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-item .star {
  display: inline-block; width: 14px; height: 14px;
  color: var(--sage);
}


/* =====================  5. Custom cursor  ===================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor.is-hover { width: 56px; height: 56px; background: var(--sage); }
.cursor.is-drag  { width: 80px; height: 80px; }
.cursor::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--paper);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0; transition: opacity .25s var(--ease);
  white-space: nowrap;
}
.cursor.is-drag::after { opacity: 1; }

@media (hover: none), (max-width: 820px) { .cursor { display: none; } body { cursor: auto !important; } }

/* keep iframes usable while custom cursor is active */
body iframe { cursor: auto; }

/* image error fallback */
.img-fallback {
  object-fit: cover;
  object-position: center;
  background: linear-gradient(160deg, var(--sage-soft), var(--sage-deep));
}


/* =====================  6. Nav  ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  background: rgba(251,248,241,0);
}
.nav.is-scrolled {
  background: rgba(251,248,241,0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 2px;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: 24px;
  position: relative;
  z-index: 2;
  min-height: 56px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; position: relative; z-index: 2; margin-block: -10px; }
.brand img { height: clamp(64px, 7.5vw, 108px); width: auto; display: block; }
.brand .wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content:""; position:absolute; left:0; right:0; bottom: 2px;
  height: 1px; background: var(--sage-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.lang-toggle {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .25s var(--ease);
}
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }

.menu-btn { display: none; padding: 10px; position: relative; z-index: 130; }
.menu-btn span { display:block; width:22px; height:1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }


/* =====================  7. Hero  ===================== */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding-top: 220px;
  padding-bottom: 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(.78) saturate(.95);
  will-change: transform;
}
.hero-media::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,31,27,.55) 0%, rgba(31,31,27,0) 30%, rgba(31,31,27,0) 60%, rgba(251,248,241,.95) 100%);
}

.hero-tag {
  position: absolute;
  top: 50%;
  inset-inline-end: clamp(20px, 3vw, 50px);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(157,163,122,.25);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero h1 {
  color: var(--paper);
  font-weight: 200;
  letter-spacing: -0.03em;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) span { animation-delay: .22s; }
.hero h1 em { color: var(--sage-soft); font-style: italic; }

.hero-bottom {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(30px, 5vw, 80px);
}
.hero-sub {
  max-width: 44ch;
  color: var(--cream);
  opacity: .85;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 60px;
  inset-inline-start: var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}

.scroll-cue {
  position: absolute;
  bottom: 50px;
  inset-inline-end: var(--gutter);
  width: 50px; height: 80px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px;
  display: grid; place-items: center;
}
.scroll-cue::after {
  content:""; width: 4px; height: 10px;
  background: var(--cream);
  border-radius: 4px;
  animation: cueDrop 1.8s ease-in-out infinite;
}


/* =====================  8. About  ===================== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}
.about-text { position: sticky; top: 110px; }
.about-text .eyebrow { margin-bottom: 24px; }
.about-text h2 { margin-bottom: 36px; }
.about-text p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.about-text p + p { margin-top: 18px; }
.about-text .lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 28px;
}
.about-text .lead em { color: var(--sage-deep); font-style: italic; }

.about-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-stat .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--ink);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat .lbl {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.about-media {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
}
.about-media .img-main {
  grid-column: 1 / -1;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.about-media .img-small {
  grid-column: 4 / -1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: -110px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.3);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.about-media .img-main:hover img,
.about-media .img-small:hover img { transform: scale(1.12); }


/* =====================  9. Signatures  ===================== */
.signatures {
  background: var(--paper);
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.sig-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--ink);
  cursor: pointer;
  isolation: isolate;
}
.sig-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
  filter: brightness(.85) saturate(.92);
  will-change: transform;
}
.sig-card:hover img { transform: scale(1.14); filter: brightness(.7); }

.sig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,31,27,.05) 0%, rgba(31,31,27,.15) 50%, rgba(31,31,27,.85) 100%);
}
.sig-num {
  position: absolute; top: 24px;
  inset-inline-start: 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.8);
}
.sig-content {
  position: absolute;
  inset-inline-start: 28px;
  inset-inline-end: 28px;
  bottom: 28px;
  color: var(--paper);
}
.sig-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 12px;
}
.sig-desc {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .6s var(--ease), opacity .5s var(--ease) .1s, margin-top .6s var(--ease);
}
.sig-card:hover .sig-desc { max-height: 80px; opacity: 1; margin-top: 0; }

.sig-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sig-meta .price { font-family: var(--serif); font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--sage-soft); }


/* =====================  10. Menu  ===================== */
.menu {
  background: var(--cream);
}
.menu-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 2px;
  background: var(--paper);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab { white-space: nowrap; flex-shrink: 0; }
.menu-tab {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .35s var(--ease);
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active { background: var(--ink); color: var(--paper); }

/* Auto-cycle progress indicator — fills on the active tab, resets on change */
.menu-tab { position: relative; overflow: hidden; }
.menu-tab::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}
.menu-tabs.is-auto .menu-tab.is-active::after {
  opacity: .9;
  animation: tabProgress 4.5s linear forwards;
}
@keyframes tabProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.menu-pane { display: none; }
.menu-pane.is-active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); animation: fadeUp .6s var(--ease); }

.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-block: 22px;
  border-bottom: 1px dashed var(--line-strong);
  transition: padding-inline .4s var(--ease);
}
.menu-row:hover { padding-inline-start: 12px; }

.menu-row .row-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sage-deep);
  letter-spacing: .14em;
  min-width: 30px;
}
.menu-row .row-name {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--ink);
}
.menu-row .row-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--sage-deep);
  white-space: nowrap;
}
.menu-row .row-desc {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 50ch;
}

.menu-note {
  margin-top: 50px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}


/* =====================  11. Gallery  ===================== */
.gallery { background: var(--paper); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-soft);
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
  filter: saturate(.95);
  will-change: transform;
}
.gal-item:hover img { transform: scale(1.08); filter: saturate(1.1); }
.gal-item::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,31,27,.7));
  opacity: 0; transition: opacity .5s var(--ease);
}
.gal-item:hover::after { opacity: 1; }

.gal-caption {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all .5s var(--ease);
}
.gal-item:hover .gal-caption { opacity: 1; transform: none; }

/* size variants */
.gal-item.is-tall   { grid-column: span 4; grid-row: span 4; }
.gal-item.is-wide   { grid-column: span 8; grid-row: span 3; }
.gal-item.is-square { grid-column: span 4; grid-row: span 3; }


/* =====================  12. Visit  ===================== */
.visit {
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
}
.info-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  gap: 18px;
  transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); border-color: var(--sage); }
.info-card h4 { font-weight: 400; color: var(--ink); }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.info-row:last-child { border-bottom: 0; }
.info-row span { color: var(--ink-soft); }
.info-row b { color: var(--ink); font-weight: 500; }
.info-card a { color: var(--sage-deep); text-decoration: none; transition: color .3s; }
.info-card a:hover { color: var(--ink); }

.visit-info { display: grid; gap: 18px; }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage);
  min-height: 480px;
  position: relative;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.25);
}
.map-card iframe {
  width: 100%; height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(.25) contrast(.95);
}
.map-open-btn {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.35);
  transition: background .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
}
.map-open-btn:hover { background: var(--sage-deep); transform: translateY(-2px); }
.map-open-btn svg { display: block; }


/* =====================  13. Footer  ===================== */
footer {
  background: var(--ink);
  color: rgba(245,240,230,.75);
  padding-block: clamp(60px, 8vw, 90px) 32px;
  position: relative;
  overflow: hidden;
}
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 280px);
  color: rgba(245,240,230,.06);
  line-height: .9;
  letter-spacing: -0.04em;
  position: absolute;
  bottom: -40px;
  inset-inline-start: var(--gutter);
  pointer-events: none;
  user-select: none;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(245,240,230,.12);
  position: relative;
  z-index: 1;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot-brand .wordmark {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.foot-brand .tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 18px;
}
.foot-brand p { font-size: 14px; max-width: 32ch; opacity: .8; line-height: 1.6; }

.foot-col h5 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--cream);
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 6px 0; font-size: 14px; }
.foot-col a { text-decoration: none; transition: color .25s var(--ease); display: inline-flex; align-items: center; gap: 6px; }
.foot-col a:hover { color: var(--sage); }

.foot-socials { display: flex; gap: 10px; margin-top: 18px; }
.foot-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,230,.18);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.foot-socials a:hover { background: var(--sage); color: var(--ink); border-color: var(--sage); transform: translateY(-3px); }

.foot-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(245,240,230,.5);
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}


/* =====================  14. Responsive  ===================== */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-text { position: static; }
  .about-media .img-small { margin-top: -60px; }
  .visit-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-grid .sig-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  .menu-btn { display: block; }
  .nav-links { display: none !important; }

  body.mmenu-open {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .nav.is-scrolled,
  body.mmenu-open .nav { background: rgba(251,248,241,0.92); }

  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-tag, .scroll-cue { display: none; }
  .menu-pane.is-active { grid-template-columns: 1fr; }
  .gal-item.is-tall   { grid-column: span 12; grid-row: span 3; }
  .gal-item.is-wide   { grid-column: span 12; grid-row: span 2; }
  .gal-item.is-square { grid-column: span 6;  grid-row: span 2; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-stat:last-child { grid-column: 1 / -1; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =====================  Mobile Menu (dedicated dialog)  ===================== */
/* Hidden entirely on desktop; shown only on narrow viewports */
.mmenu { display: none; }

@media (max-width: 820px) {
  .mmenu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 120;
  }

  /* Completely inert & invisible when closed — no pointer events, no a11y, no paint cost */
  .mmenu[aria-hidden="true"] { pointer-events: none; }
  .mmenu[aria-hidden="true"] .mmenu-backdrop { opacity: 0; }
  .mmenu[aria-hidden="true"] .mmenu-panel    { transform: translateX(100%); }

  .mmenu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 27, 0.38);
    opacity: 1;
    transition: opacity .35s var(--ease);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .mmenu-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(88%, 380px);
    background: var(--paper);
    transform: translateX(0);
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
    display: flex;
    flex-direction: column;
    padding: 22px 28px 28px;
    box-shadow: -30px 0 80px -20px rgba(0,0,0,.28);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mmenu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .mmenu-mark {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .mmenu-mark em { font-style: normal; color: var(--sage); margin-inline-start: 1px; }

  .mmenu-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  }
  .mmenu-close:hover,
  .mmenu-close:focus-visible { background: var(--ink); color: var(--paper); border-color: var(--ink); outline: none; }

  .mmenu-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0 0;
    flex: 1;
  }
  .mmenu-nav a {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: baseline;
    gap: 12px;
    padding: 20px 2px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: var(--ink);
    transition: color .25s var(--ease), transform .3s var(--ease), padding-inline-start .3s var(--ease);
  }
  .mmenu-nav a:hover,
  .mmenu-nav a:focus-visible { color: var(--sage-deep); padding-inline-start: 10px; outline: none; }
  .mmenu-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--sage);
    letter-spacing: .2em;
    align-self: center;
  }
  .mmenu-label {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .mmenu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
  }
  .mmenu-tag {
    font-family: var(--serif);
    font-style: italic;
    color: var(--sage-deep);
    font-size: 16px;
  }
  .mmenu-ig {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .25s var(--ease);
  }
  .mmenu-ig:hover { color: var(--sage-deep); }

  /* Staggered entry for nav links — only after panel is in */
  .mmenu[aria-hidden="false"] .mmenu-nav a {
    animation: mmenuLinkIn .5s var(--ease) both;
  }
  .mmenu[aria-hidden="false"] .mmenu-nav a:nth-child(1) { animation-delay: .12s; }
  .mmenu[aria-hidden="false"] .mmenu-nav a:nth-child(2) { animation-delay: .17s; }
  .mmenu[aria-hidden="false"] .mmenu-nav a:nth-child(3) { animation-delay: .22s; }
  .mmenu[aria-hidden="false"] .mmenu-nav a:nth-child(4) { animation-delay: .27s; }
  .mmenu[aria-hidden="false"] .mmenu-nav a:nth-child(5) { animation-delay: .32s; }

  @keyframes mmenuLinkIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: none; }
  }

  /* Hamburger → X animation */
  body.mmenu-open .menu-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.mmenu-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.mmenu-open .menu-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* Respect reduced motion */
@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .mmenu-panel, .mmenu-backdrop { transition: none !important; }
  .mmenu[aria-hidden="false"] .mmenu-nav a { animation: none !important; }
}

@media (max-width: 540px) {
  .sig-grid { grid-template-columns: 1fr; }
  .sig-grid .sig-card:last-child { aspect-ratio: 3/4; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
