/* ============================================
   Isabella Weddings — Design System
   ============================================ */

:root {
  --cream: #FAF7F2;
  --ivory: #F5F0E8;
  --blush: #E8C4C4;
  --blush-deep: #D4A5A5;
  --sage: #8B9A7D;
  --sage-deep: #6B7A5E;
  --charcoal: #2C2C2C;
  --charcoal-soft: #4A4A4A;
  --gold: #C9A962;
  --gold-light: #E8D5A8;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --header-height: 80px;
  --section-padding: clamp(80px, 12vw, 160px);
  --container: min(1280px, 92vw);
}

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

html {
  scroll-behavior: auto;
}

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

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: none;
}

ul[role="list"] {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ============================================
   Custom Cursor
   ============================================ */

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  /* Above cookie banner (10050) so custom cursor stays visible on the notice */
  z-index: 10100;
  pointer-events: none;
  mix-blend-mode: difference;
}

body.lightbox-open .cursor {
  mix-blend-mode: normal;
}

body.lightbox-open .cursor-dot {
  background: var(--gold);
}

body.lightbox-open .cursor-ring {
  border-color: var(--gold);
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.cursor-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), opacity 0.3s;
}

.cursor.is-hovering .cursor-dot {
  width: 0;
  height: 0;
}

.cursor.is-hovering .cursor-ring {
  width: 60px;
  height: 60px;
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  button { cursor: pointer; }
}

/* ============================================
   Page Loader
   ============================================ */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  color: var(--cream);
}

.loader-monogram {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  display: block;
  line-height: 1;
  opacity: 0;
  animation: loaderFadeIn 1s var(--ease-out-expo) 0.2s forwards;
}

.loader-line {
  width: 120px;
  height: 1px;
  background: rgba(250, 247, 242, 0.2);
  margin: 2rem auto;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderProgress 1.8s var(--ease-in-out) 0.5s forwards;
}

.loader-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 0.8s var(--ease-out-expo) 1s forwards;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderProgress {
  to { transform: scaleX(1); }
}

/* ============================================
   Petal Canvas
   ============================================ */

#petal-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.5s, backdrop-filter 0.5s, transform 0.5s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-monogram {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 0.4s, color 0.4s;
}

.nav-logo:hover .logo-monogram {
  background: var(--charcoal);
  color: var(--cream);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 100px;
  transition: background 0.4s, transform 0.4s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--sage-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: var(--charcoal);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Section Utilities
   ============================================ */

.section {
  padding-block: var(--section-padding);
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

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

.section-text {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-top: 1.5rem;
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-text {
  margin-inline: auto;
}

/* Mid-page CTAs — book consultation from any section */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  padding-block: 0.35rem;
}

.section-cta--left {
  justify-content: flex-start;
}

.section-cta--process .btn-primary {
  background: var(--cream);
  color: var(--charcoal);
}

.section-cta--process .btn-primary::before {
  background: var(--gold);
}

.section-cta--process .btn-primary:hover {
  color: var(--charcoal);
}

/* Scroll completion progress (plastering demo style) */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10020;
  background: transparent;
  pointer-events: none;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blush-deep), var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.45);
  transition: width 0.05s linear;
}

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

.hero {
  position: relative;
  /* Leave room for marquee so hero + banner fit in the first viewport */
  min-height: calc(100vh - 56px);
  min-height: calc(100dvh - 56px);
  max-height: calc(100dvh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-image {
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(135deg,
      hsl(25, 35%, 75%) 0%,
      hsl(15, 40%, 65%) 25%,
      hsl(140, 20%, 55%) 60%,
      hsl(45, 30%, 70%) 100%
    );
  background-size: 400% 400%;
  animation: heroGradient 20s ease infinite;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 44, 44, 0.3) 0%,
    rgba(44, 44, 44, 0.5) 50%,
    rgba(44, 44, 44, 0.7) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  padding: calc(var(--header-height) + 0.75rem) 2rem 0.5rem;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 5.25rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--cream);
  /* Space below heading so descenders + next copy don’t collide */
  margin-bottom: 1.65rem;
}

.title-line {
  display: block;
  /* overflow hidden for split animation — extra bottom padding keeps g/y/p visible */
  overflow: hidden;
  line-height: 1.22;
  padding-bottom: 0.28em;
  margin-bottom: -0.08em; /* tighten multi-line gap without clipping descenders */
}

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

.hero-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(250, 247, 242, 0.8);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 0.85rem 1.65rem;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding-bottom: 0.75rem;
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: rgba(250, 247, 242, 0.2);
  overflow: hidden;
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  margin-top: clamp(1.1rem, 2.5vh, 1.75rem);
  padding: 0.5rem 1.1rem;
  background: rgba(250, 247, 242, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 100px;
}

.stat {
  text-align: center;
  min-width: 4.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--cream);
  display: inline;
  line-height: 1.2;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 18px;
  background: rgba(250, 247, 242, 0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100dvh - 52px);
    max-height: calc(100dvh - 52px);
  }

  .hero-content {
    padding: calc(var(--header-height) + 0.35rem) 1.25rem 0.25rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 1.2;
    margin-bottom: 1.4rem;
  }

  .title-line {
    line-height: 1.24;
    padding-bottom: 0.3em;
  }

  .hero-stats {
    gap: 0.65rem;
    padding: 0.45rem 0.85rem;
    margin-top: 1rem;
  }

  .stat {
    min-width: 3.5rem;
  }

  .stat-label {
    font-size: 0.45rem;
    white-space: normal;
    max-width: 4.5rem;
  }

  .hero-scroll {
    padding-bottom: 0.5rem;
    opacity: 0.7;
  }

  .scroll-line {
    height: 20px;
  }
}

@media (max-height: 720px) {
  .hero-badge {
    margin-bottom: 0.55rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 5.5vw, 4rem);
    margin-bottom: 1.1rem;
    line-height: 1.18;
  }

  .title-line {
    padding-bottom: 0.26em;
  }

  .hero-subtitle {
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    margin-top: 0.85rem;
  }

  .hero-scroll {
    display: none;
  }
}

/* ============================================
   Marquee
   ============================================ */

.marquee-section {
  background: var(--charcoal);
  padding: 0.95rem 0;
  overflow: hidden;
  /* Helps first paint: hero + marquee sit in one viewport */
  min-height: 52px;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--cream);
  font-style: italic;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--gold) !important;
  font-style: normal !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track.is-alive {
  animation-duration: 22s;
}

/* ============================================
   About
   ============================================ */

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.12);
}

.about-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: aboutShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aboutShine {
  0%, 60% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

.about-float-chip {
  position: absolute;
  top: 8%;
  right: 0;
  z-index: 4;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(44, 44, 44, 0.18);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-float-chip span {
  color: var(--gold);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-pill {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  background: var(--cream);
  color: var(--charcoal-soft);
}

.signature-path {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
}

.about-signature.is-drawn .signature-path {
  animation: drawSignature 1.6s var(--ease-out-expo) forwards;
}

@keyframes drawSignature {
  to { stroke-dashoffset: 0; }
}

.about-img-1 {
  width: 65%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-img-2 {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    hsl(var(--hue, 25), 30%, 80%) 0%,
    hsl(var(--hue, 25), 25%, 65%) 50%,
    hsl(calc(var(--hue, 25) + 30), 20%, 55%) 100%
  );
}

.about-frame {
  position: absolute;
  bottom: 15%;
  left: 36%;
  z-index: 3;
  background: var(--cream);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(44, 44, 44, 0.1);
}

.frame-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.frame-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  line-height: 1.4;
}

.about-signature {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signature-svg {
  width: 160px;
  height: 40px;
  color: var(--sage);
}

.about-signature span {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  font-style: italic;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 400px;
    max-width: 500px;
    margin-inline: auto;
  }
}

/* ============================================
   Services — Scroll-locked panels
   ============================================ */

.services {
  background: var(--cream);
}

/* Desktop pin */
.services-pin {
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(232, 196, 196, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 169, 98, 0.15), transparent 50%),
    var(--ivory);
  z-index: 0;
}

.services-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  right: -5%;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.12), transparent 70%);
  animation: servicesFloat 12s ease-in-out infinite alternate;
}

.services-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes servicesFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 6%) scale(1.08); }
}

.services-pin-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: calc(var(--header-height) + 1.25rem) clamp(2.5rem, 6vh, 4rem);
}

.services-left .section-title {
  margin-bottom: 0.75rem;
}

.services-hint {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}

.services-progress {
  margin-bottom: 2rem;
}

.services-progress-track {
  height: 2px;
  background: rgba(44, 44, 44, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.services-progress-track span {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep));
  transition: width 0.45s var(--ease-out-expo);
}

.services-progress-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.services-progress-labels button {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  color: var(--charcoal-soft);
  background: transparent;
  transition: all 0.35s var(--ease-out-expo);
  cursor: none;
}

.services-progress-labels button:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}

.services-progress-labels button.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.services-stage {
  position: relative;
  min-height: min(520px, 70vh);
}

.service-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  padding-bottom: clamp(2rem, 3.5vw, 3.25rem);
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(44, 44, 44, 0.08);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo);
}

.service-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.service-panel-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-panel-icon {
  width: 52px;
  height: 52px;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.service-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-panel p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.service-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.service-meta li {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--charcoal-soft);
  border: 1px solid rgba(44, 44, 44, 0.06);
}

/* Keep panel CTAs content-sized (flex column would otherwise stretch them full width) */
.service-panel .btn {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  /* Taller hit area — matches other mid-page CTAs (incl. Plan a destination) */
  padding: 1.2rem 2.35rem;
  min-height: 3.35rem;
  margin-top: 0.5rem;
  margin-bottom: 0.65rem;
  box-sizing: border-box;
}

.services-pin-cta {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  padding-block: 0.35rem;
}

.services-mobile {
  display: none;
}

@media (max-width: 900px) {
  .services-pin {
    display: none;
  }
  .services-mobile {
    display: block;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.08);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.service-card:hover .service-number {
  color: var(--gold);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--sage);
  margin-bottom: 1.5rem;
  transition: transform 0.5s var(--ease-out-expo), color 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: gap 0.4s var(--ease-out-expo), color 0.3s;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--gold);
}

.service-hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.service-card:hover .service-hover-bg {
  opacity: 0.05;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Process — Scroll Pin (progressive steps)
   ============================================ */

.process {
  background: var(--charcoal);
  color: var(--cream);
}

.process .section-eyebrow {
  color: var(--gold);
}

.process .section-title {
  color: var(--cream);
}

.process .section-title em {
  color: var(--blush);
}

.process-scrub-track {
  height: 360vh;
  position: relative;
  padding-top: var(--section-padding);
}

.process-scrub-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + 0.75rem);
  padding-bottom: 1.25rem;
}

.process-scrub-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 2.8vw, 2.15rem);
  width: 100%;
}

.process-header {
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(250, 247, 242, 0.15);
}

.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--progress, 0%);
  background: var(--gold);
  transition: height 0.1s linear;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  opacity: 0.4;
  transition: opacity 0.5s;
}

/* Progressive reveal: steps start collapsed, appear on scroll */
.process-scrub-track .process-step {
  opacity: 0;
  transform: translateX(-30px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  padding-bottom: 0;
  transition:
    opacity 0.55s var(--ease-out-expo),
    transform 0.55s var(--ease-out-expo),
    max-height 0.55s var(--ease-out-expo);
}

.process-scrub-track .process-step.is-revealed {
  opacity: 0.4;
  transform: translateX(0);
  max-height: none;
  overflow: visible;
  pointer-events: auto;
  padding-bottom: 3rem;
}

.process-scrub-track .process-step.is-revealed.is-active {
  opacity: 1;
}

.process-step.is-active {
  opacity: 1;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-scrub-track .process-step.is-revealed:last-child {
  padding-bottom: 0;
}

.process-outro {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--section-padding);
}

.process-outro .section-cta--process {
  margin-top: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  padding-block: 0.5rem;
}

.process-mobile {
  display: none;
  padding-block: var(--section-padding);
}

.process-mobile .section-cta--process {
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  padding-block: 0.5rem;
}

.process-timeline--mobile .process-step {
  opacity: 0.4;
  transform: none;
  max-height: none;
  overflow: visible;
  pointer-events: auto;
  padding-bottom: 3rem;
}

.process-timeline--mobile .process-step.is-active {
  opacity: 1;
}

@media (max-width: 900px) {
  .process-outro,
  .process-scrub-track {
    display: none;
  }

  .process-mobile {
    display: block;
  }
}

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(250, 247, 242, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s, color 0.4s;
}

.process-step.is-active .step-marker {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   The Day — Locked chapter scrub
   ============================================ */

.day-section {
  background: var(--cream);
  /* Space after the pinned viewport (outside overflow:hidden) — before Destinations */
  padding-bottom: clamp(4.5rem, 10vw, 8rem);
}

.day-pin {
  height: 100vh;
  height: 100dvh;
  position: relative;
  /* Keep pin clean during scrub; CTA spacing lives outside this box via day-section padding */
  overflow: hidden;
}

.day-pin-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  /* Fit full CTA inside 100dvh — large bottom margins here were clipping the button */
  padding-block: calc(var(--header-height) + 0.85rem) clamp(1.25rem, 3.5vh, 2.25rem);
  box-sizing: border-box;
  min-height: 0;
}

.day-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  /* No large bottom pad inside pin — that was cutting the button in half */
  padding-bottom: 0;
}

.day-copy .section-title {
  margin-bottom: 1rem;
}

.day-lead {
  margin-bottom: 1.25rem;
  max-width: 40ch;
}

.day-copy .section-cta {
  margin-top: clamp(1.15rem, 2.5vw, 1.85rem);
  margin-bottom: 0;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  flex-shrink: 0;
}

.day-chapter {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  margin-bottom: 1.15rem;
  min-height: 120px;
}

.day-chapter-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.day-chapter strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.day-chapter p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 38ch;
}

.day-progress {
  margin-bottom: clamp(0.85rem, 1.75vw, 1.25rem);
}

.day-progress-bar {
  height: 2px;
  background: rgba(44, 44, 44, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.day-progress-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blush-deep));
  transition: width 0.15s linear;
}

.day-dots {
  display: flex;
  gap: 0.5rem;
}

.day-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 44, 0.25);
  background: transparent;
  padding: 0;
  cursor: none;
  transition: all 0.35s var(--ease-out-expo);
}

.day-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

.day-stage {
  position: relative;
  height: min(560px, 70vh);
  border-radius: 8px;
  overflow: hidden;
}

.day-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
  pointer-events: none;
}

.day-visual.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.day-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, hsla(var(--hue), 45%, 78%, 0.55), transparent 55%),
    linear-gradient(160deg,
      hsl(var(--hue), 35%, 72%) 0%,
      hsl(calc(var(--hue) + 20), 30%, 58%) 50%,
      hsl(calc(var(--hue) + 40), 25%, 45%) 100%);
}

.day-visual-frame {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(250, 247, 242, 0.35);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.day-visual-label {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  z-index: 2;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.day-ornament {
  position: absolute;
  border: 1px solid rgba(250, 247, 242, 0.25);
  pointer-events: none;
}

.day-ornament--ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 15%;
  right: 12%;
  animation: daySpin 20s linear infinite;
}

.day-ornament--petal {
  width: 60px;
  height: 60px;
  border-radius: 50% 0 50% 50%;
  bottom: 18%;
  left: 15%;
  transform: rotate(-25deg);
  animation: dayFloat 6s ease-in-out infinite alternate;
}

.day-ornament--arch {
  width: 70%;
  height: 45%;
  border-radius: 100px 100px 0 0;
  border-bottom: none;
  top: 20%;
  left: 15%;
}

.day-ornament--aisle {
  width: 2px;
  height: 40%;
  bottom: 10%;
  left: 50%;
  border: none;
  background: rgba(250, 247, 242, 0.3);
}

.day-ornament--table {
  width: 55%;
  height: 8px;
  bottom: 30%;
  left: 22.5%;
  border: none;
  background: rgba(250, 247, 242, 0.4);
  box-shadow: 0 -20px 0 -4px rgba(250, 247, 242, 0.15);
}

.day-ornament--candle {
  width: 6px;
  height: 40px;
  bottom: 38%;
  left: 50%;
  border: none;
  background: rgba(250, 247, 242, 0.5);
  box-shadow: 0 -12px 20px rgba(255, 220, 150, 0.5);
}

.day-ornament--stars {
  inset: 20%;
  border-radius: 50%;
  border-style: dashed;
  animation: daySpin 30s linear infinite reverse;
}

.day-ornament--spark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 28%;
  right: 28%;
  border: none;
  background: var(--gold-light);
  box-shadow: 0 0 30px var(--gold);
  animation: dayPulse 2.5s ease-in-out infinite;
}

@keyframes daySpin {
  to { transform: rotate(360deg); }
}

@keyframes dayFloat {
  to { transform: rotate(-25deg) translateY(-12px); }
}

@keyframes dayPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Short viewports: keep Design our day fully inside the pin (no half-cut button) */
@media (max-height: 820px) and (min-width: 901px) {
  .day-pin-inner {
    padding-block: calc(var(--header-height) + 0.5rem) 1rem;
    gap: 1.5rem;
  }
  .day-lead {
    margin-bottom: 0.85rem;
  }
  .day-chapter {
    padding: 0.85rem 0;
    margin-bottom: 0.85rem;
    min-height: 96px;
  }
  .day-chapter p {
    font-size: 0.9rem;
  }
  .day-progress {
    margin-bottom: 0.65rem;
  }
  .day-copy .section-cta {
    margin-top: 0.85rem;
  }
  .day-stage {
    height: min(420px, 52vh);
  }
}

@media (max-width: 900px) {
  .day-section {
    padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
  }
  .day-pin {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .day-pin-inner {
    grid-template-columns: 1fr;
    padding-block: var(--section-padding);
    height: auto;
  }
  .day-copy {
    padding-bottom: 0;
  }
  .day-copy .section-cta {
    margin-top: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0;
    padding-bottom: 0.35rem;
  }
  .day-stage {
    height: 320px;
    order: -1;
  }
}

/* ============================================
   Destinations — Horizontal locked scroll
   ============================================ */

.destinations-section {
  background: var(--charcoal);
  color: var(--cream);
}

.dest-pin {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: calc(var(--header-height) + 1.25rem) clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
}

.dest-heading {
  width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 0.85rem;
  align-items: end;
}

/* Stack eyebrow above title (vstack); CTA sits to the right of the text block */
.dest-heading .section-eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.dest-heading .section-title {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  max-width: 18ch;
}

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

.section-title--light {
  color: var(--cream);
}

.section-title--light em {
  color: var(--blush);
}

.dest-heading-cta {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: end;
  justify-self: end;
  flex-shrink: 0;
  background: var(--cream);
  color: var(--charcoal);
  margin-block: 0.35rem;
}

.dest-heading-cta::before {
  background: var(--gold);
}

.dest-heading-cta:hover {
  color: var(--charcoal);
}

@media (max-width: 700px) {
  .dest-heading {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 0.75rem;
  }
  .dest-heading .section-eyebrow,
  .dest-heading .section-title,
  .dest-heading-cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
  .dest-heading-cta {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.dest-track {
  display: flex;
  gap: 1.25rem;
  padding-inline: max(1.5rem, calc((100vw - var(--container)) / 2));
  width: max-content;
  will-change: transform;
}

.dest-card {
  position: relative;
  width: min(340px, 78vw);
  min-height: 380px;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(250, 247, 242, 0.1);
  background:
    radial-gradient(circle at 80% 20%, hsla(var(--hue), 40%, 50%, 0.25), transparent 55%),
    linear-gradient(165deg, rgba(74, 74, 74, 0.5), rgba(44, 44, 44, 0.9));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s;
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.4);
}

.dest-card-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background: hsla(var(--hue), 50%, 60%, 0.2);
  filter: blur(30px);
  pointer-events: none;
}

.dest-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: auto;
}

.dest-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.dest-card p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.dest-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dest-tags li {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 247, 242, 0.15);
  color: rgba(250, 247, 242, 0.7);
}

@media (max-width: 900px) {
  .dest-pin {
    height: auto;
    padding-block: var(--section-padding);
  }
  .dest-track {
    width: 100%;
    flex-direction: column;
    padding-inline: 4vw;
  }
  .dest-card {
    width: 100%;
    min-height: auto;
  }
}

/* ============================================
   Gallery
   ============================================ */

.gallery {
  background: var(--ivory);
  padding-bottom: var(--section-padding);
  overflow: visible;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1;
}

.gallery-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
  transform-style: preserve-3d;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--pos-1 { grid-column: 1; grid-row: 1 / 3; }
.gallery-item--pos-2 { grid-column: 2; grid-row: 1; }
.gallery-item--pos-3 { grid-column: 3; grid-row: 1; }
.gallery-item--pos-4 { grid-column: 4; grid-row: 1; }
.gallery-item--pos-5 { grid-column: 2 / 4; grid-row: 2; }
.gallery-item--pos-6 { grid-column: 4; grid-row: 2; }
.gallery-item--pos-7 { grid-column: 1; grid-row: 3 / 5; }
.gallery-item--pos-8 { grid-column: 2; grid-row: 3 / 5; }
.gallery-item--pos-9 { grid-column: 3; grid-row: 3; }
.gallery-item--pos-10 { grid-column: 4; grid-row: 3; }
.gallery-item--pos-11 { grid-column: 3 / 5; grid-row: 4; }

.gallery-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    hsl(var(--hue, 25), 35%, 75%) 0%,
    hsl(var(--hue, 25), 30%, 55%) 100%
  );
  transition: transform 0.8s var(--ease-out-expo);
  z-index: 0;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 1rem 1.25rem 1.75rem;
  background: linear-gradient(
    to top,
    rgba(44, 44, 44, 0.85) 0%,
    rgba(44, 44, 44, 0.55) 35%,
    rgba(44, 44, 44, 0.15) 65%,
    transparent 100%
  );
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out-expo);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item--pos-7 .gallery-overlay,
.gallery-item--pos-8 .gallery-overlay {
  padding-bottom: 2.25rem;
}

.gallery-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.gallery-overlay p {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    aspect-ratio: unset;
    max-height: none;
  }

  .gallery-item--pos-1,
  .gallery-item--pos-2,
  .gallery-item--pos-3,
  .gallery-item--pos-4,
  .gallery-item--pos-5,
  .gallery-item--pos-6,
  .gallery-item--pos-7,
  .gallery-item--pos-8,
  .gallery-item--pos-9,
  .gallery-item--pos-10,
  .gallery-item--pos-11 {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* ============================================
   Gallery Lightbox
   ============================================ */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.lightbox-visual {
  min-height: 420px;
  background: linear-gradient(
    160deg,
    hsl(var(--lb-hue, 25), 35%, 75%) 0%,
    hsl(var(--lb-hue, 25), 30%, 55%) 100%
  );
}

.lightbox-content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.lightbox-location {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}

.lightbox-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out-expo);
}

.lightbox-close:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: rotate(90deg);
}

.lightbox-nav {
  display: flex;
  gap: 0.75rem;
}

.lightbox-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 44, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.lightbox-nav-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--cream);
}

@media (max-width: 768px) {
  .lightbox-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .lightbox-visual {
    min-height: 240px;
  }
}

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

.testimonials {
  background: var(--cream);
}

.testimonials-slider {
  max-width: 800px;
  margin-inline: auto;
}

.testimonial-track {
  position: relative;
  min-height: 320px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.testimonial-card--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--blush);
  margin-bottom: -1rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.testimonial-card footer cite {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-card footer span {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.05em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(44, 44, 44, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

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

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.15);
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.3s;
}

.testimonial-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   Contact
   ============================================ */

.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    var(--ivory) 40%,
    var(--sage) 100%
  );
  opacity: 0.15;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-demo-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--sage-deep);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 0.3s var(--ease-out-expo);
}

a.contact-detail:hover {
  transform: translateX(8px);
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.detail-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(44, 44, 44, 0.08);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(44, 44, 44, 0.12);
  border-radius: 4px;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--sage-deep);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}

.form-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row--2 {
    grid-template-columns: 1fr;
  }
}

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

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand .logo-monogram {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.footer-credit {
  opacity: 1;
}

.footer-agency-link {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.footer-agency-link:hover {
  color: var(--gold-light);
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Reveal Animation Base States
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  /* Room for descenders (g, y, p) inside overflow-hidden title lines */
  padding-bottom: 0.22em;
  line-height: 1.22;
}

/* Form error state (contact.php) */
.form-error {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #a14a4a;
}

/* ============================================
   Cookie notice — ultra-minimal bottom bar
   (same pattern as BliBling agency; essential cookies only)
   ============================================ */

.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  background: rgba(44, 44, 44, 0.97);
  font-family: var(--font-body);
}

.cookie-notice__text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.75);
  text-align: center;
}

.cookie-notice__text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.cookie-notice__text a:hover {
  color: var(--cream);
}

/* Hide system cursor; custom .cursor sits above this bar (z-index 10100) */
.cookie-notice,
.cookie-notice * {
  cursor: none !important;
}

.cookie-notice__btn {
  appearance: none;
  flex-shrink: 0;
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  cursor: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Custom cursor is difference-blend; force solid gold look while over the dark bar */
body.cookie-notice-hover .cursor {
  mix-blend-mode: normal;
}
body.cookie-notice-hover .cursor-dot {
  background: var(--gold);
}
body.cookie-notice-hover .cursor-ring {
  border-color: var(--gold-light);
}

.cookie-notice__btn:hover {
  background: var(--gold-light);
}

.cookie-notice__btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-notice,
  .cookie-notice * {
    cursor: auto;
  }

  .cookie-notice__btn {
    cursor: pointer;
  }

  /* Clear floating chat bubble on mobile */
  .cookie-notice__inner {
    padding-bottom: max(4.75rem, calc(env(safe-area-inset-bottom) + 4rem));
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
}

.footer-legal a,
.footer-legal button {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color 0.3s;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--gold);
}

.footer-legal button {
  cursor: none;
}

@media (max-width: 768px) {
  .footer-legal button {
    cursor: pointer;
  }
}

.form-error[hidden] {
  display: none !important;
}

/* Honeypot — keep invisible to humans */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

[data-service-card] {
  opacity: 0;
  transform: translateY(60px);
}

[data-gallery-item] {
  opacity: 0;
  transform: scale(0.9);
}

/* Mobile process steps start dimmed; scrub steps use .process-scrub-track rules */
[data-process-step-mobile] {
  opacity: 0.4;
  transform: translateX(-30px);
}