*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --chalk:  #F3F1EC;
  --ink:    #18180F;
  --rust:   #C94A1A;
  --stone:  #787574;
  --bone:   #E0DDD7;
  --soot:   #2C2B24;
  --white:  #FAFAF7;
  --f-sans: 'DM Sans', -apple-system, sans-serif;
  --f-mono: 'DM Mono', 'Courier New', monospace;
  --ease:   cubic-bezier(0.25, 0.1, 0.25, 1);
  --pg: 88px;
}

[data-theme="dark"] {
  --chalk:  #16160F;
  --ink:    #EFECE5;
  --rust:   #D4581F;
  --stone:  #8E8B85;
  --bone:   #242318;
  --soot:   #0C0C08;
  --white:  #1C1B14;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--chalk);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

/* ─── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--chalk);
  border-bottom: 1px solid var(--bone);
  padding: 0 var(--pg);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: background 0.25s, border-color 0.25s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-sq {
  width: 9px; height: 9px;
  background: var(--rust);
  border-radius: 1.5px;
  transition: background 0.25s;
}

.nav-logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.25s;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 40px;
}

.ctrl-btn {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 1px solid var(--bone);
  border-radius: 2px;
  padding: 5px 9px;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}

.ctrl-btn:hover { color: var(--ink); border-color: var(--stone); }
.ctrl-btn.on { color: var(--ink); border-color: var(--stone); background: var(--bone); }

.nav-cta {
  font-size: 13px;
  font-weight: 400;
  background: var(--ink);
  color: var(--chalk);
  padding: 9px 20px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.18s var(--ease), color 0.25s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--soot); }
[data-theme="dark"] .nav-cta:hover { background: #D0CCC4; }

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - 60px);
  padding: 0 var(--pg);
  display: grid;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--bone);
}

.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 64px;
  max-width: 900px;
}

.hero-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--rust);
  border-radius: 1px;
}

.hero-h {
  font-size: clamp(56px, 8.5vw, 136px);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin-bottom: 48px;
}

.hero-h em {
  font-style: italic;
  font-weight: 200;
  color: var(--stone);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 48px;
  letter-spacing: -0.005em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.18s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary { background: var(--ink); color: var(--chalk); }
.btn-primary:hover { background: var(--soot); }
[data-theme="dark"] .btn-primary:hover { background: #D0CCC4; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--bone); }
.btn-ghost:hover { border-color: var(--stone); }
[data-theme="dark"] .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--stone); }

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--bone);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n { font-size: 22px; font-weight: 300; letter-spacing: -0.02em; }
.stat-l { font-family: var(--f-mono); font-size: 10px; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; }

.hero-scroll {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--bone);
}

/* ─── TICKER ──────────────────────────────────────────── */
.ticker-wrap {
  border-bottom: 1px solid var(--bone);
  overflow: hidden;
  padding: 14px 0;
  background: var(--ink);
  transition: background 0.25s;
}

.ticker {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker:hover { animation-play-state: paused; }

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

.ticker-item {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  white-space: nowrap;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: color 0.25s;
}

.ticker-dot {
  width: 5px; height: 5px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTION BASE ────────────────────────────────────── */
.section {
  padding: 112px var(--pg) 120px;
  border-bottom: 1px solid var(--bone);
  transition: border-color 0.25s;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 72px;
}

.sec-num { color: var(--rust); }
.sec-line { height: 1px; width: 32px; background: var(--bone); }

/* ─── SERVICES ────────────────────────────────────────── */
#services .services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.services-h {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.services-h em { font-style: italic; font-weight: 200; }

.services-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  max-width: 380px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bone);
  border: 1px solid var(--bone);
  transition: background 0.25s, border-color 0.25s;
}

.service-card {
  background: var(--chalk);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: var(--white); }

.service-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 32px;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.service-include {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-include::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── PROCESS ─────────────────────────────────────────── */
#process .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bone);
  border: 1px solid var(--bone);
  transition: background 0.25s, border-color 0.25s;
}

.process-step {
  background: var(--chalk);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.process-step:hover { background: var(--white); }

.ps-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.ps-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ps-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}

.ps-time {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 28px;
}

/* ─── WORK ────────────────────────────────────────────── */
#work .work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bone);
  border: 1px solid var(--bone);
  transition: background 0.25s, border-color 0.25s;
}

.work-card {
  background: var(--chalk);
  transition: background 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.work-card:hover { background: var(--white); }
.work-card:hover .wc-thumb { transform: scale(1.02); }

.wc-thumb-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.wc-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}

.wc-thumb-1 { background: #D4CFC8; }
.wc-thumb-2 { background: #C8C3BC; }
.wc-thumb-3 { background: #2A2920; }

.wc-thumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-sq {
  width: 12px; height: 12px;
  border-radius: 2px;
  background: var(--rust);
}

.wc-thumb-3 .wc-sq { background: #D4581F; }

.wc-name-t {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #18180F;
}

.wc-thumb-3 .wc-name-t { color: #EFECE5; }

.wc-body { padding: 24px; }

.wc-tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}

.wc-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.wc-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  font-weight: 300;
}

.work-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ─── PRICING ─────────────────────────────────────────── */
#pricing .pricing-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.pricing-h {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.pricing-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bone);
  border: 1px solid var(--bone);
  transition: background 0.25s, border-color 0.25s;
}

.price-card {
  background: var(--chalk);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}

.price-card.featured { background: var(--ink); color: var(--chalk); }
[data-theme="dark"] .price-card.featured { background: var(--rust); }

.price-tier {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

.price-card.featured .price-tier { color: rgba(255,255,255,0.5); }

.price-amt {
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}

.price-note {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.price-card.featured .price-note { color: rgba(255,255,255,0.4); }

.price-name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.price-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 32px;
}

.price-card.featured .price-desc { color: rgba(255,255,255,0.65); }

.price-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.price-item {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-item::before { content: '—'; color: var(--rust); }
.price-card.featured .price-item { color: rgba(255,255,255,0.65); }
.price-card.featured .price-item::before { color: rgba(255,255,255,0.4); }

.price-btn {
  margin-top: auto;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  padding: 11px 0;
  border: 1px solid var(--bone);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s var(--ease);
  text-align: center;
  text-decoration: none;
  display: block;
}

.price-btn:hover { border-color: var(--stone); }

.price-card.featured .price-btn {
  background: var(--chalk);
  color: var(--ink);
  border-color: var(--chalk);
}

.price-card.featured .price-btn:hover { background: var(--bone); }

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
  background: var(--soot);
  color: var(--chalk);
  transition: background 0.25s, color 0.25s;
}

#about .sec-label { color: rgba(255,255,255,0.3); }
#about .sec-num { color: var(--rust); }
#about .sec-line { background: rgba(255,255,255,0.1); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-h {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 40px;
}

.about-h em { font-style: italic; color: rgba(255,255,255,0.5); }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.about-body p strong { color: var(--chalk); font-weight: 400; }

.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
}

.about-val {
  padding: 20px 24px;
  background: var(--soot);
  transition: background 0.25s;
}

.av-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.av-desc {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

[data-theme="dark"] #about .sec-label   { color: rgba(255,255,255,0.48); }
[data-theme="dark"] .about-h em         { color: rgba(255,255,255,0.65); }
[data-theme="dark"] .about-body p       { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .av-desc            { color: rgba(255,255,255,0.52); }

/* ─── CONTACT ─────────────────────────────────────────── */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-h {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cr-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.cr-val {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input, .field textarea, .field select {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--bone);
  border-radius: 3px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s, background 0.25s, color 0.25s;
  appearance: none;
  resize: none;
}

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

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

.form-submit {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  background: var(--ink);
  color: var(--chalk);
  border: none;
  border-radius: 3px;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.25s;
  margin-top: 4px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-submit:hover { background: var(--soot); }
[data-theme="dark"] .form-submit:hover { background: #D0CCC4; }

.form-submit-arrow {
  font-size: 16px;
  opacity: 0.5;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  display: flex;
  padding: 40px var(--pg);
  border-top: 1px solid var(--bone);
  flex-direction: column;
  gap: 32px;
  transition: border-color 0.25s;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.footer-logo-sq { width: 9px; height: 9px; background: var(--rust); border-radius: 1.5px; }

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.18s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--bone);
}

.footer-copy {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.06em;
}

.footer-links-sm {
  display: flex;
  gap: 24px;
}

.footer-links-sm a {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}

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

/* ─── SCROLL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--chalk); }
::-webkit-scrollbar-thumb { background: var(--bone); border-radius: 2px; }

/* ─── RESPONSIVE ──────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1200px) {
  :root { --pg: 48px; }

  .services-grid          { grid-template-columns: 1fr 1fr; }
  #process .process-grid   { grid-template-columns: repeat(2, 1fr); }
  #work .work-grid         { grid-template-columns: 1fr 1fr; }
  .pricing-grid            { grid-template-columns: 1fr 1fr; }

  .about-grid,
  .contact-grid { gap: 60px; }
}

/* Tablet portrait / large phones */
@media (max-width: 1000px) {
  :root { --pg: 40px; }

  #services .services-top,
  #pricing .pricing-top { gap: 40px; margin-bottom: 56px; }
}

/* Mobile */
@media (max-width: 800px) {
  :root { --pg: 24px; }

  /* Nav */
  .site-nav { gap: 12px; padding: 0 var(--pg); }
  .nav-links { display: none; }
  .nav-right { margin-left: auto; gap: 8px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .ctrl-btn { padding: 4px 7px; font-size: 8px; }

  /* Hero */
  .hero-h { font-size: clamp(40px, 12vw, 72px); }
  .hero-sub { font-size: 16px; margin-bottom: 36px; }
  .hero-body { padding: 56px 0 48px; }
  .hero-actions { flex-wrap: wrap; }

  .hero-foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-scroll { display: none; }

  /* Sections */
  .section { padding: 72px var(--pg) 80px; }
  .sec-label { margin-bottom: 48px; }

  /* Grids → single column */
  #services .services-top,
  #pricing .pricing-top,
  .about-grid,
  #contact .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  .services-grid,
  #process .process-grid,
  #work .work-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  /* About */
  .about-h { margin-bottom: 24px; }
  .about-vals { grid-template-columns: 1fr; }

  /* Pricing */
  .price-amt { font-size: 28px; }

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

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-links-sm { flex-wrap: wrap; gap: 12px 20px; }
}

/* Small phones */
@media (max-width: 480px) {
  :root { --pg: 16px; }

  .hero-h { font-size: clamp(32px, 11vw, 56px); margin-bottom: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-tag { font-size: 9px; margin-bottom: 28px; }

  .btn { font-size: 13px; padding: 11px 20px; }

  .section { padding: 56px var(--pg) 64px; }
  .sec-label { margin-bottom: 36px; }

  .services-h,
  .pricing-h,
  .about-h,
  .contact-h { font-size: clamp(28px, 9vw, 44px); }

  .service-card { padding: 32px 24px 28px; }
  .process-step { padding: 28px 20px 24px; }
  .price-card { padding: 32px 24px 28px; }
  .price-amt { font-size: 24px; }

  .ticker-item { font-size: 10px; padding: 0 20px; gap: 20px; }

  .site-nav { height: 52px; }
  .nav-logo-text { font-size: 13px; }

  .footer-links a { font-size: 12px; }
}

/* ─── HERO CAROUSEL ANIMATION ──────────────────────── */
.tb-stage {
  position: relative;
  height: clamp(160px, 22vw, 360px);
  margin-bottom: clamp(36px, 4.5vw, 64px);
}

.tb-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 80px);
  opacity: 0;
  pointer-events: none;
}

.tb-slide.active {
  opacity: 1;
}

.tb-visual {
  width: clamp(70px, 12vw, 180px);
  height: clamp(70px, 12vw, 180px);
  flex-shrink: 0;
  position: relative;
}

.tb-text {
  flex: 1;
}

.tb-label {
  font-family: var(--f-mono);
  font-size: clamp(10px, 1.2vw, 16px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: clamp(10px, 1.2vw, 20px);
}

.tb-name {
  font-size: clamp(40px, 8.5vw, 136px);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
}

.tb-name em {
  font-style: italic;
  font-weight: 200;
  color: var(--stone);
}

.word-char-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-char-inner.show {
  transform: translateY(0);
}

.label-fade {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.label-fade.show {
  opacity: 1;
  transform: translateY(0);
}


