/* ============================================================
   Mor Ova Çiftliği — lavanta balı longread
   Palette: bg #FBF4E6 / surface #FFF9EE / ink #2A231A
   accent #5E4B8B (lavender) / accent-2 #D89A2D (honey)
   Display type: Fraunces (soft, warm, artisanal editorial)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&display=swap');

:root {
  --font-display: "Fraunces", "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: Georgia, "Times New Roman", serif;
  --bg: #FBF4E6;
  --surface: #FFF9EE;
  --surface-2: #F6ECD8;
  --ink: #2A231A;
  --ink-soft: #5b5142;
  --ink-faint: #877a67;
  --accent: #5E4B8B;
  --accent-deep: #423463;
  --accent-2: #D89A2D;
  --accent-2-deep: #a9741d;
  --line: rgba(42, 35, 26, 0.14);
  --line-strong: rgba(42, 35, 26, 0.28);
  --gold-line: linear-gradient(90deg, rgba(216,154,45,0), #D89A2D 12%, #e6b45a 50%, #D89A2D 88%, rgba(216,154,45,0));
  --header-h: 76px;
  --container: 1080px;
  --shadow-soft: 0 18px 44px -28px rgba(66, 52, 99, 0.45);
  --shadow-lift: 0 26px 60px -30px rgba(66, 52, 99, 0.55);
  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: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-optical-sizing: auto;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 40, "WONK" 0;
}

/* confident section type scale with rhythm */
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.08; }
h3 { font-size: clamp(1.35rem, 2.7vw, 1.9rem); }
h4 { font-size: clamp(1.08rem, 2vw, 1.24rem); }
/* section headers carry a comfortable measure so they never sprawl */
section > .container > h2 { max-width: 24ch; }

p { margin: 0 0 1.15em; }
a { color: var(--accent); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--accent-2-deep); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

section { padding-block: clamp(48px, 8vw, 104px); }

.eyebrow {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent-2);
  display: inline-block;
}

.sec-num {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent-2-deep);
  letter-spacing: 0.14em;
}

.lead { font-size: clamp(1.12rem, 2.4vw, 1.4rem); color: var(--ink-soft); }

/* gold rule divider */
.gold-rule {
  height: 1px;
  border: 0;
  background: var(--gold-line);
  margin: clamp(28px, 5vw, 52px) 0;
}

.signature {
  font-family: "Segoe Script", "Brush Script MT", "Book Antiqua", cursive;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-deep);
  transform: rotate(-3deg);
  display: inline-block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--surface);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 244, 230, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 244, 230, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.22);
  border-bottom-color: var(--line);
  height: 64px;
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink); }
.brand svg { flex: 0 0 auto; color: var(--accent); }
.brand b { color: var(--accent); font-weight: 600; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav-desktop a {
  position: relative;
  font-family: Georgia, serif;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 4px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--accent-2);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid var(--ink);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface) !important;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 200ms cubic-bezier(.2,.7,.2,1);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  background: rgba(94,75,139,0.08);
  box-shadow: 0 10px 24px -16px rgba(94,75,139,0.55);
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle:hover span,
.nav-toggle[aria-expanded="true"] span { background: var(--accent); }
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), opacity 180ms ease, top 240ms ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.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); }

main { padding-top: var(--header-h); }
:where(main) section[id], [id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ============================================================
   DRAWER (mobile)
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  z-index: 1050;
  padding: calc(var(--header-h) + 16px) 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 1.24rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, transform 240ms ease, opacity 240ms ease;
}
/* staggered reveal of links as the drawer slides in */
.drawer a { opacity: 0; transform: translateX(18px); }
.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: 90ms; }
.drawer.is-open a:nth-child(2) { transition-delay: 140ms; }
.drawer.is-open a:nth-child(3) { transition-delay: 190ms; }
.drawer.is-open a:nth-child(4) { transition-delay: 240ms; }
.drawer.is-open a:nth-child(5) { transition-delay: 290ms; }
.drawer.is-open a:nth-child(6) { transition-delay: 340ms; }
.drawer.is-open a:nth-child(7) { transition-delay: 390ms; }
.drawer a:hover { color: var(--accent); transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .drawer a { opacity: 1; transform: none; transition: none; }
}
.drawer .drawer-cta {
  margin-top: 18px;
  background: var(--accent);
  color: var(--surface) !important;
  text-align: center;
  border-radius: 999px;
  border-bottom: 0;
  padding: 14px 0;
  font-style: normal;
  font-size: 1rem;
}
.drawer .drawer-cta:hover { background: var(--accent-deep); color: var(--surface) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-primary .arr { transition: transform 220ms ease; }
.btn-primary:hover .arr { transform: translateX(4px); }
.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);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-honey {
  background: var(--accent-2);
  color: #3a2905;
  border-color: var(--accent-2);
}
.btn-honey:hover, .btn-honey:focus-visible {
  background: var(--accent-2-deep);
  color: var(--surface);
  border-color: var(--accent-2-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -24px rgba(169,116,29,0.7);
}

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(72px, 12vh, 140px);
  background: #201830;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  will-change: transform;
}
/* slow ken-burns — only with JS + motion allowed */
.js .hero-bg { animation: heroKen 22s ease-in-out infinite alternate; }
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .js .hero-bg { animation: none; transform: scale(1.04); }
}
/* dark gradient overlay for text contrast >= 4.5:1 */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,32,0.30) 0%, rgba(20,14,32,0.05) 34%, rgba(20,14,32,0.62) 82%, rgba(16,11,26,0.82) 100%),
    linear-gradient(90deg, rgba(26,17,40,0.72) 0%, rgba(26,17,40,0.32) 46%, rgba(26,17,40,0) 78%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy { max-width: 720px; }
.hero .eyebrow {
  color: #f0c778;
  letter-spacing: 0.24em;
}
.hero .eyebrow::before { background: #f0c778; }
.hero-title {
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 1.04;
  color: #fdf7ec;
  font-style: normal;
  letter-spacing: -0.015em;
  margin-bottom: 0.36em;
  text-shadow: 0 2px 30px rgba(12,8,20,0.5);
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title em {
  font-style: italic;
  color: #f0c778;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
  color: rgba(253,247,236,0.9);
  max-width: 52ch;
  margin-bottom: 1.7em;
  text-shadow: 0 1px 16px rgba(12,8,20,0.45);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-ghost {
  color: #fdf7ec;
  border-color: rgba(253,247,236,0.5);
  background: rgba(255,255,255,0.04);
}
.hero-ghost:hover, .hero-ghost:focus-visible {
  background: #fdf7ec;
  color: var(--accent-deep);
  border-color: #fdf7ec;
}
/* thin stat strip over the photo */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 52px);
  list-style: none;
  margin: clamp(30px, 5vw, 46px) 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(253,247,236,0.22);
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-stats b {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #f0c778;
  line-height: 1;
  font-weight: 600;
}
.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,247,236,0.72);
}
/* scroll hint */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(253,247,236,0.55);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: #f0c778;
}
.js .hero-scroll span { animation: heroScroll 1.8s ease-in-out infinite; }
@keyframes heroScroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(9px); opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }

/* hero fade-up reveal (no-js safe: visible by default) */
.hero-copy > * {
  opacity: 1;
  transform: none;
}
.js .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroUp 0.9s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(0.15s + var(--d, 0) * 0.12s);
}
.js .hero-copy .eyebrow { --d: 0; }
.js .hero-copy .hero-title { --d: 1; }
.js .hero-copy .hero-sub { --d: 2; }
.js .hero-copy .hero-cta-row { --d: 3; }
.js .hero-copy .hero-stats { --d: 4; }
@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .js .hero-copy > * { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   SIGNATURE — gold honey-flow line drawn along scroll
   ============================================================ */
.flow-rail {
  position: fixed;
  left: 0; top: 0;
  width: 100%;
  height: 4px;
  z-index: 1075;
  pointer-events: none;
  background: rgba(216,154,45,0.12);
}
.flow-rail .flow-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 60%, #f0c778);
  box-shadow: 0 0 10px rgba(216,154,45,0.6);
  transition: width 120ms linear;
}

/* ============================================================
   STORY / longread sections
   ============================================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.story-block.reverse .story-media { order: -1; }
.story-text h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
.story-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.story-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.story-media:hover img { transform: scale(1.05); }
.story-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-style: italic;
  color: #f3ecdd;
  background: linear-gradient(0deg, rgba(42,35,26,0.72), rgba(42,35,26,0));
}
.pull-quote {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  line-height: 1.4;
  color: var(--accent-deep);
  max-width: 22ch;
  border-left: 3px solid var(--accent-2);
  padding-left: clamp(18px, 3vw, 30px);
}

.band {
  background:
    radial-gradient(90% 120% at 10% 0%, rgba(216,154,45,0.10), rgba(216,154,45,0) 60%),
    var(--accent-deep);
  color: #f3ecdd;
}
.band h2, .band h3 { color: #fbf4e6; }
.band .eyebrow { color: #e6b45a; }
.band .eyebrow::before { background: #e6b45a; }
.band .sec-num { color: #e6b45a; }
.band p { color: #ded4e8; }

/* stats counter row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 48px);
}
.stat { text-align: center; }
.stat b {
  display: block;
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #f0c778;
  line-height: 1;
}
.stat span { font-size: 0.85rem; color: #ded4e8; letter-spacing: 0.04em; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 30px);
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.prod-card .pic {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.prod-card .pic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.prod-card:hover .pic img { transform: scale(1.06); }
.prod-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,249,238,0.94);
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.prod-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prod-body h3 { font-size: 1.4rem; margin-bottom: 0.3em; }
.prod-body p { font-size: 0.98rem; color: var(--ink-soft); flex: 1; }
.prod-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.prod-price .amt {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-2-deep);
}
.prod-price .unit { font-size: 0.82rem; color: var(--ink-faint); }

/* small icon disc */
.icn {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(94,75,139,0.10);
  color: var(--accent);
  flex: 0 0 auto;
}
.band .icn { background: rgba(240,199,120,0.16); color: #f0c778; }

/* feature list (uretim) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(26px, 4vw, 42px);
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  min-width: 0;
}
.feature .icn { grid-row: 1 / 3; }
.feature h4 { font-size: 1.15rem; margin: 4px 0 6px; }
.feature p { font-size: 0.95rem; margin: 0; }
.band .feature h4 { color: #fbf4e6; }
.band .feature p { color: #d5cbe2; }

/* ============================================================
   SEASON / harvest notes — vertical timeline
   ============================================================ */
.timeline {
  position: relative;
  margin-top: clamp(26px, 4vw, 44px);
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-2), rgba(216,154,45,0.2));
}
.tl-item {
  position: relative;
  padding-bottom: clamp(26px, 4vw, 42px);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent-2);
  box-shadow: 0 0 0 4px var(--bg);
}
.tl-when {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2-deep);
}
.tl-item h4 { font-size: 1.3rem; margin: 2px 0 6px; }
.tl-item p { margin: 0; color: var(--ink-soft); }

.season-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 18px);
  margin-top: clamp(26px, 4vw, 44px);
}
.season-media figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.season-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
.season-media figure:hover img { transform: scale(1.05); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 0; margin-top: clamp(24px,4vw,40px); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(4px, 1vw, 10px);
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  position: relative;
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--accent-2-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; }
.faq-item[open] summary .plus { transform: rotate(135deg); }
.faq-item > .answer {
  height: 0;
  padding: 0 clamp(4px, 1vw, 10px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .answer {
  height: auto;
  padding-block-end: 24px;
}
.faq-item > .answer p { margin: 0; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .faq-item > .answer { transition: none; }
}

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-family: Georgia, serif;
}
.field input,
.field select,
.field textarea {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  padding: 11px 4px;
  transition: border-color 220ms ease, background 220ms ease;
  border-radius: 4px 4px 0 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--surface-2);
}
.field.kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field.kvkk label { font-size: 0.9rem; line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 4px 0 0;
  accent-color: var(--accent);
}
.form-note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 4px; }

/* ============================================================
   CONTACT cards
   ============================================================ */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: clamp(14px, 2.4vw, 22px);
}
.channel {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
  min-width: 0;
}
.channel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}
.channel .icn { margin-bottom: 14px; transition: transform 260ms ease; }
.channel:hover .icn { transform: scale(1.08); }
.channel h4 { font-size: 1.12rem; margin: 0 0 4px; }
.channel .val {
  font-family: Georgia, serif;
  font-style: normal;
  font-size: 1.02rem;
  color: var(--accent-deep);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.channel small { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--ink-faint); }

/* hours */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: clamp(20px, 3vw, 32px);
}
.hours-grid .day {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hours-grid .day.today { border-color: var(--accent-2); background: rgba(216,154,45,0.08); }
.hours-grid .day b { font-family: Georgia, serif; font-style: italic; font-size: 0.92rem; }
.hours-grid .day span { font-variant-numeric: tabular-nums; font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   TABLE
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
table th {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  color: var(--accent-deep);
  background: var(--surface-2);
}
table tr:last-child td { border-bottom: 0; }

/* ============================================================
   NOTES / news block
   ============================================================ */
.notes-list { display: grid; gap: 14px; margin-top: 22px; }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.note-row time {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent-2-deep);
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS — editorial grid
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 26px);
  margin-top: clamp(26px, 4vw, 44px);
}
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: 12px;
  padding: 24px 26px;
}
.testi p { font-style: italic; font-family: "Book Antiqua", Palatino, serif; color: var(--ink); }
.testi .who { font-size: 0.86rem; color: var(--ink-faint); font-style: normal; font-family: Georgia, serif; }
.testi .who b { color: var(--accent-deep); font-style: italic; }

/* pricing tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(26px, 4vw, 44px);
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 28px;
}
.tier.featured { border-color: var(--accent); box-shadow: var(--shadow-soft); position: relative; }
.tier.featured::before {
  content: "En Çok Tercih Edilen";
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: var(--surface);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.tier h3 { font-size: 1.4rem; margin-bottom: 4px; }
.tier .price {
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 2.1rem;
  color: var(--accent-2-deep);
  margin: 6px 0 2px;
}
.tier .price small { font-size: 0.9rem; color: var(--ink-faint); font-style: normal; }
.tier ul { list-style: none; padding: 0; margin: 16px 0 20px; display: grid; gap: 9px; flex: 1; }
.tier li { font-size: 0.94rem; padding-left: 26px; position: relative; color: var(--ink-soft); }
.tier li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-2-deep);
  border-bottom: 2px solid var(--accent-2-deep);
  transform: rotate(-45deg);
}
.tier li.no { color: var(--ink-faint); }
.tier li.no::before {
  border: 0; width: 12px; height: 12px; top: 6px;
  background:
    linear-gradient(45deg, transparent 45%, var(--ink-faint) 45%, var(--ink-faint) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--ink-faint) 45%, var(--ink-faint) 55%, transparent 55%);
  transform: none;
}
.tier .btn { justify-content: center; }

/* process steps */
.steps { display: grid; gap: 14px; margin-top: clamp(26px, 4vw, 44px); counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.step .num {
  counter-increment: step;
  font-family: "Book Antiqua", Palatino, serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface-2);
}
.step .num::before { content: counter(step); }
.step h4 { margin: 6px 0 4px; font-size: 1.14rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.step .when { font-size: 0.8rem; color: var(--accent-2-deep); font-style: italic; white-space: nowrap; padding-top: 10px; }

/* team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(26px, 4vw, 44px);
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.member .ph {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  position: relative;
}
.member .ph img { width: 100%; height: 100%; object-fit: cover; }
.member .body { padding: 20px 22px 24px; }
.member .body h4 { font-size: 1.2rem; margin-bottom: 2px; }
.member .role { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-2-deep); margin-bottom: 10px; display: block; }
.member .body p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #ded4c5;
  padding-block: clamp(44px, 6vw, 72px);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 44px);
}
.site-footer h4 {
  color: #f0c778;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 16px;
}
.site-footer a { color: #ded4c5; }
.site-footer a:hover { color: #f0c778; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: "Book Antiqua", Palatino, serif; font-style: italic; font-size: 1.3rem; color: #fbf4e6; margin-bottom: 14px; }
.footer-brand svg { color: #f0c778; }
.footer-links { display: grid; gap: 9px; list-style: none; padding: 0; margin: 0; }
.footer-meta {
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #a99f8f;
}
.footer-meta a { color: #a99f8f; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.4);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: Georgia, serif;
  font-size: 0.92rem;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
/* accept + reject carry equal visual weight (no dark-pattern nudging); settings is the quiet tertiary */
.cookie-actions [data-consent="accept"] { background: var(--ink); color: var(--surface); border-color: var(--ink); font-weight: 600; }
.cookie-actions [data-consent="accept"]:hover { background: var(--accent); border-color: var(--accent); }
.cookie-actions [data-consent="reject"] { background: var(--surface); color: var(--ink); border-width: 2px; border-color: var(--ink); font-weight: 600; }
.cookie-actions [data-consent="reject"]:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-actions [data-consent="settings"] { flex: 0 1 auto; background: transparent; color: var(--ink-soft); border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions [data-consent="settings"]:hover { color: var(--accent); }
@media (min-width: 640px) {
  .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(0,0,0,0.5);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal .box {
  background: var(--surface);
  border-radius: 18px;
  max-width: 480px; width: 100%;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-lift);
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal h3 { font-size: 1.5rem; }
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.toggle-row .t-txt strong { display: block; font-family: "Book Antiqua", Palatino, serif; font-style: italic; }
.toggle-row .t-txt span { font-size: 0.86rem; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; margin-top: 4px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track {
  position: absolute; inset: 0;
  background: var(--line-strong);
  border-radius: 999px;
  transition: background 220ms ease;
}
.switch .track::before {
  content: ""; position: absolute;
  left: 3px; top: 3px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1);
}
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-2-deep); opacity: 0.7; }
.cookie-modal .box .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-block: clamp(48px, 8vw, 96px) clamp(30px, 5vw, 56px);
  background:
    radial-gradient(90% 120% at 90% 0%, rgba(94,75,139,0.10), rgba(94,75,139,0) 55%),
    linear-gradient(180deg, #f3ead7, var(--bg));
  min-height: 240px;
  display: flex;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2rem, 5.4vw, 3.6rem); }
.page-hero p { font-size: clamp(1.05rem, 2.4vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; }

.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.5em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.thanks-wrap {
  min-height: 62vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.thanks-wrap .icn { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 20px; }
.thanks-wrap h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.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; }
}

/* line-draw gold rule that draws left→right on reveal */
.draw-rule {
  height: 2px;
  background: var(--gold-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.draw-rule.is-in { transform: scaleX(1); }
html.no-js .draw-rule { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .draw-rule { transform: scaleX(1); } }

/* wind sway for hero stems */
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2.4deg); }
}
.stem { transform-box: fill-box; transform-origin: bottom center; animation: sway 7s ease-in-out infinite; animation-delay: calc(var(--i, 0) * -0.7s); }
@media (prefers-reduced-motion: reduce) { .stem { animation: none; } }

/* honey drip on badge */
@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hero-badge { animation: breathe 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }

.long-copy { max-width: 66ch; }
.long-copy p { font-size: 1.06rem; }

.mt-0 { margin-top: 0; }
.center { text-align: center; }
.disclaimer { font-size: 0.84rem; color: var(--ink-faint); font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .story-block { grid-template-columns: 1fr; }
  .story-block.reverse .story-media { order: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .season-media { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: auto 1fr; }
  .step .when { grid-column: 2; padding-top: 0; }
}
@media (max-width: 640px) {
  section { padding-block: clamp(40px, 11vw, 64px); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; align-items: center; padding-block: clamp(96px, 16vh, 130px) clamp(60px, 12vh, 90px); }
  .hero-stats { gap: 16px 26px; }
  .hero-stats li { flex: 0 0 auto; }
  .icn { width: 40px; height: 40px; }
  .prod-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cookie-actions button { flex: 1 1 100%; }
}

.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;
}

/* ============================================================
   PREMIUM UPGRADE LAYER v2 — Fraunces display + honeyed detail
   Strictly on-theme: heritage lavender-honey farm, editorial.
   All decorative motion is transform/opacity/filter only and is
   disabled under prefers-reduced-motion at the foot of this file.
   ============================================================ */

/* --- route display accents to Fraunces (labels stay Georgia) --- */
.brand,
.footer-brand,
.sec-num,
.pull-quote,
.hero-stats b,
.stat b,
.prod-price .amt,
.tier .price,
.step .num,
.faq-item summary,
.drawer a,
.testi p,
.toggle-row .t-txt strong,
.hours-grid .day b,
table th,
.cookie-modal h3,
.cookie-banner h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

/* Fraunces makes big display type sing — give the hero its softness */
.hero-title { font-variation-settings: "SOFT" 60, "WONK" 0; }
.pull-quote, .testi p { font-variation-settings: "SOFT" 70, "WONK" 1; }

/* --- eyebrow: refined kicker with gradient hairline --- */
.eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
}
.eyebrow::before {
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), rgba(216,154,45,0));
  border-radius: 2px;
}

/* --- generous section rhythm + hairline between light sections --- */
section > .container > h2 + p,
section > .container > p.lead { margin-top: -0.2em; }
main > section + section:not(.band):not([class*="page-hero"]) {
  border-top: 1px solid var(--line);
}
/* the inner page-hero already carries a gilt underline — no double rule */
.page-hero + section { border-top: none; }

/* --- STORY: refined media frame --- */
.story-media {
  border-radius: 18px;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(94,75,139,0.08);
}
.story-media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(253,247,236,0.16);
  pointer-events: none;
}

/* --- PULL QUOTE: hanging honey mark --- */
.pull-quote { position: relative; }
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: clamp(4px, 1.4vw, 12px); top: -0.44em;
  font-family: var(--font-display);
  font-size: 2.6em;
  line-height: 1;
  color: var(--accent-2);
  opacity: 0.45;
}

/* --- BAND: layered depth + honeycomb texture wash --- */
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(240,199,120,0.05) 0 2px, transparent 3px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}

/* stat numbers: tabular + subtle glow */
.stat b, .hero-stats b { font-variant-numeric: tabular-nums; font-variation-settings: "SOFT" 50; }
.band .stat b { text-shadow: 0 0 24px rgba(240,199,120,0.25); }

/* --- CARDS: shared premium hover, honey-tinted lift --- */
.prod-card, .tier, .testi, .channel, .step, .member, .feature {
  will-change: auto;
}
.prod-card {
  position: relative;
  background:
    linear-gradient(180deg, var(--surface), #fffdf7);
}
.prod-card::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--gold-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.prod-card:hover::after, .prod-card:focus-within::after { transform: scaleX(1); }
.prod-card:hover {
  box-shadow: 0 30px 66px -34px rgba(94,75,139,0.55), 0 8px 22px -18px rgba(216,154,45,0.4);
  border-color: rgba(94,75,139,0.28);
}
.prod-tag {
  backdrop-filter: blur(4px);
  border: 1px solid rgba(94,75,139,0.14);
  font-weight: 600;
  box-shadow: 0 6px 16px -10px rgba(66,52,99,0.5);
}
.prod-price .amt { font-weight: 600; font-variation-settings: "SOFT" 40; }

/* --- FEATURE icons: ringed disc, gentle motion on hover --- */
.icn {
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(94,75,139,0.12);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), background 320ms ease, box-shadow 320ms ease;
}
.band .icn { box-shadow: inset 0 0 0 1px rgba(240,199,120,0.22); }
.feature { transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.feature:hover { transform: translateY(-3px); }
.feature:hover .icn {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(94,75,139,0.16);
}
.band .feature:hover .icn { background: rgba(240,199,120,0.24); }

/* --- STATS on band: dividers between counters --- */
.stats-row { position: relative; }
.stat { position: relative; padding-inline: clamp(6px, 1vw, 14px); }

/* --- TIMELINE: glowing honey node, lit accent on active item --- */
.tl-item::before {
  box-shadow: 0 0 0 4px var(--bg), 0 0 14px -2px rgba(216,154,45,0.55);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), background 300ms ease;
}
.tl-item:hover::before { transform: scale(1.18); background: var(--accent-2); }
.tl-item.is-lit::before { background: var(--accent-2); transform: scale(1.15); }
.tl-item h4 { transition: color 260ms ease; }
.tl-item.is-lit h4 { color: var(--accent-deep); }

/* --- PROCESS steps: honey-gilt number, hover slide --- */
.step {
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(94,75,139,0.24);
}
.step .num {
  background: radial-gradient(120% 120% at 30% 20%, #fff6e4, var(--surface-2));
  color: var(--accent-2-deep);
  border-color: rgba(216,154,45,0.4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 8px 18px -12px rgba(216,154,45,0.5);
  font-weight: 600;
}
.step:hover .num { color: var(--accent); border-color: var(--accent); }

/* --- TESTIMONIALS: hanging quote, gentle stagger offset --- */
.testi {
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, border-color 320ms ease;
  overflow: hidden;
}
.testi::before {
  content: "\201C";
  position: absolute; top: 4px; right: 18px;
  font-family: var(--font-display);
  font-size: 4.4rem; line-height: 1;
  color: var(--accent);
  opacity: 0.12;
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -34px rgba(94,75,139,0.5);
  border-left-color: var(--accent-2-deep);
}
@media (min-width: 780px) {
  .testi-grid > .testi:nth-child(2) { transform: translateY(22px); }
  .testi-grid > .testi:nth-child(2):hover { transform: translateY(18px); }
}

/* --- PRICING tiers: premium hover, gilt featured badge --- */
.tier {
  position: relative;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, border-color 320ms ease;
}
.tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 64px -34px rgba(94,75,139,0.5);
  border-color: rgba(94,75,139,0.24);
}
.tier.featured {
  background: linear-gradient(180deg, #fffdf7, var(--surface));
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(94,75,139,0.14);
}
.tier.featured::before {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  box-shadow: 0 8px 20px -10px rgba(66,52,99,0.6);
  font-weight: 600;
}
.tier .price { font-weight: 600; font-variation-settings: "SOFT" 40; }

/* --- CONTACT channels: honey underline reveal --- */
.channel { position: relative; overflow: hidden; }
.channel::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  background: var(--gold-line);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}
.channel:hover::after { transform: scaleX(1); }

/* --- FAQ: honey hover on summary --- */
.faq-item { transition: background 260ms ease; }
.faq-item summary { transition: color 220ms ease; }
.faq-item:hover summary,
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] { background: linear-gradient(90deg, rgba(94,75,139,0.04), transparent 60%); }

/* --- TABLE: zebra warmth + honey hover --- */
table tbody tr { transition: background 200ms ease; }
table tbody tr:nth-child(even) { background: rgba(246,236,216,0.5); }
table tbody tr:hover { background: rgba(216,154,45,0.09); }

/* --- MEMBER cards: lift + gilt frame --- */
.member { transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, border-color 320ms ease; }
.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -34px rgba(94,75,139,0.5);
  border-color: rgba(94,75,139,0.22);
}
.member .ph img { transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.member:hover .ph img { transform: scale(1.05); }

/* --- PAGE HERO (inner): honeycomb wash + gilt underline on h1 --- */
.page-hero { position: relative; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold-line);
}
.page-hero h1 { position: relative; }

/* --- BUTTONS: honey arrow + subtle sheen already; add press depth --- */
.btn-honey:active, .btn-primary:active, .btn-ghost:active { transform: translateY(0); }
.btn .arr { transition: transform 220ms ease; }
.btn:hover .arr { transform: translateX(4px); }

/* --- FOOTER: warm hairline lift on link hover --- */
.footer-links a { position: relative; transition: color 200ms ease, padding-left 240ms cubic-bezier(.2,.7,.2,1); }
.footer-links a:hover { padding-left: 8px; }
.footer-links a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: #f0c778;
  transform: translateY(-50%); transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.footer-links a:hover::before { width: 5px; }

/* --- reveal: soften + tiny scale for a premium settle --- */
.reveal { transform: translateY(30px) scale(0.995); }
.reveal.is-in { transform: none; }
html.no-js .reveal { transform: none; }

/* keep hover-lift snappy but honor reduced motion for decorative bits */
@media (prefers-reduced-motion: reduce) {
  .prod-card::after, .channel::after,
  .feature, .feature:hover .icn, .step, .testi, .tier, .member,
  .footer-links a { transition: none !important; }
  .testi-grid > .testi:nth-child(2) { transform: none !important; }
  .tl-item.is-lit::before, .tl-item:hover::before { transform: none; }
  .reveal { transform: none !important; }
}

/* --- responsive safety for the new scale --- */
@media (max-width: 480px) {
  section > .container > h2 { max-width: none; }
  .story-text .long-copy:first-of-type::first-letter { font-size: 2.7em; }
  .testi::before { font-size: 3.4rem; right: 12px; }
}
