/* ==========================================================================
   PRISMA — Editorial Design System
   Light, refracted. One perspective, many dimensions.
   Serves weddings-georgia.com & prisma.ge (shared codebase).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core palette */
  --ink: #0B0A09;
  --ink-2: #141210;
  --forest: #151A16;
  --ivory: #F2EEE7;
  --ivory-2: #EAE4D8;
  --ivory-3: #E2DACB;
  --burgundy: #5A142B;
  --burgundy-deep: #430F20;
  --stone: #B9AEA2;
  --stone-deep: #8E8478;
  --brass: #AF9567;
  --brass-soft: #C4AE85;

  /* Spectral accents — used only at 4–10% opacity */
  --spec-violet: 142, 123, 184;
  --spec-rose: 201, 154, 158;
  --spec-cyan: 155, 196, 201;
  --spec-amber: 217, 179, 128;

  /* Ink / ivory as rgb for alpha work */
  --ink-rgb: 11, 10, 9;
  --ivory-rgb: 242, 238, 231;

  /* Hairlines */
  --line-dark: rgba(11, 10, 9, 0.16);
  --line-dark-soft: rgba(11, 10, 9, 0.09);
  --line-light: rgba(242, 238, 231, 0.16);
  --line-light-soft: rgba(242, 238, 231, 0.09);

  /* Type */
  --font-display: 'Bodoni Moda', 'Playfair Display', 'Noto Serif Georgian', Georgia, serif;
  --font-sans: 'Inter', 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --header-height: 84px;
  --header-height-scrolled: 66px;
  --container-max: 1440px;
  --container-narrow: 880px;
  --gutter: clamp(22px, 4.5vw, 72px);
  --section-padding: clamp(88px, 11vw, 160px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-hover: 0.3s var(--ease);
  --t-reveal: 0.9s var(--ease);

  /* Legacy aliases (kept so older selectors keep resolving) */
  --color-ivory: var(--ivory);
  --color-cream: var(--ivory-2);
  --color-beige: var(--ivory-3);
  --color-charcoal: var(--ink);
  --color-charcoal-soft: #3E3A34;
  --color-burgundy: var(--burgundy);
  --color-burgundy-dark: var(--burgundy-deep);
  --color-gold: var(--brass);
  --color-gold-light: var(--brass-soft);
  --color-white: #FFFFFF;
  --font-serif: var(--font-display);
  --transition: var(--t-hover);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--ivory);
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

main,
.site-header,
.site-footer,
section {
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-hover), opacity var(--t-hover), border-color var(--t-hover);
}

ul {
  list-style: none;
}

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

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

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}

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

/* Page entrance — one calm fade, no layout movement */
@media (prefers-reduced-motion: no-preference) {
  main {
    animation: page-enter 0.7s var(--ease) both;
  }
  @keyframes page-enter {
    from { opacity: 0; }
    to { opacity: 1; }
  }
}

/* --------------------------------------------------------------------------
   3. Typography & editorial utilities
   -------------------------------------------------------------------------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: 0.005em;
  color: inherit;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  color: var(--stone-deep);
  max-width: 520px;
  margin-top: 22px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: clamp(52px, 7vw, 96px);
}

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

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Editorial eyebrow — small caps + hairline */
.page-eyebrow,
.founder-eyebrow,
.content-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.page-eyebrow::before,
.founder-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: none;
}

/* Refraction hairline — the brand line: brass splitting into spectral tones */
.prism-line {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg,
    rgba(175, 149, 103, 0.55) 0%,
    rgba(var(--spec-rose), 0.35) 34%,
    rgba(var(--spec-violet), 0.3) 55%,
    rgba(var(--spec-cyan), 0.28) 76%,
    transparent 100%);
}

/* Film grain — applied to dark cinematic sections */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* --------------------------------------------------------------------------
   4. Motion primitives
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-reveal), transform var(--t-reveal);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Image mask reveal — an ivory curtain wipes away (transform-only, and the
   observed element keeps its full geometry so IntersectionObserver fires) */
.reveal-mask {
  position: relative;
}

.js .reveal-mask::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 3;
  background: var(--ivory);
  transform: scaleY(1);
  transform-origin: 50% 100%;
  transition: transform 1.1s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  pointer-events: none;
}

.js .reveal-mask > img,
.js .reveal-mask .media-zoom {
  transform: scale(1.07);
  transition: transform 1.5s var(--ease);
}

.js .reveal-mask.visible::after {
  transform: scaleY(0);
}

.js .reveal-mask.visible > img,
.js .reveal-mask.visible .media-zoom {
  transform: scale(1);
}

/* Legacy hero fade class kept as no-op safety */
.fade-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal,
  .js .reveal-mask {
    opacity: 1;
    transform: none;
  }
  .js .reveal-mask::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5. Buttons — one tactile, restrained system
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color var(--t-hover), border-color var(--t-hover),
              color var(--t-hover);
  -webkit-tap-highlight-color: transparent;
}

.btn::after {
  content: '\2192';
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(0);
  transition: transform var(--t-hover);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(5px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--burgundy);
  color: var(--ivory);
  border-color: rgba(242, 238, 231, 0.14);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--burgundy-deep);
  border-color: rgba(242, 238, 231, 0.28);
  color: #FFF9F0;
}

.btn-outline {
  background-color: transparent;
  color: var(--ivory);
  border-color: rgba(242, 238, 231, 0.45);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--ink);
  border-color: rgba(11, 10, 9, 0.4);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

/* Challenger / brass accent button */
.btn-gold {
  background-color: transparent;
  color: var(--brass-soft);
  border-color: rgba(175, 149, 103, 0.55);
  margin-top: 24px;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.section-cta-row {
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--ivory);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease),
              height 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

/* Gentle legibility scrim while at the very top */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  height: 160%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11, 10, 9, 0.5), transparent);
  opacity: 1;
  transition: opacity 0.45s var(--ease);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(11, 10, 9, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom-color: var(--line-light-soft);
}

.site-header.scrolled::before {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
}

/* Wordmark */
.logo {
  display: inline-flex;
  align-items: baseline;
  flex: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color var(--t-hover);
}

.logo-tld {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--stone);
  margin-left: 2px;
}

.logo:hover .logo-text,
.logo:focus-visible .logo-text {
  color: #FFFFFF;
}

/* Primary nav */
.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 30px);
}

.nav-list a,
.header-contact-link {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.72);
  white-space: nowrap;
  transition: color var(--t-hover);
}

.nav-list a::after,
.header-contact-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.nav-list a:hover,
.nav-list a:focus-visible,
.header-contact-link:hover,
.header-contact-link:focus-visible {
  color: var(--ivory);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.header-contact-link:hover::after,
.header-contact-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-list a[aria-current="page"] {
  color: var(--ivory);
}

.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--brass);
}

/* Header right cluster */
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex: none;
}

/* Intimate — quiet burgundy chip */
.nav-intimate-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(90, 20, 43, 0.55);
  border: 1px solid rgba(201, 154, 158, 0.35);
  transition: background-color var(--t-hover), border-color var(--t-hover);
  white-space: nowrap;
}

.nav-intimate-btn:hover,
.nav-intimate-btn:focus-visible {
  background: rgba(90, 20, 43, 0.85);
  border-color: rgba(201, 154, 158, 0.6);
}

.nav-intimate-btn[aria-current="page"] {
  background: var(--burgundy);
  border-color: rgba(201, 154, 158, 0.6);
}

/* Language switcher — quiet, typographic */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  padding: 6px 5px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(242, 238, 231, 0.4);
  transition: color var(--t-hover);
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: rgba(242, 238, 231, 0.85);
}

.lang-btn.active {
  color: var(--brass-soft);
}

.lang-divider {
  color: rgba(242, 238, 231, 0.18);
  font-size: 0.625rem;
}

/* Mobile toggle — two refined lines */
.mobile-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.mobile-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero — the strongest visual moment
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

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

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 22%;
  transform: scale(1.001);
}

@media (prefers-reduced-motion: no-preference) {
  .is-ready .hero-media-img {
    animation: hero-settle 9s var(--ease) both;
  }
  @keyframes hero-settle {
    from { transform: scale(1.045); }
    to { transform: scale(1.001); }
  }
}

/* Layered light: legibility gradient + refracted spectral pass */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(76deg,
      rgba(11, 10, 9, 0.78) 0%,
      rgba(11, 10, 9, 0.46) 34%,
      rgba(11, 10, 9, 0.1) 62%,
      rgba(11, 10, 9, 0.24) 100%),
    linear-gradient(to top,
      rgba(11, 10, 9, 0.72) 0%,
      rgba(11, 10, 9, 0.18) 30%,
      transparent 55%),
    linear-gradient(112deg,
      transparent 40%,
      rgba(var(--spec-violet), 0.07) 49%,
      rgba(var(--spec-cyan), 0.06) 56%,
      rgba(var(--spec-amber), 0.06) 63%,
      transparent 72%);
}

.hero.grain::after {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(84px, 12vh, 150px);
}

/* Staggered line reveals — wrappers are masks, children rise */
.hl {
  display: block;
  overflow: hidden;
}

.js .hl > * {
  transform: translateY(112%);
  opacity: 0.001;
}

@media (prefers-reduced-motion: no-preference) {
  .js.is-ready .hl > * {
    animation: line-rise 1s var(--ease) both;
  }
  .js.is-ready .hl-1 > * { animation-delay: 0.15s; }
  .js.is-ready .hl-2 > * { animation-delay: 0.3s; }
  .js.is-ready .hl-3 > * { animation-delay: 0.45s; }
  .js.is-ready .hl-4 > * { animation-delay: 0.62s; }
  @keyframes line-rise {
    from { transform: translateY(112%); opacity: 0.001; }
    to { transform: translateY(0); opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .hl > * { transform: none; opacity: 1; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.hero-eyebrow::before {
  content: '';
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(var(--spec-rose), 0.6));
  flex: none;
}

.hero-title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 7vw, 6.3rem);
  line-height: 1.02;
  letter-spacing: 0.002em;
  max-width: 12ch;
  color: var(--ivory);
  text-wrap: balance;
}

.hero-subtitle {
  margin-top: 26px;
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(242, 238, 231, 0.78);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 0;
  height: clamp(70px, 10vh, 120px);
  width: 1px;
  overflow: hidden;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(242, 238, 231, 0.7));
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-line {
    animation: scroll-drift 2.6s var(--ease) infinite;
  }
  @keyframes scroll-drift {
    0% { transform: translateY(-100%); }
    55% { transform: translateY(0); }
    100% { transform: translateY(100%); }
  }
}

/* --------------------------------------------------------------------------
   8. Trust strip — dark editorial band
   -------------------------------------------------------------------------- */
.trust-strip {
  position: relative;
  background: var(--ink);
  color: var(--stone);
  border-top: 1px solid var(--line-light-soft);
  padding: 26px 0;
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(var(--spec-violet), 0.25) 30%,
    rgba(var(--spec-cyan), 0.22) 50%,
    rgba(var(--spec-amber), 0.22) 70%,
    transparent);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.trust-strip-item {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(185, 174, 162, 0.85);
}

.trust-strip-divider {
  width: 4px;
  height: 4px;
  flex: none;
  background: rgba(175, 149, 103, 0.5);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   9. Get Married in Georgia — editorial index beside atmospheric image
   -------------------------------------------------------------------------- */
.why-georgia {
  background: var(--ivory);
  color: var(--ink);
  overflow: clip;
}

.why-georgia-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.why-georgia-media {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 32px);
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
  background: var(--ivory-2);
}

.why-georgia-media-image {
  position: absolute;
  inset: 0;
  background-image: url('/images/destinations/kazbegi.webp');
  background-size: cover;
  background-position: center 30%;
}

.why-georgia-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 10, 9, 0.42), transparent 45%),
    linear-gradient(120deg, transparent 55%, rgba(var(--spec-cyan), 0.08) 75%, transparent 92%);
}

.why-georgia-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 238, 231, 0.82);
}

.why-georgia-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.why-georgia-header .section-subtitle {
  max-width: 480px;
}

/* Benefits — an indexed editorial sequence, not cards */
.why-cards {
  display: block;
  border-top: 1px solid var(--line-dark);
}

.why-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px clamp(18px, 2.4vw, 36px);
  padding: clamp(26px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 0;
  background: var(--burgundy);
  transition: width 0.5s var(--ease);
}

.why-card:hover::before {
  width: 72px;
}

.why-card-num {
  grid-row: span 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.2;
  color: rgba(11, 10, 9, 0.3);
  transition: color 0.4s var(--ease);
}

.why-card:hover .why-card-num {
  color: var(--burgundy);
}

.why-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  line-height: 1.15;
}

.why-card-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--stone-deep);
  max-width: 52ch;
}

/* Cinematic films — dark interlude band */
.why-cinematic-cta {
  position: relative;
  display: block;
  margin-top: clamp(44px, 5vw, 64px);
  padding: clamp(34px, 4vw, 52px) clamp(28px, 3.4vw, 48px);
  background: var(--forest);
  color: var(--ivory);
  overflow: hidden;
  border: 1px solid rgba(242, 238, 231, 0.06);
}

.why-cinematic-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 160% at 100% 0%, rgba(var(--spec-cyan), 0.09), transparent 55%),
    radial-gradient(120% 140% at 0% 100%, rgba(var(--spec-amber), 0.07), transparent 50%);
  opacity: 0.8;
  transition: opacity 0.45s var(--ease);
}

.why-cinematic-cta:hover::before {
  opacity: 1;
}

.why-cinematic-cta-inner {
  position: relative;
  z-index: 1;
}

.why-cinematic-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.why-cinematic-desc {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: rgba(242, 238, 231, 0.66);
  max-width: 48ch;
}

.why-cinematic-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.why-cinematic-link::after {
  content: '\2192';
  font-size: 0.875rem;
  letter-spacing: 0;
  transition: transform var(--t-hover);
}

.why-cinematic-cta:hover .why-cinematic-link::after {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   10. Packages — editorial ledger
   -------------------------------------------------------------------------- */
.packages {
  background: var(--ivory);
  border-top: 1px solid var(--line-dark-soft);
}

.package-scarcity {
  margin: 0 0 clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
}

.package-scarcity-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.package-scarcity-item {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-deep);
}

.package-scarcity-divider {
  width: 4px;
  height: 4px;
  flex: none;
  background: rgba(90, 20, 43, 0.35);
  transform: rotate(45deg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-right: none;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: clamp(30px, 3.4vw, 46px) clamp(24px, 2.6vw, 38px);
  background: transparent;
  border-right: 1px solid var(--line-dark);
  transition: background-color 0.45s var(--ease);
}

.package-card:hover {
  background-color: rgba(11, 10, 9, 0.025);
}

/* Tier index + whisper of the tier's spectral tone */
.package-tier-accent {
  height: 1px;
  width: 44px;
  margin-bottom: 26px;
  background: var(--stone);
  transition: width 0.5s var(--ease), background-color 0.5s var(--ease);
}

.package-card--silver .package-tier-accent { background: linear-gradient(90deg, var(--stone), rgba(var(--spec-cyan), 0.5)); }
.package-card--gold .package-tier-accent { background: linear-gradient(90deg, var(--brass), rgba(var(--spec-amber), 0.5)); }
.package-card--platinum .package-tier-accent { background: linear-gradient(90deg, var(--stone-deep), rgba(var(--spec-violet), 0.5)); }

.package-card:hover .package-tier-accent {
  width: 76px;
}

.package-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1.05;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-deep);
}

.package-price strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.package-price-was {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--stone);
  text-decoration: line-through;
  text-decoration-color: rgba(90, 20, 43, 0.55);
  text-decoration-thickness: 1px;
}

.package-desc {
  margin-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-charcoal-soft);
}

.package-availability {
  margin-top: auto;
  padding-top: 26px;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--stone-deep);
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark-soft);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  transition: color var(--t-hover), border-color var(--t-hover);
}

.package-link span[aria-hidden] {
  transition: transform var(--t-hover);
}

.package-link:hover,
.package-link:focus-visible {
  color: var(--burgundy-deep);
  border-top-color: rgba(90, 20, 43, 0.35);
}

.package-link:hover span[aria-hidden],
.package-link:focus-visible span[aria-hidden] {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   11. Challenger — the cinematic culmination
   -------------------------------------------------------------------------- */
.package-card--challenger {
  grid-column: 1 / -1;
  min-height: 0;
  margin-top: clamp(28px, 3.4vw, 44px);
  padding: 0;
  border: 1px solid rgba(242, 238, 231, 0.08);
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.package-card--challenger:hover {
  background: var(--ink);
}

.packages-grid .package-card--challenger {
  border-right: 1px solid rgba(242, 238, 231, 0.08);
}

.package-challenger-inner {
  position: relative;
  padding: clamp(46px, 6vw, 90px) clamp(28px, 4.5vw, 72px);
  background:
    radial-gradient(120% 170% at 88% 10%, rgba(90, 20, 43, 0.5), transparent 55%),
    radial-gradient(100% 140% at 8% 100%, rgba(21, 26, 22, 0.9), transparent 60%),
    linear-gradient(108deg,
      transparent 46%,
      rgba(var(--spec-violet), 0.06) 54%,
      rgba(var(--spec-rose), 0.06) 60%,
      rgba(var(--spec-amber), 0.05) 66%,
      transparent 74%);
}

.package-challenger-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.package-challenger-main {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.package-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 8px 16px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-soft);
  border: 1px solid rgba(175, 149, 103, 0.4);
  background: rgba(11, 10, 9, 0.3);
}

.package-card--challenger .package-name {
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  color: var(--ivory);
}

.package-price--challenger {
  color: var(--stone);
}

.package-price-glass-chip {
  display: inline-flex;
  padding: 4px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(175, 149, 103, 0.5);
}

.package-price-glass-chip strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: 0.02em;
  color: var(--brass-soft);
}

.package-card--challenger .package-desc {
  color: rgba(242, 238, 231, 0.72);
  max-width: 62ch;
}

.package-card--challenger .package-availability {
  margin-top: 26px;
  color: rgba(185, 174, 162, 0.75);
}

/* --------------------------------------------------------------------------
   12. International teaser — offset editorial split
   -------------------------------------------------------------------------- */
.international-teaser {
  background: var(--ivory);
  border-top: 1px solid var(--line-dark-soft);
  overflow: clip;
}

.international-teaser-inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
}

.international-teaser .section-title {
  max-width: 14ch;
}

.international-lead {
  margin-top: 26px;
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.85;
  color: var(--stone-deep);
  max-width: 50ch;
}

.international-image {
  position: relative;
}

/* offset hairline frame — quiet depth, no shadows */
.international-image::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(175, 149, 103, 0.35);
  pointer-events: none;
}

.international-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}

/* --------------------------------------------------------------------------
   13. Founder / CEO — dark, personal, cinematic
   -------------------------------------------------------------------------- */
.founder-section {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(110px, 14vw, 200px) 0;
}

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

.founder-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 20%;
  filter: grayscale(0.35) contrast(1.04);
}

.founder-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(86deg,
      rgba(11, 10, 9, 0.94) 0%,
      rgba(11, 10, 9, 0.82) 38%,
      rgba(11, 10, 9, 0.3) 68%,
      rgba(11, 10, 9, 0.5) 100%),
    linear-gradient(to top, rgba(11, 10, 9, 0.6), transparent 35%),
    linear-gradient(118deg,
      transparent 52%,
      rgba(var(--spec-violet), 0.05) 60%,
      rgba(var(--spec-rose), 0.05) 66%,
      transparent 74%);
}

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

.founder-content {
  max-width: 560px;
}

.founder-eyebrow {
  color: var(--brass-soft);
}

.founder-title {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.06;
  color: var(--ivory);
}

.founder-lead {
  margin-top: 26px;
  font-size: 0.9875rem;
  line-height: 1.85;
  color: rgba(242, 238, 231, 0.7);
}

.founder-highlights {
  margin-top: 44px;
  border-top: 1px solid var(--line-light-soft);
}

.founder-highlight {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light-soft);
}

.founder-highlight-mark {
  flex: none;
  width: 22px;
  height: 1px;
  transform: translateY(-4px);
  background: linear-gradient(90deg, var(--brass), rgba(var(--spec-rose), 0.5));
}

.founder-highlight-text {
  font-size: 0.9375rem;
  letter-spacing: 0.015em;
  color: rgba(242, 238, 231, 0.85);
}

/* --------------------------------------------------------------------------
   14. Contact — a private consultation, not a web form
   -------------------------------------------------------------------------- */
.contact {
  background: var(--ivory);
  border-top: 1px solid var(--line-dark-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 110px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 40px);
}

.contact-intro .section-header {
  margin-bottom: 0;
}

.contact-intro .prism-line {
  margin-top: 36px;
  max-width: 220px;
}

.contact-form-panel {
  background: transparent;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 3vw, 48px);
}

.form-group,
.field-card {
  position: relative;
  padding: 18px 0 20px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color var(--t-hover);
}

.field-card:focus-within {
  border-bottom-color: var(--burgundy);
}

/* animated focus underline */
.field-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.field-card:focus-within::after {
  transform: scaleX(1);
}

.field-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-deep);
  transition: color var(--t-hover);
}

.field-card:focus-within label {
  color: var(--burgundy);
}

.field-card input,
.field-card select,
.field-card textarea {
  display: block;
  width: 100%;
  padding: 4px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.field-card input::placeholder,
.field-card textarea::placeholder {
  color: rgba(142, 132, 120, 0.55);
}

.field-card select {
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='none' stroke='%238E8478' stroke-width='1.1' d='M1 1l4.5 4.5L10 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.field-card textarea {
  resize: vertical;
  min-height: 120px;
}

/* Native date input alignment */
.field-card input[type="date"] {
  min-height: 33px;
  color-scheme: light;
}

/* Invalid state */
.field-card.is-invalid {
  border-bottom-color: rgba(90, 20, 43, 0.8);
}

.field-card.is-invalid::after {
  transform: scaleX(1);
}

.field-card.is-invalid label {
  color: var(--burgundy);
}

.form-note {
  margin-top: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--stone-deep);
}

.payment-link-area {
  margin-top: 18px;
}

.btn-payment-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-deep);
  border: 1px solid var(--line-dark);
  background: transparent;
  transition: color var(--t-hover), border-color var(--t-hover), background-color var(--t-hover);
}

.btn-payment-link:hover,
.btn-payment-link:focus-visible {
  color: var(--burgundy);
  border-color: rgba(90, 20, 43, 0.45);
  background: rgba(90, 20, 43, 0.03);
}

.form-submit-area {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn-submit {
  min-width: 280px;
}

.form-submit-note {
  font-size: 0.78125rem;
  color: var(--stone-deep);
}

/* --------------------------------------------------------------------------
   15. Footer — dark editorial colophon
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--stone);
  padding: clamp(70px, 8vw, 110px) 0 0;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(var(--spec-rose), 0.22) 30%,
    rgba(var(--spec-violet), 0.2) 50%,
    rgba(var(--spec-cyan), 0.18) 70%,
    transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 2fr) minmax(0, 2fr);
  gap: clamp(36px, 4vw, 64px);
  padding-bottom: clamp(52px, 6vw, 80px);
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory);
}

.footer-logo-tld {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--stone-deep);
}

.footer-tagline {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(242, 238, 231, 0.66);
  max-width: 30ch;
}

.footer-position {
  margin-top: 10px;
  font-size: 0.78125rem;
  letter-spacing: 0.02em;
  color: rgba(185, 174, 162, 0.6);
}

.footer-position:first-of-type {
  margin-top: 24px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav a,
.footer-contact a,
.social-link {
  position: relative;
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(185, 174, 162, 0.75);
  transition: color var(--t-hover);
}

.footer-nav a::after,
.footer-contact a::after,
.social-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--ivory);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-contact a:hover::after,
.footer-contact a:focus-visible::after,
.social-link:hover::after,
.social-link:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact p {
  margin-bottom: 13px;
}

.footer-contact a[href^="mailto"] {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-lang {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light-soft);
}

.footer-lang .lang-btn {
  color: rgba(185, 174, 162, 0.5);
}

.footer-lang .lang-btn.active {
  color: var(--brass-soft);
}

.footer-bottom {
  border-top: 1px solid var(--line-light-soft);
  padding-top: 26px;
  padding-bottom: 30px;
}

.footer-bottom p {
  font-size: 0.71875rem;
  letter-spacing: 0.06em;
  color: rgba(142, 132, 120, 0.7);
}

/* --------------------------------------------------------------------------
   16. Inner pages — shared dark cinematic page hero
   -------------------------------------------------------------------------- */
body.page-inner {
  background: var(--ivory);
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(70px, 10vw, 130px)) 0 clamp(64px, 8vw, 110px);
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 150% at 85% 0%, rgba(21, 26, 22, 0.85), transparent 60%),
    linear-gradient(112deg,
      transparent 46%,
      rgba(var(--spec-violet), 0.06) 54%,
      rgba(var(--spec-cyan), 0.05) 60%,
      rgba(var(--spec-amber), 0.05) 66%,
      transparent 74%);
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(var(--spec-rose), 0.25) 35%,
    rgba(var(--spec-cyan), 0.2) 65%,
    transparent);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .page-eyebrow {
  color: var(--brass-soft);
}

.page-title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  max-width: 16ch;
  color: var(--ivory);
}

.page-lead {
  margin-top: 22px;
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  line-height: 1.8;
  color: rgba(242, 238, 231, 0.72);
  max-width: 58ch;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(185, 174, 162, 0.8);
  transition: color var(--t-hover), transform var(--t-hover);
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--ivory);
  transform: translateX(-4px);
}

/* Package hero tints — each tier refracts its own tone */
.page-hero--silver::before {
  background:
    radial-gradient(110% 150% at 85% 0%, rgba(var(--spec-cyan), 0.09), transparent 60%),
    radial-gradient(90% 130% at 10% 100%, rgba(21, 26, 22, 0.8), transparent 60%);
}

.page-hero--gold::before {
  background:
    radial-gradient(110% 150% at 85% 0%, rgba(var(--spec-amber), 0.1), transparent 60%),
    radial-gradient(90% 130% at 10% 100%, rgba(21, 26, 22, 0.8), transparent 60%);
}

.page-hero--platinum::before {
  background:
    radial-gradient(110% 150% at 85% 0%, rgba(var(--spec-violet), 0.1), transparent 60%),
    radial-gradient(90% 130% at 10% 100%, rgba(21, 26, 22, 0.8), transparent 60%);
}

.page-hero--challenger::before {
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(90, 20, 43, 0.55), transparent 58%),
    radial-gradient(90% 130% at 8% 100%, rgba(21, 26, 22, 0.9), transparent 60%),
    linear-gradient(112deg,
      transparent 46%,
      rgba(var(--spec-rose), 0.06) 56%,
      rgba(var(--spec-amber), 0.05) 64%,
      transparent 74%);
}

.page-hero--challenger .package-badge {
  margin-bottom: 20px;
}

.page-hero--international {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-image: url('/images/international/international-couples.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.38;
}

.page-hero--international::before {
  background:
    linear-gradient(80deg,
      rgba(11, 10, 9, 0.92) 0%,
      rgba(11, 10, 9, 0.72) 42%,
      rgba(11, 10, 9, 0.3) 75%,
      rgba(11, 10, 9, 0.55) 100%),
    linear-gradient(to top, rgba(11, 10, 9, 0.75), transparent 40%);
}

.intl-hero-trust {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(242, 238, 231, 0.62);
  max-width: 52ch;
}

.intl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   17. Destinations & services — editorial content blocks
   -------------------------------------------------------------------------- */
.content-block {
  padding: clamp(52px, 6vw, 84px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.content-block:first-child {
  padding-top: 0;
}

.content-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content-block-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}

/* alternate the composition — editorial rhythm */
.content-block:nth-child(even) .content-block-inner > :first-child {
  order: 2;
}

.destination-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}

.destination-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 10, 9, 0.22), transparent 40%);
  pointer-events: none;
}

.destination-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.content-block:hover .destination-image-wrap img {
  transform: scale(1.035);
}

.destination-region {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.destination-region::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.content-block-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: rgba(11, 10, 9, 0.26);
  margin-bottom: 10px;
}

.content-block-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  margin: 12px 0 8px;
}

.content-meta {
  display: block;
  margin: 26px 0 6px;
  color: var(--stone-deep);
}

.content-meta::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  margin-right: 12px;
  vertical-align: middle;
}

.content-block-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-charcoal-soft);
}

.detail-block-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-charcoal-soft);
  max-width: 56ch;
}

.content-block .btn {
  margin-top: 34px;
}

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

.detail-list li {
  position: relative;
  padding: 11px 0 11px 34px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-charcoal-soft);
  border-bottom: 1px solid var(--line-dark-soft);
}

.detail-list li:last-child {
  border-bottom: none;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(var(--spec-rose), 0.4));
}

/* --------------------------------------------------------------------------
   18. Package detail pages
   -------------------------------------------------------------------------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}

.detail-block {
  padding-bottom: clamp(36px, 4vw, 54px);
  margin-bottom: clamp(36px, 4vw, 54px);
  border-bottom: 1px solid var(--line-dark);
}

.detail-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-block-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.detail-aside-card {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 32px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid var(--line-dark);
  background: rgba(11, 10, 9, 0.02);
}

.detail-aside-card .package-price {
  margin-bottom: 4px;
}

.detail-aside-card .btn {
  margin-top: 26px;
  width: 100%;
}

.detail-scarcity {
  margin-top: 18px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-charcoal-soft);
}

.detail-aside-card .package-availability {
  margin-top: 10px;
  padding-top: 0;
}

/* Challenger aside inherits the dark treatment */
.detail-aside-card.package-card--challenger {
  grid-column: auto;
  margin-top: 0;
  padding: clamp(30px, 3vw, 42px);
  background:
    radial-gradient(140% 150% at 85% 0%, rgba(90, 20, 43, 0.5), transparent 60%),
    var(--ink);
  border-color: rgba(175, 149, 103, 0.25);
  color: var(--ivory);
}

.detail-aside-card.package-card--challenger .detail-scarcity {
  color: rgba(242, 238, 231, 0.7);
}

.detail-aside-card.package-card--challenger .package-availability {
  color: rgba(185, 174, 162, 0.7);
}

.detail-aside-card.package-card--challenger .btn-gold {
  width: 100%;
}

/* --------------------------------------------------------------------------
   19. International couples page
   -------------------------------------------------------------------------- */
.intl-trust-strip {
  padding: 0;
  background: var(--ink);
  border-top: 1px solid var(--line-light-soft);
}

.intl-trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 24px 0;
}

.intl-trust-list li {
  position: relative;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(185, 174, 162, 0.85);
}

.intl-journey {
  background: var(--ivory);
}

.intl-steps {
  display: flex;
  flex-direction: column;
}

.intl-step-card {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(36px, 4.4vw, 60px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.intl-step-card:last-child {
  border-bottom: none;
}

.intl-step-card:nth-child(even) > .intl-step-image {
  order: 2;
}

.intl-step-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
}

.intl-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.intl-step-card:hover .intl-step-image img {
  transform: scale(1.035);
}

.intl-step-body {
  position: relative;
}

.intl-step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: rgba(11, 10, 9, 0.28);
}

.intl-step-title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
}

.intl-step-text {
  margin-top: 14px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--stone-deep);
  max-width: 54ch;
}

.intl-step-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 1.1rem;
  transition: background-color var(--t-hover), color var(--t-hover), border-color var(--t-hover);
}

.intl-step-cta:hover,
.intl-step-cta:focus-visible {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* FAQ */
.intl-faq {
  background: var(--ivory-2);
  border-top: 1px solid var(--line-dark-soft);
}

.intl-faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-bottom: clamp(44px, 5vw, 64px);
}

.intl-faq-nav a {
  padding: 10px 20px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-deep);
  border: 1px solid var(--line-dark);
  transition: color var(--t-hover), border-color var(--t-hover), background-color var(--t-hover);
}

.intl-faq-nav a:hover,
.intl-faq-nav a:focus-visible {
  color: var(--ink);
  border-color: rgba(11, 10, 9, 0.4);
  background: rgba(11, 10, 9, 0.03);
}

.intl-faq-groups {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.intl-faq-group {
  margin-bottom: clamp(40px, 5vw, 60px);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.intl-faq-group-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark-soft);
}

.faq-item summary {
  position: relative;
  padding: 18px 44px 18px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  transition: color var(--t-hover);
}

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

.faq-item summary:hover {
  color: var(--burgundy);
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 12px no-repeat;
  opacity: 0.55;
  transition: transform 0.4s var(--ease), opacity var(--t-hover);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.85;
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-charcoal-soft);
  max-width: 68ch;
}

/* Final CTA */
.intl-final-cta {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.intl-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 150% at 80% 0%, rgba(90, 20, 43, 0.4), transparent 55%),
    linear-gradient(112deg,
      transparent 45%,
      rgba(var(--spec-violet), 0.06) 54%,
      rgba(var(--spec-cyan), 0.05) 61%,
      transparent 70%);
}

.intl-final-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.intl-final-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.06;
}

.intl-final-text {
  margin: 24px auto 0;
  font-size: 0.9875rem;
  line-height: 1.85;
  color: rgba(242, 238, 231, 0.7);
  max-width: 56ch;
}

.intl-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.intl-final-cta .btn-outline-dark {
  color: var(--ivory);
  border-color: rgba(242, 238, 231, 0.45);
}

.intl-final-cta .btn-outline-dark:hover,
.intl-final-cta .btn-outline-dark:focus-visible {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   20. Intimate page
   -------------------------------------------------------------------------- */
.page-hero--intimate::before {
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(90, 20, 43, 0.5), transparent 58%),
    radial-gradient(90% 130% at 8% 100%, rgba(21, 26, 22, 0.85), transparent 60%),
    linear-gradient(112deg,
      transparent 46%,
      rgba(var(--spec-rose), 0.07) 56%,
      rgba(var(--spec-violet), 0.05) 64%,
      transparent 74%);
}

.intimate-intro {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.intimate-intro-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-charcoal-soft);
}

.intimate-gallery-lead {
  margin-top: 18px;
  font-size: 0.9375rem;
  color: var(--stone-deep);
}

.intimate-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
  margin-bottom: clamp(52px, 6vw, 80px);
}

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

.intimate-gallery-item--feature {
  grid-column: span 4;
  grid-row: span 1;
}

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

.intimate-gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivory-2);
}

.intimate-gallery-item--feature .intimate-gallery-frame {
  aspect-ratio: 8 / 5;
}

.intimate-gallery-item--wide .intimate-gallery-frame {
  aspect-ratio: 21 / 9;
}

.intimate-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.intimate-gallery-item:hover .intimate-gallery-frame img {
  transform: scale(1.035);
}

.intimate-gallery-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-deep);
}

.intimate-gallery-caption::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
}

.intimate-details {
  max-width: 720px;
}

.intimate-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--line-dark);
  margin-bottom: 26px;
}

.intimate-features li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: 0.9375rem;
  color: var(--color-charcoal-soft);
  border-bottom: 1px solid var(--line-dark-soft);
}

.intimate-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.6em;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--burgundy), rgba(var(--spec-rose), 0.5));
}

.intimate-cta-wrap {
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   21. Cinematic wedding page
   -------------------------------------------------------------------------- */
.page-hero--cinematic::before {
  background:
    radial-gradient(120% 160% at 80% 0%, rgba(21, 26, 22, 0.9), transparent 60%),
    linear-gradient(112deg,
      transparent 44%,
      rgba(var(--spec-cyan), 0.07) 54%,
      rgba(var(--spec-violet), 0.05) 62%,
      transparent 72%);
}

.cinematic-intro {
  max-width: 780px;
  margin-bottom: clamp(52px, 6vw, 84px);
}

.cinematic-intro-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.62;
  color: var(--color-charcoal-soft);
}

.cinematic-video-section {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.cinematic-video-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: clamp(28px, 3vw, 40px);
}

.cinematic-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
}

.cinematic-video--featured {
  grid-column: 1 / -1;
}

.cinematic-video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}

.cinematic-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(21, 26, 22, 0.9), transparent 70%),
    linear-gradient(112deg,
      transparent 42%,
      rgba(var(--spec-violet), 0.06) 52%,
      rgba(var(--spec-cyan), 0.05) 60%,
      transparent 70%),
    var(--ink);
  color: var(--ivory);
}

.cinematic-video-play {
  display: block;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(242, 238, 231, 0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--t-hover), transform var(--t-hover);
}

.cinematic-video-play::after {
  content: '';
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 11px solid rgba(242, 238, 231, 0.85);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.cinematic-video:hover .cinematic-video-play {
  border-color: var(--brass-soft);
  transform: scale(1.06);
}

.cinematic-video-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: rgba(242, 238, 231, 0.9);
}

.cinematic-video-note {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(185, 174, 162, 0.6);
}

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

.cinematic-pillar {
  padding: clamp(26px, 3vw, 40px) clamp(0px, 2vw, 32px) clamp(26px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.cinematic-pillar-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  margin-bottom: 12px;
}

.cinematic-pillar-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--stone-deep);
  max-width: 52ch;
}

.cinematic-cta-wrap {
  margin-top: clamp(44px, 5vw, 64px);
}

/* --------------------------------------------------------------------------
   22. Partners page
   -------------------------------------------------------------------------- */
.partners-intro {
  max-width: 720px;
  margin-bottom: clamp(36px, 4vw, 52px);
}

.partners-intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  color: var(--color-charcoal-soft);
}

.partners-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(44px, 5vw, 64px);
}

.partner-tag {
  padding: 10px 20px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-deep);
  border: 1px solid var(--line-dark);
  transition: color var(--t-hover), border-color var(--t-hover);
}

.partner-tag:hover {
  color: var(--ink);
  border-color: rgba(11, 10, 9, 0.4);
}

.partners-models {
  max-width: 720px;
  margin-bottom: clamp(44px, 5vw, 64px);
}

.partners-models-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 20px;
}

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

.partners-models-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  font-size: 0.9375rem;
  color: var(--color-charcoal-soft);
  border-bottom: 1px solid var(--line-dark-soft);
}

.partners-models-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55em;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(var(--spec-amber), 0.4));
}

.partner-form-panel {
  max-width: 880px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   23. Multilingual typography
   -------------------------------------------------------------------------- */
[data-lang="ka"] .section-title,
[data-lang="ka"] .hero-title,
[data-lang="ka"] .page-title,
[data-lang="ka"] .founder-title,
[data-lang="ka"] .package-name,
[data-lang="ka"] .logo-text,
[data-lang="ka"] .footer-logo {
  letter-spacing: 0.01em;
}

[data-lang="ka"] .hero-eyebrow,
[data-lang="ka"] .page-eyebrow,
[data-lang="ka"] .nav-list a,
[data-lang="ka"] .trust-strip-item,
[data-lang="ka"] .btn {
  letter-spacing: 0.08em;
}

[data-lang="ru"] .hero-title {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1160px) {
  .nav-list {
    gap: 16px;
  }
  .nav-list a,
  .header-contact-link {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 70px;
    --header-height-scrolled: 60px;
  }

  .main-nav {
    display: none;
  }

  .header-contact-link {
    display: none;
  }

  .header-actions .lang-switcher {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .why-georgia-grid {
    grid-template-columns: 1fr;
  }

  .why-georgia-media {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 10;
    margin-bottom: 8px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line-dark);
  }

  .package-card {
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .package-card:last-of-type {
    border-bottom: none;
  }

  .packages-grid .package-card--challenger {
    border: 1px solid rgba(242, 238, 231, 0.08);
  }

  .package-availability {
    margin-top: 22px;
  }

  .international-teaser-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .international-image {
    order: -1;
    max-width: 560px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-intro {
    position: static;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .detail-aside-card {
    position: static;
    max-width: 560px;
  }

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

  .content-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-block:nth-child(even) .content-block-inner > :first-child {
    order: 0;
  }

  .destination-image-wrap {
    max-width: 560px;
    aspect-ratio: 4 / 3.4;
  }

  .intl-step-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intl-step-card:nth-child(even) > .intl-step-image {
    order: 0;
  }

  .intl-step-image {
    max-width: 560px;
    aspect-ratio: 16 / 10;
  }

  .cinematic-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  :root {
    --section-padding: clamp(72px, 16vw, 96px);
  }

  body {
    font-size: 15px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: clamp(72px, 14vh, 110px);
  }

  .hero-title {
    font-size: clamp(2.5rem, 11.5vw, 3.4rem);
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
  }

  .hero-actions .btn {
    justify-content: space-between;
  }

  .hero-scroll-hint {
    display: none;
  }

  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-strip-divider {
    display: none;
  }

  .trust-strip-item {
    letter-spacing: 0.18em;
  }

  .why-card {
    grid-template-columns: 48px 1fr;
  }

  .package-scarcity-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .package-scarcity-divider {
    display: none;
  }

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

  .btn-submit {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

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

  .intimate-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .intimate-features {
    grid-template-columns: 1fr;
  }

  .cinematic-video-grid {
    grid-template-columns: 1fr;
  }

  .intl-trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }

  .intl-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .intl-hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
  }

  .btn {
    padding: 16px 26px;
  }

  .why-cinematic-cta {
    padding: 30px 24px;
  }
}

/* Ultra-wide restraint */
@media (min-width: 1800px) {
  .hero-title {
    font-size: 6.5rem;
  }
}

/* Touch feedback where hover is unavailable */
@media (hover: none) {
  .btn:active {
    opacity: 0.85;
  }
  .package-card:active {
    background-color: rgba(11, 10, 9, 0.03);
  }
}
