:root {
  --ink: #1a1e2e;
  --ink-soft: #3e4462;
  --cream: #e8edf6;
  --paper: #f0f3fa;
  --sand: #6fccde;
  --clay: #2a3a86;
  --olive: #4a5eab;
  --line: rgba(26, 30, 46, 0.14);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #e8ecf4;
  --ink-soft: #a4adc4;
  --cream: #111628;
  --paper: #0c1020;
  --sand: #1e2c6b;
  --clay: #6fccde;
  --olive: #8daee0;
  --line: rgba(232, 236, 244, 0.13);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  transition: color .45s ease, background-color .45s ease;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
::selection { color: #fff; background: var(--clay); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: min(1440px, calc(100vw - 48px)); margin-inline: auto; }
.section { padding-block: 150px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(48px, calc((100vw - 1440px) / 2 + 24px));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: height .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  height: 78px;
  color: var(--ink);
  background: rgba(240, 243, 250, .94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
html[data-theme="dark"] .site-header.scrolled { background: rgba(12, 16, 32, .94); }
.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.wordmark img { display: block; width: auto; height: 130px; object-fit: contain; }
/* ── Navbar logo switching ── */
/* Base: hide both, then show only the correct one per state */
.logo-white,
.logo-colored { display: none; }
/* Transparent header (not scrolled) — always white logo regardless of mode */
.site-header:not(.scrolled) .logo-white { display: block; }
.site-header:not(.scrolled) .logo-colored { display: none; }
/* Scrolled header (light mode): show colored logo only */
.site-header.scrolled .logo-white { display: none; }
.site-header.scrolled .logo-colored { display: block; }
/* Scrolled header (dark mode): show white logo only */
html[data-theme="dark"] .site-header.scrolled .logo-white { display: block; }
html[data-theme="dark"] .site-header.scrolled .logo-colored { display: none; }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav a {
  position: relative;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
/* ── Instagram CTA — premium pill design ── */
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .35s ease, border-color .35s ease, transform .25s ease, box-shadow .35s ease;
}
.nav-cta::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.nav-cta .arrow-icon { font-size: 10px; opacity: .65; transition: transform .3s var(--ease), opacity .3s ease; }
.nav-cta:hover .arrow-icon { transform: translate(2px, -2px); opacity: 1; }
/* Scrolled state — adapt to light background */
.site-header.scrolled .nav-cta {
  border-color: var(--line);
  background: transparent;
}
.site-header.scrolled .nav-cta::before {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.site-header.scrolled .nav-cta:hover {
  background: rgba(42, 58, 134, .06);
  border-color: var(--clay);
  box-shadow: 0 4px 18px rgba(42, 58, 134, .08);
}
html[data-theme="dark"] .site-header.scrolled .nav-cta {
  border-color: rgba(232,236,244,.18);
  background: rgba(232,236,244,.05);
}
html[data-theme="dark"] .site-header.scrolled .nav-cta:hover {
  background: rgba(232,236,244,.1);
  border-color: rgba(232,236,244,.35);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.theme-toggle {
  position: relative;
  width: 58px;
  height: 30px;
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.theme-icon { position: relative; z-index: 2; width: 13px; height: 13px; display: grid; place-items: center; }
.theme-icon svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.theme-knob {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  transition: transform .45s var(--ease);
}
html[data-theme="dark"] .theme-knob { transform: translateX(28px); }
.theme-icon-sun { color: var(--ink); }
.site-header:not(.scrolled) .theme-icon-sun { color: #1a1e2e; }
.theme-icon-moon { color: currentColor; }
html[data-theme="dark"] .theme-icon-moon { color: #0c1020; }
.theme-toggle:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #131b3d;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; transform: scale(1.04); animation: heroReveal 1.8s var(--ease) forwards; }
.hero-overlay { background: linear-gradient(90deg, rgba(12,16,32,.80) 0%, rgba(12,16,32,.38) 55%, rgba(12,16,32,.30) 100%), linear-gradient(0deg, rgba(12,16,32,.58), transparent 52%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(78px, 11vh, 126px); }
.eyebrow {
  margin: 0 0 28px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
h1, h2, blockquote p { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .96; }
h1 { max-width: 960px; margin: 0; font-size: clamp(62px, 8.2vw, 132px); }
h1 em, h2 em { font-weight: 400; color: var(--sand); }
/* Hero "Stay for the feeling" always uses light blue for legibility */
.hero h1 em { color: #6fccde; }
.hero-intro { max-width: 500px; margin: 36px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 38px; margin-top: 42px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), transform .3s var(--ease);
}
.button:hover { color: var(--paper); background: var(--ink); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }
/* ── Hero "Plan your visit" — premium frosted glass pill ── */
.button-light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 4px 20px rgba(0,0,0,.10);
}
.button-light:hover {
  color: #fff;
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 8px 32px rgba(0,0,0,.18);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.light-link { color: #fff; }
/* ── Hero "Explore Trunked" — elegant capsule link ── */
.hero-actions .light-link {
  gap: 10px;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,.88);
  font-size: 11px;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s ease, transform .3s var(--ease), box-shadow .35s var(--ease);
}
.hero-actions .light-link:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.hero-actions .light-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 11px;
  transition: transform .4s var(--ease), background .35s ease;
}
.hero-actions .light-link:hover span {
  transform: translateY(2px);
  background: rgba(255,255,255,.22);
}
.hero-index { position: absolute; z-index: 2; right: 48px; bottom: 36px; margin: 0; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .18em; }

.intro { display: grid; grid-template-columns: 1fr 3fr; gap: 8%; }
.intro-aside { display: flex; flex-direction: column; justify-content: space-between; }
.section-number { margin: 0; color: #6e7aa0; font-family: var(--serif); font-size: 13px; }
h2 { margin: 0; font-size: clamp(48px, 6vw, 92px); }
.intro-copy h2 { max-width: 930px; }
.intro-copy h2 em, .gallery h2 em { color: var(--clay); }
.intro-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 700px; margin: 68px 0 0 auto; }
.intro-detail p { margin: 0; color: var(--ink-soft); }

.feature-image { padding-bottom: 24px; }
.feature-image figure { position: relative; height: min(72vw, 820px); margin: 0; overflow: hidden; background: #131b3d; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(.78) contrast(1.02); transform: scale(1.02); }
.feature-image figcaption {
  position: absolute;
  inset: auto 40px 36px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 36px);
}

.offerings { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 8%; margin-bottom: 100px; }
.section-heading h2 em { color: var(--olive); }
.offering-list { border-top: 1px solid var(--line); }
.offering {
  display: grid;
  grid-template-columns: 80px minmax(280px, 1.25fr) 1fr;
  gap: 42px;
  align-items: center;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}
.offering-number { align-self: start; margin: 9px 0 0; color: #7a86b0; font-size: 10px; letter-spacing: .14em; }
.offering-title { display: flex; align-items: center; gap: 26px; }
.offering-title h3 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.2vw, 66px); font-weight: 400; line-height: 1; }
.line-icon { width: 30px; color: var(--clay); font-family: Georgia, serif; font-size: 24px; text-align: center; }
.offering > p:last-child { max-width: 470px; margin: 0; color: var(--ink-soft); }
.offerings-note { display: flex; justify-content: flex-end; align-items: center; gap: 32px; margin-top: 52px; }
.offerings-note p { margin: 0; color: var(--ink-soft); }

.quote-section {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #0e1428;
}
.quote-media, .quote-overlay { position: absolute; inset: 0; }
.quote-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.72); }
.quote-overlay { background: rgba(12,16,32,.65); }
.quote-section blockquote { position: relative; z-index: 2; margin-block: 0; text-align: center; }
.quote-section blockquote p { max-width: 1000px; margin: 0 auto; font-size: clamp(48px, 7vw, 105px); }
.quote-section blockquote footer { margin-top: 40px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }

.gallery { overflow: hidden; }
.gallery-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 8%; align-items: end; margin-bottom: 90px; }
.gallery-heading h2 { margin-bottom: 34px; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 24px; align-items: end; }
.gallery-card { position: relative; display: block; height: 470px; overflow: hidden; color: #fff; background: #c4d0e0; }
.gallery-card-tall { height: 650px; }
.gallery-card::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(18,16,14,.68)); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .7s var(--ease), filter .7s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(.95); }
.gallery-card span { position: absolute; z-index: 2; bottom: 22px; left: 24px; font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }

.visit { overflow: hidden; color: #fff; background: #1a1e2e; }
.visit-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12%; padding-block: 145px; }
.visit-heading h2 { font-size: clamp(48px, 6.5vw, 98px); }
.visit-heading h2 em { color: #6fccde; }
.visit-details { display: grid; gap: 55px; align-content: end; }
.detail-block { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.2); }
.detail-block address, .detail-block p:not(.detail-label) { margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 17px; font-style: normal; }
.detail-label { margin: 0 0 18px; color: #fff; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
/* ── Visit section "Message on Instagram" — premium pill with icon ── */
.button-ig {
  gap: 10px;
}
.button-ig::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

.visit-marquee { display: flex; width: max-content; padding-block: 12px 22px; color: rgba(255,255,255,.13); font-family: var(--serif); font-size: clamp(68px, 10vw, 150px); line-height: 1; white-space: nowrap; animation: marquee 35s linear infinite; }

.site-footer { padding: 92px 0 34px; color: #1a1e2e; background: #6fccde; }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 76px; }
.footer-top > p { margin: 0; color: #3e4462; }
.footer-brand { display: flex; align-items: flex-start; color: inherit; text-decoration: none; }
.footer-logo { display: block; width: auto; height: 182px; }
/* Footer logo: always white — footer background is always blue (#6fccde) */
.footer-logo-colored { display: none; }
.footer-logo-white { display: block; }
.footer-tagline { margin: 0; color: #3e4462; font-size: 18px; line-height: 1.5; }
/* Footer navigation columns */
.footer-nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-heading { margin: 0 0 8px; color: #1a1e2e; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.footer-col address { margin: 0; color: #3e4462; font-size: 15px; font-style: normal; line-height: 1.6; }
.footer-link { color: #3e4462; font-size: 15px; text-decoration: none; line-height: 1.6; transition: color .2s ease; }
.footer-link:hover { color: #1a1e2e; }
.footer-col .text-link { font-size: 11px; padding-bottom: 4px; color: #3e4462; }
.footer-col .text-link:hover { color: #1a1e2e; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(26,30,46,.25); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #3e4462; font-size: 10px; font-weight: 500; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.footer-bottom a:hover { color: #1a1e2e; }

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  z-index: 90;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(240, 243, 250, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .4s ease, visibility .4s ease, transform .4s var(--ease), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
html[data-theme="dark"] .back-to-top {
  background: rgba(12, 16, 32, .82);
  border-color: rgba(232,236,244,.13);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
  box-shadow: 0 6px 20px rgba(42, 58, 134, .18);
  transform: translateY(-2px);
}
html[data-theme="dark"] .back-to-top:hover {
  background: #6fccde;
  border-color: #6fccde;
  color: #0c1020;
  box-shadow: 0 6px 20px rgba(111, 204, 222, .2);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-to-top:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes heroReveal { from { opacity: .45; transform: scale(1.12); } to { opacity: 1; transform: scale(1.04); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 960px) {
  :root { --shell: min(100% - 48px, 760px); }
  .section { padding-block: 105px; }
  .site-header { height: 86px; padding-inline: 24px; }
  .site-header.scrolled { height: 72px; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 10px;
    border: 0;
    color: inherit;
    background: transparent;
  }
  .menu-toggle span { display: block; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 34px;
    color: var(--paper);
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
  }
  .primary-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav a { font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .primary-nav .theme-toggle { margin-top: 16px; color: var(--paper); }
  .primary-nav .nav-cta { margin-top: 4px; padding: 14px 24px; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border-color: rgba(240,243,250,.3); background: rgba(240,243,250,.08); }
  .site-header.menu-active { color: var(--paper); }
  .hero { min-height: 700px; }
  .hero-content { padding-bottom: 76px; }
  .hero-intro { max-width: 460px; font-size: 16px; }
  .intro, .section-heading, .gallery-heading, .visit-panel { grid-template-columns: 1fr; gap: 54px; }
  .intro-aside, .section-heading > div:first-child, .gallery-heading > div:first-child { flex-direction: row; }
  .intro-aside { display: flex; }
  .intro-detail { margin-left: 0; }
  .section-heading { margin-bottom: 70px; }
  .offering { grid-template-columns: 48px 1fr; }
  .offering > p:last-child { grid-column: 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card:last-child { grid-column: 1 / -1; height: 420px; }
  .visit-panel { padding-block: 105px; }
  .visit-details { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 36px); }
  .shell-wide { width: calc(100% - 20px); }
  .section { padding-block: 84px; }
  .wordmark img { height: 99px; }
  h1 { font-size: clamp(50px, 15.2vw, 78px); }
  h2 { font-size: clamp(43px, 13vw, 64px); }
  .hero { height: 100svh; min-height: 660px; }
  .hero-media img { object-position: 56% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(12,16,32,.80), rgba(12,16,32,.42)), linear-gradient(0deg, rgba(12,16,32,.68), transparent 60%); }
  .hero-content { padding-bottom: 54px; }
  .hero-intro { margin-top: 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 32px; }
  .hero-index { display: none; }
  .intro-detail { grid-template-columns: 1fr; gap: 22px; margin-top: 42px; }
  .feature-image figure { height: 125vw; max-height: 660px; }
  .feature-image img { object-position: center; }
  .feature-image figcaption { inset: auto 18px 18px; flex-direction: column; gap: 3px; }
  .section-heading { gap: 34px; margin-bottom: 52px; }
  .offering { grid-template-columns: 28px 1fr; gap: 14px; padding-block: 30px; }
  .offering-title { gap: 14px; }
  .offering-title h3 { font-size: 42px; }
  .line-icon { width: 24px; font-size: 18px; }
  .offering > p:last-child { font-size: 14px; }
  .offerings-note { align-items: flex-start; flex-direction: column; gap: 16px; }
  .quote-section { min-height: 600px; }
  .gallery-heading { gap: 34px; margin-bottom: 52px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
  .gallery-card, .gallery-card-tall { height: 440px; }
  .gallery-card:nth-child(2) { height: 330px; margin-top: 46px; }
  .gallery-card:last-child { grid-column: 1 / -1; height: 280px; }
  .gallery-card span { right: 14px; bottom: 14px; left: 14px; }
  .visit-panel { gap: 68px; padding-block: 88px; }
  .visit-details { grid-template-columns: 1fr; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 34px; padding-bottom: 52px; }
  .footer-logo { height: 130px; }
  .footer-nav { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .back-to-top { right: 20px; bottom: 20px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
