/* ============================================================
   Your Site Developer · styles
   Aesthetic: editorial minimal · warm cream · coral accent
   ============================================================ */

:root {
  --bg: #F5F1EA;
  --bg-deep: #EFE9DD;
  --ink: #1A1815;
  --ink-soft: #4A463F;
  --muted: #8A8479;
  --line: #E2DBC9;
  --accent: #FF5C39;
  --accent-deep: #E64A28;
  --dark: #1A1815;
  --dark-2: #25221E;
  --cream-on-dark: #F5F1EA;

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --radius: 14px;
  --radius-lg: 22px;

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Grain overlay for warmth */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-weight: 500;
}
.nav__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.nav__mark em { color: var(--accent); font-style: italic; }
.nav__name { font-size: 16px; letter-spacing: -0.02em; }
.nav__name .accent { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background .2s ease, transform .2s ease;
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav__cta svg { transition: transform .2s ease; }
.nav__cta:hover svg { transform: translate(2px, -2px); }

.nav__menu { display: none; width: 36px; height: 36px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__menu span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform .25s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 130px) var(--pad) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__inner { position: relative; }

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  animation: fadeUp .8s ease both;
}
.dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.dot::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .35;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(.6); opacity: .35; }
  50% { transform: scale(1.4); opacity: 0; }
}

.hero__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(48px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineIn .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: .1s; }
.hero__title .line:nth-child(2) { animation-delay: .25s; padding-left: clamp(20px, 6vw, 100px); }
.hero__title .line:nth-child(3) { animation-delay: .4s; }
.hero__title em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .9s ease .6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeUp .9s ease .75s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn--primary svg { transition: transform .2s ease; }
.btn--primary:hover svg { transform: translate(2px, -2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--block { width: 100%; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-bottom: 70px;
  opacity: 0;
  animation: fadeUp .9s ease .9s both;
}
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: -0.005em;
}

/* Marquee */
.marquee {
  position: relative;
  margin: 0 calc(var(--pad) * -1);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-deep);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  gap: 36px;
  animation: scroll 40s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 80;
}
.marquee__track span:nth-child(even) { color: var(--accent); font-style: normal; font-size: 16px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.section__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--pad) 60px;
}
.section__head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section__head--split .section__sub { margin-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.eyebrow__num {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-deep);
}
.eyebrow--light { color: rgba(245, 241, 234, 0.7); }
.eyebrow--light .eyebrow__num { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--cream-on-dark); }

.section__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "opsz" 100;
}
.section__sub {
  max-width: 480px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { position: relative; }

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s ease;
  min-height: 280px;
}
.service:hover { background: var(--bg-deep); }
.service--lg {
  grid-column: span 2;
  background: var(--bg-deep);
}
.service--accent {
  background: var(--ink);
  color: var(--cream-on-dark);
}
.service--accent:hover { background: var(--dark-2); }
.service--accent .service__num { color: var(--accent); }
.service--accent h3 em { color: var(--accent); }

.service__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.service h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 60;
}
.service p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.service--accent p { color: rgba(245, 241, 234, 0.75); }

.service__list {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service__list li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.service__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.step__index {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 350;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.step__index span {
  display: inline-block;
  position: relative;
}
.step__index span::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 0;
  width: 36px; height: 3px;
  background: var(--accent);
}
.step__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 60;
}
.step__body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
.plans {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--ink); }

.plan--featured {
  background: var(--ink);
  color: var(--cream-on-dark);
  border-color: var(--ink);
  transform: scale(1.02);
}
.plan--featured:hover { transform: scale(1.02) translateY(-4px); }
.plan__flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan__head h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 60;
}
.plan__tagline {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.plan--featured .plan__tagline { color: rgba(245, 241, 234, 0.7); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.plan--featured .plan__price { border-color: rgba(255,255,255,0.1); }
.plan__from { font-size: 13px; color: var(--muted); font-family: var(--mono); }
.plan__amount {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 350;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 100;
}

.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
}
.plan__features li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.plan--featured .plan__features li { color: rgba(245, 241, 234, 0.8); }
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

.plan--featured .btn--primary { background: var(--accent); }
.plan--featured .btn--primary:hover { background: var(--bg); color: var(--ink); }

.pricing__note {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 0 var(--pad);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 60;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }

.faq__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .2s ease, border-color .2s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .25s ease, background .2s ease;
}
.faq__icon::before { top: 50%; left: 7px; right: 7px; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 7px; bottom: 7px; width: 1.5px; transform: translateX(-50%); }
.faq__item[open] .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: white; }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) rotate(90deg); }

.faq__answer {
  padding: 0 0 32px;
  max-width: 720px;
}
.faq__answer p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  margin: clamp(80px, 12vw, 140px) var(--pad) clamp(60px, 8vw, 100px);
  background: var(--ink);
  color: var(--cream-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 90px) clamp(28px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 57, 0.25), transparent 60%);
  pointer-events: none;
}

.contact__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

.contact__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 100;
}
.contact__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 100, "WONK" 1;
}
.contact__sub {
  color: rgba(245, 241, 234, 0.7);
  font-size: 17px;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 40px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.channel {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  transition: padding-left .2s ease;
}
a.channel:hover { padding-left: 8px; }
.channel:last-child { border-bottom: none; }
.channel__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.5);
}
.channel__value {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 30;
}
a.channel:hover .channel__value { color: var(--accent); }

/* Form */
.form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hp { position: absolute; left: -9999px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 234, 0.7);
}
.field .opt { text-transform: none; letter-spacing: 0; color: rgba(245,241,234,0.4); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 10px 0;
  color: var(--cream-on-dark);
  font-family: var(--body);
  font-size: 16px;
  transition: border-color .2s ease;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F5F1EA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.field select option { background: var(--dark-2); color: var(--cream-on-dark); }

.form .btn--primary { background: var(--accent); margin-top: 8px; }
.form .btn--primary:hover { background: var(--cream-on-dark); color: var(--ink); }
.form__note {
  font-size: 12px;
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  padding: 80px var(--pad) 0;
  overflow: hidden;
  position: relative;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin-top: 18px;
}
.footer__mark {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 100;
}
.footer__mark em { color: var(--accent); font-style: italic; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.footer__col a, .footer__col span {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--accent); }

.footer__big {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(48px, 14vw, 220px);
  font-weight: 350;
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-align: center;
  padding: 40px 0 20px;
  white-space: nowrap;
  overflow: hidden;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.footer__big .accent { color: var(--accent); }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--pad);
}
.thanks__inner {
  max-width: 620px;
  text-align: center;
}
.thanks__check {
  width: 72px; height: 72px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: popIn .6s cubic-bezier(.2,.8,.2,1.2) both;
}
@keyframes popIn {
  from { transform: scale(.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.thanks h1 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "WONK" 1;
}
.thanks h1 em { color: var(--accent); font-style: italic; }
.thanks p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }

  .section__head--split { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service--lg { grid-column: span 1; }

  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step { grid-template-columns: 70px 1fr; }
  .step__index { font-size: 56px; }

  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hero__title .line:nth-child(2) { padding-left: 30px; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .hero__stats .stat { display: flex; align-items: baseline; gap: 12px; }
  .hero__stats .stat__num { font-size: 28px; }
  .footer__cols { grid-template-columns: 1fr; }
  .channel { grid-template-columns: 100px 1fr; }
  .channel__value { font-size: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
}
