/* =========================================================================
   MÜREKKEP — Koku Kürasyon Evi
   Editorial-magazine · oxblood + soluk altın · Playfair/Spectral/Space Mono
   ========================================================================= */

:root {
  --bg: #F4F1EA;
  --surface: #FFFFFF;
  --surface-2: #EEE9DE;
  --ink: #1A1712;
  --ink-soft: #4A423A;
  --ink-faint: #7A6F62;
  --accent: #8A1B2E;      /* oxblood */
  --accent-deep: #6E1424;
  --accent-2: #B99248;    /* soluk altın */
  --accent-2-deep: #97743180;
  --line: rgba(26, 23, 18, 0.14);
  --line-strong: rgba(26, 23, 18, 0.28);
  --line-gold: rgba(185, 146, 72, 0.42);

  --header-h: 74px;
  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 64px);

  --serif: "Fraunces", "Playfair Display", "Georgia", "Cambria", serif;
  --body: "Spectral", "Palatino Linotype", "Georgia", serif;
  --mono: "Space Mono", "Courier New", monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);

  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 17px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.012em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.15em; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

/* ---------- utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.reading { max-width: 720px; }

.eyebrow {
  font-family: var(--mono);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.label-mono {
  font-family: var(--mono);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section {
  padding-block: clamp(56px, 9vw, 118px);
  position: relative;
}
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

.section-head { margin-bottom: clamp(28px, 4vw, 46px); }
.section-head h2 {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
}

.hr-thin {
  width: 62px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 1.4rem 0;
}
.hr-thin--center { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 4000;
  font-family: var(--mono);
  font-size: .8rem;
}
.skip-link:focus { left: 12px; top: 12px; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  display: flex;
  align-items: center;
  background: rgba(244, 241, 234, 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);
  backdrop-filter: saturate(1.2);
}
.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.98);
  height: 62px;
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .28);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .5ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand span {
  font-family: var(--mono);
  font-style: normal;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  transform: translateY(-.35em);
}

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }
  .nav-desktop a {
    position: relative;
    font-family: var(--mono);
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 6px 0;
    transition: color .2s var(--ease);
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width .28s var(--ease);
  }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop .nav-cta::after { display: none; }
}

.nav-cta {
  font-family: var(--mono) !important;
  font-size: .72rem !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent);
  padding: 10px 18px !important;
  border-radius: 999px;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--ink) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 1.6px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--accent); background: rgba(138, 27, 46, .06); }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle:active { transform: scale(.96); }
.nav-toggle[aria-expanded="true"] { border-color: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.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(-6.6px) rotate(-45deg); }
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span { transition: none; }
  .nav-toggle:active { transform: none; }
}

/* drawer */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 20px) 30px 34px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer a:hover { color: var(--accent); padding-left: 8px; }
.drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 22px;
  border-bottom: 0;
  text-align: center;
  font-family: var(--mono);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent);
  border-radius: 999px;
  padding: 15px 20px;
}
.drawer .drawer-cta:hover { background: var(--ink); color: #fff !important; padding-left: 20px; }
.drawer-note {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  color: var(--ink-faint);
  line-height: 1.8;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  z-index: 1040;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* =========================================================================
   MAIN / HERO
   ========================================================================= */
main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(88px, 15vh, 156px) clamp(44px, 8vh, 88px);
  overflow: hidden;
  background: #14110D;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  animation: heroKen 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.06); }
  to   { transform: scale(1.15) translateY(-1.6%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,8,6,.58) 0%, rgba(10,8,6,.24) 34%, rgba(10,8,6,.60) 76%, rgba(10,8,6,.88) 100%),
    linear-gradient(90deg, rgba(10,8,6,.74) 0%, rgba(10,8,6,.34) 54%, rgba(10,8,6,.04) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--accent-2); }
.hero .eyebrow::before { background: var(--accent-2); }

.hero h1 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  color: #F6F1E7;
  font-size: clamp(2rem, 8vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: .28em 0 0;
  max-width: 16ch;
  text-shadow: 0 2px 34px rgba(0,0,0,.42);
}
.hero h1 .word { max-width: 100%; }
.hero h1 .word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(28px);
}
.hero h1 .word.accent { font-style: italic; color: var(--accent-2); }
.hero.is-lit h1 .word,
html.no-js .hero h1 .word { opacity: 1; transform: none; }
.hero.is-lit h1 .word {
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: calc(var(--d, 0) * 130ms);
}

.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.4rem);
  color: rgba(246,241,231,.88);
  max-width: 42ch;
  font-style: italic;
  margin-top: clamp(18px, 3vw, 28px);
  text-shadow: 0 1px 18px rgba(0,0,0,.5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: clamp(26px, 4vw, 40px);
}
.hero .btn-primary { background: var(--accent-2); color: #1A1712; }
.hero .btn-primary:hover, .hero .btn-primary:focus-visible {
  background: #d0a75a; color: #1A1712; transform: translateY(-2px);
}
.hero .btn-ghost { color: #F6F1E7; border-color: rgba(246,241,231,.5); }
.hero .btn-ghost:hover, .hero .btn-ghost:focus-visible {
  background: #F6F1E7; color: #1A1712; border-color: #F6F1E7; transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 5vw, 58px);
  margin-top: clamp(32px, 6vw, 58px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(246,241,231,.22);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.85rem, 4.4vw, 2.9rem);
  color: var(--accent-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat span {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246,241,231,.66);
  display: block;
  margin-top: .7em;
  max-width: 20ch;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), border-color .22s var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent); color: var(--surface); transform: translateY(-2px); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: var(--surface); border-color: var(--ink); transform: translateY(-2px); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trust-strip span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* =========================================================================
   MARGIN NOTE LABELS (üst/kalp/dip) + sillage
   ========================================================================= */
.note-rail {
  position: fixed;
  top: 50%;
  left: max(10px, calc((100vw - var(--maxw)) / 2 - 42px));
  transform: translateY(-50%);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 26px;
  pointer-events: none;
}
@media (min-width: 1240px) { .note-rail { display: flex; } }
.note-rail span {
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color .3s var(--ease);
}
.note-rail span::before {
  content: attr(data-no);
  color: var(--accent-2);
  margin-bottom: .8em;
  display: block;
  writing-mode: vertical-rl;
}

/* scent-drop glyph at paragraph ends */
.drop-glyph {
  display: inline-block;
  color: var(--accent-2);
  transform: translateY(2px);
  margin-left: .3em;
  opacity: .8;
}

/* =========================================================================
   CURATOR NOTE / DROP CAP
   ========================================================================= */
.editorial p { font-size: 1.14rem; color: var(--ink-soft); }
.editorial p:first-of-type::first-letter,
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  float: left;
  font-size: 5.4em;
  line-height: .74;
  padding: .06em .12em 0 0;
  color: var(--accent);
}
.editorial .attrib {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2rem;
}
.editorial .attrib b { color: var(--ink); font-weight: 400; }

/* sillage trail underline under prose links / spans */
.sillage {
  position: relative;
  background-image: linear-gradient(90deg, var(--accent-2), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size .6s var(--ease);
  padding-bottom: 1px;
}
.sillage.is-in { background-size: 100% 1.5px; }

/* =========================================================================
   SEÇKI LISTESI — numbered editorial list
   ========================================================================= */
.selection { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.selection li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.selection li:hover { background: var(--surface); }
.selection .no {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent-2);
  letter-spacing: .06em;
  grid-row: 1 / span 2;
  padding-top: .5em;
}
.selection .title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.05;
  min-width: 0;
}
.selection .title small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .8em;
}
.selection .desc {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 52ch;
  margin: 0;
}
.selection .price {
  grid-row: 1 / span 2;
  text-align: right;
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  align-self: center;
}
.selection .price em {
  display: block;
  font-style: normal;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .5em;
}
@media (max-width: 640px) {
  .selection li { grid-template-columns: auto 1fr; }
  .selection .price { grid-row: auto; grid-column: 1 / -1; text-align: left; margin-top: 4px; }
  .selection .desc { grid-column: 1 / -1; }
}

/* =========================================================================
   ANATOMY / QUOTE BLOCK
   ========================================================================= */
.band { background: var(--ink); color: #EFE9DD; }
.band h2, .band h3 { color: #F4EFE4; }
.band .eyebrow { color: var(--accent-2); }
.band .eyebrow::before { background: var(--accent-2); }

.quote-block {
  max-width: 20ch;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
  max-width: none;
  color: #F4EFE4;
}
.quote-block blockquote span { color: var(--accent-2); }
.quote-block cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, .6);
  margin-top: 2rem;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 239, 228, .16);
  border: 1px solid rgba(244, 239, 228, .16);
  margin-top: clamp(40px, 6vw, 70px);
}
.anatomy-grid .cell {
  background: var(--ink);
  padding: clamp(22px, 3vw, 34px);
}
.anatomy-grid .cell .tag {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.anatomy-grid .cell h4 {
  color: #F4EFE4;
  font-size: 1.5rem;
  margin: .6em 0 .4em;
}
.anatomy-grid .cell p { color: rgba(239, 233, 221, .74); font-size: .98rem; margin: 0; }
@media (max-width: 760px) { .anatomy-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   PROCESS TIMELINE
   ========================================================================= */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 38px);
  padding: clamp(24px, 3.4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline li:first-child { border-top: 1px solid var(--line); }
.timeline .step-no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent-2);
  line-height: 1;
  min-width: 1.6ch;
}
.timeline .step-body { min-width: 0; }
.timeline .step-body h4 { font-size: 1.35rem; margin-bottom: .3em; }
.timeline .step-body h4 span {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: .8em;
  vertical-align: middle;
}
.timeline .step-body p { color: var(--ink-soft); margin: 0; max-width: 56ch; }

/* =========================================================================
   CARDS (packages / values)
   ========================================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -34px rgba(138, 27, 46, .5); border-color: var(--line-gold); }
.pkg.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pkg .pkg-flag {
  position: absolute;
  top: -1px; right: 22px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.pkg h3 { font-size: 1.7rem; margin-bottom: .2em; }
.pkg .pkg-price {
  font-family: var(--mono);
  font-style: normal;
  font-size: 1.6rem;
  color: var(--accent);
  margin: .4em 0 .1em;
  font-variant-numeric: tabular-nums;
}
.pkg .pkg-price small { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-top: .6em; }
.pkg ul { list-style: none; margin: 1.4em 0; padding: 0; display: flex; flex-direction: column; gap: .7em; }
.pkg ul li { position: relative; padding-left: 1.7em; font-size: .96rem; color: var(--ink-soft); }
.pkg ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent-2);
  border-radius: 50%;
}
.pkg ul li.no::before { border-color: var(--line-strong); background: transparent; }
.pkg ul li.no { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--line-strong); }
.pkg .pkg-meta {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: .2em 0 1.3em;
}
.pkg .btn { margin-top: auto; justify-content: center; }

.disclaimer {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1.8em;
}

/* icon feature cards */
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(22px, 3vw, 30px);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -32px rgba(26, 23, 18, .5); }
.feature .ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.3rem; margin-bottom: .3em; }
.feature p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* =========================================================================
   TESTIMONIALS (editorial grid, no carousel)
   ========================================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.14rem;
  color: var(--ink);
  line-height: 1.5;
}
.testimonial .who {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.testimonial .who b { display: block; color: var(--accent); font-weight: 400; margin-bottom: .3em; letter-spacing: .12em; }

/* =========================================================================
   FAQ — pure CSS accordion
   ========================================================================= */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px) 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary .plus {
  flex: none;
  width: 24px; height: 24px;
  position: relative;
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .plus::after { transform: translate(-50%, -50%) rotate(0); }
.faq .answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq details[open] .answer {
  height: auto;
  padding-block-end: clamp(20px, 3vw, 28px);
}
.faq .answer p { color: var(--ink-soft); margin: 0 0 .8em; max-width: 62ch; }
.faq .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq .answer { transition: none; } }

/* =========================================================================
   NOTES / NEWS
   ========================================================================= */
.notes-list { list-style: none; margin: 0; padding: 0; }
.notes-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px clamp(14px, 3vw, 30px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.notes-list time {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.notes-list h4 { font-size: 1.2rem; margin: 0; }
.notes-list p { grid-column: 2; color: var(--ink-soft); font-size: .95rem; margin: .4em 0 0; }
@media (max-width: 560px) {
  .notes-list li { grid-template-columns: 1fr; }
  .notes-list p, .notes-list h4 { grid-column: 1; }
}

/* =========================================================================
   CONTACT (index teaser + contact page)
   ========================================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 2.2vw, 22px);
}
.c-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(20px, 2.6vw, 26px);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.c-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -30px rgba(26, 23, 18, .45); border-color: var(--line-gold); }
.c-card .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(138, 27, 46, .08);
  color: var(--accent);
  margin-bottom: 16px;
  transition: transform .26s var(--ease), background .26s var(--ease);
}
.c-card:hover .ico { transform: scale(1.08); background: rgba(138, 27, 46, .14); }
.c-card .ico svg { width: 22px; height: 22px; }
.c-card .k {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: .5em;
}
.c-card .v { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 1.24rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.c-card a.v:hover { color: var(--accent); }
.c-card .sub { font-size: .88rem; color: var(--ink-soft); margin: .6em 0 0; }

/* hours mini-grid */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 10px;
}
.hours-grid .day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-variant-numeric: tabular-nums;
}
.hours-grid .day.is-today { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.hours-grid .day .d {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: .35em;
}
.hours-grid .day.is-today .d { color: var(--accent); }
.hours-grid .day .t { font-family: var(--serif); font-style: italic; font-weight: 700; color: var(--ink); }

/* =========================================================================
   FORM
   ========================================================================= */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lab {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .6em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color .22s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238A1B2E' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }

.field.kvkk { flex-direction: row; align-items: flex-start; gap: 12px; }
.field.kvkk label { margin: 0; text-transform: none; letter-spacing: .01em; font-family: var(--body); font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.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-actions { margin-top: 26px; display: flex; }
.form-wrap button[type="submit"] { width: 100%; justify-content: center; }
@media (min-width: 641px) { .form-wrap button[type="submit"] { width: auto; } }

/* =========================================================================
   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: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .95rem; }
table th { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); background: var(--surface-2); }
table td { color: var(--ink-soft); }
table tr:last-child td { border-bottom: 0; }

/* =========================================================================
   PROSE (legal pages)
   ========================================================================= */
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose .updated {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  display: inline-block;
  margin-bottom: 2em;
}

/* page hero (interior) */
.page-hero { padding-block: clamp(48px, 8vw, 96px) clamp(30px, 4vw, 52px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); max-width: 16ch; }
.page-hero p { color: var(--ink-soft); font-size: 1.1rem; max-width: 48ch; font-style: italic; margin-top: 1rem; }

/* thank-you / 404 */
.centered-msg { text-align: center; min-height: 56vh; display: grid; place-content: center; }
.centered-msg h1 { font-size: clamp(2.6rem, 8vw, 4.5rem); }
.centered-msg .code { font-family: var(--mono); font-size: clamp(4rem, 20vw, 10rem); color: var(--accent); line-height: 1; font-style: normal; }
.centered-msg p { color: var(--ink-soft); font-size: 1.15rem; max-width: 44ch; margin-inline: auto; }
.centered-msg .btn { margin-top: 22px; }

/* sitemap page */
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 30px; }
.sitemap-cols ul { list-style: none; padding: 0; margin: .6em 0 0; }
.sitemap-cols li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-cols a { font-family: var(--serif); font-style: italic; font-size: 1.15rem; transition: color .2s, padding-left .2s; }
.sitemap-cols a:hover { color: var(--accent); padding-left: 6px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: #CFC7B9;
  padding-block: clamp(50px, 7vw, 86px) 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 4vw, 56px);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #F4EFE4; font-size: 1.7rem; }
.site-footer .brand span { color: var(--accent-2); }
.footer-about { color: #A79E8E; max-width: 34ch; margin-top: 1.2em; font-size: .96rem; }
.footer-col h4 {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.2em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .7em; }
.footer-col a, .footer-col address {
  color: #CFC7B9;
  font-style: normal;
  font-size: .94rem;
  transition: color .2s var(--ease);
  word-break: break-word; overflow-wrap: anywhere;
}
.footer-col a:hover { color: #F4EFE4; }
.footer-col address { line-height: 1.9; }
.footer-meta {
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 228, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
  color: #8A8072;
}
.footer-meta a { color: #8A8072; }
.footer-meta a:hover { color: #CFC7B9; }
.footer-est { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* =========================================================================
   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: 10px;
  padding: 22px 22px 20px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s;
  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.2rem; margin-bottom: .3em; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.1em; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cookie-actions .btn { justify-content: center; padding: 12px 16px; font-size: .68rem; min-height: 44px; }
.cookie-actions .btn-settings { grid-column: 1 / -1; background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-actions .btn-settings:hover { background: var(--surface-2); color: var(--ink); }
/* accept + reject carry equal visual weight (KVKK: reject must not read as secondary) */
.cookie-actions [data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions [data-consent="reject"] { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.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(-2px); }

/* cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .55);
}
.cookie-modal.is-open { display: grid; }
.cookie-modal .box {
  background: var(--surface);
  border-radius: 10px;
  max-width: 480px; width: 100%;
  padding: clamp(24px, 4vw, 36px);
  max-height: 88vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.6rem; }
.toggle-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.toggle-row .tr-txt strong { font-family: var(--serif); font-style: italic; font-size: 1.1rem; display: block; }
.toggle-row .tr-txt span { font-size: .86rem; color: var(--ink-soft); }
.switch { position: relative; width: 44px; height: 24px; flex: none; margin-top: 4px; }
.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::before { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { opacity: .5; }
.cookie-modal .modal-actions { margin-top: 22px; }
.cookie-modal .modal-actions .btn { width: 100%; justify-content: center; }

/* =========================================================================
   REVEAL / MOTION
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0); opacity: .5; }
  50% { transform: translateY(-14px) rotate(6deg); opacity: .85; }
}
.ambient-drop {
  position: absolute;
  color: var(--accent-2);
  opacity: .4;
  animation: drift 11s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -2.4s);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero h1 .word { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.02) !important; }
  .ambient-drop { animation: none !important; }
  .sillage { background-size: 100% 1.5px !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* long text safety */
p, li, address, dd { 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;
}

/* =========================================================================
   AWARD-LEVEL POLISH — additive, theme-aligned (mürekkep · ink & niş koku)
   Loaded fonts (Fraunces/Spectral/Space Mono), staggered motion, hairline
   detailing, accent-tinted elevation. Nothing here breaks existing guards.
   ========================================================================= */

/* — faint layered warmth, no images, no overflow (paper + amber ambience) — */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 78% at 84% -10%, rgba(185, 146, 72, .10), transparent 58%),
    radial-gradient(96% 70% at -12% 110%, rgba(138, 27, 46, .06), transparent 60%);
}

/* Fraunces sits a touch tighter at display sizes */
h1 { letter-spacing: -.02em; }
.hero h1 { font-variation-settings: "SOFT" 0, "WONK" 0; }

/* ---------- staggered child reveal (parent-driven, fully guarded) ---------- */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: .02s; }
.stagger.is-in > *:nth-child(2) { transition-delay: .10s; }
.stagger.is-in > *:nth-child(3) { transition-delay: .18s; }
.stagger.is-in > *:nth-child(4) { transition-delay: .26s; }
.stagger.is-in > *:nth-child(5) { transition-delay: .34s; }
.stagger.is-in > *:nth-child(6) { transition-delay: .42s; }
.stagger.is-in > *:nth-child(7) { transition-delay: .50s; }
.stagger.is-in > *:nth-child(n+8) { transition-delay: .58s; }
html.no-js .stagger > * { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- section head: hairline + running detail ---------- */
.section-head h2 { position: relative; }
.section-head h2::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin-top: .5em;
  background: linear-gradient(90deg, var(--accent-2), transparent);
}
.section-head[style*="center"] h2::after,
.section-head h2[style*="center"]::after { margin-inline: auto; }
.band .section-head h2::after { background: linear-gradient(90deg, var(--accent-2), transparent); }

/* ---------- SEÇKI list: premium hover elevation + gold index ---------- */
.selection li {
  position: relative;
  padding-inline: clamp(4px, 1.4vw, 18px);
  border-radius: 3px;
}
.selection li::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: -1px;
  width: 2px;
  background: var(--accent-2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .34s var(--ease);
}
.selection li:hover::after { transform: scaleY(1); }
.selection li:hover .no { color: var(--accent); }
.selection .no { transition: color .28s var(--ease); }
.selection li:hover .price { color: var(--accent); }
.selection .price { transition: color .28s var(--ease); }

/* ---------- packages: gold crown line on hover, richer featured ---------- */
/* NB: no overflow:hidden here — it would clip the featured .pkg-flag badge */
.pkg::before {
  content: "";
  position: absolute;
  top: 0; left: 4px; right: 4px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.pkg:hover::before { transform: scaleX(1); }
.pkg.is-featured::before { transform: scaleX(1); }
.pkg.is-featured {
  box-shadow: 0 0 0 1px var(--accent), 0 34px 60px -40px rgba(138, 27, 46, .6);
}

/* ---------- feature icon cards: gold ring warms on hover ---------- */
.feature { position: relative; }
.feature .ico { transition: border-color .28s var(--ease), color .28s var(--ease), transform .28s var(--ease); }
.feature:hover .ico { border-color: var(--accent); color: var(--accent); transform: rotate(-4deg); }
.feature:hover { box-shadow: 0 26px 48px -34px rgba(138, 27, 46, .42); border-color: var(--line-gold); }

/* ---------- anatomy cells: subtle lift ---------- */
.anatomy-grid .cell { transition: background .3s var(--ease); }
.anatomy-grid .cell:hover { background: #201b15; }

/* ---------- timeline: connecting hairline + numeral ring ---------- */
.timeline { position: relative; }
.timeline .step-no {
  position: relative;
  display: inline-grid;
  place-items: center;
  transition: color .28s var(--ease);
}
.timeline li:hover .step-no { color: var(--accent); }
.timeline .step-body h4 { transition: color .24s var(--ease); }
.timeline li:hover .step-body h4 { color: var(--accent); }

/* ---------- quote block: opening ornament ---------- */
.quote-block { position: relative; }
.quote-block::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: .5;
  color: var(--accent-2);
  opacity: .5;
  margin-bottom: .2em;
}

/* ---------- testimonials: hover elevation ---------- */
.testimonial {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -34px rgba(0, 0, 0, .5);
}

/* ---------- notes list: hover reveal ---------- */
.notes-list li { transition: background .28s var(--ease), padding-left .28s var(--ease); border-radius: 3px; }
.notes-list li:hover { background: var(--surface); padding-left: 10px; }
.notes-list li:hover h4 { color: var(--accent); }
.notes-list h4 { transition: color .24s var(--ease); }

/* ---------- FAQ: warmer hover surface ---------- */
.faq summary { padding-inline: clamp(4px, 1.4vw, 14px); border-radius: 3px; transition: color .2s var(--ease), background .2s var(--ease); }
.faq details[open] > summary { color: var(--accent); }

/* ---------- band sections: gold hairline framing ---------- */
.band { position: relative; }
.band::before, .band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 22%, var(--line-gold) 78%, transparent);
  pointer-events: none;
}
.band::before { top: 0; }
.band::after { bottom: 0; }

/* ---------- editorial visuals: framed, warm ---------- */
.editorial-visual, .section-visual, .anatomy-visual {
  box-shadow: 0 40px 70px -50px rgba(26, 23, 18, .7);
}
.editorial-visual { margin-top: clamp(30px, 5vw, 52px); }

/* ---------- contact cards: gold underline sweep ---------- */
.c-card { position: relative; overflow: hidden; }
.c-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.c-card:hover::after { transform: scaleX(1); }

/* ---------- page-hero (interior): faint gold rule accent ---------- */
.page-hero { position: relative; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }

@media (prefers-reduced-motion: reduce) {
  .selection li::after, .pkg::before, .c-card::after { transition: none !important; }
}

/* two-word poetic hero headline: stack cleanly on phones so the wider Fraunces
   glyphs never clip against the hero's overflow:hidden edge. Placed last so it
   wins over the base `.hero h1 .word { display:inline-block }` rule. */
@media (max-width: 600px) {
  .hero h1 .word { display: block; white-space: normal; }
}
