/* ============================================================
   Balon Rotası — Türkiye balon uçuş turları vitrini
   Palette: bg #FFFFFF / surface #F2F4F7 / ink #101418
            accent #E4572E / accent-2 #2A9D8F
   Type: Archivo 800 headings, Archivo 400 body
   ============================================================ */

:root {
  /* Dawn-paper palette — warmed to sit under the sunrise hero */
  --bg: #FFFDF9;
  --surface: #F5EFE5;
  --surface-2: #ECE2D3;
  --ink: #12100E;
  --ink-soft: #48413a;
  --ink-faint: #6a6055;
  --accent: #E4572E;
  --accent-deep: #c1431d;
  --accent-2: #1E766B;
  --gold: #E6A15C;
  --line: rgba(30, 22, 14, 0.13);
  --line-strong: rgba(30, 22, 14, 0.26);
  --header-h: 76px;

  /* sunrise sky stops used by hero */
  --sky-night: #1b2a4a;
  --sky-dusk: #5b4a72;
  --sky-peach: #f0946c;
  --sky-gold: #ffcf8f;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Archivo", "Segoe UI", system-ui, sans-serif;

  --maxw: 1320px;
  --pad: clamp(16px, 4vw, 48px);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 22px 44px -30px rgba(30, 22, 14, .34);
  --shadow-warm: 0 30px 60px -32px rgba(228, 87, 46, .42);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.012em;
  margin: 0 0 .5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent-2); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.long-text { word-break: break-word; overflow-wrap: anywhere; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-head.center .eyebrow { justify-content: center; }

.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #eef1f5; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: clamp(30px, 4.4vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin-top: .32em;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section--ink .section-head h2 em { color: var(--gold); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; max-width: 60ch; }
.section-head.center p { margin-inline: auto; }
.section--ink .section-head p { color: #c3ccd7; }

/* Editorial two-column head — heading left, supporting note right */
.section-head.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(18px, 4vw, 64px);
  align-items: end;
}
.section-head.split-head > .head-note {
  padding-bottom: 6px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}
.section-head.split-head > .head-note p { margin: 0; }
@media (max-width: 760px) {
  .section-head.split-head { grid-template-columns: 1fr; gap: 14px; }
  .section-head.split-head > .head-note { border-top: 0; padding-top: 0; }
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  z-index: 4000;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: .96rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -14px rgba(228, 87, 46, .8); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: #c8451f; color: #fff; transform: translateY(-2px);
  box-shadow: 0 16px 34px -14px rgba(228, 87, 46, .95), 0 0 0 1px rgba(255, 206, 139, .35) inset;
}

/* burner ember flash — warm glow rises on hover, flares on press */
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 214, 140, .9), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after, .btn-primary:focus-visible::after { opacity: .55; }
.btn-primary:active::after { opacity: 1; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover, .btn-outline-light:focus-visible { background: #fff; color: var(--ink); transform: translateY(-2px); }

.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Header + nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .22);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { width: 30px; height: 34px; flex: none; }
.brand b { color: var(--accent); }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
  }
  .nav-desktop a {
    position: relative;
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
    padding: 6px 0;
  }
  .nav-desktop a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width .24s var(--ease);
  }
  .nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
  .nav-desktop a:not(.nav-cta):hover::after,
  .nav-desktop a.is-active:not(.nav-cta)::after { width: 100%; }
  .nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

  .nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 999px;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover { background: var(--accent); color: #fff !important; }
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              box-shadow .22s var(--ease), transform .22s var(--ease);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  width: 21px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease, background .2s ease;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 6px 18px -10px rgba(228, 87, 46, .6);
  transform: translateY(-1px);
}
.nav-toggle:hover span, .nav-toggle:focus-visible span { background: var(--accent); }
.nav-toggle:active { transform: translateY(0) scale(.97); }
.nav-toggle[aria-expanded="true"] { background: #fff; border-color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .nav-toggle, .nav-toggle span { transition: none; }
  .nav-toggle:hover, .nav-toggle:focus-visible, .nav-toggle:active { transform: none; }
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -18px 0 50px -30px rgba(0,0,0,.4);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 18px;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
}
.drawer .drawer-cta:hover { background: #c8451f; color: #fff !important; }
.drawer-meta { margin-top: auto; font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.drawer-meta a { font-size: .86rem; font-weight: 600; padding: 0; border: 0; color: var(--accent); }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   HERO — cinematic full-bleed Cappadocia sunrise photo
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #101418;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  z-index: -3;
  transform: scale(1.06);
  animation: heroKen 20s var(--ease2) infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.15) translate3d(0, -2.4%, 0); }
}
/* dark gradient overlay — lifts white-on-photo contrast well past 4.5:1 */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(14,17,20,.44) 0%, rgba(14,17,20,0) 24%, rgba(14,17,20,.14) 50%, rgba(14,17,20,.72) 86%, rgba(14,17,20,.9) 100%),
    linear-gradient(90deg, rgba(14,17,20,.58) 0%, rgba(14,17,20,.14) 48%, rgba(14,17,20,0) 74%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding-bottom: clamp(48px, 8vw, 104px);
  padding-top: clamp(96px, 15vw, 168px);
}
.hero-inner { max-width: 840px; }
.hero .eyebrow { color: #ffe6c6; }
.hero .eyebrow::before { background: #ffce8b; }

.hero-title {
  color: #fff;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  font-size: clamp(2rem, 8vw, 4.4rem);
  text-shadow: 0 4px 34px rgba(8, 6, 4, .6);
  margin: .3em 0 .44em;
}
@media (min-width: 700px) { .hero-title { text-wrap: balance; } }
.hero-title .word { white-space: nowrap; }
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: #ffce8b;
}

.hero-sub {
  color: #f4ede2;
  font-size: clamp(1.02rem, 2.1vw, 1.3rem);
  max-width: 600px;
  margin-bottom: 1.9em;
  text-shadow: 0 2px 18px rgba(8,6,4,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.5em; }

.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(18px, 5vw, 52px);
  padding: 22px 0 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-stats .stat { list-style: none; }
.hero-stats .stat b {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat span { font-size: .8rem; color: #ffe6c6; font-weight: 600; letter-spacing: .01em; }

/* entrance — CSS-only, so it plays with no JS; disabled under reduced-motion */
.hero-content .eyebrow,
.hero-title,
.hero-sub,
.hero-actions,
.hero-stats { animation: heroRise .9s var(--ease) both; }
.hero-content .eyebrow { animation-delay: .05s; }
.hero-title { animation-delay: .18s; }
.hero-sub { animation-delay: .42s; }
.hero-actions { animation-delay: .56s; }
.hero-stats { animation-delay: .7s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   Trust band — moved out of the hero, thin reassurance strip
   ============================================================ */
.trust-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(16px, 2.4vw, 22px);
}
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 30px;
  margin: 0; padding: 0;
}
.trust-strip li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 600;
  color: var(--ink-soft);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ============================================================
   Destination / package cards + guide-line grid
   ============================================================ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.dcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.dcard::before {
  /* guide-line grid decor */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.dcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -28px rgba(228, 87, 46, .5);
  border-color: rgba(228, 87, 46, .4);
}
.dcard-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--surface-2);
  z-index: 1;
}
.dcard-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.dcard:hover .dcard-media img { transform: scale(1.05); }
.dcard-price {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(16,20,24,.86);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  padding: 7px 13px;
  border-radius: 999px;
  backdrop-filter: none;
}
.dcard-price small { font-weight: 500; font-size: .68rem; color: #ffce8b; display: block; }
.dcard-tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: var(--accent-2);
  color: #fff;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px;
}
.dcard-body {
  position: relative;
  z-index: 1;
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dcard-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.mini-balloon {
  width: 34px; height: 42px;
  flex: none;
  color: var(--accent);
  transform-origin: 50% 90%;
  transition: transform .35s var(--ease);
}
.dcard:hover .mini-balloon {
  animation: balloonInflate 1.6s var(--ease) infinite alternate;
}
@keyframes balloonInflate {
  0% { transform: scale(1) rotate(-3deg); }
  50% { transform: scale(1.16) rotate(0deg); }
  100% { transform: scale(1.08) rotate(3deg); }
}
.dcard-head h3 { font-size: 1.24rem; margin: 0; min-width: 0; overflow-wrap: break-word; }
.dcard-head .loc { font-size: .78rem; color: var(--ink-faint); font-weight: 600; }
.dcard-body p { color: var(--ink-soft); font-size: .95rem; margin: 0 0 16px; }
.dcard-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.dcard-meta span {
  font-size: .74rem; font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}
.dcard-foot { margin-top: auto; }
.dcard-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .92rem;
  color: var(--accent-deep);
}
.dcard-link svg { width: 16px; height: 16px; transition: transform .22s var(--ease); }
.dcard:hover .dcard-link svg { transform: translateX(4px); }

/* ============================================================
   Duration filter strip
   ============================================================ */
.filter-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(26px, 4vw, 42px);
}
.filter-btn {
  font-family: inherit;
  font-weight: 700; font-size: .88rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.dcard.is-hidden { display: none; }

/* ============================================================
   Feature / icon list
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -26px rgba(0,0,0,.3); }
.feature-ic {
  grid-row: 1 / 3;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(228,87,46,.1);
  color: var(--accent);
}
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.06rem; margin: 2px 0 4px; min-width: 0; overflow-wrap: break-word; }
.feature p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Pricing packages
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.2vw, 26px);
  align-items: stretch;
}
.pkg {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  min-width: 0;
  position: relative;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -30px rgba(0,0,0,.34); }
.pkg.is-featured { border-color: var(--accent); box-shadow: 0 22px 44px -28px rgba(228,87,46,.5); }
.pkg-badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  padding: 5px 12px; border-radius: 999px;
}
.pkg h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pkg .pkg-sub { font-size: .86rem; color: var(--ink-faint); margin-bottom: 16px; }
.pkg .pkg-price {
  font-size: 2.1rem; font-weight: 800; line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2px;
}
.pkg .pkg-price span { font-size: .9rem; font-weight: 600; color: var(--ink-faint); }
.pkg .pkg-note { font-size: .74rem; color: var(--ink-faint); margin-bottom: 18px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.pkg li { display: flex; gap: 9px; font-size: .9rem; color: var(--ink-soft); align-items: flex-start; }
.pkg li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.pkg li.inc svg { color: var(--accent-2); }
.pkg li.exc { color: var(--ink-faint); }
.pkg li.exc svg { color: var(--ink-faint); }
.pkg .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============================================================
   Timeline (process)
   ============================================================ */
.timeline { position: relative; max-width: 820px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.tstep {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: 34px;
}
.tstep:last-child { padding-bottom: 0; }
.tstep-num {
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800; font-size: 1.15rem;
}
.section--surface .tstep-num { background: var(--surface); }
.tstep-body { min-width: 0; padding-top: 4px; }
.tstep-body h3 { font-size: 1.14rem; margin-bottom: 4px; }
.tstep-time { font-size: .76rem; font-weight: 700; color: var(--accent-2); text-transform: uppercase; letter-spacing: .05em; }
.tstep-body p { color: var(--ink-soft); font-size: .94rem; margin: 6px 0 0; }

/* ============================================================
   Testimonials editorial grid
   ============================================================ */
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(18px, 2.2vw, 26px);
}
.tcard {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 24px;
  min-width: 0;
}
.tcard .stars { color: var(--accent); font-size: .95rem; letter-spacing: 2px; margin-bottom: 12px; }
.tcard blockquote { margin: 0 0 16px; font-size: .98rem; color: var(--ink); line-height: 1.6; }
.tcard .critique { font-size: .85rem; color: var(--ink-faint); font-style: italic; margin-bottom: 16px; }
.tcard cite { margin-top: auto; font-style: normal; font-weight: 700; font-size: .92rem; color: var(--ink); }
.tcard cite span { display: block; font-weight: 500; font-size: .8rem; color: var(--ink-faint); }

/* ============================================================
   FAQ (pure CSS accordion)
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px clamp(18px, 3vw, 26px);
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none; width: 20px; height: 20px;
  transition: transform .34s var(--ease);
  color: var(--accent);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 26px);
  overflow: hidden;
  transition: height .36s var(--ease2), padding-block-end .36s var(--ease2);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item .answer p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   Contact cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 258px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.ccard {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  min-width: 0;
  transition: transform .26s var(--ease2), box-shadow .26s var(--ease2);
}
.ccard:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -26px rgba(0,0,0,.3); }
.ccard-ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(42,157,143,.12);
  color: var(--accent-2);
  margin-bottom: 12px;
}
.ccard-ic svg { width: 24px; height: 24px; }
.ccard h3 { font-size: 1.02rem; margin: 0; }
.ccard a, .ccard .val { font-weight: 700; color: var(--ink); font-size: 1rem; word-break: break-word; overflow-wrap: anywhere; }
.ccard a:hover { color: var(--accent); }
.ccard small { color: var(--ink-faint); font-size: .82rem; }

/* hours */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
}
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .92rem;
}
.hours-row .day { font-weight: 700; }
.hours-row .time { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours-row.is-today { border-color: var(--accent); background: rgba(228,87,46,.06); }
.hours-row.is-today .time { color: var(--accent-deep); font-weight: 700; }

/* ============================================================
   Forms
   ============================================================ */
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lbl { font-weight: 700; font-size: .88rem; }
.field label .opt { font-weight: 500; font-size: .82rem; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.form .btn { margin-top: 6px; }
@media (max-width: 640px) { .form .btn { width: 100%; justify-content: center; } }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 12px; }

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
table th { background: var(--surface); font-weight: 700; }
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-radius: 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.cta-band p { color: #c3ccd7; max-width: 560px; margin-inline: auto; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 24px; }
.cta-band::after {
  content: "";
  position: absolute; left: 50%; top: -60%;
  width: 500px; height: 500px; margin-left: -250px;
  background: radial-gradient(circle, rgba(228,87,46,.4), transparent 62%);
  animation: sunPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* ============================================================
   Prose (legal / about pages)
   ============================================================ */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.16rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose a { font-weight: 600; }
.page-hero {
  background: var(--surface);
  padding-block: clamp(46px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin-top: .3em; }
.page-hero p { color: var(--ink-soft); max-width: 640px; font-size: 1.06rem; }

/* about intro split */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); width: 100%; }
.split-media { position: relative; }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}
.member img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; background: var(--surface-2); }
.member-body { padding: 20px 22px; }
.member-body h3 { font-size: 1.16rem; margin-bottom: 2px; }
.member-role { font-size: .82rem; font-weight: 700; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .04em; }
.member-body p { font-size: .9rem; color: var(--ink-soft); margin: 12px 0 0; }

/* notes / recent */
.notes-list { display: grid; gap: 14px; max-width: 720px; }
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px;
  min-width: 0;
}
.note time { font-size: .78rem; font-weight: 700; color: var(--accent-2); white-space: nowrap; }
.note p { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.note b { color: var(--ink); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #0c1015;
  color: #aeb8c4;
  padding-block: clamp(44px, 6vw, 72px) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: .96rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-grid a { color: #aeb8c4; font-weight: 500; }
.footer-grid a:hover { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .9rem; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; color: #8b95a3; max-width: 300px; }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; font-size: .9rem; margin-bottom: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-contact a, .footer-contact span { word-break: break-word; overflow-wrap: anywhere; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
  font-size: .82rem; color: #79838f;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-bottom a { color: #79838f; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Cookie banner + modal
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.45);
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: inherit; font-weight: 700; font-size: .88rem;
  border-radius: 999px; cursor: pointer;
  padding: 10px 16px;
  border: 1.5px solid var(--line-strong);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cookie-actions .c-accept { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions .c-accept:hover { background: #c8451f; color: #fff; }
.cookie-actions .c-reject { background: #fff; color: var(--ink); border-color: var(--ink); }
.cookie-actions .c-reject:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cookie-actions .c-settings { background: #fff; color: var(--ink-soft); }
.cookie-actions .c-settings:hover { background: var(--surface); color: var(--ink); }

.cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-inner {
  background: #fff;
  border-radius: 16px;
  max-width: 520px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: clamp(22px, 4vw, 34px);
}
.cookie-modal h3 { font-size: 1.3rem; }
.cookie-modal p { font-size: .9rem; color: var(--ink-soft); }
.toggle-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row h4 { font-size: .98rem; margin: 0 0 3px; }
.toggle-row p { font-size: .82rem; margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--line-strong); border-radius: 999px;
  transition: background .2s ease; cursor: pointer;
}
.switch .track::before {
  content: ""; position: absolute;
  top: 3px; left: 3px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform .2s ease;
}
.switch input:checked + .track { background: var(--accent-2); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent); opacity: .55; cursor: not-allowed; }
.cookie-modal-actions { margin-top: 22px; display: flex; justify-content: flex-end; gap: 10px; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-img, .dcard:hover .mini-balloon, .cta-band::after {
    animation: none !important;
  }
  .hero-content .eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Revealed cards must still lift on hover. `.reveal.is-in { transform: none }`
   above has the same specificity as the component `:hover` transforms but wins
   by source order — re-assert the hover transforms here so the lift survives. */
.dcard.reveal:hover { transform: translateY(-6px); }
.feature.reveal:hover { transform: translateY(-4px); }
.pkg.reveal:hover { transform: translateY(-5px); }
.ccard.reveal:hover { transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) {
  .dcard.reveal:hover, .feature.reveal:hover,
  .pkg.reveal:hover, .ccard.reveal:hover { transform: none; }
}

/* misc utility */
.lead { font-size: 1.1rem; color: var(--ink-soft); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  font-size: .8rem; font-weight: 700;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
}
.divider { height: 1px; background: var(--line); border: 0; margin: clamp(40px, 6vw, 72px) 0; }

.thanks-wrap { min-height: clamp(360px, 62vh, 620px); display: grid; place-items: center; text-align: center; padding-block: 80px; }
.thanks-wrap .icon-badge {
  width: 84px; height: 84px; margin: 0 auto 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(42,157,143,.14); color: var(--accent-2);
}
.thanks-wrap .icon-badge svg { width: 42px; height: 42px; }
.thanks-wrap h1 { font-size: clamp(1.8rem, 5vw, 3rem); }

@media (max-width: 480px) {
  .feature { padding: 18px; }
  .feature-ic { width: 40px; height: 40px; }
  .pkg { padding: 24px 20px; }
  .dcard-body { padding: 18px 18px 20px; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* drawer-cta-color-guard v1 */
.drawer a.nav-cta, .drawer .nav-cta, .mobile-menu a.nav-cta, nav[class*=mobile] a.nav-cta {
  color: #fff !important;
}

/* table-scroll ancestor guard v1 */
.table-scroll{max-width:100%;overflow-x:auto}
:where(*:has(> .table-scroll),*:has(> * > .table-scroll),*:has(> * > * > .table-scroll)){min-width:0}
table{max-width:100%}

/* ============================================================
   ELEVATION LAYER — "Dawn Editorial"
   Warm paper palette · Fraunces display · thematic ballooning detail
   ============================================================ */

/* --- section rhythm: frame the cream sections with hairlines --- */
.section--surface { border-block: 1px solid var(--line); }

/* eyebrow numbered rhythm — small editorial index before the kicker */
.eyebrow[data-idx]::after {
  content: attr(data-idx);
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
  letter-spacing: .05em;
}

/* --- Trust band: hairline-separated reassurance strip --- */
.trust-strip { gap: 0; }
.trust-strip li {
  padding: 4px clamp(16px, 3vw, 34px);
  position: relative;
}
.trust-strip li + li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 20px;
  background: var(--line-strong);
}
@media (max-width: 900px) {
  .trust-strip { gap: 10px 24px; }
  .trust-strip li + li::before { display: none; }
}

/* --- Destinations: editorial featured card (asymmetry) --- */
.grid-cards.dcards-feature {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
@media (min-width: 860px) {
  .grid-cards.dcards-feature { grid-template-columns: 1fr 1fr; }
  .dcards-feature > .dcard.is-feature {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
  }
  .dcards-feature > .dcard.is-feature .dcard-media {
    aspect-ratio: auto;
    flex: 0 0 54%;
    min-height: 360px;
  }
  .dcards-feature > .dcard.is-feature .dcard-body {
    flex: 1 1 46%;
    justify-content: center;
    padding: clamp(26px, 3vw, 46px);
  }
  .dcards-feature > .dcard.is-feature .dcard-head h3 { font-size: 1.7rem; }
  .dcards-feature > .dcard.is-feature .dcard-body > p { font-size: 1.05rem; max-width: 46ch; }
  .dcards-feature > .dcard.is-feature .mini-balloon { width: 42px; height: 52px; }
}

/* card titles pick up the display serif for editorial contrast */
.dcard-head h3, .pkg h3, .tstep-body h3, .member-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.dcard:hover { box-shadow: var(--shadow-warm); }
.dcard-price {
  background: rgba(18,16,14,.9);
  letter-spacing: -0.01em;
}
.dcard-price small { color: var(--gold); }
.dcard-tag { box-shadow: 0 6px 16px -8px rgba(42,143,132,.7); }

/* --- Features re-themed: leading index + accent hairline --- */
.feature-grid { counter-reset: feat; }
.feature {
  counter-increment: feat;
  position: relative;
  padding-top: 26px;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature:hover::before { transform: scaleX(1); }
.feature::after {
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--line-strong);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.feature-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(228,87,46,.14), rgba(230,161,92,.12));
  border: 1px solid rgba(228,87,46,.16);
}
.feature-ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; }
.feature:hover { box-shadow: var(--shadow-soft); }

/* --- Timeline: gradient node ring + terminal balloon --- */
.timeline::before { width: 2px; opacity: .9; }
.tstep-num {
  box-shadow: 0 0 0 6px var(--bg), 0 10px 22px -12px rgba(228,87,46,.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.section--surface .tstep-num { box-shadow: 0 0 0 6px var(--surface), 0 10px 22px -12px rgba(228,87,46,.6); }
.tstep:hover .tstep-num { transform: scale(1.08); }
.tstep-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.24rem; }

/* --- Pricing: warm featured lift + tabular price serif --- */
.pkg .pkg-price { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; font-size: 2.4rem; }
.pkg h3 { font-size: 1.34rem; }
.pkg.is-featured {
  box-shadow: var(--shadow-warm);
  background: linear-gradient(180deg, #fff, #fff8f1);
}
@media (min-width: 900px) {
  .pkg.is-featured { transform: translateY(-8px); }
  .pkg.is-featured.reveal.is-in { transform: translateY(-8px); }
  .pkg.is-featured:hover { transform: translateY(-13px); }
}
.pkg li.inc svg { color: var(--accent-2); }

/* --- Testimonials: editorial quote glyph + warm accent bar --- */
.tcard { border-left-width: 3px; position: relative; overflow: hidden; }
.tcard blockquote { position: relative; }
.tcard blockquote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .8;
  color: rgba(228,87,46,.22);
  display: block;
  margin-bottom: -.2em;
}
.tcard .stars { letter-spacing: 3px; }
.tcard:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); transition: transform .26s var(--ease), box-shadow .26s var(--ease); }

/* --- FAQ refinement --- */
.faq-item { border-radius: 14px; transition: border-color .24s var(--ease), box-shadow .24s var(--ease); }
.faq-item[open] { border-color: rgba(228,87,46,.4); box-shadow: var(--shadow-soft); }
.faq-item summary:hover { color: var(--accent); }

/* --- Buttons: warm depth --- */
.btn-primary { box-shadow: 0 14px 30px -14px rgba(228, 87, 46, .85); }

/* --- Page hero (internal pages) harmonized with dawn palette --- */
.page-hero {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(230,161,92,.16), transparent 55%),
    var(--surface);
}
.page-hero h1 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.018em; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }

/* prose + thanks headings adopt the display serif */
.prose h2, .thanks-wrap h1, .cta-band h2 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.016em; }
.cta-band h2 em, .thanks-wrap h1 em { font-style: italic; font-weight: 400; color: var(--gold); }

/* member role + about pills warm tone */
.member:hover { box-shadow: var(--shadow-soft); }
.member { transition: transform .26s var(--ease), box-shadow .26s var(--ease); }
.member:hover { transform: translateY(-4px); }

/* --- Reveal: gentler, with slight scale for premium feel --- */
.reveal { transform: translateY(30px); }
.reveal.is-in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .feature::before { transform: scaleX(1); transition: none; }
  .tstep:hover .tstep-num, .tcard:hover, .member:hover,
  .pkg.is-featured:hover { transform: none !important; transition: none !important; }
}

/* ============================================================
   AWARD LAYER — "Dawn over Cappadocia" (v2)
   Elevates typography, spatial rhythm, atmosphere and thematic
   detail across every page. Purely additive; obeys all guards
   (no horizontal overflow, reduced-motion safe, contrast ≥4.5:1).
   ============================================================ */

:root {
  --sunrise: linear-gradient(90deg, var(--accent) 0%, var(--gold) 55%, var(--accent-2) 100%);
  --shadow-lift: 0 1px 2px rgba(30,22,14,.05), 0 18px 40px -26px rgba(30,22,14,.34);
  --shadow-ember: 0 1px 2px rgba(228,87,46,.08), 0 30px 60px -30px rgba(228,87,46,.44);
}

/* --- Display type: optical sizing + confident tracking --- */
h1, h2, h3, h4,
.hero-title, .section-head h2, .page-hero h1,
.dcard-head h3, .pkg h3, .pkg .pkg-price {
  font-optical-sizing: auto;
}
body { text-rendering: optimizeLegibility; }

/* Section headings — larger, airier, with a hand-drawn accent under italics */
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  text-wrap: balance;
}
.section-head h2 em {
  position: relative;
}
.section-head h2 em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: -0.06em;
  height: .1em;
  background: var(--sunrise);
  border-radius: 999px;
  opacity: .28;
  transform: scaleX(.9);
  transform-origin: left;
}
.section--ink .section-head h2 em::after,
.cta-band h2 em::after { opacity: .5; }

/* Eyebrow: a small drifting balloon dot leads the kicker */
.eyebrow::before { width: 22px; }

/* --- Atmospheric dawn glow anchored to the top of light sections --- */
.section:not(.section--surface):not(.cta-band)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: min(1100px, 92vw);
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 0%, rgba(230,161,92,.13), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* Hairline sunrise seam framing the cream surface sections */
.section--surface { position: relative; }
.section--surface::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sunrise);
  opacity: .5;
}

/* --- Trust band → premium assurance rail --- */
.trust-band {
  background: linear-gradient(180deg, #fff, var(--surface));
}
.trust-strip li { font-size: .88rem; letter-spacing: .005em; }
.trust-strip svg {
  padding: 5px; box-sizing: content-box;
  width: 16px; height: 16px;
  border-radius: 8px;
  background: rgba(228,87,46,.09);
}

/* --- Destination / catalogue cards: retire the generic grid overlay,
       swap in a warm dawn corner-glow + legibility scrim + ember ring --- */
.dcard::before {
  background-image: radial-gradient(120% 90% at 100% 0%, rgba(230,161,92,.10), transparent 55%);
  background-size: auto;
  opacity: 1;
}
.dcard-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,20,.34) 0%, transparent 34%, transparent 66%, rgba(14,17,20,.30) 100%);
  pointer-events: none;
  z-index: 1;
}
.dcard { transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease); }
.dcard:hover { box-shadow: var(--shadow-ember); }
.dcard-price { box-shadow: 0 8px 20px -10px rgba(14,17,20,.6); }

/* Featured destination: editorial number + roomier body */
@media (min-width: 860px) {
  .dcards-feature > .dcard.is-feature .dcard-body { position: relative; }
  .dcards-feature > .dcard.is-feature .dcard-body::before {
    content: "01";
    position: absolute; top: clamp(20px, 2.4vw, 34px); right: clamp(22px, 3vw, 42px);
    font-family: var(--font-display);
    font-size: 3.2rem; font-weight: 400; font-style: italic;
    color: var(--line-strong);
    line-height: 1;
    z-index: -1;
    pointer-events: none;
  }
}

/* --- Feature cards: warmer icon chip, refined index --- */
.feature { padding: 28px 24px 26px; }
.feature::after { font-size: 1.7rem; color: rgba(228,87,46,.16); }
.feature-ic { box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }

/* --- Pricing: airier featured card, cleaner numerals --- */
.pkg { padding: 30px 28px; }
.pkg .pkg-price { font-size: 2.6rem; }
.pkg-badge { box-shadow: 0 10px 22px -10px rgba(228,87,46,.7); }

/* --- Timeline: crown the rail with a balloon glyph + softer nodes --- */
.timeline { padding-top: 8px; }
.timeline::before {
  top: -6px;
  background: linear-gradient(var(--accent) 0%, var(--gold) 45%, var(--accent-2) 100%);
  opacity: .85;
}
.timeline::after {
  content: "";
  position: absolute;
  left: 20px; top: -22px;
  width: 16px; height: 20px;
  background: var(--accent);
  clip-path: path("M8 0C3.6 0 0 3.4 0 7.6 0 11.3 3 13.7 5.5 16h5C13 13.7 16 11.3 16 7.6 16 3.4 12.4 0 8 0Z");
  box-shadow: 0 0 0 6px var(--bg);
}
.section--surface .timeline::after { box-shadow: 0 0 0 6px var(--surface); }
.tstep-body h3 { font-size: 1.28rem; }

/* --- Testimonials: lift the accent bar into the sunrise gradient --- */
.tcard { border-left: 0; }
.tcard::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sunrise);
}
.tcard { padding-left: 27px; }

/* --- CTA band: drifting embers for atmosphere (motion-safe) --- */
.cta-band { padding-block: clamp(64px, 9vw, 120px); }
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 18% 34%, rgba(255,206,139,.8), transparent 60%),
    radial-gradient(2px 2px at 72% 22%, rgba(255,206,139,.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 46% 68%, rgba(255,206,139,.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 86% 60%, rgba(255,206,139,.55), transparent 60%);
  opacity: .7;
  animation: emberDrift 14s linear infinite;
  pointer-events: none;
}
@keyframes emberDrift {
  from { transform: translateY(10px); opacity: .35; }
  50%  { opacity: .8; }
  to   { transform: translateY(-14px); opacity: .35; }
}

/* --- Internal page hero: dawn wash + larger display --- */
.page-hero { position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); text-wrap: balance; }
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sunrise);
  opacity: .5;
}

/* --- Footer: sunrise seam at the top edge --- */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sunrise);
  opacity: .65;
}

/* --- Contact + hours cards: warm hover consistent with system --- */
.ccard:hover { box-shadow: var(--shadow-lift); border-color: rgba(228,87,46,.28); }
.hours-row { transition: border-color .2s ease, background .2s ease; }

/* --- Buttons: a touch more presence --- */
.btn { padding: 13px 26px; }
.btn-ghost { font-weight: 700; }

/* --- Reveal: add a whisper of scale for depth (transform/opacity only) --- */
.reveal { transform: translateY(30px) scale(.992); }
.reveal.is-in { transform: none; }
html.no-js .reveal { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .cta-band::before { animation: none; }
  .section-head h2 em::after { transition: none; }
}

/* --- Small screens: keep everything inside the viewport --- */
@media (max-width: 480px) {
  .section-head h2 { font-size: clamp(1.85rem, 8.5vw, 2.4rem); }
  .tcard { padding-left: 24px; }
  .section:not(.section--surface):not(.cta-band)::before { height: 180px; }
}
