/* ── cs-tokens v1 — fluid design-token foundation. Paste verbatim; fill only the palette. ── */
:root {
  /* PALETTE — base + counterpoint */
  --bg:      #F8F5EF;
  --card:    #EFEAE0;
  --text:    #22241F;
  --muted:   #5C5F55;
  --accent:  #2E4A34;
  --accent2: #B0894C;
  --accent-rgb: 46,74,52;
  --accent-light: rgba(var(--accent-rgb),.08);
  --border:  rgba(0,0,0,.08);

  /* FLUID TYPE SCALE */
  --fs-xs:   clamp(.75rem, .7rem + .25vw, .875rem);
  --fs-sm:   clamp(.875rem, .8rem + .375vw, 1rem);
  --fs-base: clamp(1rem, .9rem + .5vw, 1.125rem);
  --fs-lg:   clamp(1.125rem, 1rem + .625vw, 1.375rem);
  --fs-xl:   clamp(1.375rem, 1.1rem + 1.375vw, 2rem);
  --fs-2xl:  clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --fs-3xl:  clamp(3rem, 2rem + 5vw, 5.5rem);

  /* FLUID SPACING SCALE */
  --sp-2xs:  clamp(.25rem, .2rem + .25vw, .375rem);
  --sp-xs:   clamp(.5rem, .4rem + .5vw, .75rem);
  --sp-sm:   clamp(.75rem, .6rem + .75vw, 1.125rem);
  --sp-md:   clamp(1rem, .8rem + 1vw, 1.5rem);
  --sp-lg:   clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --sp-xl:   clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --sp-2xl:  clamp(3rem, 2rem + 5vw, 6rem);

  /* MOTION */
  --ease-emphasis: cubic-bezier(.4,0,.2,1);
  --dur-fast: 150ms;
  --dur-mid:  300ms;
  --dur-slow: 600ms;
}

/* ── RESET & BASE ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY HELPERS ── */
.display-font { font-family: 'Cormorant Garamond', Georgia, serif; }
.eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent2);
  display: block;
  margin-bottom: var(--sp-xs);
}
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--sp-lg);
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity var(--dur-mid) var(--ease-emphasis),
              transform var(--dur-fast) var(--ease-emphasis);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 1; }
.btn-primary {
  background: var(--accent);
  color: #F8F5EF;
}
.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent-light); }
.btn-brass {
  border: 1.5px solid var(--accent2);
  color: var(--accent2);
  background: transparent;
}

/* ── BRASS HAIRLINE ── */
.brass-rule {
  width: 48px;
  height: 1px;
  background: var(--accent2);
  margin: var(--sp-md) 0;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-emphasis),
              transform var(--dur-slow) var(--ease-emphasis);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ── SECTION WRAPPER ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.section-header h2 { color: var(--accent); }
.section-header .brass-rule { margin: var(--sp-sm) auto; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) var(--sp-lg);
  background: rgba(34,36,31,.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur-mid) var(--ease-emphasis),
              padding var(--dur-mid) var(--ease-emphasis);
}
.site-nav.scrolled {
  background: rgba(248,245,239,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--sp-xs) var(--sp-lg);
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
}
.nav-logo-pill {
  background: rgba(22,38,24,.97);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}
.nav-logo {
  height: 36px;
  width: 36px;
  display: block;
  object-fit: contain;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  letter-spacing: .08em;
  color: #F8F5EF;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7);
  transition: color var(--dur-mid) var(--ease-emphasis),
              text-shadow var(--dur-mid) var(--ease-emphasis);
  line-height: 1;
}
.site-nav.scrolled .nav-wordmark {
  color: var(--accent);
  text-shadow: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}
.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(248,245,239,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  text-decoration: none;
  transition: color var(--dur-mid), text-shadow var(--dur-mid);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-nav.scrolled .nav-links a {
  color: var(--text);
  text-shadow: none;
}
.nav-links a:hover { color: var(--accent2); }
.site-nav.scrolled .nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta a {
  background: var(--accent);
  color: #F8F5EF !important;
  text-shadow: none !important;
  padding: 0 var(--sp-md);
  border-radius: 2px;
  min-height: 44px;
}
.nav-links .nav-cta a:hover { opacity: .85; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  color: #F8F5EF;
  transition: color var(--dur-mid);
}
.site-nav.scrolled .nav-burger { color: var(--accent); }
.burger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-mid) var(--ease-emphasis),
              opacity var(--dur-mid);
  border-radius: 1px;
}

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(22,38,24,.97); /* ND-1: fully opaque */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease-emphasis);
  padding: var(--sp-2xl) var(--sp-lg);
}
.nav-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  color: rgba(248,245,239,.8); /* ND-3: explicit color on button */
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  gap: 0;
}
.drawer-nav a {
  display: block; /* ND-2: block for 44px height */
  padding: 14px 24px; /* ND-2: padding achieves 44px+ */
  min-height: 44px;
  color: #F8F5EF; /* ND-3: explicit color on <a> */
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  text-align: center;
  border-bottom: 1px solid rgba(248,245,239,.1);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-nav a:hover { color: var(--accent2); }
.drawer-book {
  margin-top: var(--sp-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--sp-xl);
  background: var(--accent2);
  color: #F8F5EF !important;
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
}

/* ── HERO (canonical scroll-scrub) ── */
.hero { position: relative; height: 300vh; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.42) 40%,
    rgba(0,0,0,.28) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-2xl) var(--sp-lg);
  padding-top: calc(var(--sp-2xl) + 60px);
}
.hero-eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(22,38,24,.55);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--sp-md);
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: .02em;
  color: #F8F5EF;
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.9), 0 2px 10px rgba(0,0,0,.7), 0 0 60px rgba(0,0,0,.5);
  margin-bottom: var(--sp-sm);
}
.hero-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-base);
  color: rgba(248,245,239,.88);
  background: rgba(22,38,24,.5);
  backdrop-filter: blur(4px);
  padding: 5px 18px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: var(--sp-xl);
  letter-spacing: .03em;
}
.hero-ctas {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-ctas .btn {
  min-height: 44px;
}
.scroll-hint {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,38,24,.6);
  backdrop-filter: blur(4px);
  padding: 7px 18px;
  border-radius: 100px;
  color: rgba(248,245,239,.85);
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 4;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  position: relative;
  height: 42vh;
  min-height: 280px;
  max-height: 480px;
  overflow: hidden;
  margin-top: 64px;
}
.page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,74,52,.88) 0%, rgba(46,74,52,.45) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: var(--sp-2xl);
  padding-top: 80px;
  text-align: center;
}
.page-banner-overlay .eyebrow { color: var(--accent2); }
.page-banner-overlay h1 {
  color: #F8F5EF;
  font-size: var(--fs-2xl);
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

/* ── STORY SECTION ── */
.story-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.story-text h2 { color: var(--accent); margin-bottom: var(--sp-sm); }
.story-text p {
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}
.story-text p:last-of-type { margin-bottom: 0; }
.story-accent-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.story-accent-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--accent2);
  border-radius: 4px;
  z-index: -1;
}
.story-accent-img img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── ACCENT BAND ── */
.accent-band {
  background: var(--accent);
  color: #F8F5EF;
  padding: var(--sp-lg) var(--sp-lg);
  text-align: center;
}
.accent-band p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 300;
  letter-spacing: .04em;
  font-style: italic;
  max-width: 60ch;
  margin: 0 auto;
}

/* ── HOOK / WORK STRIP ── */
.hook-section {
  background: var(--card);
  padding: var(--sp-2xl) 0;
}
.hook-section .section-inner { text-align: center; }
.hook-section h2 { color: var(--accent); margin-bottom: var(--sp-md); }
.hook-strip {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
  justify-content: flex-start;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--sp-lg));
}
.hook-strip::-webkit-scrollbar { display: none; }
.hook-tile {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 200px;
  height: 167px;
  border-radius: 100px 100px 8px 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform var(--dur-mid) var(--ease-emphasis),
              box-shadow var(--dur-mid);
  border: 1px solid rgba(176,137,76,.25);
}
.hook-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(46,74,52,.18);
}
.hook-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hook-strip-wrap { display: flex; justify-content: center; }
@media (min-width: 1000px) {
  .hook-strip {
    justify-content: center;
    overflow-x: visible;
    margin: 0;
    padding: var(--sp-md) 0 var(--sp-lg);
  }
}
.hook-cta { margin-top: var(--sp-lg); text-align: center; }

/* ── SERVICES SECTION ── */
.services-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.service-card {
  background: var(--card);
  border-radius: 4px;
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-mid) var(--ease-emphasis),
              transform var(--dur-mid);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(46,74,52,.1);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: var(--accent2);
}
.service-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.service-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--sp-xs);
}
.service-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.service-book {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 2px;
  border-bottom: 1px solid var(--accent2);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.service-book:hover { color: var(--accent2); }
.services-tagline {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--sp-xl);
}
.services-section .section-inner > .btn { display: block; width: fit-content; margin: 0 auto; }

/* ── SPACE SECTION ── */
.space-section {
  background: var(--accent);
  padding: var(--sp-2xl) 0;
}
.space-section .eyebrow { color: var(--accent2); }
.space-section .section-header h2 { color: #F8F5EF; }
.space-section .brass-rule { background: var(--accent2); }
.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.space-frame {
  border-radius: 4px;
  overflow: hidden;
}
.space-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.space-frame.wide img { aspect-ratio: 4/3; }
.space-caption {
  text-align: center;
  color: rgba(248,245,239,.7);
  font-size: var(--fs-xs);
  font-style: italic;
  margin-top: var(--sp-sm);
}

/* ── GIFT VOUCHER SECTION ── */
.voucher-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.voucher-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border: 1px solid var(--accent2);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--card) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.voucher-card::before,
.voucher-card::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(176,137,76,.25);
  border-radius: 50%;
}
.voucher-card::before { top: -20px; right: -20px; }
.voucher-card::after  { bottom: -20px; left: -20px; }
.voucher-leaf {
  width: 48px;
  height: 48px;
  color: var(--accent2);
  margin: 0 auto var(--sp-md);
}
.voucher-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--sp-xs);
}
.voucher-desc {
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.voucher-terms {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  margin-top: var(--sp-md);
}

/* ── VISIT SECTION ── */
.visit-section {
  background: var(--card);
  padding: var(--sp-2xl) 0;
}
.visit-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.visit-details h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-xl);
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.visit-detail-row {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  margin-bottom: var(--sp-sm);
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent2);
  margin-top: 2px;
}
.visit-detail-text {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.6;
}
.visit-detail-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.visit-detail-text a:hover { color: var(--accent2); }
.visit-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}
.visit-ctas .btn {
  width: 100%;
  justify-content: center;
}
.visit-map-link {
  background: var(--accent);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  min-height: 200px;
  position: relative;
  color: #F8F5EF;
  text-decoration: none;
  transition: opacity var(--dur-mid);
}
.visit-map-link:hover { opacity: .9; }
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  background: var(--accent);
  color: #F8F5EF;
  padding: var(--sp-xl);
  text-align: center;
}
.map-placeholder svg { opacity: .7; }
.map-placeholder p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 300;
}
.map-placeholder small {
  font-size: var(--fs-xs);
  opacity: .7;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── GALLERY GRID ── */
.gallery-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-slow) var(--ease-emphasis);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-sm) var(--sp-md);
  background: linear-gradient(transparent, rgba(22,38,24,.7));
  color: rgba(248,245,239,.85);
  font-size: var(--fs-xs);
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--dur-mid);
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--accent);
  color: rgba(248,245,239,.85);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(248,245,239,.15);
  margin-bottom: var(--sp-lg);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-logo-pill {
  background: rgba(22,38,24,.97);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.footer-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  letter-spacing: .08em;
  color: #F8F5EF;
  line-height: 1.2;
}
.footer-tagline {
  font-size: var(--fs-xs);
  color: rgba(248,245,239,.6);
  font-style: italic;
  line-height: 1.5;
  max-width: 24ch;
}
.footer-nav h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-md);
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: var(--sp-xs); }
.footer-nav ul li a {
  color: rgba(248,245,239,.8);
  font-size: var(--fs-sm);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast);
}
.footer-nav ul li a:hover { color: var(--accent2); }
.footer-contact h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-md);
}
.footer-contact p {
  font-size: var(--fs-sm);
  color: rgba(248,245,239,.8);
  margin-bottom: var(--sp-xs);
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(248,245,239,.8);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast);
}
.footer-contact a:hover { color: var(--accent2); }
.footer-socials {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: rgba(248,245,239,.7);
  border: 1px solid rgba(248,245,239,.25);
  border-radius: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.footer-social-link:hover { color: var(--accent2); border-color: var(--accent2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(248,245,239,.5);
}

/* ── VISIT PAGE SPECIFIC ── */
.visit-page-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}
.visit-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.visit-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.visit-page-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--sp-lg);
}
.visit-info-block {
  margin-bottom: var(--sp-lg);
}
.visit-info-block h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: var(--sp-xs);
}
.visit-info-block p,
.visit-info-block a {
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.6;
}
.visit-info-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.visit-info-block a:hover { color: var(--accent2); }
.visit-page-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}
.visit-page-ctas .btn { width: 100%; justify-content: center; }
.visit-space-img {
  border-radius: 4px;
  overflow: hidden;
}
.visit-space-img img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  display: block;
}

/* ── SERVICES PAGE ── */
.services-page-section {
  background: var(--bg);
  padding: var(--sp-2xl) 0;
}

/* ── GALLERY PAGE ── */
.gallery-work-section { background: var(--bg); padding: var(--sp-2xl) 0; }
.gallery-space-section { background: var(--card); padding: var(--sp-2xl) 0; }

/* ── FOCUS STATES ── */
:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .story-accent-img { order: -1; }
  .story-accent-img img { aspect-ratio: 16/9; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-page-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry.gallery-space { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .space-grid { grid-template-columns: 1fr; }
  .space-frame img { aspect-ratio: 16/9 !important; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry.gallery-space { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) {
  .nav-burger { display: none; }
  .nav-drawer { display: none; }
}

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