:root {
  --white: #FFFFFF;
  --beige: #F4EDE3;
  --beige-deep: #ECE2D2;
  --blue: #BFDCE5;
  --blue-deep: #A8CDD9;
  --ink: #2E2E2E;
  --ink-soft: #4A4A4A;
  --muted: #6B6B6B;
  --bg: #F7F7F5;
  --line: rgba(46, 46, 46, 0.10);
  --line-soft: rgba(46, 46, 46, 0.06);

  --accent-blue: var(--blue-deep);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --serif: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --sans: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --pad: clamp(20px, 4vw, 56px);
  --gap: clamp(20px, 3vw, 40px);
}

* { box-sizing: border-box; }

.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; vertical-align: middle; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (pointer: fine) {
  body { cursor: none; }
  body a, body button, body input, body textarea, body label { cursor: none; }
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transition:
    opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    clip-path 900ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-up    { transform: translate3d(0, 28px, 0); }
.reveal-fade  { /* opacity only */ }
.reveal-scale { transform: scale(0.94); filter: blur(4px); }
.reveal-left  { transform: translate3d(-32px, 0, 0); }
.reveal-right { transform: translate3d(32px, 0, 0); }
.reveal-clip  { clip-path: inset(0 100% 0 0); transform: translate3d(0, 0, 0); }

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

/* When wrapping a block, also animate direct children of stagger container */
.reveal-stagger.reveal { opacity: 1; transform: none; }
.reveal-stagger > .reveal { will-change: opacity, transform; }
.reveal-stagger.is-revealed > .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* ============================================
   Cursor follower
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  opacity: 0.5;
  transition: width .25s ease, height .25s ease, opacity .25s ease, background .25s ease, border-color .25s ease;
}
.cursor-ring.hover {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-color: transparent;
  opacity: 0.7;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   Magnetic wrapper
   ============================================ */
.magnetic {
  display: inline-block;
  transition: transform .25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.marquee-sep {
  color: var(--accent-blue);
  font-style: normal;
  font-size: 0.7em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   Hero visual animations
   ============================================ */
.hero-visual.animated .hero-blob {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.float-a { animation: floatA 9s ease-in-out infinite; }
.float-b { animation: floatB 11s ease-in-out infinite; }
@keyframes floatA {
  0%, 100% { translate: 0 0; }
  50%      { translate: -6px 10px; }
}
@keyframes floatB {
  0%, 100% { translate: 0 0; }
  50%      { translate: 8px -6px; }
}

.draw-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawIn 2.4s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
@keyframes drawIn {
  to { stroke-dashoffset: 0; }
}

.orbit { transform-origin: 100px 100px; }
.orbit-1 { animation: orbit1 14s linear infinite; }
.orbit-2 { animation: orbit2 22s linear infinite; }
.orbit-3 { animation: orbit3 18s linear infinite; }
@keyframes orbit1 {
  from { transform: rotate(0deg)   translateX(0); }
  to   { transform: rotate(360deg) translateX(0); }
}
@keyframes orbit2 {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes orbit3 {
  from { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(180deg) scale(1.4); }
  to   { transform: rotate(360deg) scale(1); }
}

/* ============================================
   Card / interactive hovers
   ============================================ */
.service-card { transition: background .25s ease, transform .35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow .35s ease; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -28px rgba(46,46,46,0.35);
}
.service-card .service-icon { transition: transform .35s cubic-bezier(0.2, 0.7, 0.2, 1), background .25s ease; }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); background: var(--blue); }

.step { transition: transform .35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow .35s ease, border-color .25s ease; }
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -28px rgba(46,46,46,0.3);
  border-color: var(--line);
}

.quote-card { transition: transform .35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow .35s ease; }
.quote-card:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 0 20px 40px -28px rgba(46,46,46,0.25);
}

.bullet-card { transition: background .3s ease, padding .3s ease; }
.bullet-card:hover { background: rgba(191, 220, 229, 0.18); }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120px 80px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.btn { position: relative; overflow: hidden; }
.btn-primary:hover::after { opacity: 1; }

/* Animated underline for nav links */
.nav-links a {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* FAQ open animation extra polish */
.faq-q { transition: padding-left .25s ease, color .2s ease; }
.faq-item.open .faq-q { padding-left: 14px; color: var(--ink); }
.faq-item .faq-q::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-blue);
  transform: translateY(-50%) scale(0);
  transition: transform .3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-q { position: relative; }
.faq-item.open .faq-q::before { transform: translateY(-50%) scale(1); }

/* Scroll-driven hero text fade */
.hero-copy .display em {
  background: linear-gradient(90deg, var(--ink), var(--ink));
  background-clip: text;
  -webkit-background-clip: text;
}

/* hl-blue: animate fill in */
.hl-blue {
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-size .6s ease;
}
.is-revealed .hl-blue,
.reveal.is-revealed .hl-blue { animation: hlFill 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards .4s; }
@keyframes hlFill {
  from { background-image: linear-gradient(180deg, transparent 64%, transparent 64%, transparent 92%, transparent 92%); }
  to   { background-image: linear-gradient(180deg, transparent 64%, var(--blue) 64%, var(--blue) 92%, transparent 92%); }
}

html { scroll-behavior: smooth; }

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

/* Layout */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container.narrow { max-width: 880px; }

.section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}
.section-soft  { background: var(--bg); }
.section-beige { background: var(--beige); }
.section-blue  { background: linear-gradient(180deg, var(--blue) 0%, #CDE3EB 100%); }
.section-final { background: var(--beige); }

/* Type */
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 16px 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.h2 em { font-style: italic; }
.h2 .muted { color: var(--muted); font-style: italic; }
.h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
  text-wrap: pretty;
  margin: 0 0 16px;
}
.body.small { font-size: 15.5px; }
.microcopy {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.microcopy.center { text-align: center; }
.microcopy a { color: var(--ink); border-bottom: 1px solid var(--line); }

.hl-blue {
  background: linear-gradient(180deg, transparent 64%, var(--blue) 64%, var(--blue) 92%, transparent 92%);
  padding: 0 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow.centered { justify-content: center; }

.section-head {
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 720px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .body { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -12px rgba(46,46,46,0.45); }
.btn-ghost {
  border-color: var(--line);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(46,46,46,0.04); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 8px 0 18px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 247, 245, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px var(--pad);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.brand.small .brand-name { font-size: 18px; }
.brand-dot { color: var(--accent-blue); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 110px);
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(191, 220, 229, 0.35) 0%, rgba(191, 220, 229, 0) 60%),
    radial-gradient(50% 70% at 15% 85%, rgba(244, 237, 227, 0.6) 0%, rgba(244, 237, 227, 0) 70%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero-copy { max-width: 640px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.hero-blob-blue {
  inset: 0 0 auto auto;
  width: 78%;
  height: 78%;
  background: radial-gradient(circle at 30% 30%, #DCEDF3 0%, var(--blue) 60%, var(--blue-deep) 100%);
}
.hero-blob-beige {
  inset: auto auto 0 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 70% 70%, #FBF6EE 0%, var(--beige) 70%, var(--beige-deep) 100%);
  mix-blend-mode: multiply;
}
.hero-doodle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Problem */
.bullet-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.bullet-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.bullet-card:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.bullet-card:nth-child(even) { padding-left: 24px; }
.bullet-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Solution / steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}
.step {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 18px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--beige-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(46,46,46,0.06);
}
.service-card {
  background: var(--beige);
  padding: 32px 30px 36px;
  border-right: 1px solid rgba(46,46,46,0.06);
  border-bottom: 1px solid rgba(46,46,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s ease;
}
.service-card:hover { background: #F8F2E9; }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  border: 1px solid rgba(46,46,46,0.06);
}

/* Differentiator quotes */
.quote-grid {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  position: relative;
}
.quote-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}
.quote-mark {
  position: absolute;
  top: 4px;
  left: 16px;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--blue-deep);
  line-height: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* Offer */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border: 1px solid rgba(46,46,46,0.06);
  box-shadow: 0 30px 60px -40px rgba(46,46,46,0.25);
}
.offer-copy .h2 { margin-top: 12px; }
.price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 14px;
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* For-you list */
.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.for-you-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink);
}
.for-you-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
}

/* FAQ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color .2s ease;
}
.faq-q:hover { color: #000; }
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(180deg); background: var(--blue); border-color: transparent; }
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  margin: 0;
  padding: 0 80px 22px 4px;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Final CTA */
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.final-copy .h2 { margin-bottom: 16px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(46,46,46,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px -40px rgba(46,46,46,0.25);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.field .opt { font-style: italic; color: #999; }
.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #A8A8A8; }
.field input:focus,
.field textarea:focus { border-color: var(--ink); background: var(--white); }

.sent-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 4px 4px;
}
.sent-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* Footer */
.footer {
  padding: 56px 0 32px;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  text-align: right;
}
.footer-email {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; justify-self: center; margin-top: 12px; }
  .steps { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card:nth-child(3n) { border-right: 1px solid rgba(46,46,46,0.06); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(46,46,46,0.06); }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
  .offer-card { grid-template-columns: 1fr; }
  .final-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .bullet-grid { grid-template-columns: 1fr; }
  .bullet-card:nth-child(odd),
  .bullet-card:nth-child(even) { padding: 22px 4px; border-right: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; padding: 10px var(--pad); }
  .brand { gap: 8px; flex-shrink: 1; min-width: 0; }
  .brand-name { font-size: 16px; white-space: nowrap; }
  .brand-mark svg { width: 22px; height: 22px; }
  .nav .btn-sm { padding: 8px 12px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:not(:last-child) { border-bottom: 1px solid rgba(46,46,46,0.06); }
  .for-you-list li { grid-template-columns: 36px 1fr; gap: 14px; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: flex-start; text-align: left; }
  .faq-a { padding-right: 4px; }
}
