/* ==========================================================
   Revive & Co. — Editorial landing page
   Cream & ink palette · Playfair Display + Montserrat
========================================================== */
:root {
  --cream: #F5EFE4;
  --cream-2: #EFE7D7;
  --paper: #FAF6EE;
  --white: #FFFDF7;
  --ink: #141311;
  --ink-2: #2A2824;
  --mute: #6B665C;
  --dim: #9A9486;
  --line: rgba(20, 19, 17, 0.14);
  --line-soft: rgba(20, 19, 17, 0.08);

  --accent: #C5331F;        /* editorial red */
  --accent-ink: #1A0A07;
  --accent-soft: #F3D3CB;

  --gold: #B48A3C;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --ease: cubic-bezier(.22,.8,.2,1);
}

/* ==========================================================
   Base
========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02';
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* -------- Crossout marker -------- */
.crossout {
  position: relative;
  display: inline-block;
  color: var(--mute);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.crossout::before,
.crossout::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  pointer-events: none;
}
.crossout::before { top: 38%; transform: rotate(-4deg); }
.crossout::after  { top: 58%; transform: rotate(-4deg); opacity: 0; }

/* ==========================================================
   Buttons
========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 10px 30px -8px rgba(197, 51, 31, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 18px 38px -10px rgba(197, 51, 31, 0.65);
}
.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--link {
  padding: 14px 6px;
  background: none;
  color: var(--ink);
  letter-spacing: 0.12em;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
}
.btn--link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn--sm { padding: 10px 16px; font-size: 10px; letter-spacing: 0.14em; }
.btn--block { display: flex; width: 100%; }

/* ==========================================================
   Nav
========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 228, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 239, 228, 0.94);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand--lg { font-size: 28px; }
.brand__mark {
  font-family: var(--serif);
  font-style: normal;
  font-size: 22px;
  color: var(--accent);
}
.brand--lg .brand__mark { font-size: 26px; }
.brand__amp { font-style: italic; color: var(--accent); font-weight: 500; }

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .15s;
}
.nav__links a:hover { color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ==========================================================
   HERO — Masthead-style editorial
========================================================== */
.hero {
  padding: 32px 0 80px;
  position: relative;
}

/* Masthead strip */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 14px 0 18px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 48px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.masthead__left, .masthead__right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.masthead__right { text-align: right; }
.masthead__center {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.masthead__tag { color: var(--accent); }
.masthead__city { color: var(--mute); }
.masthead__date { color: var(--mute); }

/* Hero grid */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: flex-start;
}

.hero__meta {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.hero__meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero__meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ink);
}
.hero__meta-divider {
  width: 30px;
  height: 1.5px;
  background: var(--ink);
  margin-bottom: 16px;
}
.hero__meta-lede {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}

.hero__title-wrap {
  padding-top: 4px;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(44px, 7.8vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 32px;
  word-break: normal;
  overflow-wrap: normal;
}
.hero__title-row {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  flex-wrap: wrap;
  white-space: nowrap;
}
.hero__title-row--tight { margin-left: 0.35em; }
.hero__title .serif-italic {
  text-transform: none;
  font-weight: 500;
  font-style: italic;
  font-size: 1.08em;
  line-height: 0.95;
  color: var(--accent);
}
.hero__ornament {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 0.42em;
  margin-left: 0.15em;
  position: relative;
  top: -0.3em;
}
.hero__title .crossout {
  font-size: 1em;
  color: var(--mute);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
}

.hero__deck {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.hero__deck em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Editor's note column */
.hero__note {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.hero__note::before {
  content: "EDITOR'S NOTE";
  position: absolute;
  top: -9px; left: 20px;
  background: var(--cream);
  padding: 0 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.hero__note-stat { margin-bottom: 16px; }
.hero__note-num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero__note-lbl {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
  margin-top: 6px;
  line-height: 1.3;
}
.hero__note-divider {
  width: 30px; height: 1.5px;
  background: var(--ink);
  margin: 12px 0 14px;
}
.hero__note-text {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.drop-cap {
  float: left;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 48px;
  line-height: 0.85;
  margin: 4px 6px 0 0;
  color: var(--accent);
}
.hero__note-sig {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  text-align: right;
}

.hero__strip {
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero__strip span:first-child { color: var(--accent); }

/* ==========================================================
   Marquee
========================================================== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 22px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.01em;
  will-change: transform;
}
.marquee__track span { flex-shrink: 0; }
.marquee__track span:nth-child(even) { color: var(--accent); }
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================
   Section heads
========================================================== */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 72px;
}
.section-head--left { text-align: left; margin-left: 0; max-width: 380px; }
.section-head__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 500;
}
.section-head__title {
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 20px;
}
.section-head__title .serif-italic {
  text-transform: none;
  color: var(--accent);
}
.section-head__sub {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}

/* ==========================================================
   THE ISSUE
========================================================== */
.issue {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.issue__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.issue-card {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .25s var(--ease);
}
.issue-card:last-child { border-right: none; }
.issue-card:hover { background: var(--cream-2); }
.issue-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.issue-card h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.issue-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
}
.issue-card p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ==========================================================
   TEMPLATES
========================================================== */
.templates {
  padding: 130px 0;
  background: var(--cream);
}

.tpl-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.tpl-tab {
  text-align: left;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  background: var(--cream);
  transition: background .25s var(--ease), color .2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-2);
}
.tpl-tab:last-child { border-right: none; }
.tpl-tab:hover { background: var(--cream-2); }
.tpl-tab.is-active {
  background: var(--ink);
  color: var(--cream);
}
.tpl-tab__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.tpl-tab.is-active .tpl-tab__num { color: var(--accent-soft); }
.tpl-tab__name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tpl-tab.is-active .tpl-tab__name { color: var(--cream); }
.tpl-tab__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
}
.tpl-tab.is-active .tpl-tab__desc { color: rgba(245, 239, 228, 0.75); }

/* Panels */
.tpl-panel {
  display: none;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.tpl-panel.is-active {
  display: grid;
  animation: fadeUp .45s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tpl-panel__chapter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 14px;
}
.tpl-panel__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.tpl-panel__title .serif-italic {
  text-transform: none;
  color: var(--accent);
  font-weight: 500;
}
.tpl-panel__lead {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 480px;
}
.feat-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--ink-2);
}
.feat-list li::before {
  content: "✻";
  color: var(--accent);
  font-family: var(--serif);
  margin-top: -2px;
  font-size: 14px;
}

/* ----- Mock sites (bright) ----- */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(20,19,17,0.04),
    0 30px 80px -30px rgba(20,19,17,0.25),
    0 10px 20px -12px rgba(20,19,17,0.15);
}
.mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.mock__header--dark {
  background: var(--ink);
  color: var(--cream);
  border-bottom-color: var(--ink);
}
.mock__logo {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}
.mock__logo strong {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.mock__nav {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.mock__nav strong { color: var(--accent); }
.mock__eye {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

/* Template 1 — Domain Blogger mock */
.mock--editorial .mock__banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--accent);
  color: #fff;
}
.mock__banner-eye {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.85;
  margin-bottom: 4px;
}
.mock__banner-dom {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mock__banner-price {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 2px;
  opacity: 0.9;
}
.mock__banner-price span { opacity: 0.7; font-weight: 400; }
.mock__banner .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}
.mock__section-head {
  padding: 22px 24px 10px;
  border-bottom: 1px solid var(--line-soft);
}
.mock__section-head h4 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.mock__section-head h4 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
}
.mock__articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 10px 24px 24px;
}
.mock__article {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.mock__article:last-child { border-bottom: none; }
.mock__thumb {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 2px;
}
.mock__thumb--1 { background: linear-gradient(135deg, #1A1410 0%, var(--accent) 100%); }
.mock__thumb--2 { background: linear-gradient(135deg, var(--accent) 0%, #3A0A03 100%); }
.mock__thumb--3 { background: linear-gradient(135deg, var(--gold) 0%, #3A2200 100%); }
.mock__article-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mock__article-title {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}

/* Template 2 — Business blog mock */
.mock--business .mock__biz-hero {
  padding: 40px 28px 28px;
  background: var(--paper);
}
.mock__biz-eye {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.mock__biz-h1 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: 22px;
}
.mock__biz-h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
}
.mock__biz-ctas { display: flex; gap: 10px; }
.mock__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mock__svc {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.mock__svc:last-child { border-right: none; }
.mock__svc span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}
.mock__svc strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mock__journal {
  padding: 22px 28px 24px;
}
.mock__row {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-2);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.mock__row:last-child { border-bottom: none; }

/* Template 3 — Product */
.mock--product .mock__prod {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(135deg, var(--paper) 0%, #F8EBDE 100%);
  border-bottom: 1px solid var(--line);
}
.mock__prod-img {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, #2A2824 0%, #141311 70%);
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock__prod-ornament {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--accent);
}
.mock__prod-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 6px;
}
.mock__prod-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.mock__prod-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
}
.mock__prod-rating {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.mock__prod-rating span {
  color: var(--mute);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-left: 6px;
}
.mock__prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--serif);
}
.mock__prod-price strong { font-size: 28px; font-weight: 700; color: var(--ink); }
.mock__prod-price s { color: var(--mute); font-size: 15px; }
.mock__prod-save {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
}
.mock__prod-ctas { display: flex; gap: 8px; }
.mock__related { padding: 20px 28px 24px; }

/* ==========================================================
   PROCESS
========================================================== */
.process {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 40px 30px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.process-step:nth-child(2n) { border-right: none; }
.process-step:nth-last-child(-n+2) { border-bottom: 2px solid var(--ink); }
.process-step:hover { background: var(--cream); }
.process-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  color: var(--accent);
  line-height: 0.9;
}
.process-step__body h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process-step__body p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.process-step__body p em {
  font-style: italic;
  color: var(--accent);
}

/* ==========================================================
   FEATURES
========================================================== */
.features {
  padding: 130px 0;
  background: var(--cream);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.feat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.feat:nth-child(3n) { border-right: none; }
.feat:nth-last-child(-n+3) { border-bottom: none; }
.feat:hover { background: var(--paper); }
.feat__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}
.feat h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.feat p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ==========================================================
   LETTERS
========================================================== */
.letters {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--accent);
}
.letters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.letter {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  position: relative;
}
.letter::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.letter blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}
.letter figcaption {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.letter__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.letter__avatar--1 { background: var(--ink); }
.letter__avatar--2 { background: var(--accent); }
.letter__avatar--3 { background: var(--gold); }
.letter__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.letter__meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  margin-top: 2px;
}

/* ==========================================================
   NUMBERS
========================================================== */
.numbers {
  padding: 90px 0;
  background: var(--ink);
  color: var(--cream);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.number { padding: 0 16px; border-right: 1px solid rgba(245, 239, 228, 0.15); }
.number:last-child { border-right: none; }
.number__big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.number__big span {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: 0.55em;
  margin-left: 4px;
}
.number__lbl {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.6);
}

/* ==========================================================
   PRICING
========================================================== */
.pricing {
  padding: 130px 0;
  background: var(--cream);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.plan {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s var(--ease);
}
.plan:last-child { border-right: none; }
.plan:hover { background: var(--paper); }
.plan--featured {
  background: var(--ink);
  color: var(--cream);
}
.plan--featured:hover { background: var(--ink-2); }
.plan__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 5px 11px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}
.plan__name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.plan--featured .plan__name { color: var(--accent-soft); }
.plan__price {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: flex-start;
}
.plan__price span {
  font-size: 36px;
  margin-top: 8px;
  margin-right: 2px;
  color: var(--mute);
  font-weight: 500;
}
.plan--featured .plan__price span { color: var(--dim); }
.plan__price em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--mute);
  margin-top: 18px;
  margin-left: 4px;
  font-weight: 400;
}
.plan__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  margin: 4px 0 28px;
}
.plan--featured .plan__sub { color: var(--dim); }
.plan__feats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.plan__feats li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-2);
}
.plan--featured .plan__feats li {
  color: var(--cream);
  border-bottom-color: rgba(245, 239, 228, 0.1);
}
.plan__feats li::before {
  content: "✻ ";
  color: var(--accent);
  margin-right: 4px;
}
.plan__feats li strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.plan--featured .btn--primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: none;
}
.plan--featured .btn--primary:hover {
  background: var(--white);
}

.guarantee {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee__mark { color: var(--accent); margin-right: 6px; font-size: 20px; }
.guarantee em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* ==========================================================
   FAQ
========================================================== */
.faq {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  padding: 26px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent);
  line-height: 0.7;
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  padding: 0 0 26px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}

/* ==========================================================
   FINAL CTA
========================================================== */
.final {
  padding: 100px 0 130px;
  background: var(--cream);
}
.final__box {
  position: relative;
  padding: 100px 40px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  text-align: center;
  overflow: hidden;
}
.final__box::before,
.final__box::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  border: 2px solid var(--accent);
}
.final__box::before { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.final__box::after { bottom: 20px; right: 20px; border-left: none; border-top: none; }
.final__eye {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
}
.final__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(40px, 5.8vw, 84px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 22px;
}
.final__title .serif-italic {
  text-transform: none;
  color: var(--accent);
  font-weight: 500;
}
.final__sub {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--mute);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.final__ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.final__meta {
  margin-top: 26px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ==========================================================
   Footer
========================================================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer .brand__text { color: var(--cream); }
.footer .brand__amp, .footer .brand__mark { color: var(--accent); }

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.12);
}
.footer__brand p {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245, 239, 228, 0.65);
  max-width: 320px;
  font-size: 15px;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: rgba(245, 239, 228, 0.7);
  padding: 7px 0;
  transition: color .15s;
  font-weight: 500;
}
.footer__cols a:hover { color: var(--cream); }

.footer__word {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(120px, 24vw, 340px);
  text-align: center;
  letter-spacing: -0.05em;
  line-height: 0.85;
  padding: 40px 0 10px;
  background: linear-gradient(180deg, rgba(245, 239, 228, 0.12) 0%, rgba(245, 239, 228, 0) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(245, 239, 228, 0.12);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.55);
}

/* ==========================================================
   MOTION & INTERACTION
========================================================== */

/* ---- Page load reveal ---- */
.page-load {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.77,0,.18,1);
}
.page-load.is-hidden {
  transform: translateY(-101%);
}
.page-load__word {
  display: flex;
  gap: 2px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 120px);
  letter-spacing: -0.04em;
  color: var(--cream);
  text-transform: uppercase;
  overflow: hidden;
}
.page-load__word span {
  display: inline-block;
  transform: translateY(120%);
  animation: loadRise .7s cubic-bezier(.22,.8,.2,1) forwards;
}
.page-load__word span:nth-child(1)  { animation-delay: .05s; }
.page-load__word span:nth-child(2)  { animation-delay: .08s; }
.page-load__word span:nth-child(3)  { animation-delay: .11s; }
.page-load__word span:nth-child(4)  { animation-delay: .14s; color: var(--accent); }
.page-load__word span:nth-child(5)  { animation-delay: .17s; }
.page-load__word span:nth-child(6)  { animation-delay: .20s; }
.page-load__word span:nth-child(7)  { animation-delay: .23s; }
.page-load__word span:nth-child(8)  { animation-delay: .26s; }
.page-load__word span:nth-child(9)  { animation-delay: .29s; }
.page-load__word span:nth-child(10) { animation-delay: .32s; }
.page-load__word span:nth-child(11) { animation-delay: .35s; }
@keyframes loadRise {
  to { transform: translateY(0); }
}

/* ---- Custom cursor ---- */
html, body { cursor: none; }
@media (hover: none) { html, body { cursor: auto; } }

.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  will-change: transform;
}
@media (hover: none) { .cursor { display: none; } }

.cursor__dot {
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease),
              margin .25s var(--ease), background .2s;
}
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transition: width .35s var(--ease), height .35s var(--ease),
              margin .35s var(--ease), border-color .2s, opacity .25s;
  opacity: 0.7;
}
.cursor__label {
  position: absolute;
  top: 0; left: 0;
  margin: -8px 0 0 30px;
  padding: 6px 12px;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity .2s, transform .25s var(--ease);
  white-space: nowrap;
}

/* Cursor states */
.cursor.is-hover .cursor__dot {
  width: 0; height: 0; margin: 0;
}
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--accent);
  border-width: 2px;
}
.cursor.is-labeled .cursor__label {
  opacity: 1;
  transform: scale(1);
}
.cursor.is-text .cursor__dot { width: 2px; height: 28px; margin: -14px 0 0 -1px; border-radius: 1px; }
.cursor.is-text .cursor__ring { opacity: 0; }

/* Disable default hover cursors on interactive items (we now use custom) */
a, button, [data-magnetic], .faq__item summary, .tpl-tab { cursor: none; }

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 9997;
  transition: width .1s linear;
  box-shadow: 0 0 12px rgba(197, 51, 31, 0.6);
}

/* ---- Data-reveal (scroll in) ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.22,.8,.2,1),
              transform .9s cubic-bezier(.22,.8,.2,1);
  will-change: transform, opacity;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Split title animation ---- */
[data-split-title] .split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotate(5deg);
  transition: opacity .8s cubic-bezier(.22,.8,.2,1),
              transform .8s cubic-bezier(.22,.8,.2,1);
  will-change: transform, opacity;
}
[data-split-title].is-visible .split-char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
[data-split-title] .split-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

/* Crossout animation */
[data-crossout]::before { transform: rotate(-4deg) scaleX(0); transform-origin: left center; transition: transform .7s cubic-bezier(.85,0,.3,1) .8s; }
[data-split-title].is-visible ~ * [data-crossout]::before,
[data-split-title].is-visible [data-crossout]::before { transform: rotate(-4deg) scaleX(1); }

/* ---- Tilt-on-hover cards ---- */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
  will-change: transform;
}

/* ---- Magnetic buttons ---- */
[data-magnetic] {
  display: inline-flex;
  position: relative;
  will-change: transform;
}

/* ---- Marquee pause on hover ---- */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---- Hero note: soft float ---- */
.hero__note { transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.hero__note:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(20,19,17,0.25);
}

/* ---- Template panel - parallax on enter ---- */
.tpl-panel.is-active .tpl-panel__visual { animation: visualIn .7s cubic-bezier(.22,.8,.2,1); }
.tpl-panel.is-active .tpl-panel__copy   { animation: copyIn .7s cubic-bezier(.22,.8,.2,1); }
@keyframes visualIn {
  from { opacity: 0; transform: translateX(40px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes copyIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- Mock hover micro-interaction ---- */
.mock { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.mock:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow:
    0 2px 0 rgba(20,19,17,0.04),
    0 50px 100px -30px rgba(20,19,17,0.35),
    0 20px 30px -12px rgba(20,19,17,0.2);
}

/* ---- Number counter ---- */
.number__big { display: inline-flex; align-items: baseline; }

/* ---- Respect motion prefs ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .page-load { display: none; }
  .cursor { display: none; }
  html, body, a, button { cursor: auto; }
}

/* ==========================================================
   Responsive
========================================================== */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__meta, .hero__note { max-width: 600px; }
  .hero__title { font-size: clamp(44px, 8vw, 88px); }
  .tpl-panel { grid-template-columns: 1fr; gap: 44px; }
  .tpl-tabs { grid-template-columns: 1fr; }
  .tpl-tab { border-right: none; border-bottom: 1px solid var(--line); }
  .tpl-tab:last-child { border-bottom: none; }
  .process__list { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat:nth-child(3n) { border-right: 1px solid var(--line); }
  .feat:nth-child(2n) { border-right: none; }
  .feat:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .feat:nth-last-child(-n+2) { border-bottom: none; }
  .letters__grid { grid-template-columns: 1fr; gap: 20px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .number { border-right: 0; }
  .number:nth-child(odd) { border-right: 1px solid rgba(245, 239, 228, 0.15); }
  .plans { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 1px solid var(--line); }
  .plan:last-child { border-bottom: none; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .issue__grid { grid-template-columns: 1fr; }
  .issue-card { border-right: none; border-bottom: 1px solid var(--line); }
  .issue-card:last-child { border-bottom: none; }
  .nav__links { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .hero { padding: 20px 0 60px; }
  .masthead { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .masthead__left, .masthead__right { text-align: center; }
  .hero__title { font-size: clamp(36px, 10vw, 64px); }
  .hero__title-row { white-space: normal; }
  .hero__deck { font-size: 16px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__strip { font-size: 9px; justify-content: center; }
  .marquee__track { font-size: 28px; }
  .issue, .templates, .process, .features, .letters, .pricing, .faq, .final { padding: 84px 0; }
  .section-head { margin-bottom: 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .feat:last-child { border-bottom: none; }
  .mock--product .mock__prod { grid-template-columns: 1fr; }
  .mock__prod-img { max-width: 200px; }
  .mock__services { grid-template-columns: repeat(2, 1fr); }
  .mock__svc:nth-child(2) { border-right: none; }
  .numbers__grid { grid-template-columns: 1fr; gap: 36px; }
  .number { border-right: none !important; }
  .final__box { padding: 60px 24px; }
  .final__box::before, .final__box::after { width: 40px; height: 40px; }
  .nav__inner { height: 64px; }
  .brand { font-size: 18px; }
  .btn--link { padding: 10px 0; }
}

/* ==========================================================
   CONTACT SECTION
========================================================== */
.contact {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 68px);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 18px 0 22px;
}
.contact__title .serif-italic {
  color: var(--accent);
  text-transform: none;
  font-weight: 500;
}
.contact__lead {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-2);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.contact__meta li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.contact__meta li:last-child { border-bottom: none; }
.contact__meta strong {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__meta span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}

/* Form */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 36px;
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 36px; height: 36px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--wide { grid-column: 1 / -1; }
.field__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.field input,
.field textarea,
.field select {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  outline: none;
  transition: border-color .2s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}
.field textarea {
  resize: vertical;
  min-height: 72px;
  font-family: var(--serif);
  line-height: 1.5;
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%23141311' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}
.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact__reassure {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
}
.contact__form.is-sent {
  text-align: center;
  padding: 64px 36px;
  display: block;
}
.contact__form.is-sent * { display: none; }
.contact__form.is-sent::after {
  content: "✻ Thank you — we'll be in touch within one business day.";
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  line-height: 1.5;
}

/* ==========================================================
   ONBOARDING MODAL
========================================================== */
.tpl-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tpl-modal.is-open {
  display: flex;
  animation: modalFade .3s var(--ease);
}
@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.tpl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 17, 0.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.tpl-modal__panel {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 48px 44px;
  box-shadow: 0 40px 100px -20px rgba(20, 19, 17, 0.55);
  animation: modalRise .4s var(--ease);
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tpl-modal__panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 48px; height: 48px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.tpl-modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s var(--ease), background .2s;
  z-index: 2;
}
.tpl-modal__close:hover { transform: rotate(90deg); background: var(--accent); }
.tpl-modal__head { margin-bottom: 32px; }
.tpl-modal__eye {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 14px;
}
.tpl-modal__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.tpl-modal__title .serif-italic {
  text-transform: none;
  color: var(--accent);
  font-weight: 500;
}
.tpl-modal__sub {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 520px;
}
.tpl-modal__sub em { font-style: italic; color: var(--accent); }
.tpl-modal__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tpl-modal__step {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.tpl-modal__step.is-active { color: var(--accent); }
.tpl-modal__step-sep {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Form inside modal */
.tpl-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tpl-form .field--wide { grid-column: 1 / -1; }
.tpl-form .tpl-form__heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.tpl-form__heading-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.tpl-form__heading-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.tpl-form__file-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.tpl-form__file-wrap input[type="file"] {
  display: none;
}
.tpl-form__file-btn {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.tpl-form__file-btn:hover { background: var(--ink); color: var(--cream); }
.tpl-form__file-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
}
.tpl-form__file-preview {
  width: 54px; height: 54px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.tpl-form__service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.tpl-form__feature-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
}
.tpl-form__feature-row input {
  flex: 1;
}
.tpl-form__feature-row button {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--mute);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .15s, color .15s, border-color .15s;
}
.tpl-form__feature-row button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.tpl-form__add {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tpl-form__add::before { content: "+"; font-size: 16px; }
.tpl-form__add:hover { color: var(--ink); }

.tpl-form__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tpl-form__cancel {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 10px 4px;
  cursor: pointer;
}
.tpl-form__cancel:hover { color: var(--accent); }

@media (max-width: 760px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { grid-template-columns: 1fr; padding: 26px; }
  .tpl-modal__panel { padding: 34px 24px; max-height: calc(100vh - 32px); }
  .tpl-form { grid-template-columns: 1fr; gap: 18px; }
  .tpl-form__service-row { grid-template-columns: 1fr; }
  .contact__meta li { grid-template-columns: 1fr; gap: 4px; }
}
