* {
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('fonts/PPNeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal Text';
  src: url('fonts/PPNeueMontrealText-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: 'PP Neue Montreal', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text: 'PP Neue Montreal Text', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-h1-size: 80px;
  --text-h1-weight: 300;
  --text-h1-lh: 1.05;
  --text-h1-ls: -0.01em;

  --text-h2-size: 72px;
  --text-h2-weight: 300;
  --text-h2-lh: 1;
  --text-h2-ls: -0.01em;

  --text-h3-size: 64px;
  --text-h3-weight: 300;
  --text-h3-lh: 1.1;
  --text-h3-ls: 0;

  --text-h4-size: 40px;
  --text-h4-weight: 400;
  --text-h4-lh: 1.16;
  --text-h4-ls: 0;

  --text-h5-size: 24px;
  --text-h5-weight: 400;
  --text-h5-lh: 1.32;
  --text-h5-ls: 0;

  --text-h6-size: 20px;
  --text-h6-weight: 400;
  --text-h6-lh: 1.4;
  --text-h6-ls: 0;

  --text-p-size: 16px;
  --text-p-weight: 400;
  --text-p-lh: 1.5;
  --text-p-ls: 0;

  --obsidian-brown: #0C0600;
  --cave-brown: #251400;
  --sunlit-cream: #FFF1DE;
  --ember-gold: #FFB00E;
  --clay-terracotta: #85442D;

  --brown-950: #0C0600;
  --brown-900: #160C00;
  --brown-800: #251400;
  --brown-700: #3B2C1A;
  --brown-600: #514333;
  --brown-500: #7C7266;

  --cream-50: #FFFCF8;
  --cream-100: #FFF9F2;
  --cream-200: #FFF7EB;
  --cream-300: #FFF4E5;
  --cream-400: #FFF1DE;
  --cream-500: #E6D9C8;

  --gold-100: #FFEFCF;
  --gold-200: #FFDF9F;
  --gold-300: #FFD06E;
  --gold-400: #FFC03E;
  --gold-500: #FFB00E;
  --gold-600: #E69E0D;
  --gold-700: #CC8D0B;
  --gold-800: #996A08;

  --clay-100: #E7DAD5;
  --clay-200: #CEB4AB;
  --clay-300: #B68F81;
  --clay-400: #9D6957;
  --clay-500: #85442D;
  --clay-600: #783D28;
  --clay-700: #6A3624;
  --clay-800: #50291B;
  --clay-900: #351B12;
}

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

:root {
  --section-x: 2rem;
  --max-w: 1920px;
}

/* ─── Site Header ─────────────────────────── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--section-x);
  max-width: var(--max-w);
  margin-inline: auto;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 32px;
  width: 82px;
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  color: var(--ember-gold, #FFB00E);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--gold-400, #FFC03E);
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.32;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.btn-book-now:hover {
  background: var(--gold-300, #FFD06E);
}

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-50, #FFFCF8);
  font-size: 1.75rem;
  padding: 0.25rem;
  line-height: 1;
}

/* ─── Mobile Menu ─────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--brown-950, #0C0600);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0 2rem;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.4s;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-x) 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.close-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-400, #FFC03E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-950, #0C0600);
  font-size: 1.125rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1.25rem var(--section-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mobile-nav-link:hover {
  opacity: 0.6;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0 var(--section-x);
}

.mobile-btn-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.875rem 0.875rem 1.5rem;
  background: var(--gold-400, #FFC03E);
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-btn-primary:hover {
  background: var(--gold-300, #FFD06E);
}

.mobile-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold-400, #FFC03E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-950, #0C0600);
  font-size: 1.25rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: var(--gold-300, #FFD06E);
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .header-nav,
  .btn-book-now {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: var(--font-display), var(--font-text), sans-serif;
  background: var(--cream-100, #FFF9F2);
  color: var(--obsidian-brown);
  overflow-x: hidden;
}

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

.icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.icon-list {
  stroke-width: 1.75;
}

section {
  position: relative;
  width: 100%;
  height: 100svh;
}

.spacer {
  height: 200vh;
}

.hero {
  z-index: 2;
}

.hero-img,
.hero-header,
.hero-copy {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform, opacity, width, height;
}

.hero-header,
.hero-copy {
  left: 0;
  right: 0;
  margin-inline: auto;
  max-width: var(--max-w);
}

.hero-img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background-image: url("assets/poster-video-1920.webp");
  background-size: cover;
  background-position: center center;
}

.hero-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 6, 0, 0.55);
  opacity: 1;
  pointer-events: none;
}

.hero-header,
.hero-copy {
  padding: 4rem var(--section-x);
  color: var(--cream-50);
  display: flex;
  align-items: flex-end;
}

.hero-header h1 .word {
  display: inline-block;
}

.hero-header h1 {
  width: 40.9375rem;
  color: #FFF;
  font-family: var(--font-display), sans-serif;
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  letter-spacing: -0.05rem;
}

.hero-copy h3 {
  width: 36rem;
  text-wrap: balance;
  color: var(--sunlit-cream, #FFF1DE);
  font-family: var(--font-display), sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 132%;
}

.about,
.outro {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about {
  margin-top: 275svh;
  z-index: 1;
}

.about-images {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem var(--section-x);
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-imgs-col {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16rem;
  will-change: transform;
}

.about-imgs-col .img {
  width: 165px;
  height: 165px;
  border-radius: 0.5rem;
  overflow: hidden;
}

#about-imgs-col-1 {
  transform: translateY(1200px);
}

#about-imgs-col-2 {
  transform: translateX(-220px) translateY(650px);
}

#about-imgs-col-3 {
  transform: translateX(220px) translateY(650px);
}

#about-imgs-col-4 {
  transform: translateY(1200px);
}

.about-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 33.1875rem;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-header h2 .word {
  display: inline-block;
}

.about-header h2 {
  color: var(--brown-800, #251400);
  text-align: center;
  font-family: var(--font-display), sans-serif;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.045rem;
}

.about-header p .word {
  display: inline-block;
}

.about-header p {
  color: var(--brown-500, #7C7266);
  text-align: center;
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.about-center-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 165px;
  height: 165px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 1536px) {
  #about-imgs-col-2 {
    transform: translateX(-180px) translateY(650px);
  }

  #about-imgs-col-3 {
    transform: translateX(180px) translateY(650px);
  }
}

@media (max-width: 1366px) {
  #about-imgs-col-2 {
    transform: translateX(-140px) translateY(650px);
  }

  #about-imgs-col-3 {
    transform: translateX(140px) translateY(650px);
  }

  .about-header h2 {
    max-width: 24rem;
    font-size: 3.5rem;
    letter-spacing: -0.035rem;
  }

  .about-header p {
    max-width: 24rem;
  }
}

@media (max-width: 1024px) {
  #about-imgs-col-2,
  #about-imgs-col-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-img {
    background-image: url("assets/poster-video-mobile.webp");
  }

  :root {
    --section-x: 1.5rem;
  }

  .hero-header,
  .hero-copy {
    padding: 2rem var(--section-x);
  }

  .hero-header h1 {
    width: 20rem;
    font-size: 2.5rem;
    letter-spacing: -0.025rem;
  }

  .hero-copy h3 {
    width: 20rem;
    font-size: 1.125rem;
  }

  .about-images {
    padding: 2rem var(--section-x);
    overflow-x: clip;
  }

  #about-imgs-col-1 {
    transform: translateX(-2rem) translateY(1200px);
  }

  #about-imgs-col-4 {
    transform: translateX(2rem) translateY(1200px);
  }

  .about-header {
    width: 20rem;
    gap: 1.5rem;
  }

  .about-header h2 {
    max-width: 20rem;
    font-size: 2.75rem;
    letter-spacing: -0.0275rem;
  }

  .about-header p {
    max-width: 19rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .about-images {
    justify-content: center;
    gap: 2rem;
  }

  .about-imgs-col {
    gap: 6rem;
  }

  #about-imgs-col-1 {
    transform: translateX(calc(-11rem + 30px));
  }

  #about-imgs-col-4 {
    transform: translateX(calc(11rem - 30px));
  }

  .about-imgs-col .img:nth-child(4) {
    display: none;
  }
}

/* ─── Features Section ─────────────────────────── */
.features {
  background: var(--brown-950, #0C0600);
  margin-top: 12rem;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.features-left {
  align-self: start;
  display: flex;
  flex-direction: column;
  padding-top: 8em;
  padding-inline: var(--section-x);
  gap: 1.5rem;
}

.features-title .char {
  display: inline-block;
}

.features-title {
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  letter-spacing: -0.045rem;
}

.features-title-accent {
  color: var(--gold-300, #FFD06E);
}

.features-desc {
  color: var(--cream-500, #E6D9C8);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  max-width: 28rem;
}

.features-right {
  overflow: hidden;
  padding-top: 8em;
}

.features-right-inner {
  position: relative;
  will-change: transform;
  display: flex;
  flex-direction: column;
  padding: 0 var(--section-x);
}

.features-item {
  display: flex;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.features-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.features-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-item-title .char {
  display: inline-block;
}

.features-item-title {
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.015rem;
  max-width: 20rem;
  text-wrap: balance;
}

.features-item-desc {
  color: var(--cream-500, #E6D9C8);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 20rem;
  text-wrap: balance;
}

@media (max-width: 1024px) {
  .features-title {
    font-size: 2.5rem;
  }
}


@media (max-width: 768px) {
  .features {
    height: auto;
    padding-block: 4rem;
  }

  .features-inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .features-left {
    padding-top: 0;
    padding-bottom: 5rem;
    padding-inline: var(--section-x);
  }

  .features-title {
    font-size: 3rem;
  }

  .features-right {
    height: auto;
    overflow: visible;
    padding-top: 0;
  }

  .features-right-inner {
    padding: 0 var(--section-x);
  }

  .features-item {
    padding: 2rem 0;
  }

  .features-item-title {
    font-size: 1.5rem;
  }
}

/* ─── Journeys Section ─────────────────────────── */
.journeys {
  min-height: 100svh;
  height: auto;
  overflow: hidden;
  background: var(--cream-50, #FFFCF8);
  color: var(--brown-800, #251400);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(5rem, 8vh, 6.5rem) var(--section-x) clamp(4rem, 7vh, 5rem);
}

.journeys-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
  max-width: var(--max-w);
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.journeys-copy h2 {
  max-width: 11ch;
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(4.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.journeys-copy h2 .char {
  display: inline-block;
}

.journeys-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background: var(--gold-500, #FFB00E);
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease;
}

.journeys-cta:hover {
  background: var(--gold-400, #FFC03E);
}

.journeys-stage {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  height: min(47vw, 35rem);
  min-height: 21rem;
  overflow: hidden;
}

.journeys-card {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(46vw, 46rem);
  aspect-ratio: 1.33 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-500, #E6D9C8);
  transform-origin: center right;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.journeys-card img {
  display: block;
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .journeys-copy h2 {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
  }

  .journeys-stage {
    height: min(58vw, 32rem);
    min-height: 19rem;
  }

  .journeys-card {
    width: min(58vw, 38rem);
  }
}

@media (max-width: 768px) {
  .journeys {
    height: auto;
    min-height: 42rem;
    justify-content: flex-start;
    padding-top: 4.75rem;
    padding-bottom: 3.25rem;
  }

  .journeys-copy {
    gap: 1.25rem;
    margin-bottom: 3rem;
  }

  .journeys-copy h2 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 12vw, 3.5rem);
    line-height: 0.98;
  }

  .journeys-cta {
    padding: 0.5rem 1.125rem;
    font-size: 1.125rem;
  }

  .journeys-stage {
    width: 100%;
    height: 15.5rem;
    min-height: 0;
  }

  .journeys-card {
    width: min(66vw, 20rem);
    aspect-ratio: 0.95 / 1;
  }
}

@media (max-width: 420px) {
  .journeys {
    min-height: 39rem;
  }

  .journeys-stage {
    height: 14.5rem;
  }
}

/* ─── FAQ Section ─────────────────────────── */
.faq {
  min-height: auto;
  height: auto;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(28rem, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding: clamp(5.5rem, 10vw, 8rem) var(--section-x);
  background: var(--cream-100, #FFF9F2);
  color: var(--brown-800, #251400);
  max-width: var(--max-w);
  margin-inline: auto;
}

.faq-intro {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-intro h2 {
  max-width: 8.5ch;
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.faq-intro h2 .char {
  display: inline-block;
}

.faq-intro p {
  max-width: 17rem;
  color: var(--brown-500, #7C7266);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-group {
  display: flex;
  flex-direction: column;
}

.faq-group h3 {
  margin-bottom: 0.75rem;
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-item {
  border-top: 1px solid rgba(37, 20, 0, 0.12);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(37, 20, 0, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.25rem;
  padding: 0.75rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--brown-800, #251400);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  text-wrap: pretty;
}

.faq-item summary .icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brown-700, #3B2C1A);
  font-size: 1rem;
  transition: transform 0.24s ease, color 0.24s ease;
}

.faq-item[open] summary .icon {
  color: var(--ember-gold, #FFB00E);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 38rem;
  padding: 0 2.75rem 1.125rem 0;
  color: var(--brown-500, #7C7266);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-wrap: pretty;
}

@media (max-width: 1024px) {
  .faq {
    grid-template-columns: minmax(15rem, 0.75fr) minmax(24rem, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .faq-intro h2 {
    font-size: clamp(3.5rem, 7vw, 4.5rem);
  }
}

@media (max-width: 768px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    padding: 4.75rem var(--section-x) 5rem;
  }

  .faq-intro {
    position: static;
    gap: 1.25rem;
  }

  .faq-intro h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .faq-intro p {
    max-width: 18rem;
    font-size: 0.9375rem;
  }

  .faq-groups {
    gap: 2rem;
  }

  .faq-group h3 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .faq-item summary {
    min-height: 3rem;
    gap: 1rem;
    font-size: 0.9375rem;
  }

  .faq-item p {
    padding-right: 1.75rem;
    font-size: 0.9375rem;
  }
}

/* ─── Stories Section ─────────────────────────── */
.stories {
  min-height: 100svh;
  height: 100svh;
  background: var(--cream-100, #FFF9F2);
  color: var(--brown-800, #251400);
  overflow: hidden;
}

.stories-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.25rem;
  height: 100%;
  padding: clamp(6.5rem, 12vh, 7.5rem) var(--section-x) clamp(3rem, 5vw, 5rem);
  max-width: var(--max-w);
  margin-inline: auto;
}

.stories-header {
  display: flex;
  justify-content: center;
}

.stories-title {
  max-width: 100%;
  color: var(--brown-800, #251400);
  font-family: var(--font-display), sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
}

.stories-title .char,
.stories-quote .line,
.stories-name .char,
.stories-location .char {
  display: inline-block;
}

.stories-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem) minmax(18rem, 24rem) minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 1.5rem;
  min-height: 0;
  transform: translateY(-3.25rem);
}

.stories-media {
  position: relative;
  grid-column: 2;
  z-index: 3;
  width: 100%;
  max-width: 15.5rem;
  aspect-ratio: 0.76 / 1;
  justify-self: end;
  overflow: visible;
  transform: translateX(-1rem);
}

.stories-img {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 1.25rem 3rem rgba(59, 44, 26, 0.16);
  object-fit: cover;
  transform-origin: 50% 70%;
  will-change: transform;
  backface-visibility: hidden;
}

.stories-img:not(:first-child) {
  transform: translateX(-200vw) rotate(-5deg);
}

.stories-copy {
  position: relative;
  grid-column: 3;
  z-index: 1;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-self: start;
  transform: translateX(-1rem);
}

.stories-quote {
  color: var(--brown-500, #7C7266);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-wrap: pretty;
}

.stories-person {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stories-name {
  color: var(--brown-700, #3B2C1A);
  font-family: var(--font-display), sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.32;
}

.stories-location {
  color: var(--ember-gold, #FFB00E);
  font-family: var(--font-text), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.stories-static {
  display: none;
}

@media (min-width: 1600px) {
  .stories-stage {
    transform: translateY(-5.25rem);
  }

  .stories-media {
    max-width: 18rem;
  }
}

@media (max-width: 1024px) {
  .stories-stage {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem) minmax(18rem, 22rem) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .stories-media {
    max-width: 12.5rem;
  }
}

@media (max-width: 768px) {
  .stories {
    height: 100svh;
  }

  .stories-inner {
    grid-template-rows: auto auto;
    align-content: center;
    gap: 2.25rem;
    padding: 0.5rem 1rem 1.5rem;
  }

  .stories-title {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4rem);
    text-align: center;
  }

  .stories-stage {
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 1.25rem;
    transform: none;
  }

  .stories-media {
    grid-column: auto;
    width: min(76vw, 19rem);
    max-width: none;
    justify-self: center;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .stories-copy {
    grid-column: auto;
    max-width: 20rem;
    gap: 1rem;
    justify-self: center;
    transform: none;
  }

  .stories-quote {
    font-size: 0.9375rem;
    line-height: 1.5;
    text-wrap: pretty;
  }

  .stories-name {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .stories-media {
    width: min(76vw, 19rem);
  }

  .stories-title {
    font-size: clamp(2.5rem, 13vw, 3.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stories {
    height: auto;
    overflow: visible;
  }

  .stories-inner {
    height: auto;
    padding-block: 5rem;
  }

  .stories-stage {
    display: none;
  }

  .stories-static {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .stories-static-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stories-static-item img {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 8px;
  }

  .stories-static-quote {
    color: var(--brown-500, #7C7266);
    font-family: var(--font-text), sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .stories-static-item h5 {
    color: var(--brown-700, #3B2C1A);
    font-family: var(--font-display), sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.32;
  }

  .stories-static-location {
    color: var(--ember-gold, #FFB00E);
    font-family: var(--font-text), sans-serif;
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .stories-static {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ─── Full Bleed Image Section ─────────────────────────── */
.full-bleed-image {
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  color: var(--cream-50, #FFFCF8);
}

.full-bleed-image-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  border-radius: 8px;
  transform: translate(-50%, -50%) scale(0.92);
  transform-origin: center center;
  will-change: transform, border-radius;
}

.full-bleed-image picture,
.full-bleed-image img,
.full-bleed-image-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.full-bleed-image img {
  object-fit: cover;
  object-position: center center;
}

.full-bleed-image-shade {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(12, 6, 0, 0.58) 0%, rgba(12, 6, 0, 0.26) 34%, rgba(12, 6, 0, 0) 68%),
    linear-gradient(180deg, rgba(12, 6, 0, 0.32) 0%, rgba(12, 6, 0, 0) 42%);
  pointer-events: none;
}

.full-bleed-image-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
}

.full-bleed-image h2 {
  max-width: 15ch;
  padding: clamp(4.75rem, 8vw, 7rem) var(--section-x);
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .full-bleed-image img {
    object-position: center top;
  }

  .full-bleed-image-shade {
    background:
      linear-gradient(145deg, rgba(12, 6, 0, 0.62) 0%, rgba(12, 6, 0, 0.24) 52%, rgba(12, 6, 0, 0) 82%),
      linear-gradient(180deg, rgba(12, 6, 0, 0.36) 0%, rgba(12, 6, 0, 0) 46%);
  }

  .full-bleed-image h2 {
    max-width: 12ch;
    padding: var(--section-x);
    font-size: clamp(3rem, 16vw, 4.5rem);
  }
}

/* ─── Footer ─────────────────────────── */
.site-footer {
  background: var(--brown-950, #0C0600);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(18rem, 1.25fr) minmax(12rem, 0.6fr) minmax(12rem, 0.6fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
  min-height: 24rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(4.75rem, 8vw, 6.25rem) var(--section-x) clamp(3.5rem, 7vw, 5rem);
  color: var(--cream-50, #FFFCF8);
}

.footer-brand,
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  width: 7.5rem;
  height: 2.9375rem;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-location {
  margin-top: 1.5rem;
  color: var(--cream-500, #E6D9C8);
  font-family: var(--font-text), sans-serif;
  font-size: var(--text-p-size);
  font-weight: var(--text-p-weight);
  line-height: var(--text-p-lh);
  letter-spacing: var(--text-p-ls);
}

.footer-signoff {
  margin-top: 4rem;
}

.footer-signoff h5 {
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: var(--text-h5-size);
  font-weight: var(--text-h5-weight);
  line-height: var(--text-h5-lh);
  letter-spacing: var(--text-h5-ls);
}

.footer-signoff p {
  display: block;
  margin-top: 1rem;
  color: rgba(230, 217, 200, 0.48);
  font-family: var(--font-text), sans-serif;
  font-size: var(--text-p-size);
  font-weight: var(--text-p-weight);
  line-height: var(--text-p-lh);
  letter-spacing: var(--text-p-ls);
}

.footer-nav h4,
.footer-contact h4 {
  margin-bottom: 1.75rem;
  color: var(--cream-50, #FFFCF8);
  font-family: var(--font-display), sans-serif;
  font-size: var(--text-h4-size);
  font-weight: var(--text-h4-weight);
  line-height: var(--text-h4-lh);
  letter-spacing: var(--text-h4-ls);
}

.footer-nav a,
.footer-contact a {
  color: var(--cream-50, #FFFCF8);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav h6,
.footer-contact h6 {
  font-family: var(--font-display), sans-serif;
  font-size: var(--text-h6-size);
  font-weight: var(--text-h6-weight);
  line-height: var(--text-h6-lh);
  letter-spacing: var(--text-h6-ls);
}

.footer-nav a + a,
.footer-contact a + a {
  margin-top: 1.5rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--ember-gold, #FFB00E);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-signoff {
    margin-top: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    min-height: 0;
    padding: 4rem var(--section-x) 3.5rem;
  }

  .footer-location {
    margin-top: 1rem;
  }

  .footer-signoff {
    margin-top: 2.75rem;
  }

  .footer-nav h4,
  .footer-contact h4 {
    margin-bottom: 1.25rem;
  }

  .footer-logo {
    width: 6.25rem;
    height: 2.4375rem;
  }

  .footer-nav a + a,
  .footer-contact a + a {
    margin-top: 1.125rem;
  }
}

/* ─── Page Loader ─── */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sunlit-cream);
  display: flex;
  align-items: flex-end;
  padding: 40px 48px;
}

.page-loader-counter {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: var(--text-h1-weight);
  line-height: 1;
  letter-spacing: var(--text-h1-ls);
  color: var(--obsidian-brown);
}
