/* ===================================================
   EVERBLOOMS FILMS — STYLES
   =================================================== */

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

:root {
  --ivory: #F6F2EE;
  --beige: #EDE6DF;
  --charcoal: #171717;
  --text-dark: #232323;
  --text-mid: #6C6C6C;
  --gold: #B7925A;
  --gold-light: #D4AA7A;
  --white: #FFFFFF;
  --border: rgba(35, 35, 35, 0.12);
  --border-light: rgba(255, 255, 255, 0.15);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  /* Fluid horizontal gutter — scales 20px → 40px across viewports */
  --pad-x: clamp(20px, 4vw, 40px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================================================
   PAGE SYSTEM
   =================================================== */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(246, 242, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav.dark-nav {
  background: rgba(23, 23, 23, 0.9);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav.scrolled .logo-text {
  color: var(--text-dark);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--white);
}

.nav.scrolled .nav-link {
  color: var(--text-mid);
}

.nav.scrolled .nav-link:hover {
  color: var(--text-dark);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  color: var(--white) !important;
  transition: background 0.3s, border-color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--text-dark);
  color: var(--text-dark) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--text-dark);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  /* touch-target size */
  min-height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 24px var(--pad-x) 32px;
  gap: 20px;
  max-height: calc(100vh - var(--nav-h));
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===================================================
   COMMON SECTION ELEMENTS
   =================================================== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--gold-light);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.section-heading.light {
  color: var(--white);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-header {
  text-align: center;
  padding: var(--section-pad) var(--pad-x) 60px;
  max-width: 800px;
  margin: 0 auto;
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.dark-section {
  background: var(--charcoal);
}

/* ===================================================
   HERO (HOME)
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  /* stable viewport height on mobile browsers */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-fullscreen-iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: auto;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(23, 23, 23, 0.55) 0%,
      rgba(23, 23, 23, 0.3) 40%,
      rgba(23, 23, 23, 0.6) 100%);
}

.hero-audio-btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-audio-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(183, 146, 90, 0.4);
}

.hero-audio-btn svg {
  width: 20px;
  height: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    height: 30px;
  }

  50% {
    opacity: 0.8;
    height: 50px;
  }
}

/* ===================================================
   PHILOSOPHY
   =================================================== */
.philosophy {
  padding: var(--section-pad) var(--pad-x);
  background: var(--ivory);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.philosophy-title {
  grid-column: 3 / 11;
  grid-row: 1;
  z-index: 10;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 40px;
  pointer-events: none;
}

.philosophy-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  font-size: 1.2em;
}

.ph-img-left {
  grid-column: 2 / 5;
  grid-row: 2 / 5;
  margin-top: -30px;
  position: relative;
}

.ph-img-right {
  grid-column: 10 / 13;
  grid-row: 1 / 4;
  position: relative;
}

.ph-img-left img,
.ph-img-right img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ph-img-left img {
  aspect-ratio: 4/5;
}

.ph-img-right img {
  aspect-ratio: 3/4;
}

.ph-text {
  grid-column: 5 / 10;
  grid-row: 2;
  padding: 16px 20px 0;
  text-align: left;
}

.ph-text .body-text {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* ===================================================
   LOVE VIDEO HEADER
   =================================================== */
.love-video-header.section-header {
  padding-top: 0;
  padding-bottom: 56px;
  max-width: 900px;
}

/* ===================================================
   LOVE VIDEO BANNER
   =================================================== */
.love-video-banner {
  position: relative;
  width: 100%;
  height: clamp(450px, 68vh, 650px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-dark);
  margin-top: clamp(60px, 8vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
}

@media (min-width: 1600px) and (min-height: 950px) {
  .love-video-banner {
    height: clamp(550px, 72vh, 980px);
  }
}

.video-banner-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-vimeo-iframe {
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  z-index: 0;
}

.love-video-banner:hover .banner-video {
  transform: scale(1.04);
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(23, 23, 23, 0.45) 0%,
      rgba(23, 23, 23, 0.2) 50%,
      rgba(23, 23, 23, 0.55) 100%);
  transition: background 1s ease;
  z-index: 1;
}

.love-video-banner:hover .video-banner-overlay {
  background: linear-gradient(to bottom,
      rgba(23, 23, 23, 0.55) 0%,
      rgba(23, 23, 23, 0.35) 50%,
      rgba(23, 23, 23, 0.65) 100%);
}

.video-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  text-align: center;
}

.video-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  text-transform: none;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-banner-title em {
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: none;
  font-weight: 300;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.video-banner-title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -2%;
  width: 104%;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M3,5 Q50,8 97,3' stroke='%23F6F2EE' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.love-video-banner:hover .video-banner-title {
  transform: translateY(-2px);
}

/* ===================================================
   REMEMBER SECTION
   =================================================== */
.remember-section {
  padding: var(--section-pad) var(--pad-x);
  background: var(--ivory);
}

.remember-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.remember-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.remember-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.remember-title em {
  font-family: var(--font-heading);
  font-style: italic;
  text-transform: none;
  font-weight: 300;
  color: var(--text-dark);
}

.remember-video-col {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.remember-video-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: var(--text-dark);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.remember-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.remember-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.remember-video-wrap:hover .remember-bg-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.remember-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.12);
  transition: background 1s ease;
  z-index: 1;
}

.remember-video-wrap:hover .remember-overlay {
  background: rgba(23, 23, 23, 0.02);
}

.remember-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(68px, 9vw, 84px);
  height: clamp(68px, 9vw, 84px);
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.remember-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transform: translateX(2px);
  transition: fill 0.4s ease, transform 0.4s ease;
}

.remember-video-wrap:hover .remember-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 15px 30px rgba(183, 146, 90, 0.3);
}

.remember-video-wrap:hover .remember-play-btn svg {
  fill: var(--white);
  transform: translateX(2px) scale(1.05);
}

.remember-progress-bar {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
  overflow: hidden;
  border-radius: 1px;
}

.remember-progress-fill {
  width: 30%;
  height: 100%;
  background: var(--ivory);
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.remember-video-wrap:hover .remember-progress-fill {
  width: 75%;
}

/* ===================================================
   STAGGERED FILMS SECTION
   =================================================== */
.staggered-films-section {
  padding: clamp(80px, 10vw, 120px) var(--pad-x) 80px;
  background: var(--ivory);
}

.staggered-films-container {
  max-width: 1400px;
  margin: 0 auto;
}

.staggered-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 90px;
  padding-top: 40px;
}

.staggered-card {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.staggered-card.card-left {
  transform: translateY(30px);
}

.staggered-card.card-center {
  transform: translateY(-20px);
}

.staggered-card.card-right {
  transform: translateY(30px);
}

/* Hover effects for staggered items */
.staggered-card.card-left:hover {
  transform: translateY(22px) scale(1.02);
}

.staggered-card.card-center:hover {
  transform: translateY(-28px) scale(1.02);
}

.staggered-card.card-right:hover {
  transform: translateY(22px) scale(1.02);
}

.staggered-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #181818 linear-gradient(110deg, #181818 8%, #262626 18%, #181818 33%);
  background-size: 200% 100%;
  animation: videoShimmer 2.5s infinite linear;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.staggered-video-wrap img,
.staggered-video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.staggered-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.staggered-video-wrap:hover .staggered-img {
  transform: scale(1.03);
}

.staggered-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.12);
  transition: background 0.8s ease;
  z-index: 1;
}

.staggered-video-wrap:hover .staggered-overlay {
  background: rgba(23, 23, 23, 0.03);
}

.staggered-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.staggered-play-circle.large {
  width: 60px;
  height: 60px;
}

.staggered-play-circle svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  transform: translateX(1px);
  transition: transform 0.4s ease;
}

.staggered-play-circle.large svg {
  width: 22px;
  height: 22px;
  transform: translateX(2px);
}

.staggered-video-wrap:hover .staggered-play-circle {
  background: var(--gold);
}

.staggered-timeline {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  z-index: 2;
  border-radius: 1px;
}

.staggered-timeline.center-timeline {
  bottom: 38px;
}

.staggered-timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25%;
  background: var(--ivory);
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.staggered-video-wrap:hover .staggered-timeline::after {
  width: 60%;
}

.staggered-controls {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  z-index: 2;
  opacity: 0.85;
}

.controls-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.control-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  cursor: pointer;
  transition: color 0.3s;
}

.control-icon:hover {
  color: var(--gold-light);
}

/* Staggered text & CTA styling */
.staggered-info {
  text-align: center;
  max-width: 950px;
  margin: 60px auto 0;
  padding: 0;
}

.staggered-description {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Button override */
.btn-beige {
  background: var(--beige);
  color: var(--text-dark);
  border-color: var(--beige);
}

.btn-beige:hover {
  background: var(--text-dark);
  color: var(--ivory);
  border-color: var(--text-dark);
}

/* ===================================================
   TRUSTED SECTION
   =================================================== */
.trusted {
  padding: clamp(80px, 8vw, 120px) 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
  width: 100%;
}

.trusted-inner {
  width: 100%;
  margin: 0 auto;
}

.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.trusted-marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeContinuous 36s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4vw, 70px);
  padding-right: clamp(36px, 4vw, 70px);
  flex-shrink: 0;
}

.marquee-group span {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  font-weight: 300;
  color: var(--text-dark);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.marquee-group .sep {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
}

@keyframes marqueeContinuous {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trusted-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ===================================================
   FILMS INSPIRED BY LOVE
   =================================================== */
.films-inspired-love {
  position: relative;
  background: var(--ivory);
}

.fil-video-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.fil-bg {
  width: 100%;
  height: clamp(300px, 50vw, 600px);
  object-fit: cover;
  display: block;
}

.fil-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.3);
}

.fil-header {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.fil-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin: 0;
}

.fil-italic {
  font-style: italic;
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.fil-italic::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -5%;
  width: 110%;
  height: 8px;
  border-bottom: 3px solid var(--white);
  border-radius: 50%;
  transform: rotate(-3deg);
}

/* ===================================================
   A CINEMATIC WAY
   =================================================== */
.cinematic-way {
  background: var(--beige);
  padding: clamp(96px, 12vw, 160px) var(--pad-x);
}

.cw-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto 120px;
  align-items: center;
}

.cw-heading-col {
  padding-right: 40px;
}

.cw-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.cw-italic {
  font-style: italic;
  text-transform: none;
}

.cw-video-col {
  position: relative;
}

.cw-main-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.cw-main-video img,
.cw-sub-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cw-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.cw-play-circle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cw-play-circle svg {
  width: 32px;
  height: 32px;
}

.cw-play-small {
  width: 48px;
  height: 48px;
}

.cw-play-small svg {
  width: 24px;
  height: 24px;
}

.cw-three-videos {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 80px;
  align-items: center;
}

.cw-sub-video {
  position: relative;
  width: 100%;
}

.cw-three-videos>.cw-sub-video:first-child,
.cw-three-videos>.cw-sub-video:last-child {
  aspect-ratio: 16/9;
}

.cw-three-videos>.cw-sub-center {
  aspect-ratio: 16/10;
  transform: translateY(-20px);
}

.cw-controls-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.cw-controls-left,
.cw-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cw-icon-btn {
  background: none;
  border: none;
  color: white;
  padding: 0;
  cursor: pointer;
  display: flex;
}

.cw-icon-btn svg {
  width: 20px;
  height: 20px;
}

.cw-time {
  color: white;
  font-size: 0.8rem;
  font-family: var(--font-body);
}

.cw-bottom {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cw-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.btn-small {
  padding: 12px 32px;
  font-size: 0.8rem;
}

/* ===================================================
   FILMS HERO
   =================================================== */
.films-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===================================================
   FILMS ROOTED
   =================================================== */
.films-rooted {
  background: var(--beige);
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}

.fr-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.fr-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.fr-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.fr-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  max-width: 1300px;
  margin: 0 auto clamp(96px, 12vw, 160px);
  align-items: center;
}

.fr-grid:last-child {
  margin-bottom: 0;
}

.fr-grid.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.fr-grid.reverse .fr-video-col {
  order: 2;
}

.fr-grid.reverse .fr-text-col {
  order: 1;
  padding: 0 20px;
}

.fr-video-col {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #181818 linear-gradient(110deg, #181818 8%, #262626 18%, #181818 33%);
  background-size: 200% 100%;
  animation: videoShimmer 2.5s infinite linear;
}

@keyframes videoShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.fr-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 8vw, 76px);
  height: clamp(60px, 8vw, 76px);
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fr-play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  transform: translateX(2px);
  transition: fill 0.4s ease, transform 0.4s ease;
}

.fr-video-col:hover .fr-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 15px 30px rgba(183, 146, 90, 0.3);
}

.fr-video-col:hover .fr-play-btn svg {
  fill: var(--white);
  transform: translateX(2px) scale(1.05);
}

.fr-video-col img,
.fr-video-col iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  position: relative;
  z-index: 1;
}

.fr-video-col iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.video-click-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  display: block;
}

.fr-text-col {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.fr-couple {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.3;
  text-align: center;
}

.fr-couple a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.fr-couple a:hover {
  opacity: 0.7;
}

.fr-poem p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.fr-poem p:last-child {
  margin-bottom: 0;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.72);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) 80px;
  overflow: hidden;
}

.page-hero.short-hero {
  height: 70vh;
  min-height: 520px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-contact-img {
  object-position: center 60% !important;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(23, 23, 23, 0.85) 0%,
      rgba(23, 23, 23, 0.4) 50%,
      rgba(23, 23, 23, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 12px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ===================================================
   STATS (Stories page)
   =================================================== */
.stats-section {
  background: var(--charcoal);
  padding: 64px 40px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}

.stats-tagline {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.stats-tagline p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.7;
}

.stats-tagline strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ===================================================
   STORIES INTRO
   =================================================== */
.stories-intro {
  padding: var(--section-pad) var(--pad-x);
  background: var(--ivory);
}

.si-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.si-image-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 3px;
}

.si-body {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dark);
}

.si-body strong {
  font-weight: 500;
}

/* ===================================================
   REELS GRID
   =================================================== */
.reels-section {
  padding: 0 var(--pad-x) var(--section-pad);
  background: var(--ivory);
}

.reels-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reel-card {
  background: var(--beige);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.reel-card:hover {
  transform: translateY(-6px);
}

.reel-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/14;
  background: #181818;
  border-radius: 4px;
}

.reel-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  z-index: 1;
}

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

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reel-play svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  transform: translateX(1.5px);
  transition: fill 0.4s ease, transform 0.4s ease;
}

.reel-card:hover .reel-play {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 25px rgba(183, 146, 90, 0.35);
}

.reel-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}

.reel-info {
  padding: 16px 18px 20px;
}

.reel-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.reel-info p {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ===================================================
   SERVICES
   =================================================== */
.services-section {
  padding: var(--section-pad) var(--pad-x);
  background: var(--ivory);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.services-left {
  position: sticky;
  top: 100px;
}

.services-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.3s;
}

.service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s;
}

.service-item:hover .service-name {
  color: var(--gold);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.service-duration {
  font-size: 0.75rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
}

.service-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s;
  flex-shrink: 0;
}

.service-item.open .service-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.service-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-top: 0;
}

.service-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  padding-left: calc(20px + 20px);
}

.service-item.open .service-body {
  max-height: 320px;
  /* generous headroom so long copy never clips on narrow screens */
  padding-top: 16px;
}

/* ===================================================
   PROCESS
   =================================================== */
.process-section {
  padding: var(--section-pad) var(--pad-x);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.process-connector {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  margin-top: 24px;
}

/* ===================================================
   WHY EVERBLOOMS
   =================================================== */
.why-section {
  padding: var(--section-pad) var(--pad-x);
  background: var(--beige);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.why-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-family: var(--font-heading);
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-check {
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  font-weight: 600;
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ===================================================
   FAQ
   =================================================== */
.faq-section {
  padding: var(--section-pad) var(--pad-x);
  background: var(--ivory);
}

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

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

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding-bottom: 28px;
}

.faq-item.open .faq-answer {
  max-height: 480px;
  /* generous headroom — long answers wrap taller on small screens */
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-section {
  padding: calc(var(--nav-h) + clamp(60px, 8vw, 100px)) var(--pad-x) var(--section-pad);
  background: var(--ivory);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 100px;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info p {
  font-size: 0.875rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

/* Custom chevron — appearance:none removes the native select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236C6C6C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: rgba(35, 35, 35, 0.35);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: all 0.2s ease;
  user-select: none;
}

.checkbox-item:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 106, 0.04);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
  border-color: var(--gold);
  background: rgba(184, 150, 106, 0.08);
}

.checkbox-item input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 2px;
}

.checkbox-item span {
  flex: 1;
  cursor: pointer;
  line-height: 1.3;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -4px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--beige);
  border-radius: 3px;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: #2A2724;
  padding: 72px var(--pad-x) 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-logo .logo-text {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-logo p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

/* ===================================================
   FEATURED STORY HERO (STORIES PAGE)
   =================================================== */
.featured-story-hero {
  position: relative;
  background: var(--ivory);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.fsh-video-wrap {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}

.fsh-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.fsh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.2);
}

.fsh-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.fsh-play-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.05);
}

.fsh-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.fsh-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  text-align: center;
}

.fsh-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.fsh-author-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.fsh-author {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0;
}

.fsh-meta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

.fsh-featured {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 500;
}

/* ===================================================
   RESPONSIVE
   Kept at end of file so overrides always win the
   cascade over base styles above.
   Breakpoints:
     1024 — stack two-column layouts (small desktop / tablet)
     900  — collapse editorial grids (tablet portrait)
     768  — mobile nav + compact rhythm (large phones)
     480  — phones
   =================================================== */

/* ── ≤1024px: two-column layouts stack ───────────── */
@media (max-width: 1024px) {

  .si-inner,
  .services-inner,
  .why-inner,
  .contact-inner,
  .footer-top,
  .remember-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Sticky sidebars return to normal flow */
  .services-left,
  .contact-left {
    position: static;
  }

  /* Philosophy collage → title over a two-up image pair */
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .philosophy-title {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-bottom: 16px;
  }

  .ph-img-left {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .ph-img-right {
    grid-column: 2;
    grid-row: auto;
  }

  .ph-text {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 8px 0 0;
  }

  /* Process steps flow vertically */
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .process-step {
    padding: 0;
  }

  .process-connector {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }
}

/* ── ≤900px: editorial grids collapse ────────────── */
@media (max-width: 900px) {

  /* Staggered film cards stack and lose their offsets */
  .staggered-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 0;
    margin-bottom: 56px;
  }

  .staggered-card.card-left,
  .staggered-card.card-center,
  .staggered-card.card-right {
    transform: none;
  }

  /* Film stories: video above text, no side indents */
  .fr-grid,
  .fr-grid.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fr-grid.reverse .fr-video-col {
    order: initial;
  }

  .fr-grid.reverse .fr-text-col {
    order: initial;
    padding-right: 0;
  }

  .fr-text-col {
    padding-left: 0;
  }

  .cw-top-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }

  .cw-heading-col {
    padding-right: 0;
  }

  .cw-three-videos {
    grid-template-columns: 1fr;
  }

  .cw-three-videos>.cw-sub-center {
    transform: none;
  }
}

/* ── ≤768px: mobile nav + compact rhythm ─────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  /* 16px inputs prevent iOS Safari focus-zoom */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .page-hero {
    padding: 0 24px 60px;
  }

  .films-rooted {
    padding-top: clamp(80px, 18vw, 120px);
  }

  .trusted {
    padding: clamp(64px, 12vw, 84px) 0;
  }

  .trusted-label {
    margin-bottom: 24px;
  }

  .remember-progress-bar {
    left: 20px;
    right: 20px;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-section {
    padding: 48px 24px;
  }

  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 56px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── ≤480px: phones ──────────────────────────────── */
@media (max-width: 480px) {

  .reels-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 1.15rem;
  }

  .service-header {
    flex-wrap: wrap;
  }

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

  .fsh-play-btn {
    width: 64px;
    height: 64px;
  }

  .btn {
    padding: 13px 28px;
  }
}

/* ── Touch: play affordances visible without hover ── */
@media (hover: none) {
  .reel-play {
    opacity: 1;
  }
}

/* ── Reduced motion: stop decorative animation ────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg-img,
  .marquee-track,
  .scroll-line {
    animation: none;
  }
}

/* ===================================================
   INLINE & DIRECT VIDEO PLAYER SYSTEM
   =================================================== */
.fr-video-col,
.reel-thumb,
.staggered-video-wrap,
.remember-video-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
}

.is-playing .fr-play-btn,
.is-playing .reel-play,
.is-playing .staggered-play-circle,
.is-playing .remember-play-btn,
.is-playing .video-click-overlay,
.is-playing .reel-tag,
.is-playing .staggered-overlay,
.is-playing .remember-overlay {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.is-playing img {
  opacity: 0 !important;
  pointer-events: none !important;
}

.inline-video-iframe {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  z-index: 25 !important;
  background: #000 !important;
}