/* =========================================================
   Son Işık — Akşam Balon Uçuşları
   Twilight luxury · sunset → night
   Art direction: Fraunces (optical serif, italic accents) + Outfit
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340..640;1,9..144,340..600&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --bg: #0C0B10;
  --surface: #161520;
  --surface-2: #1E1C2B;
  --ink: #EDE7DA;
  --ink-soft: #B8B0A2;
  --ink-mute: #79738a;
  --accent: #B08A3E;
  --accent-soft: #d0a862;
  --accent-2: #6E5AA8;
  --accent-2-soft: #9083c9;
  --peach: #C67854;
  --rose: #96545f;
  --line: rgba(176, 138, 62, 0.20);
  --line-strong: rgba(176, 138, 62, 0.38);
  --header-h: 78px;
  --maxw: 1080px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease2: cubic-bezier(.4,0,.2,1);
  --serif: "Fraunces", "Cormorant", Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  font-size: 17px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Page-wide sunset → night ambient that shifts on scroll (driven by JS var --scroll) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% calc(112% - var(--scroll, 0) * 46%),
      rgba(216,152,74, calc(0.30 - var(--scroll, 0) * 0.26)) 0%,
      rgba(150,84,95, calc(0.20 - var(--scroll, 0) * 0.16)) 26%,
      rgba(110,90,168, calc(0.14 - var(--scroll, 0) * 0.06)) 48%,
      transparent 72%),
    linear-gradient(180deg,
      #08070c 0%,
      #0C0B10 40%,
      #0d0b16 100%);
  transition: background 120ms linear;
}
/* Drifting star field that emerges as night falls */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: calc(0.15 + var(--scroll, 0) * 0.6);
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(237,231,218,.9) 50%, transparent),
    radial-gradient(1px 1px at 28% 42%, rgba(237,231,218,.7) 50%, transparent),
    radial-gradient(1.4px 1.4px at 62% 26%, rgba(237,231,218,.8) 50%, transparent),
    radial-gradient(1px 1px at 78% 55%, rgba(208,168,98,.8) 50%, transparent),
    radial-gradient(1px 1px at 88% 14%, rgba(237,231,218,.6) 50%, transparent),
    radial-gradient(1.2px 1.2px at 44% 68%, rgba(237,231,218,.7) 50%, transparent),
    radial-gradient(1px 1px at 8% 72%, rgba(144,131,201,.7) 50%, transparent);
  animation: twinkle 9s var(--ease2) infinite alternate;
}
@keyframes twinkle { from { opacity: calc(0.10 + var(--scroll,0)*0.5);} to { opacity: calc(0.24 + var(--scroll,0)*0.6);} }

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

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
}
/* Italic accent inside headings — Fraunces' soft cursive carries the romance */
h1 em, h2 em, h3 em, .section-title em, .display em {
  font-style: italic;
  font-weight: 440;
  color: var(--accent-soft);
  letter-spacing: 0.004em;
}

a { color: var(--accent-soft); text-decoration: none; transition: color 200ms var(--ease2); }
a:hover { color: var(--accent); }

p { margin: 0 0 1.1em; }
::selection { background: rgba(176,138,62,.35); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
}

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.gold-rule {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  margin: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #0c0b10;
  padding: 10px 18px; z-index: 4000; border-radius: 0 0 8px 0;
  font-weight: 500;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  display: flex;
  align-items: center;
  background: rgba(12, 11, 16, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease2), height 240ms var(--ease2),
              box-shadow 240ms var(--ease2), border-color 240ms var(--ease2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header.scrolled {
  height: 64px;
  background: rgba(10, 9, 14, 0.97);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.7);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { width: 30px; height: 30px; flex: none; color: var(--accent); }
.brand small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 260ms var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent-soft); }

.nav-cta {
  border: 1px solid var(--line-strong);
  border-radius: 40px;
  padding: 9px 22px !important;
  color: var(--ink) !important;
  background: transparent;
  transition: background 240ms var(--ease2), color 240ms var(--ease2), border-color 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  color: #0c0b10 !important;
  border-color: var(--accent);
}

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(22,21,32,.6);
  cursor: pointer;
  z-index: 1100;
  flex: none;
}
.nav-toggle span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 1.6px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease), opacity 200ms var(--ease2);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ================= DRAWER ================= */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: #0f0e16;
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 260ms var(--ease);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-soft); padding-left: 8px; }
.drawer .drawer-cta {
  margin-top: 20px;
  border: 1px solid var(--accent);
  border-radius: 40px;
  text-align: center;
  color: #0c0b10 !important;
  background: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 14px 0;
}
.drawer a.drawer-cta:hover { padding-left: 0; color: #0c0b10 !important; background: var(--accent-soft); }
.drawer-meta { margin-top: auto; padding-top: 24px; font-size: 0.82rem; color: var(--ink-mute); }
.drawer-meta a { font-family: "Outfit", sans-serif; font-size: 0.82rem; border: 0; padding: 2px 0; }

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms var(--ease2), visibility 240ms;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 44px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 260ms var(--ease2), color 260ms var(--ease2),
              transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #0c0b10;
  box-shadow: 0 14px 40px -18px rgba(176,138,62,.8);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "→";
  transition: transform 260ms var(--ease);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-soft);
  color: #0c0b10;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px -20px rgba(176,138,62,.9);
}
.btn-primary:hover::after { transform: translateX(4px); }
/* ember flash on active */
.btn-primary:active { box-shadow: 0 0 0 0 rgba(216,152,74,.9), 0 14px 40px -18px rgba(176,138,62,.8); animation: ember 500ms var(--ease2); }
@keyframes ember { 0% { box-shadow: 0 0 0 0 rgba(216,152,74,.85); } 100% { box-shadow: 0 0 0 26px rgba(216,152,74,0); } }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ================= LAYOUT ================= */
main { padding-top: var(--header-h); }
section { position: relative; }
.section { padding-block: clamp(64px, 11vw, 128px); }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 6vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
h2.section-title { font-size: clamp(2rem, 5.4vw, 3.4rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--ink-soft); font-weight: 300; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -3;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
/* moving sunset wash over hero */
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(12,11,16,.62) 0%,
    rgba(12,11,16,.28) 40%,
    rgba(12,11,16,.55) 72%,
    rgba(12,11,16,.96) 100%);
}
.hero-media::after {
  content: "";
  position: absolute; inset: -20% -10%;
  background: radial-gradient(60% 50% at 50% 78%, rgba(216,152,74,.42), transparent 60%);
  mix-blend-mode: screen;
  animation: sunbreathe 12s ease-in-out infinite alternate;
}
@keyframes sunbreathe {
  from { opacity: .55; transform: translateY(10px) scale(1); }
  to   { opacity: .9;  transform: translateY(-6px) scale(1.06); }
}
/* video placeholder chip */
.hero-video-tag {
  position: absolute; top: calc(var(--header-h) + 20px); right: clamp(20px,6vw,72px);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(12,11,16,.5);
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 40px;
  backdrop-filter: blur(6px);
}
.hero-video-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--peach); animation: livepulse 2.4s var(--ease2) infinite; }
@keyframes livepulse { 0%,100%{ opacity:.4; transform:scale(.8);} 50%{ opacity:1; transform:scale(1.2);} }

/* floating balloon silhouettes in hero */
.hero-balloons { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.balloon {
  position: absolute;
  color: rgba(20,17,30,.9);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
  animation: drift var(--dur, 26s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}
.balloon.tinted { color: rgba(150,84,95,.5); }
.balloon.violet { color: rgba(110,90,168,.45); }
@keyframes drift {
  from { transform: translate(0, 0) rotate(-1deg); }
  to   { transform: translate(var(--dx, 30px), var(--dy, -34px)) rotate(1.5deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 clamp(20px,6vw,72px) clamp(56px, 9vw, 100px);
}
.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 600;
  max-width: 15ch;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h1 .glow { color: var(--accent-soft); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 40ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em;
}
.hero-trust svg { width: 17px; height: 17px; color: var(--accent-soft); flex: none; }

/* kinetic h1 words */
.kin { display: inline-block; opacity: 0; transform: translateY(26px); }
.kin.in { opacity: 1; transform: none; transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.no-js .kin { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .kin { opacity: 1 !important; transform: none !important; } }

/* ================= STATS BAND ================= */
.stats-band {
  background: linear-gradient(180deg, var(--surface) 0%, #12111b 100%);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 8px; }
.stat .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--accent-soft);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.06em; margin-top: 8px; text-transform: uppercase; }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.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; } }

/* ================= NARRATIVE / EDITORIAL ================= */
.narrative { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.narrative.flip { grid-template-columns: 0.95fr 1.05fr; }
.narrative-media { position: relative; border-radius: 4px; overflow: hidden; }
.narrative-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; transition: transform 1.4s var(--ease); }
.narrative-media:hover img { transform: scale(1.05); }
.narrative-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(216,152,74,.14));
  pointer-events: none;
}
.narrative-media .cap {
  position: absolute; left: 18px; bottom: 16px;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); background: rgba(12,11,16,.55);
  padding: 6px 12px; border-radius: 40px; border: 1px solid var(--line);
}
.narrative-body h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--ink);
  line-height: 1.28;
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  margin: 8px 0 20px;
}

/* ================= TOUCHES (evening details) ================= */
.touch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.touch-card {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(22,21,32,.4) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform 320ms var(--ease), border-color 320ms, box-shadow 320ms;
  position: relative;
  overflow: hidden;
}
.touch-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 26px 50px -30px rgba(0,0,0,.8); }
.touch-card .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 50% 30%, rgba(176,138,62,.18), transparent);
  margin-bottom: 20px;
  color: var(--accent-soft);
}
.touch-card .ic svg { width: 24px; height: 24px; }
.touch-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.touch-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.touch-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,90,168,.16), transparent 70%);
  opacity: 0; transition: opacity 400ms;
}
.touch-card:hover::after { opacity: 1; }

/* ================= PACKAGES ================= */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 340ms var(--ease), border-color 340ms, box-shadow 340ms;
}
.pkg:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 34px 60px -34px rgba(0,0,0,.85); }
.pkg.featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(176,138,62,.4); }
.pkg-img { position: relative; aspect-ratio: 4/2.7; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.pkg:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--accent); color: #0c0b10;
  padding: 5px 12px; border-radius: 40px; font-weight: 500;
}
.pkg-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg-body h3 { font-size: 1.8rem; margin-bottom: 4px; }
.pkg-tag { font-size: 0.82rem; color: var(--accent-soft); letter-spacing: 0.05em; margin-bottom: 18px; }
.pkg-price {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 600; color: var(--ink);
  line-height: 1; margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.pkg-price small { font-family: "Outfit", sans-serif; font-size: 0.72rem; color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-top: 6px; }
.pkg ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 11px; }
.pkg ul li { position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--ink-soft); }
.pkg ul li svg { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; color: var(--accent-soft); }
.pkg ul li.excl { color: var(--ink-mute); }
.pkg ul li.excl svg { color: var(--rose); }
.pkg .pkg-deliver { font-size: 0.82rem; color: var(--ink-mute); border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto; }
.pkg .btn { margin-top: 20px; }
.pkg-note { text-align: center; margin-top: 26px; font-size: 0.85rem; color: var(--ink-mute); }

/* ================= TIMELINE (process) ================= */
.timeline { position: relative; max-width: 780px; margin-inline: auto; }
.timeline::before {
  content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
}
.tl-step { position: relative; padding: 0 0 40px 66px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step .node {
  position: absolute; left: 8px; top: 2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; color: var(--accent-soft); font-size: 1rem;
  box-shadow: 0 0 0 5px rgba(12,11,16,1), 0 0 24px -4px rgba(176,138,62,.5);
}
.tl-step .when { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-soft); margin-bottom: 6px; }
.tl-step h3 { font-size: 1.5rem; margin-bottom: 6px; }
.tl-step p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ================= GALLERY ================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--line); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,11,16,.7), transparent 55%);
  opacity: .6; transition: opacity 400ms;
}
.gallery figure:hover::after { opacity: .9; }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink);
}
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* ================= TESTIMONIALS ================= */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.tst {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 28px;
  position: relative;
}
.tst .quote-mark { font-family: var(--serif); font-size: 3.4rem; color: var(--accent); line-height: 0.6; height: 26px; display: block; opacity: .6; }
.tst p { font-size: 0.98rem; color: var(--ink); font-style: italic; margin: 12px 0 18px; }
.tst .who { font-size: 0.9rem; color: var(--accent-soft); font-weight: 400; }
.tst .meta { font-size: 0.78rem; color: var(--ink-mute); margin-top: 2px; }
.tst .stars { color: var(--accent); letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 4px; }

/* ================= FAQ ================= */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--ink);
  transition: color 200ms;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-soft); }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: "Outfit", sans-serif; font-weight: 300;
  font-size: 1.6rem; color: var(--accent-soft);
  transition: transform 300ms var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer {
  height: 0;
  padding: 0 clamp(4px, 2vw, 20px) 0 0;
  overflow: hidden;
  transition: height 360ms var(--ease2), padding-block-end 360ms var(--ease2);
}
.faq details[open] .answer { height: auto; padding-block-end: 24px; }
.faq .answer p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 0.8em; }
.faq .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq .answer { transition: none; } }

/* ================= CTA BAND ================= */
.cta-band {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #14101f 0%, #0e0c14 60%, #120d17 100%);
  border-block: 1px solid var(--line);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 70% at 50% 120%, rgba(216,152,74,.30), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 30px; }

/* ================= FORMS ================= */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(26px, 5vw, 44px);
}
form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field > span { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: "Outfit", sans-serif;
  font-weight: 300; font-size: 1rem;
  color: var(--ink);
  background: #0f0e16;
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line-strong);
  border-radius: 6px;
  padding: 13px 16px;
  transition: border-color 240ms, background 240ms;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #131120;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B08A3E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

.field.kvkk { flex-direction: row; align-items: flex-start; gap: 12px; }
.field.kvkk span, .field.kvkk { text-transform: none; }
label.kvkk { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--ink-soft); text-transform: none; letter-spacing: 0; line-height: 1.5; margin-bottom: 22px; }
.field input[type="checkbox"],
label.kvkk 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);
  border-bottom: 0;
}
form button[type="submit"] { width: 100%; margin-top: 6px; }

/* ================= CONTACT ================= */
.contact-hero { min-height: 260px; }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 20px; }
.channel {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  color: var(--ink);
  transition: transform 300ms var(--ease), border-color 300ms, box-shadow 300ms;
}
.channel:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 44px -28px rgba(0,0,0,.8); color: var(--ink); }
.channel .ic {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(176,138,62,.2), transparent);
  border: 1px solid var(--line-strong);
  color: var(--accent-soft);
  margin-bottom: 16px;
  transition: transform 300ms var(--ease), color 300ms;
}
.channel:hover .ic { transform: scale(1.08); color: var(--accent); }
.channel .ic svg { width: 22px; height: 22px; }
.channel h3 { font-size: 1.3rem; margin-bottom: 4px; }
.channel .val { font-size: 1rem; color: var(--accent-soft); word-break: break-word; }
.channel .sub { font-size: 0.8rem; color: var(--ink-mute); margin-top: 4px; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.hours-day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-variant-numeric: tabular-nums;
}
.hours-day .d { font-size: 0.86rem; color: var(--ink-soft); }
.hours-day .t { font-size: 0.86rem; color: var(--ink); }
.hours-day.today { border-color: var(--accent); background: rgba(176,138,62,.08); }
.hours-day.today .d { color: var(--accent-soft); }

/* ================= TABLES ================= */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.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: 13px 18px; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
table th { background: var(--surface-2); color: var(--accent-soft); font-family: "Outfit",sans-serif; font-weight: 400; letter-spacing: 0.04em; }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: 0; }

/* ================= DOC PAGES ================= */
.doc { max-width: 780px; }
.doc h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 44px; }
.doc h3 { font-size: 1.3rem; margin-top: 28px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul, .doc ol { padding-left: 22px; margin-bottom: 1.2em; }
.doc li { margin-bottom: 8px; }
.page-hero { padding-top: clamp(48px, 8vw, 90px); padding-bottom: clamp(30px, 5vw, 50px); }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.page-hero .lead { margin-top: 10px; }
.breadcrumb { font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 18px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--ink-soft); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 28px 26px; transition: transform 320ms var(--ease), border-color 320ms; }
.member:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.member .avatar {
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.7rem; color: #0c0b10;
  background: linear-gradient(140deg, var(--accent-soft), var(--accent-2-soft));
  margin-bottom: 18px;
}
.member h3 { font-size: 1.4rem; margin-bottom: 2px; }
.member .role { font-size: 0.82rem; color: var(--accent-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.member p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* values / notes */
.notes-list { display: grid; gap: 16px; }
.note-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.note-item .date { font-size: 0.76rem; color: var(--accent-soft); letter-spacing: 0.08em; white-space: nowrap; padding-top: 3px; }
.note-item p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); }
.note-item h3 { font-size: 1.15rem; margin-bottom: 3px; }

/* availability strip */
.avail {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 40px; padding: 10px 20px; font-size: 0.86rem; color: var(--ink-soft);
}
.avail .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 0 rgba(198,120,84,.6); animation: availpulse 2.2s var(--ease2) infinite; }
@keyframes availpulse { 0%{ box-shadow: 0 0 0 0 rgba(198,120,84,.55);} 70%{ box-shadow:0 0 0 10px rgba(198,120,84,0);} 100%{box-shadow:0 0 0 0 rgba(198,120,84,0);} }

/* ================= FOOTER ================= */
.site-footer {
  background: #08070c;
  border-top: 1px solid var(--line);
  padding-block: clamp(52px, 8vw, 80px) 34px;
  position: relative;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid .brand { font-size: 1.6rem; }
.footer-about p { font-size: 0.9rem; color: var(--ink-soft); margin: 16px 0; max-width: 32ch; }
.footer-col h4 { font-family: "Outfit", sans-serif; font-weight: 400; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-soft); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent-soft); transform: translateY(-3px); transition: all 240ms var(--ease); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.8rem; color: var(--ink-mute); }
.footer-bottom a { color: var(--ink-mute); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ================= COOKIE ================= */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: #14121d;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 22px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.3rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent-soft); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; min-width: 110px;
  font-family: "Outfit", sans-serif; font-size: 0.86rem; letter-spacing: 0.03em;
  border-radius: 40px; cursor: pointer; padding: 10px 16px;
  transition: background 220ms, color 220ms, border-color 220ms;
}
.cookie-actions .c-accept { background: var(--accent); color: #0c0b10; border: 1px solid var(--accent); font-weight: 500; }
.cookie-actions .c-accept:hover { background: var(--accent-soft); }
/* Reddet carries equal visual weight to Kabul et (consent fairness) */
.cookie-actions .c-reject { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-strong); font-weight: 500; }
.cookie-actions .c-reject:hover { background: #2a2740; border-color: var(--accent-soft); }
/* Ayarlar stays the subtle tertiary choice, full-width under the two primary actions */
.cookie-actions .c-settings { flex: 1 1 100%; background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-actions .c-settings:hover { color: var(--ink); border-color: var(--line-strong); }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }

/* cookie settings modal */
.cookie-modal-backdrop {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.68);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop.is-open { display: flex; }
.cookie-modal {
  background: #14121d; border: 1px solid var(--line-strong); border-radius: 14px;
  max-width: 480px; width: 100%; padding: 30px; max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.7rem; margin-bottom: 8px; }
.cookie-modal > p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 20px; }
.toggle-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.toggle-row h4 { font-family: "Outfit", sans-serif; font-size: 0.98rem; font-weight: 400; color: var(--ink); margin: 0 0 3px; }
.toggle-row p { font-size: 0.8rem; color: var(--ink-mute); margin: 0; }
.switch { position: relative; width: 46px; height: 26px; flex: none; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: 40px; transition: background 220ms; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--ink-mute); transition: transform 220ms var(--ease), background 220ms; }
.switch input:checked + .track { background: rgba(176,138,62,.35); border-color: var(--accent); }
.switch input:checked + .track::after { transform: translateX(20px); background: var(--accent-soft); }
.switch input:disabled + .track { opacity: .6; }
.cookie-modal .btn { margin-top: 22px; width: 100%; }

/* ================= UTIL ================= */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.long { word-break: break-word; overflow-wrap: anywhere; }
.thanks-wrap { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.thanks-wrap .icon-ring { width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; margin: 0 auto 26px; color: var(--accent-soft); box-shadow: 0 0 40px -8px rgba(176,138,62,.5); }
.thanks-wrap h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.sitemap-list { columns: 2; column-gap: 40px; }
.sitemap-list li { break-inside: avoid; margin-bottom: 12px; }
@media (max-width: 560px) { .sitemap-list { columns: 1; } }

/* =========================================================
   ELEVATION LAYER — award-level polish over the base system
   Twilight editorial · richer rhythm, thematic detail, warmth
   ========================================================= */

/* Section titles breathe a touch more; balance long TR headings */
h2.section-title { line-height: 1.04; text-wrap: balance; }
.section-head .lead { margin-top: 4px; }
.section-head.center .lead { margin-inline: auto; }

/* Centered heads get a small horizon mark beneath the title */
.section-head.center { position: relative; }
.section-head.center .section-title { margin-bottom: 20px; }
.section-head.center .section-title::after {
  content: "";
  display: block;
  width: 58px; height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
}

/* Reusable warm hover shadow — accent-tinted, not flat black */
.touch-card:hover, .pkg:hover, .tst:hover, .channel:hover, .member:hover, .note-item:hover {
  box-shadow:
    0 30px 60px -34px rgba(0,0,0,.85),
    0 10px 40px -30px rgba(176,138,62,.55);
}

/* ---- STATS BAND: hairline-separated, tighter editorial numerals ---- */
.stats-grid { position: relative; }
.stat { position: relative; padding: 8px 18px; }
.stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
.stat .num { font-variation-settings: "opsz" 120; letter-spacing: -0.02em; }
.stat .num::after {
  content: "";
  display: block; width: 20px; height: 1px;
  margin: 12px auto 0;
  background: var(--line-strong);
  opacity: 0; transform: scaleX(.4);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.stat.is-in .num::after { opacity: 1; transform: scaleX(1); }

/* ---- TOUCH CARDS: numbered evening index, lifting icon halo ---- */
.touch-card { counter-increment: touch; padding-top: 34px; }
.touch-card > .idx {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.touch-card .ic {
  transition: transform 400ms var(--ease), border-color 400ms, background 400ms, box-shadow 400ms;
}
.touch-card:hover .ic {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 0 26px -6px rgba(176,138,62,.6);
}
.touch-card h3 { letter-spacing: -0.01em; }

/* ---- PACKAGES: featured carries real presence; price kerning ---- */
.pkg-grid { align-items: start; }
.pkg.featured { transform: translateY(-6px); }
.pkg.featured:hover { transform: translateY(-12px); }
@media (max-width: 860px) { .pkg.featured, .pkg.featured:hover { transform: none; } }
.pkg-price { letter-spacing: -0.02em; font-variation-settings: "opsz" 110; }
.pkg-badge {
  box-shadow: 0 6px 18px -8px rgba(176,138,62,.9);
  z-index: 2;
}
.pkg-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12,11,16,.55));
  pointer-events: none;
}
.pkg-tag { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; }

/* ---- TIMELINE: warmer nodes, active-lit step (separate from reveal) ---- */
.tl-step .node { transition: box-shadow 400ms var(--ease), border-color 400ms, color 400ms; }
.tl-step:hover .node,
.tl-step.is-lit .node {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
  box-shadow: 0 0 0 5px rgba(12,11,16,1), 0 0 30px -2px rgba(176,138,62,.8);
}
.tl-step h3 { letter-spacing: -0.01em; }

/* ---- GALLERY: caption chip, warm ring on hover ---- */
.gallery figcaption {
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem;
  color: var(--ink);
  background: rgba(12,11,16,.5);
  padding: 5px 11px; border-radius: 30px;
  border: 1px solid rgba(176,138,62,.28);
  backdrop-filter: blur(4px);
  transform: translateY(4px); opacity: 0;
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery figure { transition: border-color 400ms, box-shadow 400ms; }
.gallery figure:hover { border-color: var(--line-strong); box-shadow: 0 20px 44px -26px rgba(176,138,62,.5); }

/* ---- TESTIMONIALS: accent top-rule, hover lift, star polish ---- */
.tst {
  transition: transform 340ms var(--ease), border-color 340ms, box-shadow 340ms;
  overflow: hidden;
}
.tst::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 70%, transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 500ms var(--ease);
}
.tst:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.tst:hover::before { transform: scaleX(1); }
.tst .who { font-family: var(--serif); font-style: italic; font-size: 1.08rem; }

/* ---- FAQ: hover row wash, refined open state ---- */
.faq details { transition: background 240ms; padding-inline: 8px; border-radius: 8px; }
.faq details:hover { background: rgba(176,138,62,.04); }
.faq details[open] { background: rgba(176,138,62,.05); }

/* ---- EDITORIAL: drop-cap opening (opt-in via .drop) ---- */
.narrative-body p.drop::first-letter {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 3.1em;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--accent-soft);
}

/* Availability strip warmer, CTA band pull-quote rhythm */
.cta-band h2 em { display: inline; }

@media (prefers-reduced-motion: reduce) {
  .stat .num::after, .tst::before, .gallery figcaption { transition: none !important; }
  .gallery figcaption { opacity: 1; transform: none; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .narrative, .narrative.flip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat:nth-child(odd)::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery .wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  form .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .touch-card { padding: 24px 20px; }
  .touch-card .ic { width: 44px; height: 44px; }
  .hero-trust { gap: 8px 18px; }
  .stat .num { font-size: 2.6rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}
@media (max-width: 430px) {
  .brand { font-size: 1.3rem; }
  .brand small { font-size: 0.52rem; }
  .hero h1 { font-size: clamp(2rem, 11vw, 2.6rem); }
  .cookie-actions button { flex: 1 1 100%; }
}

/* ================= REDUCED MOTION ================= */
/* Silence the continuous ambient motion (starfield, breathing sun, drifting
   balloons, pulsing dots) for users who ask for less movement. Hover/state
   transitions stay — only the perpetual loops and parallax are stilled. */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero-media::after,
  .balloon,
  .hero-video-tag .dot,
  .avail .pulse {
    animation: none !important;
  }
  .hero-media::after { opacity: .7; }
  .balloon { transform: none !important; }
}

.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: var(--ink) !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%}
