/* =========================================================================
 * Festina Lente — style.css
 * Editorial palette · gradient meshes · grain · scroll-reveal · responsive
 * ========================================================================= */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --navy:      #0D1B2A;
  --navy-2:    #122438;
  --navy-deep: #07111C;
  --gold:      #C9A84C;
  --gold-soft: #D9BD6B;
  --gold-deep: #A6892F;
  --ivory:     #F9F5EE;
  --sand:      #E8DCC8;
  --sand-deep: #D9C9AE;
  --charcoal:  #2C3E50;
  --white:     #FFFFFF;
  --line:      rgba(201, 168, 76, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-label:   'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --radius: 4px;
  --radius-card: 6px;
  --shadow-soft: 0 12px 40px -16px rgba(7, 17, 28, 0.5);
  --shadow-gold: 0 24px 60px -20px rgba(201, 168, 76, 0.45);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  text-rendering: optimizeLegibility;
}

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

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

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; margin: 0; color: var(--navy); }
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

p { margin: 0; }

::selection { background: var(--gold); color: var(--navy); }

/* ---- Utility ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow--ivory { color: var(--ivory); opacity: 0.65; }

.divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
  background: transparent;
}

.btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(201, 168, 76, 0.6);
}

.btn--solid { background: var(--gold); color: var(--navy); }
.btn--solid:hover { background: var(--gold-soft); color: var(--navy); }

.btn--ghost-dark { color: var(--navy); border-color: var(--navy); }
.btn--ghost-dark:hover { background: var(--navy); color: var(--ivory); box-shadow: var(--shadow-soft); }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn:disabled:hover { transform: none; box-shadow: none; }

/* ---- Scroll reveal ------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
 * Brand mark (header / footer)
 * ========================================================================= */
.brand-lockup { display: inline-flex; align-items: center; gap: 14px; }
.brand-lockup__svg { width: 26px; height: 42px; flex-shrink: 0; }
.brand-lockup__type { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.005em;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
}
.brand-lockup__sub {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  font-style: normal;
}
.brand-lockup--inverse .brand-lockup__name { color: var(--navy); }

.brand-lockup--horizontal { gap: 14px; }
.brand-lockup--horizontal .brand-lockup__name { font-size: 1.45rem; letter-spacing: 0.005em; color: var(--ivory); }
.brand-lockup--horizontal .brand-lockup__sub { font-size: 0.62rem; letter-spacing: 0.34em; }
.brand-lockup--horizontal .brand-lockup__svg { width: 30px; height: 48px; }

/* =========================================================================
 * Header
 * ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(13, 27, 42, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.site-nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 980px) { .site-nav { display: flex; } }

.site-nav__link {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.78;
  position: relative;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.site-nav__link:hover { opacity: 1; color: var(--gold); }
.site-nav__link:hover::after { transform: scaleX(1); }

.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-switch__btn {
  padding: 8px 14px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ivory);
  opacity: 0.55;
  border-radius: 999px;
  transition: opacity 0.25s, background 0.3s, color 0.3s;
  border: 1px solid transparent;
}
.lang-switch__btn:hover { opacity: 1; }
.lang-switch__btn.is-active {
  opacity: 1;
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.hamburger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--ivory);
}
@media (min-width: 980px) { .hamburger { display: none; } }
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
  content: '';
  display: block;
  width: 16px;
  height: 1.4px;
  background: var(--ivory);
  position: relative;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.hamburger__icon::before { position: absolute; top: -5px; left: 0; }
.hamburger__icon::after  { position: absolute; bottom: -5px; left: 0; }

/* Mobile menu slide-down */
.mobile-menu {
  background: var(--navy);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
@media (min-width: 980px) { .mobile-menu { display: none !important; } }

.mobile-menu__inner { padding: 24px 0 32px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-label);
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu__link:last-of-type { border-bottom: none; }

/* =========================================================================
 * Hero
 * ========================================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(36, 84, 112, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 30%, rgba(80, 120, 130, 0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 92%, rgba(201, 168, 76, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 88%, rgba(166, 137, 47, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, #07111C 0%, #0D1B2A 40%, #122438 75%, #1B2D40 100%);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  0%   { transform: scale(1)   translate3d(0, 0, 0); }
  100% { transform: scale(1.06) translate3d(-1.5%, -1%, 0); }
}

/* Grain overlay (SVG turbulence as data URI) */
.grain {
  position: absolute;
  inset: -1px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

.hero__inner {
  position: relative;
  text-align: center;
  padding: 120px 24px 120px;
  max-width: 920px;
  color: var(--ivory);
}

.hero__label {
  display: inline-block;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.hero__headline {
  font-family: var(--font-display);
  color: var(--ivory);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 7.6vw, 5.6rem);
  line-height: 1.05;
}
.hero__headline-em { color: var(--gold); font-style: italic; }

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(249, 245, 238, 0.84);
  max-width: 620px;
  margin: 0 auto 44px;
}

.hero__cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  opacity: 0.65;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--gold);
  animation: scroll-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scroll-pulse {
  0%   { top: -50%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* =========================================================================
 * Brand story strip
 * ========================================================================= */
.story {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(201, 168, 76, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.story__grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: start;
  position: relative;
}
@media (min-width: 880px) {
  .story__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.story__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.story__body {
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(249, 245, 238, 0.82);
  max-width: 520px;
}

.pillars { display: flex; flex-direction: column; gap: 26px; }
.pillar { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.pillar:first-child { border-top: none; padding-top: 0; }
.pillar__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 6px;
  font-weight: 500;
}
.pillar__body { color: rgba(249, 245, 238, 0.7); font-size: 0.95rem; line-height: 1.6; }

/* =========================================================================
 * Section header pattern
 * ========================================================================= */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section--ivory { background: var(--ivory); }
.section--sand { background: var(--sand); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 8vw, 80px); }
.section__heading { color: var(--navy); margin-bottom: 18px; }
.section__intro { color: var(--charcoal); opacity: 0.78; font-size: 1.05rem; line-height: 1.6; }

/* =========================================================================
 * Destinations / Products
 * ========================================================================= */
.region-block { margin-bottom: clamp(56px, 8vw, 88px); }
.region-block:last-child { margin-bottom: 0; }

.region-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.region-head__flag { font-size: 1.6rem; line-height: 1; }
.region-head__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.region-head__count {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--charcoal);
  opacity: 0.5;
  text-transform: uppercase;
}

.cards-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* When a region contains a featured card, drop to 2 columns on desktop so
   the featured + two siblings fill cleanly without an orphan column. */
@media (min-width: 1040px) {
  .cards-grid:has(.card--featured) { grid-template-columns: repeat(2, 1fr); }
}

/* Card shell ----------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 32px 28px 28px;
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--navy);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease;
  box-shadow: 0 14px 40px -28px rgba(7, 17, 28, 0.5);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3; /* mesh gradient — fallback below the photo */
}

/* Real photograph (loaded lazily). Sits above the mesh, below the dark overlay. */
.card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(7, 17, 28, 0.05) 0%,
      rgba(7, 17, 28, 0.18) 30%,
      rgba(7, 17, 28, 0.78) 62%,
      rgba(7, 17, 28, 0.95) 82%,
      rgba(7, 17, 28, 0.98) 100%);
  pointer-events: none;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.card:hover .card__photo { transform: scale(1.04); filter: saturate(1.12) contrast(1.04); }

.card__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.75;
}

.card__flag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.card__duration {
  align-self: flex-start;
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid var(--line);
  color: var(--ivory);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.18;
  color: var(--ivory);
  margin: 200px 0 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Small uppercase keyword strip — concrete itinerary anchors */
.card__highlights {
  font-family: var(--font-label);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* Prose body — the real "what is this trip" */
.card__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(249, 245, 238, 0.82);
  margin: 0 0 14px;
}

.card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  margin: 0 0 18px;
  line-height: 1.4;
}

/* Compact meta block: Includes / Best for */
.card__meta {
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__meta-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0;
}
.card__meta-row dt {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  font-weight: 500;
}
.card__meta-row dd {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(249, 245, 238, 0.72);
  line-height: 1.45;
}

.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.card__cta {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.card__cta:hover { color: var(--gold); transform: translateX(3px); }

/* Featured card ------------------------------------------------------- */
.card--featured {
  grid-column: 1 / -1;
  min-height: 680px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15) inset, 0 24px 60px -24px rgba(201, 168, 76, 0.4);
}
@media (min-width: 1040px) { .card--featured { grid-column: 1 / -1; } }

.card--featured .card__top { height: 4px; opacity: 1; }

.card--featured .card__title { font-size: 2rem; margin-top: 220px; }
.card--featured .card__body  { font-size: 0.98rem; }
.card--featured .card__quote { font-size: 1.1rem; }
/* Featured card has a badge in the top-left, so push duration pill to the right. */
.card--featured .card__duration { align-self: flex-end; }

.featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(201, 168, 76, 0.7);
}
.featured-badge::before {
  content: '✦';
  font-size: 0.9rem;
  letter-spacing: 0;
}

/* =========================================================================
 * Card mesh palettes
 * Each palette = 3 layered radial-gradients painting the ::before surface.
 * ========================================================================= */
.mesh-athens::before {
  background:
    radial-gradient(at 20% 20%, rgba(217, 189, 107, 0.55) 0%, transparent 55%),
    radial-gradient(at 80% 70%, rgba(124, 78, 38, 0.6) 0%, transparent 60%),
    radial-gradient(at 50% 100%, rgba(13, 27, 42, 1) 40%, rgba(20, 38, 58, 1) 100%);
}
.mesh-santorini::before {
  background:
    radial-gradient(at 25% 18%, rgba(249, 245, 238, 0.4) 0%, transparent 50%),
    radial-gradient(at 80% 30%, rgba(60, 100, 150, 0.7) 0%, transparent 55%),
    radial-gradient(at 50% 90%, rgba(20, 50, 90, 1) 30%, rgba(13, 27, 42, 1) 100%);
}
.mesh-thessaloniki::before {
  background:
    radial-gradient(at 30% 25%, rgba(170, 110, 70, 0.55) 0%, transparent 55%),
    radial-gradient(at 75% 75%, rgba(110, 60, 110, 0.6) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(28, 22, 50, 1) 40%, rgba(13, 27, 42, 1) 100%);
}

/* Turkey */
.mesh-cappadocia::before {
  background:
    radial-gradient(at 22% 18%, rgba(231, 165, 100, 0.6) 0%, transparent 55%),
    radial-gradient(at 80% 35%, rgba(201, 168, 76, 0.45) 0%, transparent 50%),
    radial-gradient(at 50% 95%, rgba(76, 38, 32, 1) 30%, rgba(20, 16, 26, 1) 100%);
}
.mesh-istanbul::before {
  background:
    radial-gradient(at 18% 22%, rgba(201, 168, 76, 0.45) 0%, transparent 50%),
    radial-gradient(at 82% 28%, rgba(170, 50, 50, 0.5) 0%, transparent 55%),
    radial-gradient(at 50% 95%, rgba(13, 27, 42, 1) 35%, rgba(7, 17, 28, 1) 100%);
}
.mesh-aegean-tr::before {
  background:
    radial-gradient(at 22% 18%, rgba(140, 200, 220, 0.5) 0%, transparent 55%),
    radial-gradient(at 82% 70%, rgba(60, 130, 160, 0.7) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(15, 60, 90, 1) 30%, rgba(13, 27, 42, 1) 100%);
}

/* Japan */
.mesh-japan-1::before {
  background:
    radial-gradient(at 25% 22%, rgba(232, 145, 165, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(201, 168, 76, 0.35) 0%, transparent 55%),
    radial-gradient(at 50% 95%, rgba(40, 24, 50, 1) 40%, rgba(15, 18, 32, 1) 100%);
}
.mesh-japan-2::before {
  background:
    radial-gradient(at 22% 24%, rgba(225, 180, 110, 0.5) 0%, transparent 55%),
    radial-gradient(at 82% 80%, rgba(180, 70, 60, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(40, 22, 18, 1) 30%, rgba(20, 14, 14, 1) 100%);
}
.mesh-japan-3::before {
  background:
    radial-gradient(at 22% 18%, rgba(200, 220, 240, 0.45) 0%, transparent 55%),
    radial-gradient(at 80% 70%, rgba(80, 130, 170, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(15, 35, 60, 1) 30%, rgba(7, 17, 28, 1) 100%);
}

/* Korea */
.mesh-korea-1::before {
  background:
    radial-gradient(at 22% 18%, rgba(220, 130, 200, 0.45) 0%, transparent 55%),
    radial-gradient(at 82% 28%, rgba(120, 90, 200, 0.45) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(30, 20, 60, 1) 35%, rgba(15, 14, 32, 1) 100%);
}
.mesh-korea-2::before {
  background:
    radial-gradient(at 22% 22%, rgba(150, 200, 180, 0.45) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(60, 110, 130, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(15, 50, 60, 1) 30%, rgba(7, 25, 32, 1) 100%);
}
.mesh-korea-3::before {
  background:
    radial-gradient(at 22% 22%, rgba(220, 200, 140, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 70%, rgba(80, 140, 100, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(20, 50, 40, 1) 30%, rgba(8, 24, 18, 1) 100%);
}

/* China */
.mesh-china-1::before {
  background:
    radial-gradient(at 22% 18%, rgba(220, 100, 80, 0.55) 0%, transparent 55%),
    radial-gradient(at 80% 35%, rgba(201, 168, 76, 0.45) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(60, 20, 30, 1) 30%, rgba(20, 10, 14, 1) 100%);
}
.mesh-china-2::before {
  background:
    radial-gradient(at 22% 22%, rgba(150, 200, 180, 0.45) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(120, 160, 110, 0.5) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(20, 60, 50, 1) 30%, rgba(10, 28, 22, 1) 100%);
}
.mesh-china-3::before {
  background:
    radial-gradient(at 22% 18%, rgba(231, 165, 100, 0.55) 0%, transparent 55%),
    radial-gradient(at 80% 75%, rgba(160, 90, 50, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(60, 30, 20, 1) 30%, rgba(20, 12, 10, 1) 100%);
}

/* Thailand */
.mesh-thai-1::before {
  background:
    radial-gradient(at 22% 18%, rgba(231, 165, 100, 0.55) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(220, 100, 130, 0.45) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(40, 20, 50, 1) 30%, rgba(15, 10, 26, 1) 100%);
}
.mesh-thai-2::before {
  background:
    radial-gradient(at 22% 22%, rgba(180, 220, 140, 0.45) 0%, transparent 55%),
    radial-gradient(at 80% 70%, rgba(80, 140, 80, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(20, 50, 30, 1) 30%, rgba(10, 22, 14, 1) 100%);
}
.mesh-thai-3::before {
  background:
    radial-gradient(at 22% 18%, rgba(225, 200, 160, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 75%, rgba(120, 180, 200, 0.5) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(20, 60, 80, 1) 30%, rgba(10, 26, 36, 1) 100%);
}

/* Indonesia */
.mesh-bali-1::before {
  background:
    radial-gradient(at 22% 18%, rgba(220, 180, 110, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(120, 170, 130, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(30, 60, 50, 1) 30%, rgba(12, 26, 22, 1) 100%);
}
.mesh-bali-2::before {
  background:
    radial-gradient(at 22% 22%, rgba(120, 180, 200, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 30%, rgba(231, 165, 100, 0.45) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(20, 70, 80, 1) 30%, rgba(10, 28, 36, 1) 100%);
}
.mesh-bali-3::before {
  background:
    radial-gradient(at 22% 18%, rgba(231, 130, 130, 0.5) 0%, transparent 55%),
    radial-gradient(at 80% 75%, rgba(80, 60, 110, 0.55) 0%, transparent 55%),
    radial-gradient(at 50% 100%, rgba(40, 20, 50, 1) 30%, rgba(16, 10, 26, 1) 100%);
}

/* =========================================================================
 * Stats strip
 * ========================================================================= */
.stats {
  background: var(--sand);
  padding: clamp(72px, 9vw, 110px) 0;
  border-top: 1px solid var(--sand-deep);
  border-bottom: 1px solid var(--sand-deep);
}
.stats__head { text-align: center; margin-bottom: 56px; }
.stats__head .eyebrow { color: var(--gold-deep); }
.stats__head h2 { color: var(--navy); margin-top: 12px; }

.stats__grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 880px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; padding: 16px 8px; }
.stat__icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 18px;
  color: var(--gold-deep);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.78;
  margin-top: 12px;
}
.stat__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--charcoal);
  opacity: 0.65;
  margin-top: 6px;
  line-height: 1.35;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================================
 * Contact
 * ========================================================================= */
.contact {
  background: var(--navy);
  color: var(--ivory);
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 100%, rgba(201, 168, 76, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.contact__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 880px) { .contact__grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }

.contact__heading { color: var(--ivory); margin-bottom: 16px; }
.contact__intro { color: rgba(249, 245, 238, 0.78); margin-bottom: 36px; max-width: 460px; }

.contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-list dt {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ivory);
}
.contact-list dd a { transition: color 0.3s ease; }
.contact-list dd a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  opacity: 0.78;
  transition: background 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); opacity: 1; }
.social-link svg { width: 16px; height: 16px; }

/* Form ----------------------------------------------------------------- */
.form {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: 36px;
}
@media (max-width: 540px) { .form { padding: 26px 22px; } }

.form__row { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row--2col { grid-template-columns: 1fr 1fr; } }
.form__row + .form__row { margin-top: 22px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  background: rgba(13, 27, 42, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ivory);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field__input::placeholder,
.field__textarea::placeholder { color: rgba(249, 245, 238, 0.4); }
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(13, 27, 42, 0.7);
}
.field__textarea { min-height: 120px; resize: vertical; }
.field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
}
.field__select option { background: var(--navy); color: var(--ivory); }

.form__submit-row { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

/* ---- Field-level error spans (populated by @formspree/ajax) ----------- */
.field__error {
  display: block;
  min-height: 0;
  font-size: 0.78rem;
  color: #E08A8A;
  margin-top: 2px;
  font-family: var(--font-body);
  line-height: 1.4;
}
.field__error:empty { display: none; }

/* Aria-invalid set by the library on the field — accent the border */
[data-fs-field][aria-invalid="true"] {
  border-color: #E08A8A !important;
}

/* ---- Form-level success / error (toggled by data-fs-status on form) --- */
.form__status {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.5;
  display: none; /* shown only when the form has the matching status */
}
.form__status--success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
}
.form__status--error {
  color: #E8A0A0;
  background: rgba(224, 138, 138, 0.06);
  border: 1px solid rgba(224, 138, 138, 0.25);
}

.form[data-fs-status="success"] .form__status--success { display: block; }
.form[data-fs-status="error"]   .form__status--error   { display: block; }
.form[data-fs-status="success"] .form__row,
.form[data-fs-status="success"] .form__submit-row { opacity: 0.5; pointer-events: none; transition: opacity 0.4s ease; }

/* =========================================================================
 * Footer
 * ========================================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(249, 245, 238, 0.7);
  padding: 64px 0 36px;
  border-top: 1px solid var(--line-soft);
}

.site-footer__top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 800px) { .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  margin-top: 18px;
  font-size: 1.02rem;
  max-width: 360px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.65);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }

.site-footer__signoff {
  margin: 32px 0 0;
  padding: 20px 0 4px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  opacity: 0.85;
  border-top: 1px solid var(--line-soft);
}

.site-footer__bottom {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.45);
}

/* =========================================================================
 * Misc
 * ========================================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
