/* ============================================================
   UPCRAFT — SHARED DESIGN SYSTEM
   Design: "Bold Editorial Light" — mockup-v2
   All pages share this stylesheet.
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --cream:    #F7F4F0;
  --paper:    #EFEBE5;
  --ink:      #0A0A0A;
  --ink-mid:  #3D3A36;
  --ink-dim:  #857F78;
  --red:      #FF3B2F;
  --red-dim:  rgba(255,59,47,0.10);
  --white:    #FFFFFF;
  --border:   rgba(10,10,10,0.10);

  --syne: 'Syne', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Fluid type scale: clamp(min, preferred, max) */
  --text-xs:   clamp(10px, 0.8vw, 12px);
  --text-sm:   clamp(12px, 0.9vw, 14px);
  --text-base: clamp(15px, 1.1vw, 17px);
  --text-md:   clamp(17px, 1.4vw, 22px);
  --text-lg:   clamp(22px, 2.5vw, 36px);
  --text-xl:   clamp(36px, 5vw, 72px);
  --text-2xl:  clamp(52px, 8vw, 120px);
  --text-3xl:  clamp(64px, 11vw, 160px);

  --nav-height: 70px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--syne);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s ease, border-color 0.4s ease;
}

nav.scrolled {
  background: rgba(247,244,240,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 clamp(20px, 4vw, 60px);
}

.nav-logo {
  font-family: var(--syne);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 1;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--ink);
  padding: 10px 24px;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

.nav-cta .arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.nav-cta:hover .arrow { transform: translateX(4px); }

/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px clamp(20px, 4vw, 60px) 32px;
  gap: 20px;
  z-index: 199;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--ink); }

.nav-drawer .nav-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   HERO (homepage)
============================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background: var(--cream);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-lines line,
.hero-lines path {
  stroke: var(--ink);
  stroke-opacity: 0.06;
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vh, 120px) clamp(20px, 4vw, 60px) 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(24px, 3vh, 48px);
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--syne);
  font-weight: 800;
  font-size: var(--text-3xl);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vh, 64px);
  padding-bottom: 0.2em;
}

.hero-headline .word {
  display: inline-block;
  overflow: visible;
}

.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

.hero-headline .accent {
  color: var(--red);
  font-style: italic;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: clamp(24px, 3vh, 40px);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-sub {
  max-width: 440px;
  font-family: var(--mono);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--ink-mid);
  opacity: 0;
  transform: translateY(16px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 16px 32px;
  border: 2px solid var(--red);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-primary .arrow { display: inline-block; transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-ghost {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-right: 48px;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: clamp(80px, 12vh, 140px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(40px, 5vh, 72px);
}

.section-label .num { color: var(--red); }

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 80px;
}

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.service-card {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card:last-child { border-right: none; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--paper); }

.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--syne);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}

.service-desc {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-dim);
}

/* ============================================================
   STATEMENT SECTION
============================================================ */
.statement {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
  overflow: hidden;
}

.statement-inner { position: relative; z-index: 1; }

.statement-bg-text {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  font-family: var(--syne);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
}

.statement-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: clamp(24px, 3vh, 40px);
}

.statement-headline {
  font-family: var(--syne);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: clamp(40px, 5vh, 72px);
  padding-bottom: 0.15em;
}

.statement-headline em {
  font-style: italic;
  color: var(--red);
}

.statement-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.statement-body {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(247,244,240,0.55);
  max-width: 480px;
  line-height: 1.8;
}

.statement-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  border: 1px solid rgba(247,244,240,0.25);
  padding: 18px 36px;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.statement-cta:hover {
  border-color: var(--red);
  background: var(--red);
}

.statement-cta .arrow { display: inline-block; transition: transform 0.25s; }
.statement-cta:hover .arrow { transform: translateX(5px); }

/* ============================================================
   STATS SECTION
============================================================ */
.stats {
  background: var(--paper);
  padding: clamp(72px, 10vh, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
}

.stat-item:first-child { border-left: 1px solid var(--border); }

.stat-number {
  font-family: var(--syne);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.stat-number .accent { color: var(--red); }

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process { background: var(--cream); }

.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: start;
  gap: 0;
  padding: clamp(32px, 4vh, 52px) 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.process-item:last-child { border-bottom: 1px solid var(--border); }

.process-step {
  font-family: var(--mono);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  padding-top: 4px;
}

.process-content { padding: 0 clamp(20px, 3vw, 48px) 0 0; }

.process-title {
  font-family: var(--syne);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.process-desc {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 500px;
}

.process-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  white-space: nowrap;
  margin-top: 8px;
  transition: border-color 0.25s, color 0.25s;
}

.process-item:hover .process-tag {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   TYPOGRAPHIC CTA
============================================================ */
.type-cta {
  background: var(--red);
  padding: clamp(80px, 12vh, 140px) 0;
  position: relative;
}

.type-cta-text {
  font-family: var(--syne);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: clamp(40px, 5vh, 72px);
  padding-bottom: 0.4em;
  overflow: visible;
}

.type-cta-text .outline {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}

.type-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.type-cta-sub {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,244,240,0.75);
  max-width: 380px;
}

.type-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--red);
  background: var(--cream);
  padding: 18px 40px;
  border: 2px solid var(--cream);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.type-cta-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.type-cta-btn .arrow { display: inline-block; transition: transform 0.25s; }
.type-cta-btn:hover .arrow { transform: translateX(5px); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vh, 100px) 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--syne);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--red); }

.footer-tagline {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(247,244,240,0.45);
  max-width: 280px;
  line-height: 1.7;
}

.footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,240,0.35);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(247,244,240,0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(247,244,240,0.3);
  letter-spacing: 0.04em;
}

.footer-copy span { color: var(--red); }

/* ============================================================
   SCROLL REVEAL — default hidden state
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* ============================================================
   PAGE HERO — services, contact, and other interior pages
============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + clamp(60px, 10vh, 120px)) 0 clamp(60px, 8vh, 100px);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(20px, 3vh, 40px);
}

.page-hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.page-hero-headline {
  font-family: var(--syne);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 800px;
  margin-bottom: clamp(24px, 3vh, 40px);
  padding-bottom: 0.15em;
}

.page-hero-sub {
  font-family: var(--mono);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 520px;
}

/* ============================================================
   SERVICES PAGE — Expanded service blocks
============================================================ */
.services-expanded {
  padding: clamp(80px, 12vh, 140px) 0;
}

.service-block {
  padding: clamp(48px, 6vh, 80px) 0;
  border-top: 1px solid var(--border);
}

.service-block:last-child { border-bottom: 1px solid var(--border); }

.service-block-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 clamp(40px, 5vw, 80px);
  align-items: start;
}

.service-block-num {
  font-family: var(--mono);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
}

.service-block-title {
  font-family: var(--syne);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-block-desc {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 620px;
  margin-bottom: 28px;
}

.service-block-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-block-features li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.service-block-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
}

.price-tag strong {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
  padding: clamp(80px, 12vh, 140px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info-title {
  font-family: var(--syne);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info-body {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-dim);
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0 12px;
  align-items: start;
  font-family: var(--mono);
  font-size: 13px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 2px;
}

.contact-detail-value { color: var(--ink); }

.contact-detail-value a {
  color: var(--red);
  transition: opacity 0.2s;
}

.contact-detail-value a:hover { opacity: 0.7; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ink);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-select { cursor: pointer; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--ink);
  padding: 18px 40px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--red);
  border-color: var(--red);
}

.form-submit .arrow { display: inline-block; transition: transform 0.25s; }
.form-submit:hover .arrow { transform: translateX(5px); }

.form-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.7;
}

/* ============================================================
   PRICING PAGE
============================================================ */
.pricing-section {
  padding: clamp(80px, 12vh, 140px) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.pricing-card:last-child { border-right: none; }

.pricing-card:hover { background: var(--paper); }

.pricing-card--featured {
  background: var(--ink);
  color: var(--cream);
}

.pricing-card--featured:hover { background: #111; }

.pricing-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
}

.pricing-card--featured .pricing-card-header {
  padding-top: 32px;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.pricing-card-price {
  font-family: var(--syne);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pricing-card--featured .pricing-card-price { color: var(--cream); }

.pricing-card-term {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

.pricing-card--featured .pricing-card-term { color: rgba(247,244,240,0.45); }

.pricing-card-body {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card-summary {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.pricing-card--featured .pricing-card-summary { color: rgba(247,244,240,0.55); }

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card-features li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pricing-card--featured .pricing-card-features li { color: rgba(247,244,240,0.65); }

.pricing-card-features li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--red);
}

.pricing-card-footer {
  margin-top: auto;
}

.pricing-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--ink);
  padding: 16px 28px;
  border: 2px solid var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  width: 100%;
  justify-content: center;
}

.pricing-card-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

.pricing-card--featured .pricing-card-cta {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.pricing-card--featured .pricing-card-cta:hover {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}

.pricing-card-cta .arrow { display: inline-block; transition: transform 0.25s; }
.pricing-card-cta:hover .arrow { transform: translateX(5px); }

/* Monthly Care Add-On */
.addon-section {
  padding: 0 0 clamp(80px, 12vh, 140px);
}

.addon-block {
  border: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px);
}

.addon-block-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.addon-title {
  font-family: var(--syne);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}

.addon-desc {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
  max-width: 520px;
  margin-bottom: 28px;
}

.addon-price-col {
  text-align: center;
  min-width: 200px;
}

.addon-price {
  font-family: var(--syne);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.addon-price-term {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.addon-cta {
  width: auto;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: clamp(24px, 3vh, 40px) 0;
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
  font-family: var(--syne);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-answer {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 620px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child { border-bottom: none; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .stat-item {
    background: var(--paper);
    border: none;
    padding: 40px 20px;
  }

  .stat-item:first-child { border: none; }

  .process-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }

  .process-tag {
    grid-column: 2;
    justify-self: start;
  }

  .statement-row { flex-direction: column; align-items: flex-start; }

  .service-block-inner { grid-template-columns: 1fr; gap: 16px; }

  .contact-layout { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .pricing-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pricing-card:last-child { border-bottom: none; }

  .addon-block-inner { grid-template-columns: 1fr; gap: 32px; }

  .addon-price-col { text-align: left; }
}

@media (max-width: 640px) {
  :root {
    --text-xl:  clamp(28px, 8vw, 48px);
    --text-2xl: clamp(34px, 9vw, 56px);
    --text-3xl: clamp(40px, 11vw, 64px);
  }

  .hero { min-height: auto; min-height: 100svh; }

  .hero-body {
    padding: clamp(40px, 6vh, 80px) clamp(16px, 4vw, 40px) 32px;
  }

  .hero-headline {
    line-height: 0.95;
    margin-bottom: clamp(24px, 4vh, 40px);
  }

  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-wrap: wrap; }

  .hero-sub { max-width: 100%; }

  .btn-primary { padding: 14px 24px; font-size: 11px; }
  .btn-ghost { font-size: 11px; }

  /* Statement section */
  .statement-headline { line-height: 1.0; }

  /* Type CTA */
  .type-cta-text { line-height: 0.95; padding-bottom: 0.2em; }
  .type-cta-text .outline { -webkit-text-stroke-width: 1.5px; }
  .type-cta-row { flex-direction: column; }
  .type-cta-btn { padding: 14px 28px; font-size: 12px; }

  /* Page hero (services, contact, pricing) */
  .page-hero-headline { line-height: 0.95; }

  /* Stats */
  .stat-number { font-size: clamp(28px, 8vw, 48px); }

  /* Process */
  .process-step { font-size: clamp(28px, 7vw, 48px); }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }

  /* Pricing addon */
  .addon-block { padding: clamp(24px, 5vw, 40px); }
}
