/* ============================================
   A LAND INSIDE MY HEAD — BASILICATA
   A cinematic, slow-travel landing page
   ============================================ */

:root {
  --sand: #e8dfce;
  --sand-light: #f3ede0;
  --warm-white: #f7f3ea;
  --olive: #6b6b3e;
  --olive-deep: #4a4a2a;
  --forest: #1f2a1f;
  --forest-deep: #0f1810;
  --earth: #8a6a4a;
  --earth-deep: #5a4530;
  --ink: #1a1814;
  --ink-soft: #3a342a;
  --mute: #8a8275;
  --line: rgba(26, 24, 20, 0.12);
  --line-soft: rgba(26, 24, 20, 0.06);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

/* === TYPOGRAPHY === */
.display {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.display-italic {
  font-style: italic;
  font-weight: 300;
}

.meta {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.meta-light {
  color: var(--sand);
}

/* === LAYOUT === */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

section {
  position: relative;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: background 0.6s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--sand);
  transition: color 0.6s ease;
  text-decoration: none;
}

.nav.scrolled .nav-brand {
  color: var(--ink);
}

.nav-brand em {
  font-style: italic;
  font-weight: 300;
}

.nav-brand span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

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

.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(232, 223, 206, 0.4);
  border-radius: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  background: transparent;
}

.nav.scrolled .nav-cta {
  color: var(--ink);
  border-color: var(--line);
}

.nav-cta:hover {
  background: var(--sand);
  color: var(--forest-deep);
  border-color: var(--sand);
}

.nav.scrolled .nav-cta:hover {
  background: var(--forest-deep);
  color: var(--warm-white);
  border-color: var(--forest-deep);
}

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 223, 206, 0.4);
  border-radius: 40px;
  overflow: hidden;
  background: transparent;
  transition: border-color 0.4s ease;
}

.nav.scrolled .lang-switch {
  border-color: var(--line);
}

.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--sand);
  padding: 8px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav.scrolled .lang-switch button {
  color: var(--ink);
}

.lang-switch button.is-active {
  background: var(--sand);
  color: var(--forest-deep);
}

.nav.scrolled .lang-switch button.is-active {
  background: var(--forest-deep);
  color: var(--warm-white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_calanchi_sunset.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.78) saturate(0.95);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 24, 16, 0.35) 0%, transparent 30%, transparent 60%, rgba(15, 24, 16, 0.6) 100%),
    linear-gradient(to right, rgba(15, 24, 16, 0.25), transparent 50%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9, 0 0 0 0 0.85, 0 0 0 0 0.75, 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(24px, 5vw, 80px) clamp(60px, 10vh, 110px);
  max-width: 1440px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s 0.4s ease forwards;
}

.hero-eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}

.hero-eyebrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 7.2vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  max-width: none;
  white-space: nowrap;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s 0.7s ease forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--sand-light);
  max-width: 42ch;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.4s 1.4s ease forwards;
  font-style: italic;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.4s 1.7s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--sand);
  color: var(--forest-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--sand);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--sand);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 223, 206, 0.3);
  padding-bottom: 4px;
  transition: border-color 0.4s ease;
}

.btn-ghost:hover { border-color: var(--sand); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1.4s 2s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

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

/* ============================================
   LANDSCAPES — environments
   ============================================ */
.landscapes {
  padding: clamp(80px, 14vh, 140px) 0 clamp(80px, 14vh, 140px);
  background: var(--warm-white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(60px, 10vh, 100px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.section-header-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-header-left h2 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 300;
}

.section-header-eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header-eyebrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

.section-header-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--olive);
  border-radius: 50%;
}

.section-header-right {
  max-width: 44ch;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  color: var(--ink-soft);
  line-height: 1.42;
}

.section-header-environments {
  display: block;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(36px, 6vh, 60px);
  margin-bottom: clamp(60px, 10vh, 100px);
}

.environments-lead {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 100%;
  margin-top: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.environments-lead em {
  font-style: italic;
  color: var(--olive-deep);
  font-weight: 300;
}

.landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  margin-bottom: clamp(80px, 14vh, 160px);
  align-items: center;
}

.landscape:nth-child(even) {
  direction: rtl;
}
.landscape:nth-child(even) > * { direction: ltr; }

.landscape-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.landscape-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.landscape:hover .landscape-image img {
  transform: scale(1.04);
}

.landscape-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(15, 24, 16, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 40px;
}

.landscape-text {
  padding: 20px 0;
}

.landscape-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--olive);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-variation-settings: "opsz" 144;
}

.landscape-number::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--olive);
  opacity: 0.5;
}

.landscape-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.landscape-title em {
  font-style: italic;
  color: var(--olive-deep);
}

.landscape-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.7vw, 23px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 42ch;
}

.landscape-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.landscape-meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.landscape-meta-item strong {
  color: var(--ink);
  font-weight: 400;
  margin-left: 6px;
}

/* ============================================
   IMMERSIVE SCENE (full-bleed cinematic landscape)
   ============================================ */
.scene {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--forest-deep);
  display: flex;
  align-items: flex-end;
}

.scene-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}

.scene-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15,24,16,0.82) 0%, rgba(15,24,16,0.32) 38%, rgba(15,24,16,0.08) 62%, rgba(15,24,16,0.25) 100%),
    linear-gradient(to right, rgba(15,24,16,0.45), transparent 55%);
  z-index: 2;
}

.scene-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.14;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9, 0 0 0 0 0.85, 0 0 0 0 0.75, 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scene-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) clamp(56px, 9vh, 96px);
}

.scene-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.scene-index::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}

.scene-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--sand);
  margin-bottom: 12px;
  opacity: 0.9;
}

.scene-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin-bottom: 26px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.scene-title em {
  font-style: italic;
  color: var(--sand);
}

.scene-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.5;
  color: var(--sand-light);
  max-width: 52ch;
  margin-bottom: 30px;
}

.scene-desc em {
  font-style: italic;
  color: var(--sand);
}

.scene-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 223, 206, 0.25);
  max-width: 640px;
}

.scene-meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.7);
}

.scene-meta-item strong {
  color: var(--sand);
  font-weight: 400;
  margin-left: 6px;
}

.scene-dots {
  position: absolute;
  bottom: clamp(56px, 9vh, 96px);
  right: clamp(24px, 5vw, 80px);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.scene-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(243, 237, 224, 0.35);
  transition: background 0.4s ease, width 0.4s ease;
}

.scene-dot.is-active {
  background: var(--sand);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 920px) {
  .scene {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .scene-layer {
    position: relative;
    height: 60vh;
    min-height: 380px;
  }
  .scene-layer:not(.is-active) {
    display: none;
  }
  .scene-content {
    position: relative;
    background: var(--forest-deep);
    padding-top: 40px;
  }
  .scene-dots {
    bottom: auto;
    top: calc(60vh - 40px);
  }
}

/* ============================================
   DISPATCH (video portrait)
   ============================================ */
.dispatch {
  background: var(--forest-deep);
  color: var(--sand-light);
  padding: clamp(100px, 16vh, 160px) 0;
  position: relative;
  overflow: hidden;
}

.dispatch::before {
  content: '';
  position: absolute;
  inset: 0;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9, 0 0 0 0 0.85, 0 0 0 0 0.75, 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.dispatch-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.dispatch-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.dispatch-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
}

.dispatch-eyebrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

.dispatch-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--sand-light);
  margin-bottom: 30px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.dispatch-title em {
  font-style: italic;
  color: var(--sand);
}

.dispatch-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.55;
  color: rgba(243, 237, 224, 0.82);
  margin-bottom: 28px;
  max-width: 46ch;
}

.dispatch-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 223, 206, 0.18);
  display: inline-block;
}

.dispatch-video-wrap {
  display: flex;
  justify-content: center;
}

.dispatch-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.dispatch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dispatch-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(247, 243, 234, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  transition: all 0.4s ease;
  z-index: 3;
  backdrop-filter: blur(6px);
}

.dispatch-play svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.dispatch-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--sand);
}

.dispatch-video-frame.is-playing .dispatch-play {
  opacity: 0;
  pointer-events: none;
}

.dispatch-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(15, 24, 16, 0.55);
  padding: 7px 12px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 920px) {
  .dispatch-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .dispatch-video-frame { max-width: 320px; }
}

/* ============================================
   PARALLAX QUOTE BAND
   ============================================ */
.quote-band {
  height: 80vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/snow_singlefile.jpg') center / cover fixed no-repeat;
  overflow: hidden;
}

.quote-band-maratea {
  background-image: url('../images/maratea_quoteband_bg.jpg');
  background-position: center center;
}

.quote-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 24, 16, 0.4), rgba(15, 24, 16, 0.55));
}

.quote-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 32px;
}

.quote-band-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  color: var(--sand);
  opacity: 0.5;
  line-height: 0.5;
  margin-bottom: 16px;
  font-weight: 300;
}

.quote-band-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--warm-white);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.quote-band-text em {
  font-style: italic;
  color: var(--sand);
}

.quote-band-attr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.85;
}

/* ============================================
   EXPERIENCES
   ============================================ */
.experiences {
  padding: clamp(100px, 16vh, 160px) 0 clamp(80px, 14vh, 140px);
  background: var(--warm-white);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.experience {
  position: relative;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.experience-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 24px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.experience:hover .experience-image img {
  transform: scale(1.05);
}

.exp-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(15, 24, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 40px;
  z-index: 2;
}

.exp-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}

.exp-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}

.exp-title em {
  font-style: italic;
  color: var(--olive-deep);
}

.exp-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
}

.experiences-grid .experience.span-7 { grid-column: span 7; }
.experiences-grid .experience.span-5 { grid-column: span 5; }
.experiences-grid .experience.span-6 { grid-column: span 6; }
.experiences-grid .experience.span-4 { grid-column: span 4; }
.experiences-grid .experience.span-8 { grid-column: span 8; }

.experience.span-7 .experience-image { aspect-ratio: 16 / 11; }
.experience.span-5 .experience-image { aspect-ratio: 4 / 5; }
.experience.span-6 .experience-image { aspect-ratio: 5 / 4; }
.experience.span-4 .experience-image { aspect-ratio: 3 / 4; }
.experience.span-8 .experience-image { aspect-ratio: 16 / 9; }

/* ============================================
   ABOUT / STORYTELLING
   ============================================ */
.about {
  padding: clamp(120px, 18vh, 180px) 0;
  background: var(--forest-deep);
  color: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9, 0 0 0 0 0.85, 0 0 0 0 0.75, 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.about-image-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(15, 24, 16, 0.6);
  padding: 7px 12px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-text-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.about-text-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--sand);
  border-radius: 50%;
}

.about-text-eyebrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}

.about-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--sand-light);
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.about-title em {
  font-style: italic;
  color: var(--sand);
}

.about-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(243, 237, 224, 0.82);
}

.about-prose p { margin-bottom: 1.2em; }

.about-prose em {
  font-style: italic;
  color: var(--sand);
}

.about-sig {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-sig-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--sand);
  font-variation-settings: "opsz" 144;
}

.about-sig-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-light);
  opacity: 0.7;
  padding-left: 16px;
  border-left: 1px solid rgba(232, 223, 206, 0.3);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery {
  padding: clamp(100px, 16vh, 160px) 0;
  background: var(--warm-white);
}

.gallery-header {
  margin-bottom: 80px;
  text-align: center;
}

.gallery-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--olive);
}

.gallery-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
}

.gallery-mason {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 18px;
}

.gm {
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.gm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gm:hover img { transform: scale(1.06); }

.gm-1 { grid-column: span 3; grid-row: span 4; }
.gm-2 { grid-column: span 3; grid-row: span 3; }
.gm-3 { grid-column: span 2; grid-row: span 3; }
.gm-4 { grid-column: span 2; grid-row: span 3; }
.gm-5 { grid-column: span 2; grid-row: span 4; }
.gm-6 { grid-column: span 3; grid-row: span 3; }
.gm-7 { grid-column: span 3; grid-row: span 3; }

/* ============================================
   CALENDAR
   ============================================ */
.calendar {
  padding: clamp(100px, 16vh, 160px) 0;
  background: var(--warm-white);
}

.calendar-list {
  border-top: 1px solid var(--line);
}

.cal-row {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr 1.1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: clamp(32px, 5vh, 48px) 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  position: relative;
}

.cal-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cal-month {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--olive-deep);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}

.cal-days {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.cal-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
  margin-top: 4px;
}

.cal-season {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.cal-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}

.cal-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 54ch;
}

.cal-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cal-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 40px;
  white-space: nowrap;
  margin-bottom: 4px;
}

.cal-status-open {
  color: var(--forest-deep);
  background: rgba(107, 107, 62, 0.16);
}

.cal-status-soon {
  color: var(--mute);
  border: 1px solid var(--line);
}

.cal-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 200px;
}

.cal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: left;
}

.cal-cta:hover {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.cal-cta-primary {
  background: var(--forest-deep);
  color: var(--warm-white);
  border-color: var(--forest-deep);
}

.cal-cta-primary:hover {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}

.cal-cta svg {
  width: 11px;
  height: 11px;
  opacity: 0.7;
}

.cal-row-soon {
  opacity: 0.62;
}

.cal-row-soon .cal-month {
  color: var(--mute);
}

@media (max-width: 920px) {
  .cal-row {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: flex-start;
  }
  .cal-when { flex-direction: row; align-items: baseline; gap: 12px; }
  .cal-action { align-items: stretch; width: 100%; }
  .cal-cta-stack { min-width: 0; }
}

/* ============================================
   COMMUNITY JOIN (button block)
   ============================================ */
.community-join {
  margin-bottom: 60px;
}

.community-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  background: var(--forest-deep);
  color: var(--warm-white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  border: 1px solid var(--forest-deep);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.community-join-btn svg { width: 20px; height: 20px; }

.community-join-btn:hover {
  background: transparent;
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.community-join-note {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

.community-join-note a, .community-join-note button.link-like {
  color: var(--olive-deep);
  text-decoration: none;
  border: 0;
  background: transparent;
  border-bottom: 1px solid var(--olive);
  transition: opacity 0.3s ease;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.community-join-note a:hover, .community-join-note button.link-like:hover { opacity: 0.7; }

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: clamp(120px, 18vh, 180px) 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  inset: 0;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35, 0 0 0 0 0.3, 0 0 0 0 0.2, 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.community-inner {
  position: relative;
  z-index: 2;
}

.community-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 16ch;
}

.community-title em {
  font-style: italic;
  color: var(--olive-deep);
}

.community-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 70px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26, 24, 20, 0.1);
  margin-bottom: 50px;
}

.community-card {
  background: var(--sand);
  padding: 40px 36px;
  position: relative;
  transition: background 0.4s ease;
}

.community-card:hover { background: var(--sand-light); }

.community-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
  display: block;
}

.community-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.community-card h4 em {
  font-style: italic;
  color: var(--olive-deep);
  font-weight: 300;
}

.community-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================
   CLOSING / CTA
   ============================================ */
.closing {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.closing-bg {
  position: absolute;
  inset: 0;
  background: url('../images/snow_contemplation.jpg') center / cover no-repeat;
  filter: brightness(0.42) saturate(0.85);
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 24, 16, 0.55), rgba(15, 24, 16, 0.78));
}

.closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 900px;
}

.closing-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.closing-mark::before, .closing-mark::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}

.closing-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.closing-text em {
  font-style: italic;
  color: var(--sand);
}

.closing-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--sand-light);
  margin-bottom: 56px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--sand);
  color: var(--forest-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  border: 1px solid var(--sand);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.closing-cta:hover {
  background: transparent;
  color: var(--sand);
  transform: translateY(-2px);
}

.closing-cta svg {
  width: 16px;
  height: 16px;
}

.closing-secondary {
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--sand);
  opacity: 0.8;
}

.closing-secondary a, .closing-secondary button.link-like {
  color: var(--sand);
  border: 0;
  background: transparent;
  border-bottom: 1px solid rgba(232, 223, 206, 0.4);
  text-decoration: none;
  transition: border-color 0.3s ease;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.closing-secondary a:hover, .closing-secondary button.link-like:hover { border-color: var(--sand); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-deep);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(232, 223, 206, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.1;
  color: var(--sand);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144;
}

.footer-brand em {
  font-style: italic;
}

.footer-brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.6;
  margin-bottom: 16px;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--sand-light);
  opacity: 0.7;
  max-width: 36ch;
}

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a, .footer-col button.link-like {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--sand-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-style: normal;
}

.footer-col a:hover, .footer-col button.link-like:hover { opacity: 1; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(232, 223, 206, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.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; }

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 16, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
}

.booking-modal-card {
  position: relative;
  background: var(--warm-white);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 56px);
  animation: modalUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s ease;
}

.booking-modal-close:hover {
  background: var(--ink);
  color: var(--warm-white);
  border-color: var(--ink);
}

.booking-modal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

.booking-modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.booking-modal-title em {
  font-style: italic;
  color: var(--olive-deep);
}

.booking-modal-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.45;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.booking-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.booking-field input,
.booking-field textarea,
.booking-field select {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
  resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--olive);
  background: #fff;
}

.booking-submit {
  margin-top: 14px;
  padding: 16px 22px;
  background: var(--forest-deep);
  color: var(--warm-white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--forest-deep);
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.booking-submit:hover {
  background: transparent;
  color: var(--forest-deep);
}

.booking-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
  margin-top: 8px;
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 920px) {
  .landscape {
    grid-template-columns: 1fr;
    direction: ltr !important;
    gap: 28px;
    margin-bottom: 80px;
  }
  .landscape:nth-child(even) { direction: ltr; }

  .experiences-grid {
    grid-template-columns: 1fr;
  }
  .experiences-grid .experience { grid-column: span 1 !important; }
  .experiences-grid .experience .experience-image { aspect-ratio: 4 / 3 !important; }

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

  .community-grid { grid-template-columns: 1fr; gap: 1px; }

  .gallery-mason {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-mason .gm { grid-column: span 1 !important; grid-row: span 2 !important; }

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

  .quote-band { background-attachment: scroll; }

  .nav-cta { display: none; }
}

@media (max-width: 580px) {
  .hero-title { font-size: 42px; white-space: normal; }
  body { font-size: 16px; }
  .nav-brand span { display: none; }
  .lang-switch button { padding: 6px 10px; }
}

/* Custom selection */
::selection {
  background: var(--olive);
  color: var(--sand-light);
}


/* ============================================
   NAV — extra links (Journal, About)
   ============================================ */
.nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  text-decoration: none;
  color: var(--sand);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.nav.scrolled .nav-link { color: var(--ink); }
.nav-link:hover { border-color: currentColor; }

/* On non-vetrina pages, nav starts opaque (no hero to sit on) */
.page-journal .nav,
.page-article .nav,
.page-about .nav {
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.page-journal .nav .nav-brand,
.page-article .nav .nav-brand,
.page-about .nav .nav-brand { color: var(--ink); }
.page-journal .nav .nav-link,
.page-article .nav .nav-link,
.page-about .nav .nav-link { color: var(--ink); }
.page-journal .nav .nav-cta,
.page-article .nav .nav-cta,
.page-about .nav .nav-cta {
  color: var(--ink); border-color: var(--line);
}
.page-journal .nav .lang-switch,
.page-article .nav .lang-switch,
.page-about .nav .lang-switch { border-color: var(--line); }
.page-journal .nav .lang-switch button,
.page-article .nav .lang-switch button,
.page-about .nav .lang-switch button { color: var(--ink); }
.page-journal .nav .lang-switch button.is-active,
.page-article .nav .lang-switch button.is-active,
.page-about .nav .lang-switch button.is-active { background: var(--forest-deep); color: var(--warm-white); }

@media (max-width: 920px) {
  .nav-link { display: none; }
}

/* ============================================
   JOURNAL — list page
   ============================================ */
.journal-hero {
  padding: clamp(140px, 22vh, 200px) 0 clamp(60px, 8vh, 100px);
  background: var(--warm-white);
}
.journal-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 20px 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  max-width: 12ch;
}
.journal-title em { font-style: italic; color: var(--olive); }
.journal-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 52ch;
}

.journal-filters {
  padding: 26px 0 20px;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 62px;
  z-index: 40;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(247, 243, 234, 0.95);
}
.filter-row {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-right: 4px;
}
.filter-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-chip:hover { border-color: var(--olive); color: var(--olive-deep); }
.filter-chip.is-active {
  background: var(--forest-deep);
  color: var(--warm-white);
  border-color: var(--forest-deep);
}
.filter-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.journal-grid-section {
  padding: clamp(50px, 8vh, 90px) 0 clamp(80px, 14vh, 140px);
  background: var(--warm-white);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}
.journal-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s ease;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  margin-bottom: 20px;
}
.journal-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}
.journal-card:hover .journal-card-img img { transform: scale(1.05); }
.journal-card-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(15, 24, 16, 0.6);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 40px;
}
.journal-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.journal-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.journal-card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.journal-empty {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--mute);
}
.journal-card.is-hidden { display: none; }

/* ============================================
   ARTICLE — single page
   ============================================ */
.page-article { background: var(--warm-white); }
.article-hero {
  min-height: 62vh;
  padding: clamp(160px, 22vh, 220px) 0 clamp(50px, 8vh, 90px);
  background-size: cover;
  background-position: center;
  color: var(--warm-white);
  position: relative;
}
.article-hero-inner { position: relative; z-index: 2; }
.article-hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 22px;
  opacity: 0.9;
}
.article-cat {
  background: rgba(232, 223, 206, 0.2);
  padding: 6px 14px;
  border-radius: 40px;
}
.article-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--warm-white);
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.article-body {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--warm-white);
}
.article-body .container-narrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
}
.article-body p { margin-bottom: 1.35em; }
.article-body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  float: left;
  font-size: 76px;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--olive-deep);
  font-variation-settings: "opsz" 144;
}
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
  color: var(--ink);
  margin: 2em 0 0.7em;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.article-body h3, .article-body h4, .article-body h5 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  margin: 1.6em 0 0.6em;
  letter-spacing: -0.01em;
}
.article-body a {
  color: var(--olive-deep);
  border-bottom: 1px solid var(--olive);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.article-body a:hover { opacity: 0.7; }
.article-body em, .article-body i { font-style: italic; color: var(--olive-deep); }
.article-body strong, .article-body b { font-weight: 500; color: var(--ink); }
.article-body blockquote {
  border-left: 3px solid var(--olive);
  padding: 8px 0 8px 24px;
  margin: 1.5em 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
  color: var(--olive-deep);
  font-variation-settings: "opsz" 144;
}
.article-body ul, .article-body ol {
  margin: 1em 0 1.5em 1.4em;
  padding-left: 0.4em;
}
.article-body li { margin-bottom: 0.5em; }
.article-body img,
.article-body figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 2em auto;
  background: var(--sand);
}
.article-body figure {
  margin: 2em 0;
}
.article-body figcaption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
  margin-top: -1em;
  padding-bottom: 1em;
}
.article-body iframe, .article-body video {
  width: 100%;
  max-width: 100%;
  margin: 2em 0;
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3em auto;
  max-width: 120px;
}

/* Widen images beyond the reading column for visual breathing */
.article-body .container-narrow > figure,
.article-body .container-narrow > p > img {
  max-width: 900px;
  margin-left: calc(50% - 450px);
  margin-right: auto;
}
@media (max-width: 940px) {
  .article-body .container-narrow > figure,
  .article-body .container-narrow > p > img {
    max-width: 100%;
    margin-left: 0;
  }
}

.article-related {
  background: var(--sand);
  padding: clamp(70px, 12vh, 120px) 0 clamp(90px, 14vh, 140px);
}
.article-related .section-header-eyebrow { margin-bottom: 40px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.related-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm-white);
  margin-bottom: 14px;
}
.related-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.related-card:hover .related-card-img img { transform: scale(1.04); }
.related-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}
.article-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(26,24,20,0.12);
}
.btn-ghost-dark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 3px;
}
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--forest-deep);
  color: var(--warm-white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid var(--forest-deep);
  transition: all 0.4s ease;
}
.btn-primary-dark:hover { background: transparent; color: var(--forest-deep); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-about { background: var(--warm-white); }
.about-hero {
  position: relative;
  min-height: 70vh;
  padding: clamp(180px, 26vh, 240px) 0 clamp(80px, 12vh, 120px);
  color: var(--warm-white);
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.48) saturate(0.9);
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,24,16,0.35) 0%, rgba(15,24,16,0.7) 100%);
}
.about-hero-inner { position: relative; z-index: 2; }
.about-hero .section-header-eyebrow span { color: var(--sand); }
.about-hero .section-header-eyebrow .dot { background: var(--sand); }
.about-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin: 22px 0 24px;
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.about-hero-title em { font-style: italic; color: var(--sand); }
.about-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--sand-light);
  max-width: 42ch;
  line-height: 1.5;
}

.about-body {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--warm-white);
}
.about-prose-full {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
}
.about-prose-full p { margin-bottom: 1.35em; }
.about-prose-full p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  float: left;
  font-size: 76px;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--olive-deep);
}
.about-prose-full h2, .about-prose-full h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  margin: 1.8em 0 0.6em;
  color: var(--ink);
}
.about-prose-full em { font-style: italic; color: var(--olive-deep); }
.about-prose-full img {
  width: 100%; max-width: 720px; height: auto; display: block;
  margin: 2em auto;
}

.about-sig-block {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.about-sig-name-lg {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  color: var(--olive-deep);
  font-variation-settings: "opsz" 144;
}
.about-sig-role-lg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.about-cta {
  padding: clamp(90px, 14vh, 140px) 0;
  background: var(--sand);
}
.about-cta-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-cta-title em { font-style: italic; color: var(--olive-deep); }
.about-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 46ch;
  margin-left: auto; margin-right: auto;
}
.about-cta-row {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}

@media (max-width: 620px) {
  .about-body { padding: 60px 0; }
  .article-body p:first-of-type::first-letter,
  .about-prose-full p:first-of-type::first-letter { font-size: 60px; }
}


/* ============================================
   ABOUT V2 — image-as-banner + wide prose
   ============================================ */
.page-about-v2 { background: var(--warm-white); }

.about-v2-top {
  padding: clamp(150px, 22vh, 200px) 0 clamp(40px, 6vh, 70px);
  background: var(--warm-white);
}
.about-v2-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.about-v2-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 24px 0 20px;
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.about-v2-title em { font-style: italic; color: var(--olive-deep); }
.about-v2-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
}

.about-v2-photo {
  max-width: 1080px;
  margin: 0 auto clamp(50px, 8vh, 90px);
  padding: 0 clamp(24px, 5vw, 80px);
}
.about-v2-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--sand);
}
.about-v2-photo-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 12px;
  text-align: right;
}

.about-v2-body {
  padding: clamp(20px, 4vh, 40px) 0 clamp(100px, 16vh, 160px);
  background: var(--warm-white);
}

.about-prose-v2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.7;
  color: var(--ink);
  max-width: none;
}
.about-prose-v2 p { margin-bottom: 1.35em; }
.about-prose-v2 p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  float: left;
  font-size: 84px;
  line-height: 0.82;
  padding: 8px 14px 0 0;
  color: var(--olive-deep);
  font-variation-settings: "opsz" 144;
}
.about-prose-v2 h2, .about-prose-v2 h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 34px);
  margin: 1.7em 0 0.55em;
  color: var(--ink);
  line-height: 1.15;
}
.about-prose-v2 em, .about-prose-v2 i { font-style: italic; color: var(--olive-deep); }
.about-prose-v2 strong { font-weight: 500; color: var(--ink); }
.about-prose-v2 a {
  color: var(--olive-deep);
  border-bottom: 1px solid var(--olive);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.about-prose-v2 a:hover { opacity: 0.7; }
.about-prose-v2 blockquote {
  border-left: 3px solid var(--olive);
  padding: 6px 0 6px 22px;
  margin: 1.5em 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--olive-deep);
  line-height: 1.35;
}
.about-prose-v2 ul, .about-prose-v2 ol { margin: 1em 0 1.5em 1.4em; }
.about-prose-v2 li { margin-bottom: 0.5em; }

.diary-entry-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--line);
  max-width: 30ch;
}


/* ============================================
   WORLD INSET — sub-block under a main world (e.g. Loricato under Pollino)
   ============================================ */
.world-inset {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 820px;
  margin: -60px 0 clamp(80px, 12vh, 140px) 15%;
  padding: 24px 28px 24px 24px;
  background: var(--sand-light);
  border-left: 3px solid var(--olive);
  border-radius: 0 4px 4px 0;
  align-items: center;
}
.world-inset-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sand);
  border-radius: 2px;
}
.world-inset-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.world-inset:hover .world-inset-img img { transform: scale(1.04); }
.world-inset-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.world-inset-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.world-inset-title em { font-style: italic; color: var(--olive-deep); }
.world-inset-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.world-inset-desc em { font-style: italic; color: var(--olive-deep); }

@media (max-width: 820px) {
  .world-inset {
    grid-template-columns: 1fr;
    margin: -40px 0 60px 0;
    gap: 16px;
    padding: 20px 22px;
  }
  .world-inset-img { aspect-ratio: 4 / 3; }
}


/* ============================================
   ABOUT HERO FULL-BLEED (spotlight photo)
   Text sits bottom-left; Vittorio's figure stays visible on the right.
   ============================================ */
.about-hero-fb {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
  background: var(--forest-deep);
  display: flex;
  align-items: flex-end;
}
.about-hero-fb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  animation: heroZoom 22s ease-out forwards;
}
.about-hero-fb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15,24,16,0.85) 0%, rgba(15,24,16,0.45) 35%, rgba(15,24,16,0.05) 60%, transparent 100%),
    linear-gradient(to right, rgba(15,24,16,0.55) 0%, rgba(15,24,16,0.12) 45%, transparent 60%);
  z-index: 2;
}
.about-hero-fb-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) clamp(70px, 12vh, 130px);
}
.about-hero-fb .section-header-eyebrow span { color: var(--sand); }
.about-hero-fb .section-header-eyebrow .dot { background: var(--sand); }
.about-hero-fb-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin: 24px 0 24px;
  max-width: 16ch;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.about-hero-fb-title em { font-style: italic; color: var(--sand); }
.about-hero-fb-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.5;
  color: var(--sand-light);
  max-width: 42ch;
}
.about-hero-fb-caption {
  position: absolute;
  bottom: 20px;
  right: 24px;
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(15, 24, 16, 0.5);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 40px;
}

/* On the About page (v2), the sticky nav starts opaque only after scroll — 
   let the hero-nav feel transparent while over the photo */
.page-about-v2 .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}
.page-about-v2 .nav.scrolled {
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.page-about-v2 .nav .nav-brand,
.page-about-v2 .nav .nav-link,
.page-about-v2 .nav .nav-cta { color: var(--sand); }
.page-about-v2 .nav.scrolled .nav-brand,
.page-about-v2 .nav.scrolled .nav-link,
.page-about-v2 .nav.scrolled .nav-cta { color: var(--ink); }
.page-about-v2 .nav .lang-switch button { color: var(--sand); }
.page-about-v2 .nav.scrolled .lang-switch button { color: var(--ink); }
.page-about-v2 .nav .lang-switch { border-color: rgba(232,223,206,0.4); }
.page-about-v2 .nav.scrolled .lang-switch { border-color: var(--line); }

/* Body starts here — reset any v2-top padding */
.page-about-v2 .about-v2-body {
  padding-top: clamp(80px, 12vh, 130px);
}

@media (max-width: 720px) {
  .about-hero-fb-bg { background-position: 70% center; }
  .about-hero-fb-title { font-size: 44px; }
  .about-hero-fb {
    height: auto;
    min-height: 78vh;
    padding: clamp(120px, 20vh, 200px) 0 40px;
  }
}


/* ============================================
   CURIOSITY (homepage section)
   ============================================ */
.curiosity {
  padding: clamp(100px, 16vh, 160px) 0 clamp(90px, 14vh, 140px);
  background: var(--warm-white);
}
.curiosity-lead {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
  margin: 20px 0 clamp(60px, 8vh, 100px);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.curiosity-lead em { font-style: italic; color: var(--olive-deep); font-weight: 300; }

.curiosity-guide {
  max-width: 720px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.curiosity-guide-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--olive-deep);
  display: block;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.curiosity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: cur;
}
.curiosity-list li {
  counter-increment: cur;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 22px 0 22px 90px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-variation-settings: "opsz" 144;
  transition: padding-left 0.4s ease, color 0.4s ease;
}
.curiosity-list li:last-child { border-bottom: 0; }
.curiosity-list li::before {
  content: counter(cur, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--olive);
  font-weight: 400;
  font-style: normal;
}
.curiosity-list li:hover {
  padding-left: 100px;
  color: var(--olive-deep);
}

/* ============================================
   EXPERIENCES PAGE — header
   ============================================ */
.page-experiences { background: var(--warm-white); }
.exp-header {
  padding: clamp(150px, 22vh, 210px) 0 clamp(60px, 8vh, 100px);
  background: var(--warm-white);
}
.exp-header-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 24px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.exp-header-title em { font-style: italic; color: var(--olive-deep); }
.exp-header-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.5;
}

/* Same "not-homepage" nav treatment as journal/about */
.page-experiences .nav {
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.page-experiences .nav .nav-brand,
.page-experiences .nav .nav-link,
.page-experiences .nav .nav-cta { color: var(--ink); }
.page-experiences .nav .lang-switch { border-color: var(--line); }
.page-experiences .nav .lang-switch button { color: var(--ink); }
.page-experiences .nav .lang-switch button.is-active { background: var(--forest-deep); color: var(--warm-white); }


/* ============================================
   HOMEPAGE-ONLY community text expansion
   (Larger title + wider, more prominent intro since the 3 cards are gone)
   ============================================ */
body:not(.page-experiences) .community-title {
  font-size: clamp(44px, 7vw, 92px);
  max-width: 24ch;
  line-height: 0.98;
}
body:not(.page-experiences) .community-intro {
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 62ch;
  line-height: 1.5;
  margin-bottom: 50px;
}

/* Remove the bottom margin of community-join since there's nothing below except section-close */
body:not(.page-experiences) .community-join {
  margin-bottom: 0;
}


/* ============================================
   EXPERIENCES — intro + 5 worlds compact list
   ============================================ */
.exp-intro {
  padding: clamp(100px, 16vh, 160px) 0 clamp(50px, 8vh, 90px);
  background: var(--warm-white);
}
.exp-intro-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 22px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.exp-intro-title em { font-style: italic; color: var(--olive-deep); }
.exp-intro-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.5;
}

.worlds-list-section {
  padding: clamp(30px, 5vh, 60px) 0 clamp(90px, 14vh, 140px);
  background: var(--warm-white);
}
.worlds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.worlds-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  padding: clamp(24px, 3.5vh, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s ease, background 0.4s ease;
}
.worlds-item:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: var(--sand-light);
}
.worlds-item-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  border-radius: 3px;
}
.worlds-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.worlds-item:hover .worlds-item-img img { transform: scale(1.05); }

.worlds-item-placeholder .worlds-item-img { opacity: 0.55; }
.worlds-item-placeholder-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(15, 24, 16, 0.65);
  padding: 5px 10px;
  border-radius: 40px;
}

.worlds-item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.worlds-item-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}
.worlds-item-name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.worlds-item-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 46ch;
}

.worlds-list-footnote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 62ch;
  margin: clamp(40px, 6vh, 60px) auto 0;
  text-align: center;
  line-height: 1.55;
}
.worlds-list-footnote em { font-style: italic; color: var(--olive-deep); }

@media (max-width: 720px) {
  .worlds-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .worlds-item-img { aspect-ratio: 16 / 10; }
}


/* ============================================
   WORLDS-LIST — enlarged sizing (per Vittorio: +25% text, +10% img)
   ============================================ */
.worlds-item {
  grid-template-columns: 240px 1fr;   /* was 200px (+20% actually — a bit more for balance) */
}
.worlds-item-name {
  font-size: clamp(35px, 4.25vw, 52px);  /* +25% from clamp(28px, 3.4vw, 42px) */
}
.worlds-item-desc {
  font-size: clamp(22px, 2.1vw, 28px);   /* +25% from clamp(18px, 1.7vw, 22px) */
  max-width: 52ch;
}
.worlds-item-num {
  font-size: 11px;
  letter-spacing: 0.24em;
}
@media (max-width: 720px) {
  .worlds-item {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   EXP INTRO — display style for 'WHERE & WHAT'
   ============================================ */
.exp-intro-title {
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.02;
  max-width: 24ch;
}


/* ============================================
   CALENDAR PAGE — header
   ============================================ */
.page-calendar { background: var(--warm-white); }
.cal-page-header {
  padding: clamp(150px, 22vh, 200px) 0 clamp(50px, 8vh, 90px);
  background: var(--warm-white);
}
.cal-page-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 22px 0 24px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.cal-page-title em { font-style: italic; color: var(--olive-deep); }
.cal-page-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.5;
}

/* Same nav treatment as other non-homepage pages */
.page-calendar .nav {
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.page-calendar .nav .nav-brand,
.page-calendar .nav .nav-link,
.page-calendar .nav .nav-cta { color: var(--ink); }
.page-calendar .nav .lang-switch { border-color: var(--line); }
.page-calendar .nav .lang-switch button { color: var(--ink); }
.page-calendar .nav .lang-switch button.is-active { background: var(--forest-deep); color: var(--warm-white); }

/* Calendar section on calendar.html: remove double-padding since we already have header above */
.page-calendar .calendar { padding-top: 0; }


/* ============================================
   WORLDS-LIST — wider text alongside image (per feedback)
   ============================================ */
.worlds-item {
  grid-template-columns: 260px 1fr;   /* image 260px, text 1fr */
  gap: clamp(28px, 3.5vw, 52px);
}
.worlds-item-desc {
  max-width: 76ch;                    /* wider text (was 52ch) */
  font-size: clamp(22px, 2.2vw, 30px);
}
.worlds-item-name {
  font-size: clamp(35px, 4.5vw, 56px);  /* slightly larger for balance */
}
@media (max-width: 720px) {
  .worlds-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ============================================
   JOURNAL — small lang pill on each card
   ============================================ */
.journal-card-meta::after {
  content: attr(data-card-lang);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: rgba(107, 107, 62, 0.1);
  padding: 3px 8px;
  border-radius: 40px;
}


.journal-card-lang {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: rgba(107, 107, 62, 0.13);
  padding: 3px 7px;
  border-radius: 40px;
  margin-left: 4px;
}


/* ============================================
   LARGER BODY TEXT (per feedback: ingrandimento generale)
   ============================================ */
body {
  font-size: 20px;  /* was 18px */
}
/* Article prose column */
.article-body .container-narrow {
  font-size: 22px;  /* was 20px */
}
/* Journal card excerpts */
.journal-card-excerpt {
  font-size: 19px;
  line-height: 1.55;
}
/* Community intro on homepage was clamp(22, 2.4vw, 30) — bump */
body:not(.page-experiences) .community-intro {
  font-size: clamp(24px, 2.6vw, 34px);
}
/* Calendar descriptions */
.cal-desc {
  font-size: clamp(19px, 1.5vw, 21px);
}
/* Closing sub */
.closing-sub {
  font-size: clamp(20px, 2.2vw, 27px);
}
/* About prose already 20-22px via .about-prose-v2; keep */
/* Exp intro sub bigger */
.exp-intro-sub {
  font-size: clamp(21px, 2.1vw, 27px);
}
/* Cal page sub bigger */
.cal-page-sub {
  font-size: clamp(21px, 2.1vw, 27px);
}
/* Worlds-item descriptions */
.worlds-item-desc {
  font-size: clamp(24px, 2.4vw, 32px);
}

@media (max-width: 620px) {
  body { font-size: 18px; }
  .article-body .container-narrow { font-size: 20px; }
}


/* ============================================
   ARTICLE PAGE — wider prose + prominent date
   ============================================ */
.article-body .container-narrow {
  max-width: 940px;
  font-size: 22px;
  line-height: 1.7;
}
.article-body p:first-of-type::first-letter {
  font-size: 88px;
  padding: 8px 14px 0 0;
}

/* Widened images beyond the reading column */
.article-body .container-narrow > figure,
.article-body .container-narrow > p > img {
  max-width: 1080px;
  margin-left: calc(50% - 540px);
  margin-right: auto;
}
@media (max-width: 1100px) {
  .article-body .container-narrow > figure,
  .article-body .container-narrow > p > img {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Make the date in the hero meta clearly readable — italic serif */
.article-hero-meta {
  gap: 22px;
  font-size: 13px;
  align-items: center;
}
.article-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sand-light);
  opacity: 1;
}
.article-read {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.85;
}

@media (max-width: 620px) {
  .article-body .container-narrow { font-size: 20px; max-width: 100%; }
  .article-hero-meta { gap: 14px; }
  .article-date { font-size: 17px; }
}


/* ============================================
   NAV ICON BUTTONS (WhatsApp + Instagram)
   ============================================ */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232, 223, 206, 0.4);
  color: var(--sand);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-icon:hover {
  background: var(--sand);
  color: var(--forest-deep);
  border-color: var(--sand);
  transform: translateY(-1px);
}
.nav.scrolled .nav-icon,
.page-journal .nav .nav-icon,
.page-article .nav .nav-icon,
.page-about .nav .nav-icon,
.page-about-v2 .nav .nav-icon,
.page-experiences .nav .nav-icon,
.page-calendar .nav .nav-icon {
  color: var(--ink);
  border-color: var(--line);
}
.nav.scrolled .nav-icon:hover,
.page-journal .nav .nav-icon:hover,
.page-article .nav .nav-icon:hover,
.page-about .nav .nav-icon:hover,
.page-about-v2 .nav .nav-icon:hover,
.page-experiences .nav .nav-icon:hover,
.page-calendar .nav .nav-icon:hover {
  background: var(--forest-deep);
  color: var(--warm-white);
  border-color: var(--forest-deep);
}
.nav-icon-wa:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}

/* Footer icon links */
.footer-icon-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.footer-icon-link svg {
  flex-shrink: 0;
}


/* ============================================
   ARTICLE — even wider prose + bigger text
   ============================================ */
.article-body {
  padding: clamp(70px, 12vh, 130px) 0 clamp(80px, 14vh, 140px);
}
.article-body .container-narrow {
  max-width: 1080px;             /* was 940px */
  font-size: 24px;               /* was 22px */
  line-height: 1.68;
  padding: 0 clamp(24px, 5vw, 60px);
}
.article-body p {
  margin-bottom: 1.4em;
}
.article-body p:first-of-type::first-letter {
  font-size: 96px;
  padding: 10px 16px 0 0;
}
.article-body h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 2.2em 0 0.75em;
}
.article-body h3,
.article-body h4,
.article-body h5 {
  font-size: clamp(26px, 2.8vw, 32px);
  margin: 1.8em 0 0.6em;
}
.article-body blockquote {
  font-size: clamp(24px, 2.6vw, 32px);
  padding: 10px 0 10px 28px;
  border-left-width: 3px;
}
.article-body ul,
.article-body ol {
  margin: 1.2em 0 1.6em 1.6em;
}
.article-body li { margin-bottom: 0.6em; font-size: 24px; }

/* Widen inline images even more */
.article-body .container-narrow > figure,
.article-body .container-narrow > p > img {
  max-width: 1200px;
  margin-left: calc(50% - 600px);
  margin-right: auto;
}
@media (max-width: 1200px) {
  .article-body .container-narrow > figure,
  .article-body .container-narrow > p > img {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 720px) {
  .article-body .container-narrow { font-size: 20px; padding: 0 20px; }
  .article-body p:first-of-type::first-letter { font-size: 68px; }
  .article-body li { font-size: 20px; }
}


/* ============================================
   CALENDAR PAGE HEADER — title left, sub aligned right
   ============================================ */
.cal-page-header .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
}
.cal-page-header .section-header-eyebrow {
  grid-column: 1 / -1;   /* eyebrow stays full width on top */
}
.cal-page-title {
  grid-column: 1;
  margin-bottom: 0;
}
.cal-page-sub {
  grid-column: 2;
  margin-bottom: 0;
  padding-bottom: 8px;  /* small optical adjustment to align baseline */
}

@media (max-width: 900px) {
  .cal-page-header .container {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .cal-page-title,
  .cal-page-sub { grid-column: 1; }
}


/* ============================================
   CALENDAR PAGE HEADER — push sub even further right
   ============================================ */
.cal-page-header .container {
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(60px, 8vw, 140px);
}
.cal-page-sub {
  justify-self: end;
  text-align: right;
  max-width: 40ch;
}

@media (max-width: 900px) {
  .cal-page-sub {
    justify-self: start;
    text-align: left;
  }
}


/* ============================================
   MOBILE GALLERY — single column, full-width photos
   ============================================ */
@media (max-width: 720px) {
  .gallery-mason {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 14px;
  }
  .gallery-mason .gm {
    grid-column: span 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3;
  }
  .gallery-mason .gm img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}


/* ============================================
   MARATEA QUOTE BAND — text aligned to bottom (below the figure)
   ============================================ */
.quote-band-maratea {
  align-items: flex-end;
}
.quote-band-maratea .quote-band-content {
  padding-bottom: clamp(50px, 8vh, 100px);
}


/* ============================================
   MOBILE HERO — shift background focus up-left
   so the two figures on the calanco ridge are visible
   ============================================ */
@media (max-width: 720px) {
  .hero-image {
    background-position: 40% 25%;  /* was center — now up-left to reveal the two figures */
    background-size: cover;
  }
}
@media (max-width: 480px) {
  .hero-image {
    background-position: 42% 22%;
  }
}


/* ============================================
   SNOW QUOTE BAND — push text up toward the clouds
   ============================================ */
.quote-band:not(.quote-band-maratea) {
  align-items: flex-start;
}
.quote-band:not(.quote-band-maratea) .quote-band-content {
  padding-top: clamp(40px, 7vh, 90px);
}


/* ============================================
   MOBILE HERO — further shift toward the two figures
   ============================================ */
@media (max-width: 720px) {
  .hero-image {
    background-position: 30% 15%;  /* more up-left than 40% 25% */
  }
}
@media (max-width: 480px) {
  .hero-image {
    background-position: 25% 12%;  /* more up-left than 42% 22% */
  }
}


/* ============================================
   MOBILE HERO — dial back to a middle ground
   ============================================ */
@media (max-width: 720px) {
  .hero-image {
    background-position: 35% 20%;
  }
}
@media (max-width: 480px) {
  .hero-image {
    background-position: 33% 17%;
  }
}


/* ============================================
   SNOW QUOTE BAND — dial back down a bit
   ============================================ */
.quote-band:not(.quote-band-maratea) .quote-band-content {
  padding-top: clamp(90px, 14vh, 180px);
}


/* ============================================
   MARATEA QUOTE BAND — mobile: text at TOP (in the clouds)
   Desktop keeps it at the bottom.
   ============================================ */
@media (max-width: 720px) {
  .quote-band-maratea {
    align-items: flex-start;
  }
  .quote-band-maratea .quote-band-content {
    padding-top: clamp(60px, 10vh, 120px);
    padding-bottom: 0;
  }
}


/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(232, 223, 206, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
  color: var(--sand);
  transition: all 0.3s ease;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
  border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); }

/* Scrolled state / non-hero pages: dark hamburger */
.nav.scrolled .nav-toggle,
.page-journal .nav .nav-toggle,
.page-article .nav .nav-toggle,
.page-about .nav .nav-toggle,
.page-about-v2 .nav .nav-toggle,
.page-experiences .nav .nav-toggle,
.page-calendar .nav .nav-toggle {
  color: var(--ink);
  border-color: var(--line);
}

.mobile-menu-panel {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--warm-white);
  padding: 90px clamp(24px, 6vw, 60px) 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 99;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  display: none;
}
.mobile-menu-panel.is-open {
  transform: translateY(0);
}
.mobile-menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-panel li {
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-panel li:last-child { border-bottom: 0; }
.mobile-menu-panel a {
  display: block;
  padding: 18px 0;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.mobile-menu-panel a:hover { color: var(--olive-deep); }
.mobile-menu-panel a em { font-style: italic; color: var(--olive-deep); }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu-panel { display: block; }
  .nav-link { display: none; }  /* keep existing hide of nav links on mobile */
}


/* ============================================
   CALENDAR PAGE HEADER — tighter row gap + bigger eyebrow
   ============================================ */
.cal-page-header .container {
  row-gap: 18px;
  column-gap: clamp(60px, 8vw, 140px);
}
.cal-page-header .section-header-eyebrow {
  margin-bottom: 0;
}
.cal-page-header .section-header-eyebrow span {
  font-size: 14px;
  letter-spacing: 0.24em;
}
.cal-page-header .section-header-eyebrow .dot {
  width: 8px;
  height: 8px;
}


/* ============================================
   CALENDAR ROWS — with thumbnail column
   ============================================ */
.cal-row {
  grid-template-columns: 0.7fr 220px 2fr 1.1fr !important;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.cal-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  border-radius: 3px;
}
.cal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cal-row:hover .cal-thumb img { transform: scale(1.05); }

/* Row without thumbnail (e.g. Netherlands teaser) keeps 3 columns */
.cal-row-soon {
  grid-template-columns: 0.7fr 2fr 1.1fr !important;
}

@media (max-width: 920px) {
  .cal-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .cal-thumb {
    aspect-ratio: 16 / 9;
    max-height: 260px;
  }
  .cal-row-soon { grid-template-columns: 1fr !important; }
}


/* ============================================
   TEXT SIZE BUMP — sub-italic +15%, nav links +10%
   ============================================ */

/* Nav links (+10%) */
.nav-link {
  font-size: 19px;   /* was 17 */
}

/* Italic-serif sub texts (+~15%) — homogenize across sections */
.gallery-header p {
  font-size: 22px;   /* was 19 */
}
.section-header-right {
  font-size: clamp(22px, 2.1vw, 30px);  /* was clamp(20, 1.9, 26) */
}
.journal-sub {
  font-size: clamp(22px, 2.1vw, 27px);  /* was clamp(19, 1.8, 24) */
}
.about-cta-sub {
  font-size: 22px;   /* was 19 */
}
.community-join-note {
  font-size: 21px;   /* was 18 */
}
.hero-sub {
  font-size: clamp(20px, 1.85vw, 24px);
}
.cal-desc, .cal-page-sub, .exp-intro-sub {
  /* already clamps but bump the top a bit */
}
.exp-intro-sub {
  font-size: clamp(24px, 2.4vw, 31px);
}
.cal-page-sub {
  font-size: clamp(24px, 2.4vw, 31px);
}
.dispatch-prose {
  font-size: clamp(22px, 1.8vw, 25px);
}

@media (max-width: 620px) {
  .nav-link { font-size: 17px; }
}


/* ============================================
   MOBILE NAV BRAND — stack 'A Land Inside My' + 'Head' on 2 lines
   ============================================ */
@media (max-width: 720px) {
  .nav-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.15;
  }
  .nav-brand .nav-brand-line {
    display: block;
    white-space: nowrap;
  }
  .nav-brand em {
    display: block;
    white-space: nowrap;
  }
  .nav-brand span[data-i18n="nav.chapter"] {
    margin-top: 4px;
  }
}


/* ============================================
   MOBILE-ONLY LINE BREAK
   ============================================ */
.mobile-break { display: none; }
@media (max-width: 720px) {
  .mobile-break { display: block; }
}


/* ============================================
   MADE4YOU PAGE
   ============================================ */
.page-made4you { background: var(--warm-white); }
.page-made4you .nav {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.page-made4you .nav.scrolled {
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.page-made4you .nav .nav-brand,
.page-made4you .nav .nav-link { color: var(--sand); }
.page-made4you .nav.scrolled .nav-brand,
.page-made4you .nav.scrolled .nav-link { color: var(--ink); }
.page-made4you .nav .lang-switch { border-color: rgba(232,223,206,0.4); }
.page-made4you .nav.scrolled .lang-switch { border-color: var(--line); }
.page-made4you .nav .lang-switch button { color: var(--sand); }
.page-made4you .nav.scrolled .lang-switch button { color: var(--ink); }

/* Hero */
.m4y-hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: var(--forest-deep);
  display: flex;
  align-items: flex-end;
}
.m4y-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 22s ease-out forwards;
}
.m4y-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,24,16,0.82) 0%, rgba(15,24,16,0.35) 45%, rgba(15,24,16,0.05) 75%, transparent 100%);
  z-index: 2;
}
.m4y-hero-inner {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(30px, 5vh, 60px);
}
.m4y-hero .section-header-eyebrow span,
.m4y-hero .section-header-eyebrow .dot { color: var(--sand); background: var(--sand); }
.m4y-hero .section-header-eyebrow span { background: transparent; color: var(--sand); }
.m4y-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(46px, 7.5vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin: 22px 0 22px;
  max-width: 20ch;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.m4y-hero-title em { font-style: italic; color: var(--sand); }
.m4y-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(21px, 2.1vw, 28px);
  color: var(--sand-light);
  max-width: 42ch;
  line-height: 1.5;
}

/* Intro */
.m4y-intro {
  padding: clamp(80px, 14vh, 140px) 0 clamp(50px, 8vh, 90px);
  background: var(--warm-white);
}
.m4y-intro-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto;
  text-align: left;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

/* Modes */
.m4y-modes {
  padding: clamp(50px, 8vh, 90px) 0 clamp(80px, 14vh, 140px);
  background: var(--warm-white);
}
.m4y-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.m4y-mode:last-child { margin-bottom: 0; }
.m4y-mode-reverse {
  direction: rtl;
}
.m4y-mode-reverse > * { direction: ltr; }
.m4y-mode-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}
.m4y-mode-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.m4y-mode:hover .m4y-mode-img img { transform: scale(1.04); }
.m4y-mode-img-placeholder img { opacity: 0.55; }
.m4y-mode-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-white);
  background: rgba(15, 24, 16, 0.65);
  padding: 6px 12px; border-radius: 40px;
}
.m4y-mode-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--olive);
  margin-bottom: 16px;
}
.m4y-mode-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.018em;
}
.m4y-mode-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* How it works */
.m4y-how {
  padding: clamp(90px, 14vh, 140px) 0;
  background: var(--sand);
}
.m4y-how-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  margin: 22px 0 50px;
  letter-spacing: -0.02em;
}
.m4y-how-title em { font-style: italic; color: var(--olive-deep); }
.m4y-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin: 0;
}
.m4y-step {
  padding: 30px 26px;
  background: var(--warm-white);
  border-radius: 3px;
}
.m4y-step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 46px;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144;
}
.m4y-step-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.15;
}
.m4y-step-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Contact section */
.m4y-contact {
  padding: clamp(100px, 16vh, 160px) 0;
  background: var(--warm-white);
  text-align: center;
}
.m4y-contact-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.m4y-contact-title em { font-style: italic; color: var(--olive-deep); }
.m4y-contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.m4y-contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-ghost-dark-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--forest-deep);
  color: var(--forest-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.4s ease;
}
.btn-ghost-dark-large:hover {
  background: var(--forest-deep);
  color: var(--warm-white);
}
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #25D366;
  color: var(--warm-white);
  border: 1px solid #25D366;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.4s ease;
}
.btn-primary-dark:hover {
  background: transparent;
  color: #25D366;
}
.m4y-contact-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--mute);
}

@media (max-width: 720px) {
  .m4y-mode {
    grid-template-columns: 1fr;
    direction: ltr !important;
    gap: 24px;
  }
  .m4y-mode-reverse { direction: ltr; }
  .m4y-mode-img { aspect-ratio: 4 / 3; }
  .m4y-steps { grid-template-columns: 1fr; gap: 16px; }
}


/* ============================================
   MADE4YOU — intro widened
   ============================================ */
.m4y-intro-text {
  max-width: 62ch !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  line-height: 1.28 !important;
}
.m4y-intro-text em {
  font-style: italic;
  color: var(--olive-deep);
}

/* ============================================
   MADE4YOU — 3-column modes grid
   ============================================ */
.m4y-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 60px);
}
.m4y-col {
  display: flex;
  flex-direction: column;
}
.m4y-col-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  border-radius: 3px;
  margin-bottom: 24px;
}
.m4y-col-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.m4y-col:hover .m4y-col-img img { transform: scale(1.05); }
.m4y-col-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.m4y-col-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
}
.m4y-col-points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.m4y-col-points li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  padding-left: 22px;
  position: relative;
}
.m4y-col-points li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--olive);
  font-size: 22px;
  font-weight: 600;
}
.m4y-col-points li:last-child { border-bottom: 0; }

/* Remove old .m4y-mode styles influence — this overrides the old two-col editorial layout */
.m4y-mode { display: none !important; }

@media (max-width: 900px) {
  .m4y-modes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .m4y-col-img { aspect-ratio: 16 / 10; }
}


/* ============================================
   CLOSING SECONDARY LINE — bigger
   ============================================ */
.closing-secondary {
  font-size: clamp(19px, 1.8vw, 22px);
  margin-top: 34px;
}
.closing-secondary a,
.closing-secondary button.link-like {
  font-size: inherit;
}


/* ============================================
   CLOSING SECONDARY — larger + more prominent CTA
   ============================================ */
.closing-secondary {
  font-size: clamp(22px, 2.2vw, 28px) !important;
  margin-top: 40px !important;
  font-style: italic;
  color: var(--sand-light) !important;
  opacity: 1 !important;
}
.closing-secondary a,
.closing-secondary button.link-like {
  color: var(--sand) !important;
  font-size: inherit !important;
  border-bottom: 1px solid rgba(232, 223, 206, 0.6);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.closing-secondary a:hover,
.closing-secondary button.link-like:hover {
  border-color: var(--sand) !important;
  color: var(--warm-white) !important;
}


/* ============================================
   M4Y HERO — desktop: shift text to right side (away from the cyclists)
   ============================================ */
@media (min-width: 900px) {
  .m4y-hero-inner {
    padding-left: 28%;
  }
  .m4y-hero-title {
    max-width: 100%;
    line-height: 1.02;
  }
  .m4y-hero-sub {
    max-width: 100%;
  }
}


/* ============================================
   M4Y INTRO — 3-line centered layout, middle line in olive italic
   ============================================ */
.m4y-intro-text {
  text-align: center !important;
  max-width: 68ch !important;
  margin: 0 auto !important;
  font-size: clamp(24px, 2.8vw, 36px) !important;
  line-height: 1.35 !important;
  color: var(--ink);
  font-style: normal;
}
.m4y-intro-text em {
  font-style: italic;
  color: var(--olive-deep);
  display: inline;
}


/* ============================================
   CLOSING MARK — Italian: no text, single centered line
   ============================================ */
html[lang="it"] .closing-mark {
  gap: 0;
}
html[lang="it"] .closing-mark::after {
  display: none;
}
html[lang="it"] .closing-mark::before {
  width: 80px;
}


/* ============================================
   CLOSING MARK — global: no text, single centered dash
   (overrides both EN and IT — replaces the IT-only rule above)
   ============================================ */
.closing-mark {
  gap: 0;
}
.closing-mark::after {
  display: none;
}
.closing-mark::before {
  width: 80px;
}


/* ============================================
   CALENDAR PAGE — mobile fix for title
   ============================================ */
@media (max-width: 720px) {
  .cal-page-title {
    font-size: clamp(36px, 9vw, 52px);
    max-width: 100%;
    line-height: 1.04;
  }
  .cal-page-header {
    padding-top: clamp(130px, 20vh, 180px);
  }
}


/* ============================================
   CALENDAR PAGE — even tighter mobile
   ============================================ */
@media (max-width: 720px) {
  .cal-page-title {
    font-size: clamp(28px, 8vw, 44px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em;
  }
  .cal-page-title br {
    display: none;   /* let text flow naturally on mobile */
  }
  .cal-page-header .container {
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .cal-page-title {
    font-size: 26px !important;
  }
}


/* ============================================
   CALENDAR PAGE — mobile: sub full width, larger title
   ============================================ */
@media (max-width: 720px) {
  .cal-page-sub {
    max-width: 100% !important;
    text-align: left !important;
    justify-self: start !important;
    padding-bottom: 0 !important;
  }
  .cal-page-title {
    font-size: clamp(38px, 10vw, 56px) !important;
    max-width: 100%;
  }
  .cal-page-header {
    padding-top: clamp(120px, 18vh, 160px);
    padding-bottom: 30px;
  }
}


/* ============================================
   CALENDAR PAGE — MOBILE FORCE FULL WIDTH (final override)
   ============================================ */
@media (max-width: 720px) {
  .cal-page-header .container {
    display: block !important;
    padding: 0 24px !important;
    max-width: 100% !important;
  }
  .cal-page-title,
  .cal-page-sub {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-column: unset !important;
    justify-self: stretch !important;
    text-align: left !important;
  }
  .cal-page-sub {
    margin-top: 20px !important;
    font-size: clamp(19px, 4.2vw, 24px) !important;
    line-height: 1.55;
  }
}


/* ============================================
   CALENDAR PAGE — MOBILE FINAL: restore <br>, sub with breathing room
   ============================================ */
@media (max-width: 720px) {
  .cal-page-title br {
    display: block !important;   /* restore the line break: 'Vieni a trovarmi' / 'in Basilicata.' */
  }
  .cal-page-title {
    font-size: clamp(42px, 11vw, 60px) !important;
    line-height: 1.02 !important;
  }
  .cal-page-sub {
    max-width: 32ch !important;  /* narrower so it reads as a caption, more elegant */
    font-size: clamp(18px, 4vw, 22px) !important;
    margin-top: 24px !important;
  }
}


/* ============================================
   MADE4YOU HERO — MOBILE: show the girl + shift text right
   ============================================ */
@media (max-width: 720px) {
  .m4y-hero-bg {
    background-position: 25% center !important;  /* shift left to reveal the cyclists */
  }
  .m4y-hero-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .m4y-hero-title,
  .m4y-hero-sub,
  .m4y-hero .section-header-eyebrow {
    margin-left: 12% !important;  /* small right shift so text sits away from the girl's face */
  }
}


/* ============================================
   CLOSING BG — MOBILE: shift right to reveal profile
   ============================================ */
@media (max-width: 720px) {
  .closing-bg {
    background-position: 30% center !important;
  }
}


/* ============================================
   MADE4YOU HERO — MOBILE: right-align text
   ============================================ */
@media (max-width: 720px) {
  .m4y-hero-title,
  .m4y-hero-sub,
  .m4y-hero .section-header-eyebrow {
    margin-left: 0 !important;
    text-align: right !important;
    justify-content: flex-end !important;
  }
  .m4y-hero-title,
  .m4y-hero-sub {
    margin-left: auto !important;
  }
  .m4y-hero .section-header-eyebrow {
    justify-content: flex-end;
    display: flex;
  }
}


/* ============================================
   CLOSING BG — MOBILE: further left to reveal more of the body
   ============================================ */
@media (max-width: 720px) {
  .closing-bg {
    background-position: 20% center !important;
  }
}


/* ============================================
   CLOSING BG — MOBILE: shift body toward viewport left
   ============================================ */
@media (max-width: 720px) {
  .closing-bg {
    background-position: 42% center !important;
  }
}


/* ============================================
   CALENDAR PAGE — MOBILE: bigger sub text
   ============================================ */
@media (max-width: 720px) {
  .cal-page-sub {
    font-size: clamp(22px, 5.5vw, 28px) !important;
    line-height: 1.4 !important;
    max-width: 34ch !important;
  }
}


/* ============================================
   CALENDAR + EXPERIENCES — bigger body text
   ============================================ */
.cal-desc {
  font-size: clamp(21px, 1.7vw, 24px) !important;
  line-height: 1.55;
}
.cal-title {
  font-size: clamp(26px, 2.6vw, 34px) !important;
  line-height: 1.12;
}
.cal-season {
  font-size: 12px;
  letter-spacing: 0.22em;
}
.worlds-item-desc {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.45;
}
.worlds-item-name {
  font-size: clamp(38px, 4.6vw, 56px);
}
.worlds-list-footnote {
  font-size: clamp(20px, 1.9vw, 24px);
}

@media (max-width: 720px) {
  .cal-desc { font-size: 19px !important; }
  .cal-title { font-size: 24px !important; }
  .worlds-item-desc { font-size: 20px !important; }
  .worlds-item-name { font-size: 32px !important; }
}


/* ============================================
   CALENDAR + MADE4YOU — body text matched to cal-page-sub size
   ============================================ */
.cal-desc {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.55;
}
.m4y-col-points li {
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.5;
  padding: 18px 0 18px 24px;
}

@media (max-width: 720px) {
  .cal-desc,
  .m4y-col-points li {
    font-size: clamp(20px, 5vw, 26px) !important;
  }
}


/* ============================================
   ARTICLE COMMENTS (imported from WP)
   ============================================ */
.article-comments {
  padding: clamp(60px, 10vh, 100px) 0 clamp(40px, 6vh, 60px);
  background: var(--warm-white);
  border-top: 1px solid var(--line-soft);
}
.article-comments .section-header-eyebrow {
  margin-bottom: 40px;
}
.comment-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  max-width: 720px;
}
.comment-item:last-child { border-bottom: 0; }
.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--olive-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  font-variation-settings: "opsz" 144;
}
.comment-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}
.comment-author {
  color: var(--ink);
  font-weight: 400;
}
.comment-content {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}
