:root {
  --ink: #111713;
  --ink-2: #1b241e;
  --paper: #f6f3ec;
  --paper-2: #ede9df;
  --card: #fffdf8;
  --green: #b6ef63;
  --green-deep: #537f2a;
  --purple: #30003d;
  --purple-soft: #eee2f2;
  --muted: #667069;
  --line: rgba(17, 23, 19, .14);
  --shadow: 0 24px 70px rgba(17, 23, 19, .10);
  --radius: 24px;
  --radius-sm: 16px;
  --shell: min(1160px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(68px, 8vw, 112px) 0; }
.section-tight { padding: clamp(44px, 5vw, 72px) 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-soft { background: var(--paper-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  width: var(--shell);
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .11em;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; font-size: .95rem; font-weight: 650; }
.nav-links a:hover { opacity: .64; }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.nav-cta:hover { opacity: 1 !important; background: var(--purple); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }

.hero { position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -170px;
  top: -140px;
  background: radial-gradient(circle at 32% 32%, rgba(182,239,99,.62), rgba(48,0,61,.09) 52%, transparent 72%);
  pointer-events: none;
}
.hero-inner { padding: clamp(88px, 11vw, 154px) 0 clamp(86px, 10vw, 138px); position: relative; z-index: 1; }
.hero-copy { max-width: 850px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  color: var(--green-deep);
  margin-bottom: 17px;
}
.eyebrow::before { content: ""; width: 25px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--green); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.9rem); max-width: 1000px; }
h2 { font-size: clamp(2.15rem, 4.6vw, 4.4rem); max-width: 900px; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
.lede, .hero p { font-size: clamp(1.1rem, 2vw, 1.42rem); max-width: 760px; color: #475149; margin: 28px 0 0; }
.section-dark .lede, .section-dark p { color: rgba(255,255,255,.72); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: #fff; }
.button.primary:hover { background: var(--purple); }
.button.secondary { border-color: var(--line); background: transparent; }
.section-dark .button.secondary { border-color: rgba(255,255,255,.25); color: #fff; }
.button.green { background: var(--green); color: var(--ink); }
.text-link { font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }

.section-head { margin-bottom: 38px; }
.section-head p { max-width: 740px; margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; }
.grid-2, .grid-3 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.card.featured { background: var(--ink); color: #fff; border-color: var(.section-dark .card {
  color: #111713;
}

.section-dark .card h3 {
  color: #111713;
}

.section-dark .card li {
  color: #3f4742;
}--ink); box-shadow: var(--shadow); }
.card.featured p { color: rgba(255,255,255,.72); }
.card p { color: var(--muted); margin: 14px 0 0; }
.card .price { margin: 24px 0 4px; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.card .price small { font-size: .9rem; font-weight: 650; letter-spacing: 0; opacity: .65; }
.card .kicker { font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; color: var(--green-deep); }
.card.featured .kicker { color: var(--green); }
.card ul { padding-left: 1.15rem; margin: 20px 0 0; }
.card li + li { margin-top: 8px; }
.card .button { margin-top: 24px; }

.service-path { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: stretch; }
.path-step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); }
.path-step strong { display: block; font-size: 1.18rem; margin-bottom: 7px; }
.path-step span { color: var(--muted); }
.path-step:not(:last-child)::after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color:#fff; display:grid; place-items:center; z-index:2; font-size:.8rem; }

.quote-band { background: var(--purple); color: #fff; border-radius: 32px; padding: clamp(34px, 6vw, 66px); }
.quote-band .quote { font-size: clamp(2.2rem, 5vw, 5rem); font-weight: 900; line-height: 1.02; letter-spacing: -.05em; max-width: 980px; }
.quote-band p { color: rgba(255,255,255,.74); max-width: 720px; font-size: 1.08rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.pill { border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-size: .9rem; font-weight: 700; background: rgba(255,255,255,.54); }
.section-dark .pill { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); }

.notice-strip { display: flex; gap: 12px; align-items: flex-start; background: var(--purple-soft); border: 1px solid rgba(48,0,61,.12); padding: 18px 20px; border-radius: var(--radius-sm); }
.notice-strip strong { color: var(--purple); }

.price-table { display: grid; gap: 12px; }
.price-row { display: grid; grid-template-columns: 1.2fr .6fr 1.7fr; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); padding: 20px 0; }
.price-row strong:nth-child(2) { text-align: right; font-size: 1.14rem; }
.price-row span { color: var(--muted); }
.category-label { margin-top: 42px; margin-bottom: 8px; color: var(--green-deep); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 900; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: start; }
.sticky-side { position: sticky; top: 110px; }
.content-stack > * + * { margin-top: 22px; }
.content-stack p { color: var(--muted); }
.content-stack h3 { margin-top: 34px; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-deep); font-weight: 900; }

.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.project-card { display: block; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); transition: transform .2s ease, box-shadow .2s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project-visual { min-height: 220px; padding: 28px; background: linear-gradient(145deg, var(--ink), var(--purple)); color: white; display: flex; align-items: end; }
.project-visual.alt { background: linear-gradient(145deg, #dbeec4, #f8f4e8); color: var(--ink); }
.project-visual.light { background: linear-gradient(145deg, #ebe6dd, #d7d0c3); color: var(--ink); }
.project-visual strong { font-size: 2rem; line-height: 1; max-width: 260px; }
.project-copy { padding: 24px; }
.project-copy p { color: var(--muted); }

.form-card { max-width: 820px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .93rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(48,0,61,.08); }
.form-help { color: var(--muted); font-size: .9rem; margin-top: 14px; }
.hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; background: var(--card); }
.contact-card small { display:block; text-transform:uppercase; letter-spacing:.12em; font-weight:800; color:var(--muted); margin-bottom:5px; }
.contact-card a { font-weight: 800; text-decoration: none; }

.quicktest { display: grid; gap: 12px; margin-top: 26px; }
.test-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.test-status { font-weight: 900; }

.footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand strong { display:block; }
.footer-brand span { display:block; color:var(--muted); font-size:.92rem; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:18px; }
.footer-links a { text-decoration:none; color:var(--muted); font-size:.92rem; }
.footer-meta { margin-top: 18px; color: var(--muted); font-size: .85rem; }

.site-notice { position: fixed; left:50%; bottom:24px; transform:translateX(-50%); z-index:999; max-width:min(680px,calc(100vw - 28px)); background:var(--ink); color:#fff; border-radius:18px; box-shadow:var(--shadow); padding:16px 18px; display:flex; align-items:center; gap:12px; }
.site-notice span { color:rgba(255,255,255,.72); }
.site-notice button { margin-left:auto; border:0; background:transparent; color:#fff; font-size:1.4rem; cursor:pointer; }
.section-dark .card {
  color: #111713;
}

.section-dark .card h3 {
  color: #111713;
}

.section-dark .card li {
  color: #3f4742;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 77px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { text-align: center; }
  .grid-3, .project-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .service-path { grid-template-columns: 1fr; }
  .path-step:not(:last-child)::after { content: "↓"; right: 24px; top: auto; bottom: -13px; transform:none; }
}

@media (max-width: 650px) {
  :root { --shell: min(100% - 28px, 1160px); }
  .nav-logo span { display:none; }
  .hero-inner { padding-top: 74px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .grid-2, .grid-3, .project-grid, .form-grid, .contact-cards { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; }
  .price-row span { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr; align-items:start; }
  .footer-links { justify-content:flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
