/* =========================================================
   Solmaz Lavanta Atölyesi — kuru buket & çelenk stüdyosu
   Art direction: apothecary-editorial · dried lavender
   Palette: linen paper #EDE9E3 / surface #F6F3EE / ink aubergine
            accent lavender #7A6D8F / dusty rose #C08497 / kraft · honey · sage
   Display: Fraunces (soft serif, italic accents) · Body: humanist sans
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..600&display=swap");

:root {
  --bg: #EDE9E3;
  --surface: #F6F3EE;
  --surface-2: #EAE3DA;
  --ink: #322B33;
  --ink-soft: #6A625A;
  --accent: #7A6D8F;
  --accent-deep: #5E5273;
  --accent-2: #C08497;
  --accent-2-deep: #A76277;
  --line: rgba(59, 55, 51, 0.14);
  --line-strong: rgba(59, 55, 51, 0.28);
  --kraft: #C8B393;
  --honey: #C9A24B;
  --sage: #8C9A79;
  --shadow: 0 24px 60px -34px rgba(59, 55, 51, 0.5);
  --shadow-soft: 0 14px 34px -22px rgba(59, 55, 51, 0.42);
  --shadow-accent: 0 30px 60px -32px rgba(94, 82, 115, 0.55);
  --header-h: 76px;
  --container: 1320px;
  --pad: clamp(16px, 4vw, 52px);
  --r: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease2: cubic-bezier(.4, 0, .2, 1);
  --head: "Fraunces", "Candara", "Optima", Georgia, "Times New Roman", serif;
  --body: "Segoe UI", "Helvetica Neue", 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(--body);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 40, "SOFT" 0, "WONK" 0;
}
h1 { font-variation-settings: "opsz" 100, "SOFT" 0, "WONK" 0; }
em, i, .italic { font-style: italic; }
h1 em, h2 em, h3 em, h4 em, .head-em {
  font-style: italic;
  font-weight: 460;
  color: var(--accent-deep);
}
p { margin: 0 0 1em; }
a { color: var(--accent-deep); text-decoration: none; transition: color .24s var(--ease2); }
a:hover { color: var(--accent-2-deep); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }

.long { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
main { padding-top: var(--header-h); }
section { position: relative; }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(44px, 6vw, 88px) 0; }
.band { background: var(--surface); }
.band-ink { background: var(--ink); color: var(--surface); }
.band-ink h1, .band-ink h2, .band-ink h3 { color: var(--surface); }
.band-ink h1 em, .band-ink h2 em, .band-ink h3 em,
.cta-band h1 em, .cta-band h2 em, .cta-band h3 em { color: #E3C6D3; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent-2-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent-2);
}
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  letter-spacing: .01em;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s var(--ease2), color .24s var(--ease2), box-shadow .24s var(--ease2);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-soft);
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .24s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--ink); color: var(--surface);
  padding: .7em 1.1em; border-radius: 8px;
  transition: top .2s var(--ease2);
}
.skip-link:focus { top: 12px; color: var(--surface); }

/* ---------- 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(237, 233, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease2), box-shadow .24s var(--ease2), height .24s var(--ease2), border-color .24s var(--ease2);
}
.site-header.is-scrolled {
  background: rgba(237, 233, 227, 0.98);
  box-shadow: 0 8px 24px -16px rgba(59, 55, 51, 0.25);
  border-bottom-color: var(--line);
}
.header-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 34px; height: 34px; flex: none; color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--head); font-weight: 600; font-size: 1.16rem; letter-spacing: -.01em; }
.brand-sub { font-size: .62rem; text-transform: uppercase; letter-spacing: .24em; color: var(--accent-2-deep); margin-top: 3px; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
  .nav-desktop a {
    position: relative; color: var(--ink); font-weight: 500; font-size: .96rem;
    padding: .3em 0;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
    background: var(--accent-2); border-radius: 2px;
    transition: right .28s var(--ease);
  }
  .nav-desktop a:hover::after, .nav-desktop a.is-active::after { right: 0; }
  .nav-desktop a:hover { color: var(--accent-deep); }
  .nav-desktop a.is-active { color: var(--accent-deep); }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta { color: var(--surface); }
  .nav-desktop .nav-cta:hover { color: #fff; }
}

.nav-cta {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--ink); color: var(--surface);
  padding: .62em 1.15em; border-radius: 999px; font-weight: 600; font-size: .92rem;
  transition: background .24s var(--ease2), transform .24s var(--ease), color .24s var(--ease2);
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--accent); color: #fff; 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-strong); border-radius: 10px;
  cursor: pointer; z-index: 1100; position: relative;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease2);
}
.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-toggle { display: none; } }

/* drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(30, 27, 24, 0.55);
  opacity: 0; visibility: hidden; z-index: 1040;
  transition: opacity .24s var(--ease2), visibility .24s;
}
.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 var(--ease);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 12px) 26px 30px;
  box-shadow: -20px 0 50px -30px rgba(0,0,0,.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  display: block; padding: .85em 0; font-family: var(--head); font-size: 1.28rem; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 22px; text-align: center; background: var(--ink); color: var(--surface);
  border-radius: 999px; border-bottom: 0; font-family: var(--body); font-size: 1rem; font-weight: 600;
  padding: .9em 1.2em;
}
.drawer a.drawer-cta:hover { background: var(--accent); color: #fff; }
.drawer-meta { margin-top: auto; padding-top: 24px; color: var(--ink-soft); font-size: .88rem; }
.drawer-meta a { display: inline; padding: 0; border: 0; font-family: var(--body); font-size: .88rem; font-weight: 500; }

/* ---------- hero (cinematic full-bleed photo) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin-top: calc(-1 * var(--header-h));
}
.hero-bg { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.06);
  animation: kenburns 20s var(--ease2) infinite alternate;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(24,20,28,.86) 0%, rgba(24,20,28,.62) 42%, rgba(24,20,28,.18) 100%),
    linear-gradient(0deg, rgba(24,20,28,.72) 0%, rgba(24,20,28,.06) 46%, rgba(24,20,28,.28) 100%);
}
@media (max-width: 900px) {
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(24,20,28,.9) 4%, rgba(24,20,28,.55) 48%, rgba(24,20,28,.5) 100%);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(40px, 8vh, 96px));
  padding-bottom: clamp(46px, 8vh, 92px);
}
.hero-copy { max-width: 40ch; }
.hero-eyebrow { color: #E8DCE9; }
.hero-eyebrow::before { background: var(--accent-2); }
.hero-copy h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.03;
  margin-bottom: .34em;
  color: #FBF7F2;
  letter-spacing: -0.018em;
  text-shadow: 0 2px 30px rgba(24,20,28,.45);
}
.hero-copy h1 .word { display: inline-block; white-space: nowrap; }
.hero-accent { color: #DAC4E6; font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  color: rgba(251,247,242,.9);
  max-width: 46ch; margin-bottom: 1.7em;
  text-shadow: 0 1px 16px rgba(24,20,28,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(26px, 4vw, 40px); }
.hero--cinema .btn-primary { background: var(--surface); color: var(--ink); }
.hero--cinema .btn-primary:hover, .hero--cinema .btn-primary:focus-visible {
  background: var(--accent-2); color: #fff;
}
.hero-ghost { color: #FBF7F2; border-color: rgba(251,247,242,.5); }
.hero-ghost:hover, .hero-ghost:focus-visible {
  background: rgba(251,247,242,.12); color: #fff; border-color: #FBF7F2;
}

/* thin stat strip over photo */
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(18px, 4vw, 44px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(251,247,242,.22);
  max-width: 44ch;
}
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat-num {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1; color: #FBF7F2;
}
.hstat-lbl {
  font-size: .74rem; letter-spacing: .04em;
  color: rgba(251,247,242,.72); text-transform: lowercase;
}

/* scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 2; width: 24px; height: 40px;
  border: 1.5px solid rgba(251,247,242,.5); border-radius: 14px;
  pointer-events: none;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px; margin-left: -2px;
  width: 4px; height: 7px; border-radius: 2px; background: rgba(251,247,242,.8);
  animation: scrollcue 1.8s var(--ease2) infinite;
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal { opacity: 1; transform: none; }

/* ---------- catalog masonry ---------- */
.catalog-grid {
  columns: 3 300px;
  column-gap: 26px;
}
@media (max-width: 640px) { .catalog-grid { columns: 1; } }
.cat-card {
  break-inside: avoid;
  margin-bottom: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease2);
  position: relative;
}
.cat-card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: var(--shadow); }
.cat-media { position: relative; overflow: hidden; }
.cat-media img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(246,243,238,.94); color: var(--accent-deep);
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  padding: .32em .8em; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4em;
}
.cat-badge svg { width: 14px; height: 14px; }
/* signature: animated jute-knot tie on hover */
.knot-svg { position: absolute; right: 14px; top: 14px; width: 42px; height: 42px; z-index: 3; color: var(--kraft); opacity: .85; }
.knot-svg .knot-loop { stroke-dasharray: 120; stroke-dashoffset: 120; transition: stroke-dashoffset .9s var(--ease); }
.cat-card:hover .knot-svg .knot-loop { stroke-dashoffset: 0; }
.cat-body { padding: 20px 22px 24px; }
.cat-body h3 { font-size: 1.24rem; margin-bottom: .3em; }
.cat-body p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1em; }
.cat-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.cat-price {
  font-family: "Consolas", "Courier New", monospace; font-weight: 700;
  font-size: 1.3rem; color: var(--ink);
}
.cat-price small { font-size: .7rem; color: var(--ink-soft); font-weight: 400; letter-spacing: .04em; display: block; }
.cat-link {
  font-weight: 600; font-size: .9rem; color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: .35em;
}
.cat-link .arrow { transition: transform .24s var(--ease); }
.cat-link:hover .arrow { transform: translateX(4px); }

/* ---------- size strip (S/M/L) ---------- */
.size-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.size-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease2), box-shadow .35s var(--ease2);
}
.size-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.size-badge {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent-deep);
  font-family: var(--head); font-weight: 600; font-size: 1.5rem;
  border: 1px solid var(--line);
}
.size-card h3 { font-size: 1.3rem; }
.size-dim { font-family: "Consolas", monospace; color: var(--ink-soft); font-size: .9rem; letter-spacing: .03em; }
.size-card p { color: var(--ink-soft); font-size: .94rem; margin: .6em 0 1em; }
/* comparison ruler */
.ruler {
  height: 8px; border-radius: 999px; margin: 18px auto 6px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  position: relative;
}
.ruler::after {
  content: ""; position: absolute; top: -4px; right: 0; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent-deep); border: 3px solid var(--surface);
}
.ruler-s { width: 40%; }
.ruler-m { width: 66%; }
.ruler-l { width: 100%; }
.size-price { font-family: "Consolas", monospace; font-weight: 700; font-size: 1.15rem; color: var(--accent-deep); }

/* ---------- editorial split (event) ---------- */
.split { display: grid; gap: clamp(26px, 5vw, 60px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev .split-media { order: 2; } }
.split-media { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.use-list { display: grid; gap: 16px; margin-top: 26px; }
.use-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  transition: transform .3s var(--ease), border-color .3s var(--ease2);
}
.use-item:hover { transform: translateX(4px); border-color: var(--accent); }
.use-item .ico {
  grid-row: 1 / span 2; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface-2); display: grid; place-items: center; color: var(--accent-deep); flex: none;
}
.use-item .ico svg { width: 24px; height: 24px; }
.use-item h4 { margin: 0 0 .2em; font-size: 1.08rem; }
.use-item p { margin: 0; color: var(--ink-soft); font-size: .92rem; min-width: 0; }

/* ---------- care notes ---------- */
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.care-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease2);
}
.care-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.care-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; color: var(--accent-deep); margin-bottom: 16px; }
.care-ico svg { width: 26px; height: 26px; }
.care-card h3 { font-size: 1.16rem; }
.care-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 22px; }
.stat { text-align: center; }
.stat .num { font-family: var(--head); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--accent-deep); line-height: 1; }
.stat .lbl { color: var(--ink-soft); font-size: .92rem; margin-top: .5em; }
.band-ink .stat .num { color: var(--accent-2); }
.band-ink .stat .lbl { color: rgba(246,243,238,.75); }

/* ---------- manifesto quote ---------- */
.manifesto { text-align: center; max-width: 24ch; margin: 0 auto; }
.manifesto blockquote {
  font-family: var(--head); font-weight: 600; font-style: italic;
  font-size: clamp(1.6rem, 4.4vw, 3rem); line-height: 1.18; margin: 0; max-width: 22ch; margin-inline: auto;
}
.manifesto cite { display: block; margin-top: 1.2em; font-style: normal; font-size: .92rem; letter-spacing: .04em; color: var(--ink-soft); }
.band-ink .manifesto cite { color: rgba(246,243,238,.7); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; display: flex; flex-direction: column;
}
.testi .stars { color: var(--honey); letter-spacing: .12em; font-size: .95rem; margin-bottom: 12px; }
.testi p { font-size: 1rem; color: var(--ink); }
.testi .who { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--ink-soft); }
.testi .who strong { color: var(--ink); display: block; font-family: var(--head); font-size: 1rem; }

/* ---------- process timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 780px; }
.tl-step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 0 0 34px; position: relative;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  width: 52px; height: 52px; border-radius: 50%; flex: none; z-index: 2;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: var(--head); font-weight: 600; font-size: 1.25rem;
}
.tl-step::before {
  content: ""; position: absolute; left: 26px; top: 52px; bottom: 0; width: 2px;
  background: var(--line-strong);
}
.tl-step:last-child::before { display: none; }
.tl-body h4 { font-size: 1.16rem; margin-bottom: .25em; }
.tl-body .when { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2-deep); font-weight: 600; margin-bottom: .5em; }
.tl-body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- pricing packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pkg {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease2), border-color .35s var(--ease2);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.is-featured { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.pkg-tag { align-self: flex-start; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .3em .8em; border-radius: 999px; margin-bottom: 14px; }
.pkg h3 { font-size: 1.4rem; }
.pkg .price { font-family: "Consolas", monospace; font-weight: 700; font-size: 2rem; color: var(--accent-deep); margin: .2em 0; }
.pkg .price small { font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.pkg .lead { color: var(--ink-soft); font-size: .94rem; }
.pkg ul.incl { display: grid; gap: 10px; margin: 18px 0; }
.pkg ul.incl li { display: grid; grid-template-columns: auto 1fr; gap: 10px; font-size: .93rem; align-items: start; }
.pkg ul.incl li svg { width: 18px; height: 18px; color: var(--sage); margin-top: 3px; flex: none; }
.pkg ul.incl li.excl { color: var(--ink-soft); }
.pkg ul.incl li.excl svg { color: var(--accent-2-deep); }
.pkg .btn { margin-top: auto; justify-content: center; }
.price-note { font-size: .84rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 4px; position: relative;
  font-family: var(--head); font-weight: 600; font-size: 1.12rem; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ""; position: absolute; right: 8px; top: 26px; width: 12px; height: 12px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .3s var(--ease2);
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-item > .answer {
  height: 0; overflow: hidden; padding: 0 4px;
  color: var(--ink-soft); font-size: .98rem;
  transition: height .36s var(--ease2), padding-block-end .36s var(--ease2);
}
.faq-item[open] > .answer { height: auto; padding-block-end: 24px; }
@media (prefers-reduced-motion: reduce) { .faq-item > .answer { transition: none; } }

/* ---------- notes / news ---------- */
.notes { display: grid; gap: 14px; }
.note {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.note .date { font-family: "Consolas", monospace; font-size: .82rem; color: var(--accent-2-deep); white-space: nowrap; }
.note p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4.6vw, 3.2rem); }
.cta-band p { color: rgba(246,243,238,.82); max-width: 52ch; margin: 0 auto 1.8em; }
.cta-band .btn-primary { background: var(--surface); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--accent-2); color: #fff; }

/* ---------- forms ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { font-size: .86rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: .8em .9em; width: 100%;
  transition: border-color .24s var(--ease2), box-shadow .24s var(--ease2);
}
.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(122,109,143,.16);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.kvkk span { font-weight: 400; font-size: .9rem; color: var(--ink-soft); }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent);
}
.form-submit { margin-top: 22px; }
@media (max-width: 640px) { .form-submit { width: 100%; justify-content: center; } }

/* ---------- contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 22px;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease2), border-color .32s var(--ease2);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-soft); }
.contact-card .cc-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; color: var(--accent-deep); margin-bottom: 14px; }
.contact-card .cc-ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.08rem; margin-bottom: .2em; }
.contact-card a, .contact-card .val { font-weight: 600; color: var(--ink); word-break: break-word; }
.contact-card a:hover { color: var(--accent-deep); }
.contact-card .sub { color: var(--ink-soft); font-size: .86rem; margin-top: .3em; }

/* hours mini-grid */
.hours-grid { display: grid; gap: 8px; max-width: 460px; }
.hours-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; font-variant-numeric: tabular-nums; }
.hours-row.today { border-color: var(--accent); background: var(--surface-2); font-weight: 600; }
.hours-row .day { color: var(--ink); }
.hours-row .time { color: var(--ink-soft); }

/* ---------- tables ---------- */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line); border-radius: 8px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
table th { background: var(--surface-2); font-family: var(--head); font-weight: 600; }
table tr:last-child td { border-bottom: 0; }

/* ---------- doc/legal pages ---------- */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-size: 1.5rem; margin-top: 1.8em; }
.doc h3 { font-size: 1.18rem; margin-top: 1.4em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { list-style: disc; padding-left: 1.4em; margin: 0 0 1em; }
.doc ul li { margin-bottom: .5em; }
.doc-meta { color: var(--ink-soft); font-size: .88rem; margin-bottom: 2em; }

.page-hero { padding: clamp(48px, 8vw, 92px) 0 clamp(30px, 5vw, 52px); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero p { color: var(--ink-soft); max-width: 60ch; font-size: 1.06rem; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease2); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.team-card .tphoto { aspect-ratio: 4/5; overflow: hidden; }
.team-card .tphoto img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px 22px 24px; }
.team-body h3 { font-size: 1.2rem; margin-bottom: .1em; }
.team-body .role { color: var(--accent-2-deep); font-weight: 600; font-size: .86rem; letter-spacing: .04em; margin-bottom: .8em; }
.team-body p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(246,243,238,.8); padding: clamp(48px, 7vw, 84px) 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 48px); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--surface); font-size: 1rem; letter-spacing: .04em; margin-bottom: 1em; }
.site-footer a { color: rgba(246,243,238,.8); }
.site-footer a:hover { color: var(--accent-2); }
.footer-brand .brand-name { color: var(--surface); font-size: 1.3rem; }
.footer-brand p { font-size: .92rem; margin-top: 1em; max-width: 34ch; }
.footer-links { display: grid; gap: 10px; font-size: .93rem; }
.footer-contact { display: grid; gap: 10px; font-size: .93rem; }
.footer-contact .long { word-break: break-word; }
.foot-social { display: flex; gap: 12px; margin-top: 14px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(246,243,238,.24); display: grid; place-items: center; }
.foot-social a:hover { border-color: var(--accent-2); background: rgba(192,132,151,.14); }
.foot-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 56px); padding-top: 22px; border-top: 1px solid rgba(246,243,238,.16);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(246,243,238,.6);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 22px 24px; box-shadow: var(--shadow);
  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.1rem; margin-bottom: .4em; }
.cookie-banner p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1em; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto; min-height: 44px; padding: .6em 1em; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: .9rem; cursor: pointer;
  border: 1px solid var(--line-strong); background: var(--bg); color: var(--ink);
  transition: background .24s var(--ease2), color .24s var(--ease2), transform .2s var(--ease);
}
.cookie-actions button[data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions button[data-consent="accept"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
/* reject: equal visual weight to accept — both solid, filled, high-contrast (KVKK: no dark pattern) */
.cookie-actions button[data-consent="reject"] { background: var(--accent-deep); color: #fff; border-color: var(--accent-deep); }
.cookie-actions button[data-consent="reject"]:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
/* settings kept as the softer tertiary option, but full-width below the primary pair */
.cookie-actions button[data-consent="settings"] { flex: 1 1 100%; }
.cookie-actions button[data-consent="settings"]:hover { background: var(--surface-2); transform: translateY(-2px); }

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; place-items: center; padding: 20px; }
.cookie-modal.is-open { display: grid; }
.cookie-modal .cm-backdrop { position: absolute; inset: 0; background: rgba(30,27,24,.55); }
.cookie-modal .cm-panel {
  position: relative; background: var(--surface); border-radius: var(--r);
  padding: clamp(24px, 4vw, 36px); max-width: 480px; width: 100%; box-shadow: var(--shadow);
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.3rem; }
.cm-toggle { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cm-toggle:last-of-type { border-bottom: 0; }
.cm-toggle .cm-info strong { display: block; font-family: var(--head); }
.cm-toggle .cm-info span { font-size: .86rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .24s; cursor: pointer; }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .24s var(--ease); }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-2); opacity: .6; cursor: not-allowed; }
.cm-save { margin-top: 20px; width: 100%; justify-content: center; }

/* decorative dried sprig silhouette */
.sprig { position: absolute; color: var(--accent); opacity: .1; pointer-events: none; z-index: 0; }

/* ---------- animations ---------- */
@keyframes sway { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }
@keyframes drift { 0% { transform: translate(0,0); } 100% { transform: translate(-30px, 40px); } }
@keyframes shimmer { 0%,100% { opacity: .1; } 50% { opacity: .22; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .gcard, .sprig, .hero-sky, .hero-bg img, .hero-scroll span { animation: none !important; transition: none !important; }
  .hero-bg img { transform: scale(1.04) !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* utility */
.center { text-align: center; }
.mt-lg { margin-top: clamp(30px, 5vw, 56px); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge { display: inline-flex; align-items: center; gap: .5em; padding: .45em 1em; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .84rem; font-weight: 500; color: var(--ink-soft); }
.badge svg { width: 15px; height: 15px; color: var(--accent); }
.pill-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-cloud span { padding: .5em 1.1em; border: 1px solid var(--line-strong); border-radius: 999px; font-size: .92rem; color: var(--ink); background: var(--surface); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent-2),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;
}

/* =========================================================
   PREMIUM UPLIFT — apothecary-editorial art direction
   Appended layer: enhances typography, rhythm, detailing &
   motion sitewide. Purely additive; leaves markup/JS/guards
   and the cinematic hero untouched.
   ========================================================= */

/* --- paper: faint pressed-botanical warmth, no texture image --- */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 80% at 100% -10%, rgba(122,109,143,.07), transparent 60%),
    radial-gradient(90% 70% at -10% 8%, rgba(192,132,151,.06), transparent 55%);
  background-attachment: fixed;
  font-size: 17.5px;
}
@media (max-width: 640px) { body { background-attachment: scroll; } }

/* --- hairline seam between stacked same-tone sections --- */
.section + .section:not(.band):not(.band-ink):not(.cta-band)::before,
.section + .section--tight:not(.band)::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  height: 1px; background: var(--line);
}

/* --- eyebrow: refined kerned label with sprig tick --- */
.eyebrow {
  font-size: .72rem; letter-spacing: .26em; color: var(--accent-2-deep);
}
.eyebrow::before { width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-2)); }
.band-ink .eyebrow, .cta-band .eyebrow { color: var(--accent-2); }
.band-ink .eyebrow::before, .cta-band .eyebrow::before { background: linear-gradient(90deg, transparent, var(--accent-2)); }

/* --- editorial section heads: bigger, tighter, italic-friendly --- */
.section-head { max-width: 64ch; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.04; letter-spacing: -0.02em;
}
.section-head p { font-size: 1.08rem; max-width: 58ch; }
.section-head.center { max-width: 66ch; }
.section-head.center p { margin-inline: auto; }

/* --- buttons: a touch more presence, accent-tinted lift --- */
.btn { padding: .9em 1.6em; letter-spacing: .005em; }
.btn-primary:hover, .btn-primary:focus-visible,
.btn-accent:hover, .btn-accent:focus-visible { box-shadow: var(--shadow-accent); }

/* --- catalog cards: warmer frame, rose-lift on hover, price refinement --- */
.cat-card { border-color: var(--line); box-shadow: 0 18px 40px -30px rgba(59,55,51,.42); }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  border-radius: var(--r); box-shadow: inset 0 0 0 1px rgba(246,243,238,.5);
}
.cat-card:hover { box-shadow: var(--shadow-accent); }
.cat-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(50,43,51,.28), transparent 42%);
  opacity: .8; transition: opacity .5s var(--ease2);
}
.cat-card:hover .cat-media::after { opacity: .5; }
.cat-body h3 { font-size: 1.32rem; letter-spacing: -.01em; }
.cat-badge { background: rgba(246,243,238,.96); backdrop-filter: blur(4px); box-shadow: 0 6px 16px -10px rgba(59,55,51,.5); }

/* --- size cards: numbered apothecary feel --- */
.size-card { padding: 32px 28px; }
.size-card:hover { box-shadow: var(--shadow-accent); }
.size-badge { font-family: var(--head); background: radial-gradient(circle at 30% 25%, var(--surface), var(--surface-2)); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 10px 22px -16px rgba(94,82,115,.6); }
.size-card h3 { font-size: 1.34rem; }

/* --- editorial split media: subtle frame + parallax-ready scale --- */
.split-media { box-shadow: var(--shadow); }
.split-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: var(--r);
  box-shadow: inset 0 0 0 1px rgba(246,243,238,.35), inset 0 -60px 80px -60px rgba(50,43,51,.5);
}
.split-media img { transition: transform 1.1s var(--ease); }
.split:hover .split-media img { transform: scale(1.035); }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -.02em; }
@media (prefers-reduced-motion: reduce) { .split:hover .split-media img { transform: none; } }

/* --- care cards: line-art tile with accent wash on hover --- */
.care-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease2), border-color .4s var(--ease2); }
.care-card:hover { border-color: var(--accent); box-shadow: var(--shadow-accent); }
.care-ico { background: radial-gradient(circle at 30% 25%, var(--surface), var(--surface-2)); transition: color .35s var(--ease2), background .35s var(--ease2); }
.care-card:hover .care-ico { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.care-card h3 { font-size: 1.2rem; }

/* --- use-items --- */
.use-item:hover { box-shadow: var(--shadow-soft); }
.use-item .ico { background: radial-gradient(circle at 30% 25%, var(--surface), var(--surface-2)); }

/* --- timeline: refined node + gradient spine --- */
.timeline { position: relative; }
.tl-num {
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 26px -14px rgba(94,82,115,.75), inset 0 1px 0 rgba(255,255,255,.25);
  font-family: var(--head); font-weight: 500;
}
.tl-step::before { background: linear-gradient(var(--accent), var(--line-strong)); width: 1.5px; left: 26.5px; }
.tl-body h4 { font-size: 1.2rem; }
.tl-step { transition: transform .3s var(--ease); }

/* --- packages: featured raised & haloed --- */
.pkg { transition: transform .4s var(--ease), box-shadow .4s var(--ease2), border-color .4s var(--ease2); }
.pkg:hover { box-shadow: var(--shadow-accent); }
.pkg.is-featured { box-shadow: var(--shadow-accent); position: relative; }
@media (min-width: 900px) {
  .pkg-grid .pkg.is-featured { transform: translateY(-10px) scale(1.015); }
  .pkg-grid .pkg.is-featured:hover { transform: translateY(-14px) scale(1.015); }
}
@media (prefers-reduced-motion: reduce) { .pkg-grid .pkg.is-featured { transform: none !important; } }
.pkg h3 { font-size: 1.5rem; }
.pkg-tag { background: linear-gradient(135deg, var(--accent-2), var(--accent-2-deep)); box-shadow: 0 8px 18px -12px rgba(167,98,119,.8); }

/* --- testimonials: hanging quotation mark, warmer card --- */
.testi { position: relative; padding-top: 44px; }
.testi::before {
  content: "\201C"; position: absolute; top: 6px; left: 22px;
  font-family: var(--head); font-style: italic; font-size: 4.4rem; line-height: 1;
  color: var(--accent-2); opacity: .32;
}
.testi p { font-size: 1.04rem; line-height: 1.6; }
.testi:hover { box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.testi { transition: transform .35s var(--ease), box-shadow .35s var(--ease2), border-color .35s var(--ease2); }
.testi:hover { transform: translateY(-4px); }
.testi .who strong { letter-spacing: -.01em; }

/* --- manifesto: framed with sprig rules --- */
.manifesto { max-width: 30ch; }
.manifesto blockquote { position: relative; }
.manifesto blockquote::before, .manifesto blockquote::after {
  content: ""; display: block; width: 40px; height: 1px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.manifesto blockquote::before { margin-bottom: clamp(20px, 3vw, 34px); }
.manifesto blockquote::after { margin-top: clamp(20px, 3vw, 34px); }
.band .manifesto blockquote { color: var(--ink); }
.manifesto blockquote { font-weight: 500; }

/* --- FAQ: editorial rule + hover tint --- */
.faq-item > summary { font-size: 1.16rem; transition: color .24s var(--ease2), padding-left .3s var(--ease); }
.faq-item > summary:hover { color: var(--accent-deep); }
.faq-item[open] > summary { color: var(--accent-deep); }
.faq-item > .answer { font-size: 1rem; line-height: 1.62; }

/* --- CTA band: layered depth --- */
.band-ink { position: relative; overflow: hidden; }
.cta-band { background: radial-gradient(120% 140% at 50% -30%, #423A44, var(--ink) 60%); }
.cta-band h2 { letter-spacing: -.02em; }

/* --- page-hero (inner pages): editorial masthead --- */
.page-hero { position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); letter-spacing: -.022em; }
.page-hero p { font-size: 1.1rem; }
.page-hero.band { border-bottom: 1px solid var(--line); }

/* --- stats: refined numerals --- */
.stat .num { letter-spacing: -.02em; font-weight: 500; }

/* --- team cards --- */
.team-card:hover { box-shadow: var(--shadow-accent); }
.team-card .tphoto { position: relative; }
.team-card .tphoto::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(50,43,51,.25), transparent 40%); }
.team-body h3 { font-size: 1.26rem; }

/* --- contact cards --- */
.contact-card:hover { box-shadow: var(--shadow-accent); }
.contact-card .cc-ico { background: radial-gradient(circle at 30% 25%, var(--surface), var(--surface-2)); }

/* --- badges & pills: subtle depth --- */
.badge { box-shadow: 0 6px 16px -14px rgba(59,55,51,.6); }
.badge:hover, .pill-cloud span:hover { border-color: var(--accent); }
.badge, .pill-cloud span { transition: border-color .28s var(--ease2), transform .28s var(--ease); }

/* --- reveal: gentler, add scale for premium feel --- */
.reveal { transform: translateY(30px) scale(.985); }
.reveal.is-in { transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transform: none !important; } }

/* --- price/mono numerals stay crisp --- */
.cat-price, .size-dim, .size-price, .pkg .price, .note .date { font-feature-settings: "tnum" 1; }

/* --- links in body copy: refined underline --- */
.doc p a, .cat-body a:not(.cat-link) { text-underline-offset: 3px; }

/* --- selection --- */
::selection { background: rgba(122,109,143,.28); color: var(--ink); }

/* Fraunces safety: if the webfont is blocked, the Candara/Georgia
   fallback still renders every heading — no invisible text. */

