/* ============================================================
   PREMIUM HOME SERVICES LANDING PAGE
   ============================================================ */

:root {
  --bg: #f4efe8;
  --bg-alt: #ebe3d8;
  --ink: #1a1815;
  --ink-soft: #5a5347;
  --accent: #b85c2f;
  --accent-ink: #fdfaf5;
  --line: rgba(26, 24, 21, 0.12);
  --dark: #1a1815;
  --dark-ink: #f4efe8;

  --serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  transition: background 0.5s ease, color 0.5s ease;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- TYPE SYSTEM ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.italic { font-style: italic; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand-mark .glyph {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  transition: background 0.5s, color 0.5s;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.2s, background 0.3s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
}
.hero-eyebrow-row .sep {
  width: 24px; height: 1px; background: var(--ink-soft);
}
.hero h1 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(1) .word { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) .word { animation-delay: 0.22s; }
@keyframes rise {
  to { transform: translateY(0); }
}
.hero-body {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 36px;
  opacity: 0;
  animation: fade 1s ease forwards 0.7s;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  opacity: 0;
  animation: fade 1s ease forwards 0.9s;
}
@keyframes fade { to { opacity: 1; } }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s, background 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.03); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 70%, white);
  font-size: 13px;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.hero-badge .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: pulse 2s infinite;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  opacity: 0;
  animation: fadeUp 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards 0.3s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual .photo-slot {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(180deg, #2a2520 0%, #1a1815 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-visual .crop-tag {
  position: absolute; top: 24px; left: 24px;
  color: rgba(255,255,255,0.4);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-visual .ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-visual .ticker .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: white;
}

.hero-meta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) {
  .hero-meta-stats { grid-template-columns: repeat(2, 1fr); }
}
.stat .n {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ---------- TRUST MARQUEE ---------- */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: color-mix(in oklab, var(--bg) 80%, var(--bg-alt));
}
.trust-row {
  display: flex; align-items: center; gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.trust-item .star { color: var(--accent); }

/* ---------- SECTION BASE ---------- */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
}
.section-head p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.service-card:hover {
  background: color-mix(in oklab, var(--bg) 70%, var(--bg-alt));
}
.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.service-card .t {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 28px 0 14px;
  font-weight: 400;
}
.service-card .d {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-card .foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.service-card .foot .arrow {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover .foot .arrow {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--dark);
  color: var(--dark-ink);
  border-radius: 16px;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 64px);
  margin: 0 var(--pad);
  max-width: var(--container);
  box-sizing: border-box;
}
.process-wrap { max-width: var(--container); margin: clamp(48px, 8vw, 96px) auto; }
.process h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
  max-width: 16ch;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }
.process-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
}
.process-step .t {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  font-weight: 400;
}
.process-step .d {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ---------- PROMISE / WHY ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex; gap: 24px;
  align-items: flex-start;
}
.promise-card .check {
  flex: none;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
}
.promise-card .t {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.promise-card .d {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- BOOKING WIDGET ---------- */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; } }
.booking-pitch h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
}
.booking-pitch p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 44ch;
  margin: 0 0 28px;
}
.booking-pitch .micro-list {
  display: flex; flex-direction: column; gap: 14px;
}
.booking-pitch .micro-list li {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.booking-pitch .micro-list .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.widget {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(26,24,21,0.18);
}
.widget-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.widget-head .t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}
.widget-head .step-dots {
  display: flex; gap: 6px;
}
.step-dot {
  width: 24px; height: 4px; border-radius: 2px;
  background: var(--line);
  transition: background 0.3s;
}
.step-dot.active { background: var(--accent); }
.step-dot.done { background: var(--ink); }

.field-label {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
  display: block;
}
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.service-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  text-align: left;
  font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.2s;
}
.service-pill:hover { border-color: var(--ink); }
.service-pill.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.urgency {
  display: flex; gap: 8px;
  margin-bottom: 20px;
}
.urgency button {
  flex: 1;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.2s;
  background: transparent;
}
.urgency button.selected {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, var(--bg));
  color: var(--ink);
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}
.cal-day {
  aspect-ratio: 1;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all 0.15s;
}
.cal-day.head {
  font-size: 10px; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-soft);
  aspect-ratio: auto; padding: 4px 0 10px;
}
.cal-day .dn {
  font-family: var(--mono); font-size: 9px; opacity: 0.5; margin-bottom: 2px;
}
.cal-day:not(.head):not(.disabled):hover {
  background: var(--bg-alt);
}
.cal-day.selected {
  background: var(--ink);
  color: var(--bg);
}
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.has-slots::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); margin-top: 2px;
}
.cal-day.selected.has-slots::after { background: var(--bg); }

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.slot-btn {
  padding: 10px 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  background: transparent;
  transition: all 0.15s;
}
.slot-btn:hover:not(:disabled) { border-color: var(--ink); }
.slot-btn.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.slot-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.widget-cta {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 10px;
  transition: transform 0.2s, opacity 0.2s;
}
.widget-cta:hover { transform: translateY(-1px); }
.widget-cta:disabled { opacity: 0.4; transform: none; }
.widget-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 14px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.summary-line {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.summary-line .v { color: var(--ink); }

.success-state {
  text-align: center;
  padding: 24px 12px;
}
.success-state .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  animation: pop 0.6s cubic-bezier(0.2, 0.9, 0.3, 1.3);
}
@keyframes pop {
  from { transform: scale(0); }
  60% { transform: scale(1.1); }
  to { transform: scale(1); }
}
.success-state h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 400;
}
.success-state p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 20px;
}
.success-state .receipt {
  text-align: left;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
}
.success-state .receipt .k { color: var(--ink-soft); }
.success-state .receipt .v { color: var(--ink); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  position: relative;
}
.testimonial-track {
  position: relative;
  height: clamp(380px, 36vw, 460px);
}
.testimonial-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) { .testimonial-card { grid-template-columns: 1fr; gap: 32px; } }
.testimonial-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.t-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      45deg, rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 1px,
      transparent 1px, transparent 14px
    ),
    var(--bg-alt);
  position: relative;
}
.t-photo .label {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.t-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
}
.t-attr {
  margin-top: 28px;
  display: flex; gap: 18px; align-items: center;
}
.t-attr .who {
  font-size: 14px;
}
.t-attr .who strong { font-weight: 500; }
.t-attr .who div { color: var(--ink-soft); font-size: 13px; }
.t-stars { color: var(--accent); letter-spacing: 2px; }
.t-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px;
}
.t-nav-arrows { display: flex; gap: 8px; }
.t-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.2s;
}
.t-nav button:hover { border-color: var(--ink); }
.t-counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  gap: 24px;
}
.faq-toggle {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ---------- BIG CTA ---------- */
.big-cta {
  background: var(--dark);
  color: var(--dark-ink);
  border-radius: 16px;
  padding: clamp(56px, 8vw, 120px) clamp(28px, 5vw, 80px);
  text-align: center;
  margin: 0 var(--pad);
  max-width: var(--container);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.big-cta-wrap { max-width: var(--container); margin: clamp(48px, 8vw, 96px) auto 0; }
.big-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 14ch;
  margin-left: auto; margin-right: auto;
}
.big-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  margin: 0 auto 40px;
}
.big-cta .actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.big-cta .btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--dark-ink);
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.2s;
}
.big-cta .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); }
.big-cta .meta-row {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
@media (max-width: 700px) { .big-cta .meta-row { grid-template-columns: 1fr; } }
.big-cta .meta-row .meta-t {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.big-cta .meta-row .meta-v {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 80px var(--pad) 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
.footer h4 {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--ink); }
.footer ul a:hover { color: var(--accent); }
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.footer-tag {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 30ch;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

/* counter */
.count-up { display: inline-block; }
