/* ============================================================
   Karanlık Rota — Astro-keşif gezileri
   Palet: kum + pas + zeytin-yeşili. Heading: Times New Roman.
   ============================================================ */

:root {
  --bg: #EFE7DB;
  --surface: #FBF6EE;
  --surface-2: #F2EADB;
  --ink: #241C16;
  --ink-soft: #5C4F42;
  --ink-faint: #8A7B6A;
  --accent: #B4502A;
  --accent-soft: #C9714E;
  --accent-2: #3C5147;
  --accent-2-soft: #5A7066;
  --line: rgba(36, 28, 22, 0.14);
  --line-strong: rgba(36, 28, 22, 0.30);
  --night: #14121C;
  --night-2: #1F1B26;
  --header-h: 76px;
  --maxw: 1180px;
  --serif: "Times New Roman", Times, Cambria, "Georgia", serif;
  --sans: Verdana, Geneva, "DejaVu Sans", Tahoma, sans-serif;
  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 {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--surface); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); }
.small-print { font-size: 0.82rem; color: var(--ink-faint); line-height: 1.7; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 18px;
  z-index: 4000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  background: rgba(239, 231, 219, 0.92);
  backdrop-filter: saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease,
              border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(239, 231, 219, 0.98);
  box-shadow: 0 8px 24px -16px rgba(36, 28, 22, 0.28);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand .mark { color: var(--accent); flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  transition: background 220ms ease, transform 220ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 10px;
  z-index: 1100;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- Drawer ---------------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 18px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  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;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: 999px;
  border-bottom: none;
  padding: 14px;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { color: var(--surface); background: var(--ink); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------------- Main / Hero ---------------- */
main { padding-top: var(--header-h); }

/* Keep anchored sections clear of the fixed header on native hash jumps. */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.hero {
  position: relative;
  /* clamp() bounds the height so a full-page screenshot (which can expand
     viewport units to the whole document) can't inflate the hero into a
     screen of empty starfield, while staying ~full-viewport on real devices */
  min-height: clamp(540px, calc(100vh - var(--header-h)), 940px);
  min-height: clamp(540px, calc(100svh - var(--header-h)), 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  color: #F3ECE0;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 116%;
  z-index: -3;
  object-fit: cover;
  opacity: 0.85;
  will-change: transform;
}
.hero-grad {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 70% 80%, rgba(180,80,42,0.30), transparent 55%),
    linear-gradient(180deg, rgba(20,18,28,0.55) 0%, rgba(20,18,28,0.35) 45%, rgba(20,18,28,0.82) 100%);
}
.starfield {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.star-layer {
  position: absolute;
  inset: -20% 0;
  background-repeat: repeat;
  will-change: transform;
}
.star-layer.l1 {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 45% 80%, rgba(255,250,240,0.8), transparent),
    radial-gradient(1px 1px at 88% 22%, rgba(255,255,255,0.6), transparent);
  background-size: 480px 480px;
}
.star-layer.l2 {
  background-image:
    radial-gradient(1.5px 1.5px at 15% 50%, rgba(255,255,255,0.85), transparent),
    radial-gradient(2px 2px at 60% 25%, rgba(255,244,228,0.9), transparent),
    radial-gradient(1.5px 1.5px at 82% 70%, rgba(255,255,255,0.7), transparent);
  background-size: 360px 360px;
}
.star-layer.l3 {
  background-image:
    radial-gradient(2px 2px at 35% 40%, rgba(255,255,255,1), transparent),
    radial-gradient(2.5px 2.5px at 78% 85%, rgba(255,238,220,0.95), transparent);
  background-size: 280px 280px;
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-stack { max-width: 780px; }
.hero .eyebrow { color: var(--accent-soft); }
.hero .eyebrow::before { background: var(--accent-soft); }
.hero h1 {
  color: #F6EFE3;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 0.5em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: rgba(243, 236, 224, 0.86);
  max-width: 620px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 1.8rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(243,236,224,0.18);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(243,236,224,0.85);
  letter-spacing: 0.02em;
}
.hero-trust svg { color: var(--accent-soft); flex-shrink: 0; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,236,224,0.7);
}
.scroll-cue svg { animation: cueBob 1.8s ease-in-out infinite; }
@keyframes cueBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease,
              box-shadow 220ms ease, border-color 220ms ease;
}
.btn svg { transition: transform 220ms ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(180,80,42,0.7);
}
.btn-ghost {
  background: transparent;
  color: #F3ECE0;
  border-color: rgba(243,236,224,0.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(243,236,224,0.1);
  color: #F3ECE0;
  border-color: rgba(243,236,224,0.7);
  transform: translateY(-2px);
}
.btn-ink { background: var(--ink); color: var(--surface); }
.btn-ink:hover, .btn-ink:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--ink); color: var(--surface);
  transform: translateY(-2px);
}

/* ---------------- Sections ---------------- */
section { position: relative; }
.section {
  padding-block: clamp(56px, 9vw, 110px);
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.band { background: var(--ink); color: #F0E8DC; }
.band h2, .band h3 { color: #F6EFE3; }
.band .eyebrow { color: var(--accent-soft); }
.band .eyebrow::before { background: var(--accent-soft); }
.band .lede { color: rgba(240,232,220,0.82); }

/* opening story */
.story-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.4;
  font-weight: 600;
  max-width: 900px;
  margin-bottom: 1.2em;
}
.story-body {
  max-width: 700px;
  font-size: 1.05rem;
}
.story-body p + p { margin-top: 1.2em; }

.quote-block {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.36;
  font-weight: 600;
  max-width: 920px;
  margin: clamp(40px,6vw,72px) auto;
  text-align: center;
  position: relative;
  padding: 0 clamp(8px, 4vw, 40px);
}
.quote-block cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.4rem;
}

/* footnote marks */
.fn {
  font-family: var(--serif);
  font-size: 0.7em;
  vertical-align: super;
  color: var(--accent);
  font-style: italic;
  margin-left: 1px;
}
.footnotes {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footnotes p { margin: 0 0 0.5em; }
.footnotes .fn { vertical-align: baseline; margin-right: 6px; }

/* full-bleed photo break — capped so a 1555px source image isn't stretched
   across ultra-wide desktops; centers within the page on >1500px viewports */
.photo-break {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  height: clamp(280px, 52vh, 560px);
  overflow: hidden;
  background: var(--night);
}
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  will-change: transform;
}
.photo-break figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(20px,4vw,40px);
  background: linear-gradient(180deg, transparent, rgba(20,18,28,0.78));
  color: #F3ECE0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
}

/* ---------------- Route days (theme effect) ---------------- */
.route {
  position: relative;
}
.route-track {
  position: absolute;
  left: clamp(18px, 4vw, 36px);
  top: 0; bottom: 0;
  width: 2px;
  z-index: 0;
}
.route-track .rail {
  position: absolute;
  inset: 0;
  background: var(--line-strong);
  border-radius: 2px;
}
.route-track .progress {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  box-shadow: 0 0 14px -2px var(--accent);
  transition: height 120ms linear;
}
.route-days {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vw, 88px);
}
.day {
  position: relative;
  padding-left: clamp(54px, 9vw, 96px);
}
.day-dot {
  position: absolute;
  left: calc(clamp(18px, 4vw, 36px) - 11px);
  top: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: border-color 360ms ease, background 360ms ease, transform 360ms ease;
}
.day-dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background 360ms ease;
}
.day.is-reached .day-dot {
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(180,80,42,0.12);
}
.day.is-reached .day-dot::after { background: var(--accent); }
.day-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
.day h3 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0.4rem 0 1.2rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.day-meta span { display: inline-flex; align-items: center; gap: 7px; }
.day-meta svg { color: var(--accent-2); flex-shrink: 0; }
.day-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.day-figure {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.day-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}
.day-figure:hover img { transform: scale(1.05); }
.day-body p { font-size: 1rem; }
.day-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.day-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.day-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* ---------------- Stay (gecekonak) ---------------- */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.stay-figure {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.stay-figure img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.feature-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  grid-row: span 2;
}
.feature-list li h4 {
  font-size: 1.1rem;
  margin: 2px 0 4px;
}
.feature-list li p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: break-word;
}

/* ---------------- Sky objects (constellation) ---------------- */
.objects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.obj-card {
  background: var(--night-2);
  color: #ECE3D6;
  border: 1px solid rgba(243,236,224,0.12);
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease,
              border-color 280ms ease;
}
.obj-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(201,113,78,0.20), transparent 62%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.obj-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,113,78,0.42);
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.7), 0 0 26px -8px rgba(180,80,42,0.4);
}
.obj-card:hover::before { opacity: 1; }
.obj-icon {
  width: 46px; height: 46px;
  color: var(--accent-soft);
  margin-bottom: 14px;
  position: relative;
  transition: filter 320ms ease, transform 320ms ease;
}
.obj-card:hover .obj-icon {
  filter: drop-shadow(0 0 9px rgba(201,113,78,0.65));
  transform: translateY(-2px);
}
.obj-card h4, .obj-card .obj-tag, .obj-card p { position: relative; }
.obj-card h4 { color: #F6EFE3; font-size: 1.3rem; margin-bottom: 0.3rem; }
.obj-card .obj-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}
.obj-card p { font-size: 0.9rem; color: rgba(236,227,214,0.78); margin: 0.7rem 0 0; }

.constellation-wrap {
  position: relative;
  margin: clamp(36px,6vw,64px) auto 0;
  max-width: 760px;
}
.constellation-wrap svg { width: 100%; height: auto; }
.const-line {
  stroke: var(--accent-soft);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.constellation-wrap.is-in .const-line {
  transition: stroke-dashoffset 1700ms cubic-bezier(.2,.7,.2,1);
  stroke-dashoffset: 0;
}
.const-star {
  fill: #FBF6EE;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.constellation-wrap.is-in .const-star {
  animation: starPop 600ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 140ms + 400ms);
}
@keyframes starPop {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 5px rgba(201,113,78,0.9)); }
}
.const-caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(243,236,224,0.7);
  font-size: 1rem;
  margin-top: 1.2rem;
}

/* ---------------- Stats ---------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}
.stat {
  background: var(--surface);
  padding: 28px 22px;
  text-align: center;
}
.band .stat { background: var(--night-2); }
.stat .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
  display: block;
}
.band .stat .num { color: var(--accent-soft); }
.stat .label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: block;
}
.band .stat .label { color: rgba(240,232,220,0.7); }

/* ---------------- Pricing ---------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms ease, border-color 280ms ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -30px rgba(36,28,22,0.4);
  border-color: var(--line-strong);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.price-card .tier {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.price-card .badge {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--accent);
  color: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.price-card h3 { font-size: 1.6rem; margin: 6px 0 0.2rem; }
.price-amount {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1.1;
  margin: 14px 0 2px;
}
.price-amount small {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.price-card .price-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 16px; }
.price-list {
  list-style: none;
  margin: 14px 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
}
.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: break-word;
}
.price-list li svg {
  position: absolute;
  left: 0; top: 4px;
  color: var(--accent-2);
}
.price-list li.no svg { color: var(--ink-faint); }
.price-list li.no { color: var(--ink-faint); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------------- Reservation / form ---------------- */
.res-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.res-info .avail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(60,81,71,0.12);
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.res-info .avail .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  position: relative;
}
.res-info .avail .pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}
.res-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.res-points li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.res-points svg { color: var(--accent); margin-top: 3px; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 60px -40px rgba(36,28,22,0.4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(180,80,42,0.12);
}
.field.kvkk {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.field.kvkk > span.vis { display: block; margin: 0; font-weight: 400; font-size: 0.84rem; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-card .form-foot { font-size: 0.78rem; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }
.field .opt { font-style: normal; font-weight: 400; color: var(--ink-faint); font-size: 0.78rem; }

/* CTA card (replaces inline forms on non-contact pages) */
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  justify-content: center;
}
.cta-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; color: var(--ink); }
.band .cta-card h3 { color: var(--ink); }
.cta-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.cta-card .btn { width: auto; align-self: flex-start; }
.cta-card .form-foot { text-align: left; margin: 4px 0 0; }
.cta-card .form-foot a { color: var(--accent); text-decoration: underline; }

/* ---------------- FAQ ---------------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px clamp(8px,2vw,16px) 22px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
/* Smooth height animation via the implicit details content wrapper.
   interpolate-size: allow-keywords (set on :root) lets 0 → auto animate;
   browsers without ::details-content simply expand instantly — still opens. */
.faq-item::details-content {
  height: 0;
  overflow: hidden;
  transition: height 320ms cubic-bezier(.2,.7,.2,1),
              content-visibility 320ms cubic-bezier(.2,.7,.2,1) allow-discrete;
}
.faq-item[open]::details-content {
  height: auto;
}
.faq-item > .answer {
  padding: 2px clamp(8px, 2vw, 16px) 24px;
}
.faq-item > .answer p { margin: 0 0 0.8em; color: var(--ink-soft); font-size: 0.96rem; }
.faq-item > .answer :last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item::details-content { transition: none; }
}

/* ---------------- Testimonials ---------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.testi blockquote {
  margin: 0 0 18px;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  font-family: var(--serif);
}
.testi .author {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testi .author strong { display: block; font-size: 0.94rem; color: var(--ink); }
.testi .author span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------------- Process ---------------- */
.process { display: grid; gap: 18px; }
.proc-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.proc-step .pnum {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}
.proc-step h4 { font-size: 1.2rem; margin: 0 0 6px; }
.proc-step p { margin: 0 0 6px; font-size: 0.94rem; color: var(--ink-soft); }
.proc-step .when {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* ---------------- Generic cards / about ---------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.4em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 0.5em; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.2,.7,.2,1),
              border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -28px rgba(36,28,22,0.45),
              0 0 26px -14px rgba(180,80,42,0.35);
  border-color: var(--line-strong);
}
@media (prefers-reduced-motion: reduce) {
  .team-card { transition: none; }
  .team-card:hover { transform: none; }
}
.team-card .photo { aspect-ratio: 4/3; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 22px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 2px; }
.team-card .role {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px; display: block;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------------- Contact ---------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -22px rgba(36,28,22,0.36);
  border-color: var(--line-strong);
}
.contact-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(180,80,42,0.1);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 3px; }
.contact-card a, .contact-card .val {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-card a:hover { color: var(--accent); }
.contact-card .sub { font-size: 0.8rem; color: var(--ink-faint); margin-top: 4px; }

.hours-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  padding: 13px 20px;
  font-size: 0.92rem;
}
.hours-row .day-name { font-weight: 600; }
.hours-row .time { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours-row.today { background: var(--surface-2); }
.hours-row.today .day-name { color: var(--accent); }

/* ---------------- 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: 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: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
table th { font-family: var(--sans); font-weight: 700; background: var(--surface-2); }
table tr:last-child td { border-bottom: none; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--night);
  color: #D8CDBE;
  padding: clamp(48px, 7vw, 80px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}
.footer-brand .brand { color: #F3ECE0; margin-bottom: 14px; }
.footer-brand .brand small { color: rgba(243,236,224,0.6); }
.footer-brand p { font-size: 0.9rem; color: rgba(216,205,190,0.8); max-width: 320px; }
.footer-col h4 {
  color: #F3ECE0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(216,205,190,0.82);
  margin-bottom: 10px;
  word-break: break-word;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(243,236,224,0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(216,205,190,0.6);
}
.footer-bottom a { color: rgba(216,205,190,0.7); }
.footer-bottom a:hover { color: var(--accent-soft); }
.footer-legal { font-size: 0.78rem; color: rgba(216,205,190,0.5); margin-top: 10px; }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  background: var(--ink);
  color: #F3ECE0;
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--accent-soft); }
.page-hero .eyebrow::before { background: var(--accent-soft); }
.page-hero h1 { color: #F6EFE3; font-size: clamp(2.2rem, 6vw, 4rem); }
.page-hero p { color: rgba(243,236,224,0.82); max-width: 640px; font-size: 1.08rem; }
.page-hero .twinkle-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.twinkle-bg .tw {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(243,236,224,0.8);
  animation: twinkle var(--d,4s) ease-in-out infinite;
  animation-delay: calc(var(--i,0) * 0.4s);
}
@keyframes twinkle {
  0%,100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.6); }
}

.crumb {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--accent); }

/* ---------------- Reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  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-photo, .photo-break img, .star-layer { transform: none !important; }
  .const-line { stroke-dashoffset: 0 !important; transition: none !important; }
  .const-star { opacity: 1 !important; animation: none !important; }
  .scroll-cue svg, .res-info .avail .pulse::after, .twinkle-bg .tw { animation: none !important; }
}

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 60px -24px rgba(36,28,22,0.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h2 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.84rem; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.6; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  padding: 11px 16px;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.cookie-actions [data-consent="accept"] { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.cookie-actions [data-consent="accept"]:hover { background: var(--ink); color: var(--surface); transform: translateY(-1px); }
.cookie-actions [data-consent="reject"] { background: var(--surface); color: var(--ink); border-color: var(--ink-soft); }
.cookie-actions [data-consent="reject"]:hover, .cookie-actions [data-consent="reject"]:focus-visible {
  background: var(--ink); color: var(--surface); border-color: var(--ink); transform: translateY(-1px);
}
.cookie-actions [data-consent="settings"] { background: transparent; color: var(--ink-soft); border-color: transparent; flex: 1 1 100%; min-height: 38px; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .day-grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .day-meta { gap: 6px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .stay-grid { gap: 24px; }
  .proc-step { grid-template-columns: 1fr; gap: 10px; }
  .proc-step .pnum { font-size: 1.6rem; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 8px 14px; }
  .feature-icon { width: 38px; height: 38px; }
  .feature-list li { grid-template-columns: 38px 1fr; }
  .contact-card .ic { width: 42px; height: 42px; }
  .quote-block { font-size: 1.5rem; }
  /* Legal tables hold short content — let them reflow to the viewport
     instead of being clipped behind an unsignalled horizontal scroll.
     overflow-x:auto stays as a safety net (with a scroll-shadow hint
     below) for any table that still can't fit whole words. */
  .table-scroll > table { min-width: 0; width: 100%; }
  table th, table td {
    padding: 9px 10px;
    font-size: 0.8rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    vertical-align: top;
  }
  /* Scroll-shadow affordance: a soft fade appears on an edge only when
     there is more table to scroll toward, so a clipped table never reads
     as broken. Cover gradients (local) sit over the shadows at rest. */
  .table-scroll {
    background:
      linear-gradient(to right, var(--surface) 28%, rgba(251,246,238,0)) left center / 36px 100% no-repeat,
      linear-gradient(to left, var(--surface) 28%, rgba(251,246,238,0)) right center / 36px 100% no-repeat,
      radial-gradient(farthest-side at 0 50%, rgba(36,28,22,0.18), transparent) left center / 16px 100% no-repeat,
      radial-gradient(farthest-side at 100% 50%, rgba(36,28,22,0.18), transparent) right center / 16px 100% no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
  .table-scroll > table { background: var(--surface); }
}

@media (max-width: 420px) {
  :root { --header-h: 68px; }
  .btn { padding: 12px 20px; font-size: 0.86rem; }
  .price-amount { font-size: 2.2rem; }
}

.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(--surface) !important;
}
