/* ====================================================
   LUX LIVING — Site Styles
   Editorial-luxe aesthetic, Apple-tier execution
   ==================================================== */

:root {
  /* Palette */
  --paper: #F6F1E8;
  --ivory: #FAF7F0;
  --mist: #ECE4D2;
  --ink: #1A1814;
  --ink-soft: #2C2823;
  --soft: #6E665A;
  --whisper: #A39A8B;
  --bronze: #9A7849;
  --bronze-deep: #785A33;
  --line: #DDD0BA;
  --line-soft: #E8DFCA;

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 60px);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --slow: 1.2s var(--ease);
  --med: 0.6s var(--ease);
  --fast: 0.3s var(--ease);
}

/* ====================================================
   Reset
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

img, picture, video { display: block; max-width: 100%; height: auto; }

/* Picture must fill its container so img inside can size correctly */
.property-feature-media picture,
.manifest-image picture,
.story-image picture,
.detail-pair-img picture,
.j-card-img picture,
.gallery-item picture,
.hero-media picture,
.cta-strip-bg picture,
.article-image-full picture {
  width: 100%;
  height: 100%;
}

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

ul, ol { list-style: none; }

input, textarea, button { font-family: inherit; }

::selection { background: var(--bronze); color: var(--ivory); }

/* Paper grain — subtle texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ====================================================
   Typography
   ==================================================== */

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--bronze);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bronze);
}

.number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--bronze);
  font-size: 14px;
}

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ====================================================
   Layout
   ==================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-wide {
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  position: relative;
  padding: clamp(80px, 12vw, 180px) 0;
}

section.tight { padding: clamp(60px, 8vw, 120px) 0; }

section.flush { padding-top: 0; }

/* ====================================================
   Navigation
   ==================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--med), background var(--med), box-shadow var(--med);
}

.nav.scrolled {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand .mark {
  width: 22px;
  height: 40px;
  color: var(--ivory);
  transition: color var(--med);
}

.nav-brand .wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ivory);
  transition: color var(--med);
}

.nav.scrolled .nav-brand .mark,
.nav.scrolled .nav-brand .wordmark,
.nav.dark .nav-brand .mark,
.nav.dark .nav-brand .wordmark,
.nav.menu-open .nav-brand .mark,
.nav.menu-open .nav-brand .wordmark { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory);
  position: relative;
  padding: 8px 0;
  transition: color var(--med);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: currentColor;
  transition: right var(--med);
}

.nav-links a:hover::after { right: 0; }

.nav.scrolled .nav-links a,
.nav.dark .nav-links a { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 28px; }

.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang-switch a {
  padding: 6px 10px;
  color: var(--ivory);
  opacity: 0.55;
  transition: opacity var(--fast), color var(--med);
  border-radius: 2px;
}

.lang-switch a.active { opacity: 1; }
.lang-switch a:hover { opacity: 1; }

.nav.scrolled .lang-switch a,
.nav.dark .lang-switch a { color: var(--ink); }

.nav-book {
  padding: 12px 22px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: all var(--med);
  border: 1px solid var(--ivory);
}

.nav-book:hover {
  background: transparent;
  color: var(--ivory);
}

.nav.scrolled .nav-book,
.nav.dark .nav-book {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.nav.scrolled .nav-book:hover,
.nav.dark .nav-book:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--fast);
}

.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 16px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav.scrolled .nav-toggle span,
.nav.dark .nav-toggle span,
.nav.menu-open .nav-toggle span { background: var(--ink); }

.nav-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* Mobile menu (hidden on desktop by default) */
.nav-menu-open { display: none; }

/* ====================================================
   Hero
   ==================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(40px, 6vw, 80px);
  overflow: hidden;
  color: var(--ivory);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: heroZoom 14s var(--ease-out) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(26, 24, 20, 0.55) 0%,
    rgba(26, 24, 20, 0.15) 30%,
    rgba(26, 24, 20, 0.35) 70%,
    rgba(26, 24, 20, 0.88) 100%
  );
}

.hero-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  color: rgba(250, 247, 240, 0.88);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.4s forwards;
}

.hero h1 {
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.92;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.035em;
  margin-bottom: clamp(28px, 4vw, 56px);
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-out) 0.5s forwards;
}

.hero h1 em {
  color: rgba(250, 247, 240, 0.85);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: clamp(40px, 6vw, 100px);
  opacity: 0;
  animation: fadeUp 1.6s var(--ease-out) 0.9s forwards;
}

.hero-tagline {
  max-width: 460px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.95);
  font-weight: 300;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.7);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, var(--ivory) 100%);
  animation: scrollBeat 2.4s var(--ease) infinite;
  transform-origin: bottom;
}

@keyframes scrollBeat {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   Section Header
   ==================================================== */

.section-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.section-head .meta {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.section-head .meta .number {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.section-head .meta .label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--soft);
}

.section-head h2 {
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  max-width: 18ch;
  grid-column: 2;
}

.section-head .lead {
  grid-column: 2;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--soft);
  line-height: 1.65;
  max-width: 60ch;
}

/* ====================================================
   Property feature (used on home)
   ==================================================== */

.property-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  margin-bottom: clamp(120px, 16vw, 240px);
}

.property-feature:last-child { margin-bottom: 0; }

.property-feature.reverse .property-feature-media { order: 2; }
.property-feature.reverse .property-feature-info { order: 1; }

.property-feature-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  align-self: stretch;
}

.property-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}

.property-feature-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.property-feature:hover .property-feature-media img {
  transform: scale(1.04);
}

.property-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 20, 0) 60%, rgba(26, 24, 20, 0.12) 100%);
  pointer-events: none;
}

.property-feature-info .pf-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bronze);
  margin-bottom: 24px;
}

.property-feature-info h3 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  margin-bottom: 12px;
}

.property-feature-info .pf-loc {
  font-size: 14px;
  color: var(--soft);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.property-feature-info .pf-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 44ch;
}

.property-feature-info .pf-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 44px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}

.property-feature-info .pf-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-feature-info .pf-specs .pf-spec-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--whisper);
}

.property-feature-info .pf-specs .pf-spec-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.property-feature-info .pf-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ====================================================
   Buttons
   ==================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: all var(--med);
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-light {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.btn-light:hover {
  background: transparent;
  color: var(--ivory);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 247, 240, 0.4);
}

.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.btn .arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--med);
}

.btn:hover .arrow { transform: translateX(4px); }

/* Text link with arrow */
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}

.link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform var(--med);
}

.link:hover::after { transform: scaleX(0); transform-origin: left; }

.link-light { color: var(--ivory); }

/* ====================================================
   Manifest section
   ==================================================== */

.manifest {
  background: var(--ivory);
}

.manifest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.manifest-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.manifest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifest-content {
  padding-top: clamp(20px, 4vw, 60px);
}

.manifest-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 48px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.manifest-quote em {
  color: var(--bronze);
}

.manifest-body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--soft);
  margin-bottom: 24px;
  max-width: 56ch;
}

.manifest-body p:last-child { margin-bottom: 0; }

/* ====================================================
   Experience / Pillars
   ==================================================== */

.pillars {
  background: var(--paper);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pillar {
  padding: clamp(40px, 4vw, 64px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: background var(--med);
}

.pillar:first-child { border-left: 1px solid var(--line); }

.pillar:hover { background: var(--ivory); }

.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--bronze);
  margin-bottom: auto;
  padding-bottom: 60px;
}

.pillar h3 {
  font-size: clamp(24px, 2vw, 30px);
  margin-bottom: 16px;
  line-height: 1.1;
}

.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft);
}

/* ====================================================
   Classification (3 tier card system)
   ==================================================== */

.tiers {
  background: var(--ivory);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.tier {
  padding: clamp(40px, 4vw, 60px) clamp(28px, 3vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--med), box-shadow var(--med);
}

.tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(26, 24, 20, 0.12);
}

.tier.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.tier-stars {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--bronze);
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.tier h3 {
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 400;
}

.tier.featured h3 { color: var(--ivory); }

.tier-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--whisper);
  margin-bottom: 28px;
}

.tier.featured .tier-label { color: var(--mist); opacity: 0.7; }

.tier-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft);
  margin-bottom: 32px;
}

.tier.featured .tier-desc { color: rgba(250, 247, 240, 0.75); }

.tier-features {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.tier.featured .tier-features { border-color: rgba(250, 247, 240, 0.15); }

.tier-features li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tier.featured .tier-features li { color: rgba(250, 247, 240, 0.85); }

.tier-features li::before {
  content: '—';
  color: var(--bronze);
  flex-shrink: 0;
}

/* ====================================================
   Reviews / Testimonials
   ==================================================== */

.reviews {
  background: var(--paper);
}

.reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}

.review-score {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.review-score .num {
  font-family: var(--font-display);
  font-size: clamp(80px, 8vw, 144px);
  line-height: 0.9;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.review-score .out {
  font-size: 16px;
  color: var(--whisper);
}

.review-platforms {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.review-platforms .pl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-platforms .pl-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--whisper);
}

.review-platforms .pl-rating {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.review {
  padding: clamp(32px, 3vw, 48px);
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: border var(--med), background var(--med);
}

.review:hover { border-color: var(--bronze); }

.review-stars {
  color: var(--bronze);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 72, 'SOFT' 100;
  flex: 1;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.review-author .who {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.review-author .src {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--whisper);
}

/* ====================================================
   Story
   ==================================================== */

.story {
  background: var(--ink);
  color: var(--ivory);
}

.story .section-head h2 { color: var(--ivory); }
.story .section-head .meta { border-color: rgba(250, 247, 240, 0.2); }
.story .section-head .meta .label { color: var(--mist); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text h2 {
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: clamp(24px, 3vw, 40px);
  max-width: 16ch;
}

.story-text .eyebrow {
  margin-bottom: 24px;
  display: block;
}

.story-text p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: rgba(250, 247, 240, 0.78);
  margin-bottom: 24px;
}

.story-text p:last-of-type { margin-bottom: 36px; }

/* ====================================================
   Journal / Blog cards
   ==================================================== */

.journal {
  background: var(--ivory);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
}

.j-card { cursor: pointer; display: block; }

.j-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 28px;
}

.j-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.j-card:hover .j-card-img img { transform: scale(1.05); }

.j-card-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.j-card-meta .dot { color: var(--whisper); }

.j-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 400;
  transition: color var(--med);
}

.j-card:hover h3 { color: var(--bronze); }

.j-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--soft);
}

/* ====================================================
   CTA strip
   ==================================================== */

.cta-strip {
  position: relative;
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.cta-strip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-strip-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-strip h2 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 28px;
}

.cta-strip h2 em { color: var(--mist); }

.cta-strip p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.8);
  margin-bottom: 44px;
}

/* ====================================================
   Footer
   ==================================================== */

footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(80px, 10vw, 140px) var(--gutter) 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid rgba(250, 247, 240, 0.1);
}

.footer-brand .mark {
  width: 28px;
  height: 50px;
  color: var(--ivory);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.6);
  max-width: 36ch;
  margin-bottom: 32px;
}

.footer-contact {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.7);
  line-height: 2;
}

.footer-contact a { color: inherit; transition: color var(--fast); }
.footer-contact a:hover { color: var(--bronze); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--bronze);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col li { margin-bottom: 14px; }

.footer-col a {
  font-size: 14px;
  color: rgba(250, 247, 240, 0.72);
  transition: color var(--fast);
}

.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 240, 0.7);
  transition: all var(--fast);
}

.footer-social a:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ivory);
}

/* ====================================================
   Reveal animation
   ==================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ====================================================
   Property detail page
   ==================================================== */

/* Detail hero - big image + minimal overlay */
.detail-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(40px, 5vw, 80px);
  overflow: hidden;
  color: var(--ivory);
}

.detail-hero .hero-media,
.detail-hero::after { /* same gradient as hero */ }

.detail-hero-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.detail-hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-hero-stars {
  font-family: var(--font-display);
  color: var(--bronze);
  font-size: 18px;
  letter-spacing: 0.2em;
}

.detail-hero h1 {
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.03em;
}

.detail-hero h1 em {
  color: rgba(250, 247, 240, 0.78);
}

.detail-hero-loc {
  font-size: 15px;
  color: rgba(250, 247, 240, 0.78);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.detail-hero-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.detail-hero-price .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(250, 247, 240, 0.7);
}

.detail-hero-price .amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--ivory);
}

.detail-hero-price .per {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.7);
  margin-left: 6px;
}

/* Quick spec bar */
.spec-bar {
  background: var(--ivory);
  padding: clamp(32px, 4vw, 50px) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.spec-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 38px);
  color: var(--ink);
  font-weight: 400;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--whisper);
}

/* Detail intro paragraph */
.detail-intro {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.detail-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.detail-intro p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.35;
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.detail-intro p:last-child { margin-bottom: 0; }

.detail-intro em {
  font-style: italic;
  color: var(--bronze);
}

/* Wide image */
.detail-wide-image {
  margin: 0 var(--gutter) clamp(80px, 10vw, 140px);
  position: relative;
}

.detail-wide-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-wide-image.full {
  margin-left: 0;
  margin-right: 0;
}

/* Two column image + text */
.detail-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
  margin-bottom: clamp(80px, 10vw, 140px);
}

.detail-pair-img {
  overflow: hidden;
  min-height: 540px;
  align-self: stretch;
}

.detail-pair-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-pair-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.detail-pair-content h2 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.detail-pair-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--soft);
  margin-bottom: 20px;
}

/* Gallery grid */
.gallery {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  background: var(--paper);
}

.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.04); }

/* Asymmetric gallery placement */
.gallery-grid > .gallery-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-grid > .gallery-item:nth-child(2) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid > .gallery-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid > .gallery-item:nth-child(4) { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-grid > .gallery-item:nth-child(5) { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-grid > .gallery-item:nth-child(6) { grid-column: span 6; aspect-ratio: 3/2; }
.gallery-grid > .gallery-item:nth-child(7) { grid-column: span 12; aspect-ratio: 21/9; }
.gallery-grid > .gallery-item:nth-child(8) { grid-column: span 5; aspect-ratio: 1/1; }
.gallery-grid > .gallery-item:nth-child(9) { grid-column: span 7; aspect-ratio: 7/5; }

/* Amenities */
.amenities {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--ivory);
}

.amenities-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin-top: 60px;
}

.amenity-cat h4 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--bronze);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.amenity-cat ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0;
  line-height: 1.5;
}

/* Location section */
.location-section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--paper);
}

.location-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 60px;
  align-items: center;
}

.location-text h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 24px;
}

.location-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft);
  margin-bottom: 24px;
}

.location-text dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px 28px;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.location-text dt {
  color: var(--whisper);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 500;
}

.location-text dd {
  color: var(--ink);
}

.location-map {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mist);
}

.location-map iframe { width: 100%; height: 100%; border: none; }

/* Booking CTA full-width strip */
.book-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(80px, 10vw, 120px) var(--gutter);
  text-align: center;
}

.book-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.book-cta .eyebrow { color: var(--bronze); }

.book-cta h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--ivory);
  margin: 24px 0 24px;
}

.book-cta h2 em { color: var(--mist); }

.book-cta p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.78);
  margin-bottom: 40px;
}

/* ====================================================
   Article / Blog post
   ==================================================== */

.article-header { padding: 160px var(--gutter) 60px; background: var(--paper); }
.article-header-inner { max-width: 880px; margin: 0 auto; }

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bronze);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.article-meta .dot { color: var(--whisper); }

.article-header h1 {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.04;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.article-header h1 em { color: var(--bronze); }

.article-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--soft);
  max-width: 50ch;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.article-image-full { margin: clamp(40px, 5vw, 80px) 0; }
.article-image-full img { width: 100%; height: auto; display: block; }
.article-image-full figcaption {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 var(--gutter);
  font-size: 13px;
  color: var(--whisper);
  line-height: 1.5;
  font-style: italic;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 140px);
}
.article-body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article-body h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin: 56px 0 24px;
}
.article-body h2 em { color: var(--bronze); }
.article-body em { font-style: italic; }
.article-body blockquote {
  margin: 40px 0;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--bronze);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.article-body a {
  color: var(--bronze);
  border-bottom: 1px solid currentColor;
}
.article-body ul,
.article-body ol {
  margin: 0 0 28px;
  padding-left: 24px;
}
.article-body ul li,
.article-body ol li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 14px;
  list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-body ul.unstyled li { list-style: none; padding-left: 0; }

.article-end {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  background: var(--ivory);
  text-align: center;
}
.article-end h3 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 24px;
}
.article-end p {
  color: var(--soft);
  margin-bottom: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.next-articles {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  background: var(--paper);
}
.next-articles-inner { max-width: var(--container); margin: 0 auto; }
.next-articles h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 48px;
}
.next-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
}
@media (max-width: 768px) {
  .next-articles-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   Legal pages
   ==================================================== */

.legal-page {
  padding: 160px var(--gutter) clamp(80px, 10vw, 140px);
  background: var(--paper);
  min-height: 100vh;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner .eyebrow { display: block; margin-bottom: 24px; }
.legal-inner h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.legal-inner .updated {
  font-size: 13px;
  color: var(--whisper);
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.legal-inner h2 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  margin: 48px 0 16px;
  color: var(--ink);
}
.legal-inner h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
  margin: 32px 0 12px;
}
.legal-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-inner ul, .legal-inner ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.legal-inner li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 8px;
  list-style: disc;
}
.legal-inner ol li { list-style: decimal; }
.legal-inner a {
  color: var(--bronze);
  border-bottom: 1px solid currentColor;
}
.legal-inner strong { color: var(--ink); font-weight: 500; }

/* ====================================================
   Responsive
   ==================================================== */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-right .lang-switch { display: none; }
  .nav-right .nav-book { display: none; }

  .nav-brand .wordmark {
    font-size: 18px;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
  .nav-brand .mark {
    width: 18px;
    height: 32px;
  }

  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .meta { padding-top: 0; }
  .section-head h2,
  .section-head .lead { grid-column: 1; }

  .property-feature,
  .property-feature.reverse,
  .manifest-grid,
  .story-grid,
  .detail-pair { grid-template-columns: 1fr; }

  .property-feature.reverse .property-feature-info { order: 2; }
  .property-feature.reverse .property-feature-media { order: 1; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid, .reviews-grid, .journal-grid { grid-template-columns: 1fr; }

  .spec-bar-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Simplify gallery on tablets */
  .gallery-grid > .gallery-item {
    grid-column: span 6 !important;
    aspect-ratio: 4/3 !important;
  }
  .gallery-grid > .gallery-item:nth-child(7) {
    grid-column: span 12 !important;
    aspect-ratio: 16/9 !important;
  }

  /* Mobile nav menu when open */
  .nav-menu-open {
    position: fixed;
    inset: 0;
    background: var(--paper);
    padding: 100px var(--gutter) var(--gutter);
    z-index: 99;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--med);
    overflow-y: auto;
  }

  .nav-menu-open.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu-open > a {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
  }

  .nav-menu-open .mobile-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .nav-menu-open .mobile-footer .lang-switch {
    display: flex;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-menu-open .mobile-footer .lang-switch a {
    color: var(--ink);
    opacity: 0.55;
    padding: 6px 14px 6px 0;
  }

  .nav-menu-open .mobile-footer .lang-switch a.active { opacity: 1; }

  .nav-menu-open .mobile-footer .btn {
    align-self: flex-start;
  }

  .nav-menu-open .mobile-contact {
    margin-top: 20px;
    font-size: 13px;
    color: var(--soft);
    line-height: 2;
  }

  .nav-menu-open .mobile-contact a { color: var(--ink); }
}

@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; }
  .spec-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .detail-hero-content { flex-direction: column; align-items: flex-start; }
  .detail-hero-right { align-items: flex-start; text-align: left; }
  .property-feature-info .pf-specs { gap: 20px 32px; }
}


/* ============ INTRO CURTAIN ============ */
/* Hidden by default — only shown when html.intro-active is present (first visit per session) */
.intro-curtain { display: none; }
html.intro-active body { overflow: hidden; height: 100vh; }
html.intro-active .intro-curtain {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(0);
  transition: transform 1100ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.intro-curtain.gone {
  transform: translateY(-100%);
}
.intro-curtain svg {
  width: 56px;
  height: 100px;
  color: var(--ink);
  opacity: 0;
  animation: introFadeIn 600ms 100ms ease-out forwards;
}
.intro-curtain .intro-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--ink);
  text-transform: uppercase;
  opacity: 0;
  animation: introFadeIn 600ms 300ms ease-out forwards;
}
@keyframes introFadeIn {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html.intro-active .intro-curtain { display: none; }
  html.intro-active body { overflow: auto; height: auto; }
}


