/* ============================================================
   Sırlı Koy — Özel Gulet Balayısı
   Palette: pudra + gül + altın (sıcak romantik)
   Heading: Fraunces italic · Body: Newsreader
   ============================================================ */

:root {
  --bg: #FDF0EC;
  --surface: #FFFFFF;
  --surface-2: #FBE6DE;
  --ink: #3A2230;
  --ink-soft: #6B4A5A;
  --ink-faint: #8E6E7C;
  --accent: #D9557B;
  --accent-deep: #B23A60;
  --accent-2: #F2B705;
  --gold-soft: #F7D793;
  --line: rgba(58, 34, 48, 0.14);
  --line-strong: rgba(58, 34, 48, 0.26);
  --shadow: 0 24px 60px -34px rgba(58, 34, 48, 0.45);
  --shadow-soft: 0 14px 34px -22px rgba(58, 34, 48, 0.4);
  --header-h: 76px;
  --maxw: 1080px;
  --read: 640px;
  --pad: clamp(20px, 6vw, 64px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  interpolate-size: allow-keywords;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Newsreader", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.012em;
}

p { margin: 0 0 1.1em; }
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.read {
  max-width: var(--read);
  margin-inline: auto;
}

.eyebrow {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section { padding-block: clamp(56px, 9vw, 108px); position: relative; }
.section--tint { background: var(--surface); }
.section--band { background: var(--ink); color: var(--bg); }
.section--band h2, .section--band h3 { color: var(--bg); }
.section--band .eyebrow { color: var(--gold-soft); }
.section--band .eyebrow::before { background: var(--accent-2); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 5vw, 52px); }
.section-head h2 {
  font-size: clamp(1.9rem, 5.4vw, 3rem);
  margin-top: .35em;
}
.section-head p { color: var(--ink-soft); font-size: 1.12rem; }

.word-guard { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; color: var(--bg); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(253, 240, 236, 0.92);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease), box-shadow .24s var(--ease), height .24s var(--ease), border-color .24s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(253, 240, 236, 0.98);
  box-shadow: 0 8px 24px -16px rgba(58, 34, 48, 0.3);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px;
  color: var(--accent);
  flex: 0 0 auto;
}
.brand .mark svg { width: 100%; height: 100%; }
.brand small {
  display: block;
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-top: 1px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right .26s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { right: 0; }
.nav-desktop a.is-active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 16px -12px rgba(58, 34, 48, 0.5);
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .12s var(--ease);
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: 0 8px 20px -14px rgba(178, 58, 96, 0.7);
}
.nav-toggle:hover span, .nav-toggle:focus-visible span { background: var(--accent-deep); }
.nav-toggle:active { transform: scale(0.94); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  padding: calc(var(--header-h) + 20px) 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 60px -30px rgba(58, 34, 48, 0.6);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent-deep); }
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-style: normal;
  font-family: "Newsreader", serif;
  font-size: 1rem;
  border: none;
}
.drawer a.drawer-cta:hover { background: var(--accent-deep); color: var(--surface); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 16, 26, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease), visibility .24s var(--ease);
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Newsreader", serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(178, 58, 96, 0.8);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: var(--accent-deep); border-color: var(--accent); }
.btn-gold { background: var(--accent-2); color: var(--ink); border-color: var(--accent-2); }
.btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-soft); color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO — vertical stack
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(40px, 8vw, 74px);
}
.hero-top {
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
  padding-bottom: clamp(28px, 5vw, 46px);
}
.hero h1 {
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  margin: .32em 0 .3em;
  line-height: 1;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 1.6em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-strip {
  position: relative;
  margin-top: clamp(30px, 5vw, 50px);
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .hero-strip { aspect-ratio: 4 / 5; } }
.hero-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: slowzoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slowzoom { to { transform: scale(1.14); } }
/* sunset light sweep — theme signature */
.hero-strip::before {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(242, 183, 5, 0.0) 40%,
    rgba(247, 215, 147, 0.28) 50%,
    rgba(217, 85, 123, 0.14) 58%,
    transparent 70%);
  mix-blend-mode: screen;
  animation: sweep 11s var(--ease) infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes sweep {
  0% { transform: translateX(-30%); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateX(30%); opacity: 0; }
}
.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 34, 48, 0.34), transparent 46%);
  z-index: 1;
}
.hero-strip-caption {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 3;
  color: #fff;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

/* hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 3vw, 34px);
  max-width: 720px;
  margin: clamp(34px, 5vw, 52px) auto 0;
  text-align: center;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--accent-deep);
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-stats .stat + .stat { border-left: 1px solid var(--line); }

/* ============================================================
   Hand-drawn divider
   ============================================================ */
.wave-divider {
  display: block;
  width: min(360px, 70%);
  margin: clamp(30px, 6vw, 54px) auto;
  color: var(--accent);
  opacity: .8;
}
.wave-divider svg { width: 100%; height: auto; }

/* ============================================================
   LONGREAD / STORY
   ============================================================ */
.story p { font-size: 1.16rem; color: var(--ink); }
.story .lead {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1em;
}
.dropcap::first-letter {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 3.6em;
  float: left;
  line-height: .72;
  padding: 0.06em 0.12em 0 0;
  color: var(--accent);
}

.pullquote {
  position: relative;
  max-width: 760px;
  margin: clamp(36px, 6vw, 64px) auto;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 60px);
}
.pullquote::before {
  content: "\201C";
  position: absolute;
  top: -0.35em; left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--accent-2);
  opacity: .5;
  line-height: 1;
  pointer-events: none;
}
.pullquote p {
  position: relative;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.6vw, 2.15rem);
  line-height: 1.32;
  color: var(--ink);
  margin: .6em 0 .4em;
}
.pullquote cite {
  font-style: normal;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* ============================================================
   Split media rows (parallax)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5 / 6;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,34,48,.28), transparent 50%);
}
.split-media:hover img { transform: scale(1.05); }
.split-media .badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--accent-deep);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 500;
}
.split-text h3 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
.split-text p { color: var(--ink-soft); font-size: 1.1rem; }
.split-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 1.2em;
  list-style: none;
  padding: 0;
}
.split-mini li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: var(--ink);
}
.split-mini li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ============================================================
   Feature cards (niche icons)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
}
.feature {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  min-width: 0;
}
/* warm sunset glow — theme signature */
.feature::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 90% at 50% -12%, rgba(247, 215, 147, 0.28), rgba(217, 85, 123, 0.06) 42%, transparent 68%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.feature:hover::after,
.contact-card:hover::after { opacity: 1; }
.feature > *,
.contact-card > * { position: relative; z-index: 1; }
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -28px rgba(178, 58, 96, 0.5);
  border-color: rgba(217, 85, 123, .4);
}
.feature:hover .icon,
.contact-card:hover .ic {
  background: var(--gold-soft);
  color: var(--accent-deep);
  transition: background .35s var(--ease);
}
.feature .icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--accent-deep);
  margin-bottom: 16px;
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.32rem; margin-bottom: .35em; }
.feature p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.gallery figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,34,48,.35), transparent 55%);
  opacity: .7;
  transition: opacity .4s var(--ease);
}
.gallery figcaption {
  position: absolute;
  left: 14px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.02rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
/* staggered reveal cascade */
.gallery figure:nth-child(1) { --i: 0; }
.gallery figure:nth-child(2) { --i: 1; }
.gallery figure:nth-child(3) { --i: 2; }
.gallery figure:nth-child(4) { --i: 3; }
.gallery figure:nth-child(5) { --i: 4; }
.gallery figure:nth-child(6) { --i: 5; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery .wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery { grid-auto-rows: 150px; }
  .gallery .wide { grid-column: span 2; }
}

/* ============================================================
   Testimonials — editorial grid
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 26px);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testi .qmark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--accent-2);
  line-height: .6;
  height: 28px;
}
.testi p { font-size: 1.04rem; color: var(--ink); flex: 1; }
.testi .who {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 8px;
}
.testi .who strong { display: block; font-family: "Fraunces", serif; font-style: italic; color: var(--accent-deep); }
.testi .who span { font-size: 0.86rem; color: var(--ink-faint); }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Timeline (process)
   ============================================================ */
.timeline { position: relative; max-width: 780px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 22px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2));
}
.tl-step {
  position: relative;
  padding: 0 0 clamp(28px, 4vw, 40px) 64px;
}
.tl-step .dot {
  position: absolute;
  left: 10px; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent-deep);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.9rem;
  z-index: 1;
}
.tl-step .when {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
}
.section--band .tl-step .when { color: var(--gold-soft); }
.tl-step h3 { font-size: 1.4rem; margin: .2em 0 .35em; }
.section--band .tl-step .dot { background: var(--ink); }
.tl-step p { color: var(--ink-soft); margin: 0; }
.section--band .tl-step p { color: rgba(253,240,236,.78); }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 26px);
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 26px 54px -30px rgba(178,58,96,.55);
}
.price-card.featured::before {
  content: "En çok tercih edilen";
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: .1em; }
.price-card .tag { font-size: 0.92rem; color: var(--ink-faint); margin-bottom: 1em; }
.price-card .amount {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.7rem);
  color: var(--accent-deep);
  line-height: 1;
}
.price-card .amount small {
  display: block;
  font-family: "Newsreader", serif;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 4px;
  letter-spacing: .04em;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.3em 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
  align-items: start;
}
.price-card ul li svg { width: 18px; height: 18px; margin-top: 4px; }
.price-card ul li.yes svg { color: var(--accent); }
.price-card ul li.no { color: var(--ink-faint); }
.price-card ul li.no svg { color: var(--ink-faint); }
.price-card .btn { width: 100%; }
.price-note {
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-top: 24px;
}
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   FAQ (pure CSS accordion)
   ============================================================ */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(18px, 3vw, 24px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .chev {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  color: var(--accent);
  transition: transform .34s var(--ease);
}
.faq-item[open] > summary .chev { transform: rotate(45deg); }
.faq-item > .answer {
  height: 0;
  overflow: hidden;
  padding: 0 0;
  color: var(--ink-soft);
  transition: height .36s cubic-bezier(.4,0,.2,1), padding-block-end .36s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 22px;
}
.faq-item > .answer p { margin: 0 0 .8em; }
.faq-item > .answer p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 5.6vw, 3.2rem); }
.cta-band p { color: rgba(253,240,236,.82); max-width: 540px; margin: 0 auto 1.6em; font-size: 1.14rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  margin-top: 22px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}
.section--band .trust-strip span {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(253,240,236,.9);
}
.trust-strip span svg { width: 15px; height: 15px; color: var(--accent-2); }

/* ============================================================
   Contact cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
}
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
  min-width: 0;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(217,85,123,.4);
}
.contact-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.16rem; margin-bottom: .2em; }
.contact-card a, .contact-card p { font-size: 1.02rem; color: var(--ink); margin: 0 0 3px; word-break: break-word; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--accent-deep); }
.contact-card small { color: var(--ink-faint); font-size: 0.84rem; }

/* Hours card */
.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px clamp(20px, 3vw, 30px);
}
.hours-card h3 { font-size: 1.3rem; margin-bottom: .6em; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-variant-numeric: tabular-nums;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { color: var(--accent-deep); font-weight: 600; }
.hours-row .d { color: var(--ink-soft); }
.hours-row.today .d { color: var(--accent-deep); }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { form .grid-2 { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: none;
  border-bottom: 2px solid var(--line-strong);
  border-radius: 8px 8px 0 0;
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--surface-2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field.kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  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: 3px 0 0;
  accent-color: var(--accent);
  border-radius: 0;
}
form button[type="submit"] { width: 100%; margin-top: 4px; }
@media (min-width: 640px) { form button[type="submit"] { width: auto; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(253,240,236,.8);
  padding-block: clamp(48px, 7vw, 76px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}
.site-footer .brand { color: var(--bg); }
.site-footer .brand small { color: var(--gold-soft); }
.footer-about p { color: rgba(253,240,236,.66); font-size: 0.98rem; margin-top: 1em; max-width: 34ch; }
.footer-col h4 {
  font-family: "Newsreader", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1em;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(253,240,236,.78);
  font-size: 0.98rem;
  margin-bottom: 9px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(253,240,236,.55);
}
.footer-bottom a { color: rgba(253,240,236,.7); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   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: 16px;
  box-shadow: 0 24px 60px -24px rgba(58,34,48,.5);
  padding: 20px 22px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s var(--ease), opacity .24s ease;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-size: 1.16rem; margin-bottom: .3em; }
.cookie-banner p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1em; }
.cookie-banner p a { color: var(--accent-deep); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.92rem;
  border-radius: 999px;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.cookie-actions .c-accept { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions .c-accept:hover { background: var(--accent-deep); color: #fff; }
.cookie-actions .c-reject { background: var(--surface); color: var(--ink); }
.cookie-actions .c-reject:hover { background: var(--surface-2); color: var(--ink); }
.cookie-actions .c-settings { background: transparent; color: var(--ink-soft); }
.cookie-actions .c-settings:hover { background: var(--surface-2); color: var(--ink); }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30,16,26,.55);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal .box {
  background: var(--surface);
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: var(--shadow);
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.4rem; margin-bottom: .4em; }
.cookie-modal p { font-size: 0.94rem; color: var(--ink-soft); }
.consent-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.consent-row h4 { font-family: "Newsreader", serif; font-style: normal; font-size: 1.02rem; margin-bottom: .2em; }
.consent-row p { margin: 0; font-size: 0.86rem; }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.switch .track::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s var(--ease);
}
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-2); opacity: .7; }
.cookie-modal .modal-actions { margin-top: 20px; display: flex; justify-content: flex-end; gap: 10px; }

/* ============================================================
   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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-strip img { animation: none; }
  .hero-strip::before { animation: none; opacity: 0; }
}

/* ============================================================
   Tables
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.98rem; }
table th { font-family: "Fraunces", serif; font-style: italic; color: var(--ink); background: var(--surface-2); }
table tr:last-child td { border-bottom: none; }

/* ============================================================
   Legal / doc pages
   ============================================================ */
.doc-hero {
  background: var(--surface);
  padding-block: clamp(40px, 7vw, 72px) clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}
.doc-hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
.doc-hero p { color: var(--ink-soft); max-width: 60ch; }
.doc-body { padding-block: clamp(40px, 6vw, 68px); }
.doc-body h2 { font-size: clamp(1.5rem, 3.6vw, 2rem); margin-top: 1.6em; }
.doc-body h3 { font-size: 1.25rem; margin-top: 1.2em; }
.doc-body ul, .doc-body ol { padding-left: 1.2em; }
.doc-body li { margin-bottom: .5em; }
.doc-toc {
  background: var(--surface-2);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 2em;
}
.doc-toc h2 { margin-top: 0; font-size: 1.1rem; }
.doc-toc ol { margin: 0; }
.doc-toc a { color: var(--accent-deep); }

/* 404 */
.err-wrap { text-align: center; padding-block: clamp(60px, 12vw, 130px); }
.err-wrap .big {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(5rem, 20vw, 12rem);
  color: var(--accent);
  line-height: .9;
}
.err-wrap h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: .2em; }
.err-wrap p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

/* Sitemap page */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.sitemap-grid .col a { display: block; padding: 7px 0; border-bottom: 1px solid var(--line); }

/* thank-you */
.ty-wrap { text-align: center; padding-block: clamp(60px, 12vw, 130px); }
.ty-wrap .mark {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  color: var(--accent);
  background: var(--surface-2);
  border-radius: 50%;
  display: grid; place-items: center;
}
.ty-wrap .mark svg { width: 40px; height: 40px; }
.ty-wrap h1 { font-size: clamp(2rem, 6vw, 3rem); }
.ty-wrap p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }

/* utility */
.center { text-align: center; }
.mt-l { margin-top: clamp(30px, 5vw, 50px); }
.lead-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 18px;
}
.pill {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  background: var(--surface);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats .stat + .stat { border-left: none; }
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

.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;
}

/* ============================================================
   ELEVATION LAYER — award-level polish
   Theme: iki kişilik özel gulet balayısı · sunset / secluded coves
   Enhances only. Hero, header, drawer, cookie, forms, footer,
   reveal (is-in), reduced-motion & no-overflow guards all intact.
   ============================================================ */

/* ---- Optical display serif + finer rendering ---- */
h1, h2, h3, h4 { font-optical-sizing: auto; }
.hero h1 { letter-spacing: -0.022em; }
.section-head h2, .cta-band h2 { letter-spacing: -0.018em; }

/* two-tone heading rhythm: roman accent inside the italic display */
.hero h1 em,
.section-head h2 em,
.split-text h3 em,
.cta-band h2 em,
.doc-hero h1 em {
  font-style: normal;
  color: var(--accent-deep);
}
.section--band .cta-band h2 em { color: var(--gold-soft); }

/* ---- Warm ambient light behind the powder-toned sections ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(115% 55% at 84% -6%, rgba(247, 215, 147, 0.30), transparent 46%),
    radial-gradient(120% 60% at 6% 106%, rgba(217, 85, 123, 0.10), transparent 52%);
}

/* ---- Eyebrow: add a faint trailing hairline for balance ---- */
.section-head .eyebrow { margin-bottom: 2px; }

/* ---- Section heads: a touch more air + lead width ---- */
.section-head p { max-width: 54ch; }

/* ---- Hand-drawn divider: center it with flanking hairlines ---- */
.wave-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wave-divider svg { width: min(320px, 60%); }
.wave-divider::before,
.wave-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  max-width: 120px;
  background: linear-gradient(to var(--dir, right), transparent, var(--line-strong));
}
.wave-divider::after { --dir: left; }

/* ============================================================
   Feature cards — editorial ordinals + nautical corner tick
   ============================================================ */
.feature { padding-top: clamp(26px, 3.4vw, 38px); }
.feature::before {
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  top: 14px; right: 18px;
  z-index: 1;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--accent);
  opacity: .38;
  letter-spacing: .02em;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.feature-grid { counter-reset: feat; }
.feature { counter-increment: feat; }
.feature:hover::before { opacity: .8; }
.feature .icon {
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(217, 85, 123, .14);
  transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.feature:hover .icon { transform: translateY(-2px) rotate(-3deg); }

/* ============================================================
   Split media — framed with a warm inner ring + caption tick
   ============================================================ */
.split-media { box-shadow: var(--shadow-soft), 0 0 0 1px rgba(58,34,48,.05); }
.split-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  pointer-events: none;
  transition: inset .5s var(--ease);
}
.split-media:hover::before { inset: 6px; }
.split-mini li {
  position: relative;
  padding-bottom: 2px;
}
.split-mini li::after {
  content: "";
  position: absolute;
  left: 26px; right: 0; bottom: -2px;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.split-text:hover .split-mini li::after { transform: scaleX(1); }

/* ============================================================
   Gallery — subtle accent frame + caption tick
   ============================================================ */
.gallery figure { box-shadow: 0 1px 0 rgba(58,34,48,.04); }
.gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(247, 215, 147, 0);
  transition: box-shadow .4s var(--ease);
  pointer-events: none;
}
.gallery figure:hover::before { box-shadow: inset 0 0 0 3px rgba(247, 215, 147, .55); }
.gallery figcaption { padding-left: 15px; }
.gallery figcaption::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 2px;
  background: var(--accent-2);
  transform: translateY(-50%);
  border-radius: 2px;
}

/* ============================================================
   Testimonials — hanging quote + accent left rule
   ============================================================ */
.testi {
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.testi::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent), var(--accent-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}
.testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -30px rgba(178, 58, 96, .5);
  border-color: rgba(217, 85, 123, .34);
}
.testi:hover::before { transform: scaleY(1); }
.testi .qmark { margin-bottom: 6px; }

/* ============================================================
   Timeline — glowing dots, warmer track
   ============================================================ */
.tl-step .dot {
  box-shadow: 0 0 0 5px var(--bg), 0 6px 16px -8px rgba(178, 58, 96, .6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.section--band .tl-step .dot { box-shadow: 0 0 0 5px var(--ink), 0 6px 16px -8px rgba(242, 183, 5, .5); }
.tl-step.is-in .dot { animation: dotpop .5s var(--ease) both; }
@keyframes dotpop { 0% { transform: scale(.4); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.tl-step h3 { transition: color .25s var(--ease); }

/* ============================================================
   Pricing — richer featured card, gold seam on the amount
   ============================================================ */
.price-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.price-card:hover::after, .price-card.featured::after { transform: scaleX(1); }
.price-card.featured {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(160deg, rgba(217,85,123,.5), rgba(242,183,5,.5)) border-box;
  border: 1px solid transparent;
}
.price-card .amount { position: relative; display: inline-block; }
.price-card ul li svg { transition: transform .25s var(--ease); }
.price-card:hover ul li.yes svg { transform: scale(1.14); }

/* ============================================================
   Buttons — soft top sheen for depth
   ============================================================ */
.btn-primary, .btn-gold { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gold::after {
  content: "";
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(rgba(255,255,255,.22), transparent);
  pointer-events: none;
}

/* ---- Pills & trust chips ---- */
.pill { transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.pill:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-deep); }
.trust-strip span { transition: transform .2s var(--ease); }
.trust-strip span:hover { transform: translateY(-2px); }

/* ============================================================
   Contact cards & hours — accent seam on hover
   ============================================================ */
.contact-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent), var(--accent-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
  z-index: 2;
}
.contact-card:hover::before { transform: scaleY(1); }
.hours-row.today { position: relative; }

/* ============================================================
   Doc / legal pages — warmer hero
   ============================================================ */
.doc-hero { position: relative; overflow: hidden; }
.doc-hero::after {
  content: "";
  position: absolute;
  right: -6%; top: -40%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(247,215,147,.35), transparent 66%);
  pointer-events: none;
}
.doc-hero .container { position: relative; z-index: 1; }

/* ============================================================
   Brand mark — gentle sway (decor only, motion-gated)
   ============================================================ */
.site-header .brand .mark svg { transition: transform .4s var(--ease); }
.site-header .brand:hover .mark svg { transform: rotate(-4deg) scale(1.05); }

/* ============================================================
   Reveal — add a whisper of blur clearing (transform/opacity/filter only)
   ============================================================ */
.reveal {
  filter: blur(3px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
.reveal.is-in { filter: none; }
html.no-js .reveal { filter: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none !important; }
  .tl-step.is-in .dot { animation: none; }
}

/* ---- Mobile type safety: no clipping / overflow on display serif ---- */
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.01em; }
  .section-head h2, .cta-band h2, .doc-hero h1 { letter-spacing: -0.008em; word-break: normal; overflow-wrap: break-word; }
}

/* ---- Drawer CTA: keep accent with high specificity (guard) ---- */
.drawer a.drawer-cta,
nav.drawer a.drawer-cta { background: var(--accent); color: var(--surface); }
.drawer a.drawer-cta:hover,
nav.drawer a.drawer-cta:hover { background: var(--accent-deep); color: var(--surface); }
