/* =========================================================
   Şafak Sözü — Balayı & Evlilik Teklifi Balon Uçuşları
   Kapadokya · Göreme
   Palet: bg #FBF3EC · surface #FFFFFF · ink #2B211C
          accent #D9803F · accent-2 #8A5A83
   Heading: Newsreader 600 · Body: Karla 400
   ========================================================= */

:root {
  --bg: #FBF3EC;
  --surface: #FFFFFF;
  --surface-2: #F6EADF;
  --ink: #2B211C;
  --ink-soft: #6A5A50;
  --ink-mute: #9A897C;
  --accent: #D9803F;
  --accent-2: #8A5A83;
  --accent-soft: #F0C9A6;
  --line: rgba(43, 33, 28, 0.12);
  --line-strong: rgba(43, 33, 28, 0.22);
  --gold: #C98A4A;
  --header-h: 74px;
  --maxw: 1080px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  --ff-head: "Newsreader", Georgia, "Times New Roman", serif;
  --ff-body: "Karla", "Segoe UI", system-ui, 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(--ff-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.1rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: color .24s var(--ease2); }
a:hover { color: var(--accent-2); }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-block;
  margin-bottom: .9rem;
}

.section { padding: clamp(56px, 9vw, 116px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 62ch; }

/* focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  z-index: 2000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---- Sky theme layer (night → dawn → day) ---- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 72% 32%, rgba(255,238,206,.55), transparent 60%),
    linear-gradient(180deg, #2a2c4a 0%, #6b4a6f 34%, #d9803f 64%, #f7c7a4 100%);
  transition: none;
  will-change: background;
}
.sky__stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 18%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.2px 1.2px at 28% 9%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.6px 1.6px at 46% 22%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.1px 1.1px at 63% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.5px 1.5px at 81% 20%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.2px 1.2px at 90% 8%, rgba(255,255,255,.7), transparent);
  opacity: var(--star-opacity, 1);
  transition: opacity .3s linear;
}
/* solid page backdrop above sky for readable content */
.page-veil {
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(251,243,236,0) 0%, rgba(251,243,236,.86) 12%, var(--bg) 26%);
  pointer-events: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 243, 236, 0.92);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), height .24s var(--ease),
              box-shadow .24s var(--ease), border-color .24s var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.site-header.is-scrolled {
  height: 62px;
  background: rgba(251, 243, 236, 0.98);
  box-shadow: 0 8px 24px -16px rgba(43, 33, 28, .32);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.24rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { width: 30px; height: 30px; flex: 0 0 auto; color: var(--accent); }
.brand small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 1px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 2px;
}
.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--accent);
  transition: right .28s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a.is-active:not(.nav-cta)::after { right: 0; }
.nav-desktop a.is-active:not(.nav-cta) { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--surface) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .24s var(--ease2), color .24s var(--ease2), transform .24s var(--ease2);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface) !important;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* solid surface so the control stays legible over any header backdrop
     (light cream homepage header as well as image-backed page heroes) */
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 6px 18px -12px rgba(43, 33, 28, .5);
  cursor: pointer;
  padding: 0;
  transition: border-color .24s var(--ease2), background .24s var(--ease2),
              box-shadow .24s var(--ease2);
}
.nav-toggle span {
  width: 21px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .24s var(--ease2);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 10px 22px -12px rgba(217, 128, 63, .55);
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  padding: calc(var(--header-h) + 16px) 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -20px 0 60px -30px rgba(0, 0, 0, .5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 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(--ink);
  color: var(--surface) !important;
  text-align: center;
  border-radius: 999px;
  border: none;
  padding: 15px 22px;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.drawer a.drawer-cta:hover { background: var(--accent); color: var(--surface) !important; }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

main { padding-top: var(--header-h); }

/* =========================================================
   HERO
   ========================================================= */
/* Cinematic full-bleed photo hero */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 940px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #1a1410;
}
.hero__bg { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
  transform: scale(1.08);
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.4%, -2%, 0); }
}
/* dark gradient overlay — keeps text ≥4.5:1 over any frame */
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(20,15,12,.42) 0%, rgba(20,15,12,.12) 30%, rgba(20,15,12,.30) 62%, rgba(20,15,12,.86) 100%),
    linear-gradient(90deg, rgba(20,15,12,.60) 0%, rgba(20,15,12,.18) 52%, transparent 82%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: calc(var(--header-h) + 8vh) clamp(20px, 6vw, 72px) clamp(56px, 11vh, 116px);
  color: #fff;
}
.hero__eyebrow { color: #ffe0c4; }
.hero__title {
  color: #fff;
  max-width: 15ch;
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-size: clamp(2.2rem, 8.4vw, 4.6rem);
  text-shadow: 0 2px 34px rgba(0, 0, 0, .42);
  text-wrap: balance;
}
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 500;
}
.hero .hero-sub {
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.04rem, 2vw, 1.34rem);
  max-width: 44ch;
  margin: 0 0 1.9rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .4);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn-ghost { border-color: rgba(255,255,255,.7); backdrop-filter: blur(2px); }

.hero__stats {
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex; flex-wrap: wrap;
  gap: 18px 40px;
}
.hero__stats .hstat { display: flex; flex-direction: column; gap: 3px; }
.hero__stats dt {
  font-family: var(--ff-head);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600; line-height: 1.1;
  color: #fff;
}
.hero__stats dd {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.82);
}

/* CSS-only fade-up reveal — visible without JS and with reduced motion */
.hero__inner > * {
  animation: heroRise .8s var(--ease) backwards;
}
.hero__eyebrow { animation-delay: .05s; }
.hero__title   { animation-delay: .14s; }
.hero .hero-sub{ animation-delay: .26s; }
.hero__actions { animation-delay: .38s; }
.hero__stats   { animation-delay: .5s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 900px) {
  .hero__inner { padding-bottom: clamp(72px, 13vh, 150px); }
  .hero__title { font-size: clamp(3rem, 6.4vw, 4.8rem); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .24s var(--ease2), color .24s var(--ease2),
              transform .24s var(--ease2), box-shadow .24s var(--ease2), border-color .24s var(--ease2);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -16px rgba(217, 128, 63, .8); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: #c56d2e; color: #fff; transform: translateY(-2px);
  box-shadow: 0 20px 40px -18px rgba(217, 128, 63, .9);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,240,214,.6), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.btn-primary:active::before { opacity: 1; transition: none; }
/* dawn light sweeping across the button on hover */
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -130%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,240,214,.5), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after, .btn-primary:focus-visible::after { left: 140%; }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,.14); color: #fff; border-color: #fff; transform: translateY(-2px);
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover, .btn-dark:focus-visible { background: var(--accent); color: #fff; 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: #fff; border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

/* =========================================================
   SECTION SHELL / DECOR
   ========================================================= */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.horizon {
  display: block;
  width: 100%; max-width: 220px;
  height: auto; margin: 0 0 22px;
  color: var(--accent);
  opacity: .8;
}
.dot-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: clamp(30px, 6vw, 56px) 0;
}
.dot-divider span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .5; }
.dot-divider span:nth-child(2) { background: var(--accent-2); opacity: .8; transform: scale(1.4); }
.dot-divider::before, .dot-divider::after {
  content: ""; height: 1px; width: min(90px, 18vw);
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.section-head { max-width: 60ch; margin-bottom: clamp(30px, 5vw, 52px); }
.section--dark .section-head, .section--dark p, .section--dark h2 { color: #fff; }

/* =========================================================
   STORY 'O SABAH' — editorial split
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.story__media {
  position: relative;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(43, 33, 28, .5);
}
.story__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story__media .tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(251,243,236,.92); color: var(--ink);
  padding: 7px 14px; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
}
.story__body p + p { margin-top: 1rem; }
.pull-quote {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 22px;
  margin: 1.5rem 0;
}
.pull-quote cite { display: block; font-style: normal; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); margin-top: 12px; font-family: var(--ff-body); }
@media (min-width: 860px) {
  .story { grid-template-columns: 1fr 1fr; }
  .story--reverse .story__media { order: 2; }
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin-top: clamp(28px, 5vw, 44px);
}
.stat { text-align: left; }
.stat .num {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .lbl { font-size: .82rem; color: var(--ink-soft); margin-top: 6px; display: block; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================
   PROPOSAL narrative — sticky steps / timeline
   ========================================================= */
.timeline { position: relative; margin-top: clamp(30px, 5vw, 48px); }
.timeline::before {
  content: ""; position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: .5;
}
.tl-item {
  position: relative;
  padding: 0 0 clamp(28px, 4vw, 40px) 56px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .dot {
  position: absolute; left: 8px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent);
  display: grid; place-items: center;
}
.tl-item .dot svg { width: 13px; height: 13px; stroke: var(--accent); }
.tl-item .when { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); }
.tl-item h3 { margin: 4px 0 6px; }
.tl-item p { color: var(--ink-soft); margin: 0; }

/* =========================================================
   SPECIAL TOUCHES — feature cards
   ========================================================= */
.touch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: clamp(30px, 5vw, 48px);
}
@media (min-width: 640px) { .touch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .touch-grid { grid-template-columns: repeat(3, 1fr); } }
.touch {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  min-width: 0;
}
.touch:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -30px rgba(217, 128, 63, .55);
  border-color: var(--accent-soft);
}
.touch .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--accent);
  margin-bottom: 16px;
}
.touch .ic svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; }
.touch h3 { font-size: 1.24rem; }
.touch p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* =========================================================
   PACKAGES
   ========================================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 28px);
  margin-top: clamp(30px, 5vw, 48px);
  align-items: stretch;
}
@media (min-width: 820px) { .pkg-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  min-width: 0;
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -34px rgba(43, 33, 28, .4); border-color: var(--accent-soft); }
.pkg.is-featured { border-color: var(--accent); box-shadow: 0 30px 60px -34px rgba(217,128,63,.5); }
.pkg .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent-2); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.pkg h3 { font-size: 1.5rem; margin-bottom: 4px; }
.pkg .pkg-note { font-size: .86rem; color: var(--ink-soft); margin-bottom: 18px; }
.pkg .price {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pkg .price small { display: block; font-family: var(--ff-body); font-size: .72rem; color: var(--ink-mute); letter-spacing: .06em; margin-top: 6px; text-transform: uppercase; }
.pkg ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 11px; }
.pkg ul li { position: relative; padding-left: 28px; font-size: .95rem; color: var(--ink-soft); }
.pkg ul li svg { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; stroke: var(--accent); }
.pkg ul li.no { color: var(--ink-mute); }
.pkg ul li.no svg { stroke: var(--ink-mute); }
.pkg .btn { width: 100%; justify-content: center; margin-top: auto; }
.pkg .deliver { font-size: .82rem; color: var(--ink-mute); margin: 0 0 16px; }

.price-disc { font-size: .82rem; color: var(--ink-mute); margin-top: 20px; text-align: center; }

/* =========================================================
   GALLERY — asymmetric editorial grid
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(30px, 5vw, 48px);
}
@media (min-width: 620px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 16px;
  }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery figure:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery figure:nth-child(5) { grid-column: span 2; }
}
.gallery figure {
  position: relative;
  margin: 0; border-radius: 14px; overflow: hidden;
  min-height: 200px;
  background: var(--surface-2);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 16px 14px; color: #fff; font-size: .82rem;
  background: linear-gradient(0deg, rgba(0,0,0,.6), transparent);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* =========================================================
   TESTIMONIALS — editorial grid
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.4vw, 26px);
  margin-top: clamp(30px, 5vw, 48px);
}
@media (min-width: 780px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  min-width: 0;
}
.review .stars { color: var(--accent); letter-spacing: 2px; font-size: .9rem; margin-bottom: 12px; }
.review p { font-size: .98rem; color: var(--ink-soft); }
.review .who { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.review .who strong { display: block; color: var(--ink); font-size: .96rem; }
.review .who span { font-size: .8rem; color: var(--ink-mute); }

/* =========================================================
   BAND (contrasting)
   ========================================================= */
.band {
  background:
    radial-gradient(120% 140% at 80% -10%, rgba(217,128,63,.28), transparent 55%),
    linear-gradient(135deg, #2b211c, #3d2b3a);
  color: #fff;
  border-radius: 24px;
  padding: clamp(36px, 6vw, 68px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.85); max-width: 52ch; margin-inline: auto; }
.band .btn-primary { margin-top: 10px; }
.band .band-balloon {
  position: absolute; opacity: .18; color: #ffd9b3;
  right: -30px; bottom: -30px; width: 200px;
  animation: floatUp 18s var(--ease) infinite;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: clamp(30px,5vw,48px) auto 0; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--accent-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 28px);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: 0 0 auto; width: 22px; height: 22px;
  transition: transform .36s var(--ease2); color: var(--accent);
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  color: var(--ink-soft);
  transition: height 360ms var(--ease2), padding-block-end 360ms var(--ease2);
}
.faq details[open] .answer { height: auto; padding-block-end: 22px; }
.faq .answer p { margin: 0 0 .7rem; font-size: .97rem; }
@media (prefers-reduced-motion: reduce) { .faq .answer { transition: none; } }

/* =========================================================
   NOTES (activity block)
   ========================================================= */
.notes { display: grid; gap: 14px; margin-top: clamp(24px,4vw,40px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .notes { grid-template-columns: repeat(3,1fr); } }
.note {
  border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; background: var(--surface); min-width: 0;
}
.note time { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); }
.note h4 { margin: 6px 0 4px; font-family: var(--ff-body); font-weight: 700; font-size: 1rem; }
.note p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(30px, 5vw, 56px);
  min-height: 240px;
}
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 4vw, 40px);
}
.channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  min-width: 0;
}
.channel:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(43,33,28,.4); border-color: var(--accent-soft); }
.channel .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; margin-bottom: 14px; }
.channel .ic svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.channel h3 { font-size: 1.06rem; margin-bottom: 4px; font-family: var(--ff-body); font-weight: 700; }
.channel a, .channel .val { color: var(--ink); font-weight: 600; font-size: 1rem; word-break: break-word; overflow-wrap: anywhere; }
.channel a:hover { color: var(--accent); }
.channel .sub { display: block; font-size: .82rem; color: var(--ink-mute); margin-top: 4px; }

.hours-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  margin-top: clamp(20px, 3vw, 34px);
}
@media (min-width: 560px) { .hours-grid { grid-template-columns: repeat(2, 1fr); } }
.hours-row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--surface);
  font-variant-numeric: tabular-nums;
}
.hours-row.today { border-color: var(--accent); background: var(--surface-2); }
.hours-row .d { font-weight: 700; }
.hours-row .t { color: var(--ink-soft); }

/* forms */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 44px);
}
form .grid2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { form .grid2 { grid-template-columns: 1fr 1fr; } }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,128,63,.16);
}
.field.kvkk, .kvkk {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--ink-soft);
}
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
form button[type="submit"] { width: 100%; justify-content: center; margin-top: 6px; }
@media (min-width: 640px) { form button[type="submit"] { width: auto; } }

/* =========================================================
   TEAM
   ========================================================= */
.team-grid { display: grid; grid-template-columns: 1fr; gap: clamp(18px,3vw,28px); margin-top: clamp(30px,5vw,48px); }
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; min-width: 0; }
.member img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.member .m-body { padding: 20px 22px; }
.member h3 { font-size: 1.24rem; margin-bottom: 2px; }
.member .role { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
.member p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   TABLES
   ========================================================= */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { background: var(--surface-2); font-weight: 700; }
table tr:last-child td { border-bottom: none; }

/* =========================================================
   DOC pages
   ========================================================= */
.doc { max-width: 780px; }
.doc h2 { margin-top: 2.2rem; }
.doc h3 { margin-top: 1.6rem; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: .5rem; }
.page-hero {
  padding: clamp(40px, 7vw, 80px) 0 clamp(20px, 3vw, 36px);
}
.page-hero h1 { max-width: 20ch; }

.sitemap-list { columns: 2; column-gap: 40px; list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 12px; break-inside: avoid; }
@media (max-width: 560px) { .sitemap-list { columns: 1; } }

/* 404 */
.err {
  min-height: 70vh; display: grid; place-items: center; text-align: center;
  padding: 60px 20px;
}
.err .big { font-family: var(--ff-head); font-weight: 600; font-size: clamp(4rem, 18vw, 9rem); color: var(--accent); line-height: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: clamp(46px, 7vw, 76px) 0 30px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 34px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #ffd9b3; }
.site-footer h4 { color: #fff; font-family: var(--ff-body); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #ffd9b3; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer .f-about p { font-size: .92rem; margin: 16px 0 0; max-width: 42ch; }
.footer-meta {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.footer-meta a { color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
}
.footer-social a:hover { border-color: #ffd9b3; background: rgba(255,255,255,.06); }
.footer-social svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* =========================================================
   COOKIE
   ========================================================= */
.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: 16px;
  padding: 20px 22px;
  box-shadow: 0 30px 70px -30px rgba(43,33,28,.6);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 14px; }
.cookie-banner p a { text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { padding: 12px 16px; font-size: .92rem; justify-content: center; min-height: 44px; }
.cookie-actions .full { grid-column: 1 / -1; }
/* "Reddet" must carry the same visual weight as "Kabul et" (no dark pattern) */
.cookie-actions [data-consent="reject"] {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.cookie-actions [data-consent="reject"]:hover,
.cookie-actions [data-consent="reject"]:focus-visible {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; place-items: center; padding: 20px;
  background: rgba(0,0,0,.5);
}
.cookie-modal.is-open { display: grid; }
.cookie-modal .box {
  background: var(--surface); border-radius: 18px;
  max-width: 480px; width: 100%; padding: clamp(24px,4vw,34px);
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.4rem; }
.toggle-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.toggle-row .t-txt strong { display: block; font-size: .98rem; }
.toggle-row .t-txt span { font-size: .84rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; margin-top: 2px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .2s; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s var(--ease); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-2); opacity: .6; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .balloon, .hero__bg img, .band-balloon { animation: none !important; }
  .hero__inner > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .btn-primary::after { display: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
.only-desktop { display: none; }
@media (min-width: 1024px) { .only-desktop { display: inline-flex; } }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .touch, .pkg, .review, .channel { padding: 20px; }
  .touch .ic { width: 44px; height: 44px; }
  .hero { min-height: clamp(520px, 88vh, 760px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.long { word-break: break-word; overflow-wrap: anywhere; }

.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;
}

/* 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%}

/* =========================================================
   PREMIUM LAYER v2 — award-level polish
   Art direction: Kapadokya dawn — terracotta + mauve on warm
   cream, editorial Newsreader (now truly loaded) + Karla.
   All decoration is transform/opacity/filter only and is
   disabled under prefers-reduced-motion further below.
   ========================================================= */

/* --- Type rendering now that real webfonts load --- */
body { font-feature-settings: "kern" 1, "liga" 1; }
h1, h2, h3, h4 {
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
h1, h2 { letter-spacing: -0.02em; }

::selection { background: var(--accent); color: #fff; }
::-moz-selection { background: var(--accent); color: #fff; }

/* Italic serif accents — the editorial "voice" of the headings */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0;
}
.hero__title em { color: var(--accent-soft); } /* keep hero on dark */
.band h2 em { color: #ffd9b3; }

/* --- Eyebrow: a "first light" hairline tick before the label --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .72em;
}
.eyebrow::before {
  content: "";
  width: clamp(20px, 5vw, 34px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: .9;
}

/* --- Section heads: bigger, balanced, more air --- */
.section-head { max-width: 64ch; }
.section-head h2 {
  font-size: clamp(1.95rem, 4.7vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.section-head .lead { margin-top: .35rem; }

/* --- Hairline divider utility (uses existing dot-divider too) --- */
.dot-divider span:nth-child(2) { box-shadow: 0 0 0 4px rgba(217,128,63,.12); }

/* =========================================================
   SPECIAL TOUCHES — richer icon tiles + reveal-on-hover rule
   ========================================================= */
.touch { position: relative; overflow: hidden; }
.touch::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.touch:hover::before { transform: scaleX(1); }
.touch .ic {
  background: linear-gradient(155deg, var(--surface-2), #fff);
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 20px -14px rgba(217,128,63,.55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.touch:hover .ic {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: inset 0 0 0 1px var(--accent-soft), 0 16px 28px -14px rgba(217,128,63,.7);
}
.touch h3 { letter-spacing: -0.01em; }

/* =========================================================
   PACKAGES — sharpen the featured tier
   ========================================================= */
/* NB: no overflow:hidden here — the featured badge sits above the card top */
.pkg::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.pkg.is-featured {
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(217,128,63,.10), transparent 60%),
    var(--surface);
  box-shadow: 0 34px 70px -38px rgba(217,128,63,.55);
}
.pkg.is-featured .badge {
  box-shadow: 0 10px 22px -12px rgba(138,90,131,.8);
}
.pkg .price { letter-spacing: -0.02em; }

/* =========================================================
   GALLERY — subtle framing + always-legible caption base
   ========================================================= */
.gallery figure {
  box-shadow: inset 0 0 0 1px rgba(43,33,28,.08);
}
.gallery figure::after {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 -60px 50px -40px rgba(20,15,12,.55);
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption { font-weight: 600; letter-spacing: .01em; }

/* =========================================================
   REVIEWS — decorative quote glyph + hover lift
   ========================================================= */
.review {
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.review::before {
  content: "\201C";
  position: absolute; top: 6px; right: 20px;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 4rem; line-height: 1;
  color: var(--accent);
  opacity: .14;
  pointer-events: none;
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 46px -32px rgba(217,128,63,.5);
  border-color: var(--accent-soft);
}
.review p { position: relative; }

/* =========================================================
   NOTES — hover lift + accent edge
   ========================================================= */
.note {
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.note::before {
  content: "";
  position: absolute; left: 0; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.note:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -30px rgba(43,33,28,.4);
  border-color: var(--accent-soft);
}
.note:hover::before { transform: scaleY(1); }
.note h4 { padding-left: 0; }

/* =========================================================
   TEAM — hover lift + image zoom
   ========================================================= */
.member {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.member img { transition: transform .6s var(--ease); }
.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 54px -34px rgba(43,33,28,.45);
  border-color: var(--accent-soft);
}
.member:hover img { transform: scale(1.045); }

/* =========================================================
   CHANNELS (contact) — richer icon tile parity with touches
   ========================================================= */
.channel {
  position: relative; overflow: hidden;
}
.channel::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.channel:hover::before { transform: scaleX(1); }
.channel .ic {
  background: linear-gradient(155deg, var(--surface-2), #fff);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .35s var(--ease);
}
.channel:hover .ic { box-shadow: inset 0 0 0 1px var(--accent-soft); }

/* =========================================================
   TIMELINE — soft glow on the milestone dots
   ========================================================= */
.tl-item .dot {
  box-shadow: 0 0 0 4px rgba(217,128,63,.10), 0 6px 14px -8px rgba(217,128,63,.5);
}

/* =========================================================
   PULL QUOTE — oversized opening mark
   ========================================================= */
.pull-quote { position: relative; }
.pull-quote::before {
  content: "\201C";
  position: absolute; left: -4px; top: -.5em;
  font-size: 3.2rem; line-height: 1;
  color: var(--accent);
  opacity: .22;
  pointer-events: none;
}

/* =========================================================
   BAND — top hairline seam for a finished edge
   ========================================================= */
.band::before {
  content: "";
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(180px, 40%); height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* =========================================================
   FORM — a touch more polish on labels + submit sweep parity
   ========================================================= */
.form-wrap { box-shadow: 0 40px 80px -60px rgba(43,33,28,.4); }
.field > span { letter-spacing: .01em; }

/* =========================================================
   STORY MEDIA TAG — warmer finish
   ========================================================= */
.story__media .tag { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); box-shadow: 0 8px 20px -12px rgba(43,33,28,.5); }

/* =========================================================
   will-change hints (point, not blanket)
   ========================================================= */
.touch, .pkg, .review, .note, .member, .channel { will-change: auto; }

/* =========================================================
   Reduced-motion: neutralize every v2 decorative transform
   (content stays fully visible and static)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .touch::before, .channel::before, .note::before { transform: none !important; transition: none !important; }
  .touch:hover .ic, .member:hover img, .review:hover, .note:hover, .member:hover,
  .touch:hover, .pkg:hover, .channel:hover, .gallery figure:hover img {
    transform: none !important;
  }
  .gallery figure::after { opacity: 1; }
}

/* =========================================================
   Narrow-screen clamp safety: keep the eyebrow tick from
   ever forcing overflow, and headings from clipping
   ========================================================= */
@media (max-width: 400px) {
  .eyebrow { gap: .55em; }
  .eyebrow::before { width: 18px; }
  .section-head h2 { letter-spacing: -0.015em; }
}
