/* ============================================================
   KALPTEN GÜNLER — BRAND DESIGN SYSTEM
   Love letter, modernized — editorial aesthetic
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Paper & ink */
  --cream: #FBF6EF;
  --cream-2: #F4ECDF;
  --ink: #1C1410;
  --ink-soft: #4A3A30;
  --ink-mute: #8A7668;

  /* Accent */
  --rouge: #C43B3B;
  --rouge-deep: #8E1E1E;
  --blush: #F2C9BD;
  --gold: #C58B2E;

  /* Utility */
  --line: rgba(28, 20, 16, 0.12);
  --line-strong: rgba(28, 20, 16, 0.45);

  /* Typography scales */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-hand: 'Caveat', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --page-max: 1200px;
  --gutter: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body { overflow-x: hidden; min-height: 100vh; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--rouge); color: var(--cream); }

/* ===== FONT CLASSES ===== */
.serif { font-family: var(--font-serif); font-optical-sizing: auto; }
.hand { font-family: var(--font-hand); font-weight: 500; }
.italic { font-style: italic; }

/* ===== PAPER GRAIN OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rouge);
  display: inline-block;
}
.section-eyebrow {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rouge);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 12px;
}
.ital {
  font-style: italic;
  color: var(--rouge);
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.display-1 { font-size: clamp(48px, 6.8vw, 96px); line-height: 0.95; letter-spacing: -0.035em; }
.display-2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.display-3 { font-size: clamp(32px, 4vw, 56px); }

/* Highlight underline */
.stamp {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.stamp-under {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 14px;
  background: var(--blush);
  z-index: -1;
  opacity: 0.7;
  transform: skewX(-3deg);
}

/* ===== NAV ===== */
.brand-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, padding 0.2s;
}
.brand-nav.scrolled { border-bottom-color: var(--line); padding: 18px 56px; }
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.brand-nav.scrolled .brand-logo-img {
  height: 46px;
  transition: height 0.2s;
}
.brand-logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--rouge);
}
.brand-nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.brand-nav-links a {
  color: inherit;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.brand-nav-links a:hover { color: var(--rouge); }
.brand-nav-cta { display: flex; gap: 14px; align-items: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--rouge); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost {
  color: var(--ink);
  padding: 10px 18px;
}
.btn-ghost:hover { opacity: 0.6; }
.btn-large { padding: 16px 30px; font-size: 15px; }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "❋";
  color: var(--rouge);
  font-size: 20px;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== POSTCARDS ===== */
.postcard {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(28, 20, 16, 0.25), 0 2px 6px rgba(28, 20, 16, 0.05);
  border-radius: 4px;
  padding: 24px;
  position: relative;
}
.pc-header {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--rouge);
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-day {
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pc-day .ord {
  font-size: 24px;
  vertical-align: top;
  color: var(--rouge);
  margin-left: 4px;
}
.pc-body {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-family: var(--font-serif);
  font-style: italic;
}
.pc-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 58px;
  border: 1.5px dashed var(--rouge);
  padding: 4px;
  display: grid;
  place-items: center;
  color: var(--rouge);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  transform: rotate(-8deg);
}
.pc-photo {
  width: 100%;
  height: 130px;
  background: var(--blush);
  border-radius: 2px;
  margin: 12px 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pc-note {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--ink);
  transform: rotate(-1.5deg);
  line-height: 1.2;
}
.pc-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 8px;
  margin-top: 10px;
  width: 100%;
}
.heart-float {
  position: absolute;
  color: var(--rouge);
  opacity: 0.7;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 30px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--ink);
}
.stat-num .plus {
  color: var(--rouge);
  font-style: italic;
  font-size: 48px;
  vertical-align: top;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ===== STEPS (dark section) ===== */
.how-section {
  padding: 120px 56px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: "❤";
  position: absolute;
  font-size: 600px;
  color: var(--rouge-deep);
  right: -80px;
  top: -100px;
  opacity: 0.15;
  font-family: var(--font-serif);
  line-height: 1;
  pointer-events: none;
}
.how-head {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  flex-wrap: wrap;
}
.how-head h2 {
  font-weight: 300;
  font-size: 64px;
  max-width: 600px;
}
.how-head h2 .ital { color: var(--blush); }
.how-head .caption {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--blush);
  transform: rotate(-1deg);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 2;
}
.step {
  position: relative;
  padding-top: 40px;
  border-top: 1px solid rgba(251, 246, 239, 0.2);
}
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 90px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--rouge);
  margin-bottom: 30px;
  letter-spacing: -0.05em;
}
.step h3 {
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step p {
  font-size: 15px;
  color: rgba(251, 246, 239, 0.7);
  line-height: 1.6;
}

/* ===== FEATURES GRID ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.feat { display: flex; flex-direction: column; gap: 14px; }
.feat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.feat:hover .feat-icon {
  background: var(--rouge);
  color: var(--cream);
  border-color: var(--rouge);
}
.feat h3 {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.feat p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== PRODUCT GRID (editorial) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--cream);
  padding: 44px 38px 38px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
}
.product-card:hover { background: var(--cream-2); }
.product-card:hover .p-icon { transform: rotate(6deg) scale(1.08); }
.product-card:hover .p-arrow { transform: translateX(6px); }
.p-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 40px;
}
.p-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--rouge);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.p-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.p-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 28px;
}
.p-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  width: fit-content;
}
.p-arrow { transition: transform 0.3s; }

/* ===== TESTIMONIAL ===== */
.testi-section {
  padding: 120px 56px;
  background: var(--cream-2);
  position: relative;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 0.5;
  color: var(--rouge);
  opacity: 0.25;
  margin-bottom: 10px;
  font-style: italic;
}
.testi-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 860px;
  margin: 0 auto 40px;
  color: var(--ink);
}
.testi-quote .highlight { background: var(--blush); padding: 0 6px; }
.testi-author {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rouge);
}
.testi-location {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* Testimonial grid (multiple) */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--rouge);
  opacity: 0.3;
}
.testi-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 16px 0 24px;
}
.testi-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testi-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
}
.testi-card .who { font-size: 14px; color: var(--ink); }
.testi-card .where {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== PRICING ===== */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.price-tab {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.price-tab:hover { border-color: var(--ink-soft); color: var(--ink); }
.price-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--cream);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--cream-2);
}
.price-card.featured::before {
  content: "Popüler";
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--rouge);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 4px 4px;
}
.price-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.price-card .price-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-card .price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-card .price .currency { font-size: 24px; vertical-align: top; color: var(--rouge); }
.price-card .price-period {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: "✓";
  color: var(--rouge);
  font-weight: 600;
  flex-shrink: 0;
}
.price-features li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; justify-content: center; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  color: var(--rouge);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding-top: 16px;
  max-width: 720px;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: transparent;
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-cover {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blush);
  margin-bottom: 20px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.blog-excerpt {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-band {
  padding: 160px 56px;
  text-align: center;
  position: relative;
}
.cta-band h2 {
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  line-height: 1;
}
.cta-band p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-small {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-mute);
}
.cta-small .hand-note {
  color: var(--rouge);
  font-family: var(--font-hand);
  font-size: 18px;
}

/* ===== FOOTER ===== */
.brand-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 56px 40px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251, 246, 239, 0.15);
  max-width: var(--page-max);
  margin: 0 auto;
}
.foot-brand h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.foot-brand p {
  font-size: 14.5px;
  color: rgba(251, 246, 239, 0.6);
  line-height: 1.6;
  max-width: 320px;
}
.foot-col h4 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-col a {
  color: rgba(251, 246, 239, 0.75);
  font-size: 14.5px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--rouge); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(251, 246, 239, 0.5);
  max-width: var(--page-max);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== SECTION WRAPPERS ===== */
.section {
  padding: 130px 56px 100px;
  max-width: var(--page-max);
  margin: 0 auto;
}
.section-tight { padding: 80px 56px; max-width: var(--page-max); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head--center { display: block; text-align: center; }
.section-title {
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.section-intro {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 420px;
  justify-self: end;
}
.section-head--center .section-intro {
  margin: 16px auto 0;
  justify-self: center;
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: 80px 40px 40px;
  display: none;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ===== AUTH PAGES ===== */
.auth-wrap {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 60px 24px;
  position: relative;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 40px 80px -40px rgba(28, 20, 16, 0.15);
}
.auth-head {
  text-align: center;
  margin-bottom: 32px;
}
.auth-head .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.auth-head h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.auth-head h1 .ital { color: var(--rouge); font-style: italic; }
.auth-head p {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
}

.auth-field { margin-bottom: 18px; }
.auth-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.auth-field input {
  width: 100%;
  padding: 13px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.15s;
}
.auth-field input:focus { border-color: var(--rouge); }
.auth-field .hint {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
}
.auth-row label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-soft);
  cursor: pointer;
}
.auth-row a {
  color: var(--rouge);
  font-family: var(--font-hand);
  font-size: 17px;
}

.auth-btn {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.auth-btn:hover { background: var(--rouge); transform: translateY(-1px); }

.auth-alert {
  border-radius: 3px;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.auth-alert-error { background: rgba(196, 59, 59, 0.08); border: 1px solid rgba(196, 59, 59, 0.25); color: var(--rouge-deep); }
.auth-alert-success { background: rgba(42, 157, 143, 0.08); border: 1px solid rgba(42, 157, 143, 0.25); color: #2a7f75; }
.auth-alert ul { list-style: disc; padding-left: 18px; margin: 0; }

.auth-footer-link {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 24px;
}
.auth-footer-link a {
  font-family: var(--font-hand);
  color: var(--rouge);
  font-size: 18px;
  margin-left: 4px;
}

/* ===== BLOG LIST ===== */
.blog-hero {
  padding: 80px 56px 60px;
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 40px 56px 100px;
}
.blog-list-card {
  background: transparent;
  transition: transform 0.2s;
}
.blog-list-card:hover { transform: translateY(-4px); }
.blog-list-card .cover {
  aspect-ratio: 4/3;
  background: var(--blush);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.blog-list-card .cover img { width: 100%; height: 100%; object-fit: cover; }

/* ===== BLOG ARTICLE ===== */
.article-head {
  padding: 80px 24px 40px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.article-head .category {
  font-family: var(--font-hand);
  color: var(--rouge);
  font-size: 24px;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 16px;
}
.article-head h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}
.article-head .meta {
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.article-cover {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 2em 0 0.6em;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  margin: 1.6em 0 0.5em;
  color: var(--ink);
}
.article-body a { color: var(--rouge); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 3px solid var(--rouge);
  padding: 8px 0 8px 24px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--ink-soft);
}
.article-body img { border-radius: 4px; margin: 1.5em 0; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.article-body li { margin-bottom: 0.4em; }
.article-body code {
  background: var(--cream-2);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.88em;
  font-family: 'SF Mono', Consolas, monospace;
}

/* ===== PLANS PAGE ===== */
.plans-hero {
  padding: 80px 24px 40px;
  text-align: center;
}
.plans-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-mute);
}
.trust-row > div {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 900px) {
  .auth-card { padding: 36px 28px; }
  .blog-list-grid { grid-template-columns: 1fr; padding: 24px 24px 60px; gap: 32px; }
  .blog-hero { padding: 60px 24px 40px; }
  .article-head { padding: 60px 24px 32px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .brand-nav { padding: 18px 24px; }
  .brand-nav-links, .brand-nav-cta > .btn-ghost, .brand-nav-cta > a.btn:not(.btn-primary) { display: none; }
  .mobile-menu-btn { display: inline-flex; }

  .section, .section-tight, .cta-band, .how-section, .testi-section, .brand-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .section { padding-top: 80px; padding-bottom: 60px; }
  .cta-band { padding-top: 100px; padding-bottom: 100px; }
  .how-section { padding-top: 80px; padding-bottom: 80px; }
  .testi-section { padding-top: 80px; padding-bottom: 80px; }

  .section-head,
  .how-head { grid-template-columns: 1fr; gap: 20px; }
  .section-intro { justify-self: start; }
  .section-title, .how-head h2 { font-size: 44px; }

  .product-grid,
  .how-steps,
  .feat-grid,
  .stats-grid,
  .testi-grid,
  .blog-grid { grid-template-columns: 1fr; gap: 2px; }
  .feat-grid { gap: 40px; }
  .stats-grid { gap: 40px; }
  .stat { border-left: none; padding: 0; }
  .testi-grid, .blog-grid { gap: 32px; }

  .how-head h2 { font-size: 40px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .foot-top { grid-template-columns: 1fr; }
  .quote-mark { font-size: 140px; }
  .stat-num { font-size: 54px; }
  .marquee-track span { font-size: 22px; }
}
