:root {
  --ink: #2c3e50;
  --terracotta: #e27d60;
  --sand: #f2f1ef;
  --olive: #a3b18a;
  --blush: #f7cac9;
  --white: #ffffff;
  --muted: #5e6b77;
  --border: #d9d9d2;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 999; background: var(--ink); color: var(--white); padding: 0.75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(44,62,80,.08); backdrop-filter: blur(12px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 24px; display: inline-flex; align-items: end; gap: 4px; }
.dot { display: block; border-radius: 50%; background: var(--terracotta); }
.dot.small { width: 8px; height: 8px; }
.dot.large { width: 20px; height: 20px; background: var(--ink); }
.site-nav { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a { text-decoration: none; font-weight: 700; font-size: .95rem; }
.site-nav a:hover { text-decoration: underline; text-underline-offset: 5px; }
.menu-toggle { display: none; border: 1px solid var(--ink); background: var(--white); color: var(--ink); border-radius: 999px; padding: .55rem .9rem; font-weight: 700; }
.hero { background: var(--sand); padding: 7rem 0 6rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 5rem; align-items: center; }
.eyebrow { margin: 0 0 1rem; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: #59656f; }
h1,h2,h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); margin-bottom: 1.3rem; font-weight: 800; }
.word-small { font-size: .62em; font-weight: 600; color: var(--terracotta); }
.word-big { font-size: 1.02em; }
.lead { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; margin: 0 0 1.2rem; }
.intro,.section-intro { max-width: 760px; font-size: 1.1rem; color: #465766; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .75rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 800; border: 2px solid var(--ink); }
.button.primary { background: var(--ink); color: var(--white); }
.button.primary:hover { background: #1f2d39; }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--white); }
.hero-card { position: relative; min-height: 390px; padding: 2rem; background: var(--white); border-radius: 28px; border: 1px solid var(--border); box-shadow: 0 20px 55px rgba(44,62,80,.09); display: flex; flex-direction: column; justify-content: end; }
.seed { width: 22px; height: 14px; border-radius: 50% 50% 45% 45%; background: var(--terracotta); position: absolute; top: 66px; left: 60px; transform: rotate(-22deg); }
.grow-line { position: absolute; width: 170px; height: 170px; border-left: 4px solid var(--olive); border-top: 4px solid var(--olive); border-radius: 100% 0 0 0; top: 82px; left: 70px; transform: rotate(18deg); }
.grow-line::after { content: ''; position: absolute; width: 90px; height: 60px; border-radius: 100% 0 100% 0; background: var(--olive); right: -32px; top: -22px; transform: rotate(25deg); }
.steps { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.steps span { background: var(--sand); border-radius: 999px; padding: .4rem .7rem; font-weight: 700; font-size: .82rem; }
.purpose-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.purpose-strip-inner { min-height: 64px; display: flex; gap: 1.5rem; align-items: center; justify-content: center; flex-wrap: wrap; color: #586570; font-size: .9rem; font-weight: 700; }
.purpose-strip-inner span:not(:last-child)::after { content: '·'; margin-left: 1.5rem; color: var(--terracotta); }
.section { padding: 6rem 0; }
.section h2 { font-size: clamp(2.2rem, 4.3vw, 4.2rem); max-width: 900px; margin-bottom: 1.2rem; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.service-card { border: 1px solid var(--border); border-radius: 22px; background: var(--white); overflow: hidden; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.service-card.accent { background: var(--sand); }
.service-card:hover,.service-card[open] { transform: translateY(-4px); border-color: rgba(226,125,96,.65); box-shadow: 0 18px 40px rgba(44,62,80,.09); }
.service-card summary { min-height: 280px; padding: 1.5rem; display: flex; flex-direction: column; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--sand); position: relative; border: 1px solid rgba(44,62,80,.12); display: block; }
.service-title { font-size: 1.35rem; font-weight: 800; margin-top: 1.35rem; }
.service-short { color: #53616d; margin-top: .65rem; }
.service-hover { margin-top: .75rem; color: var(--ink); font-size: .92rem; font-weight: 700; opacity: 0; transform: translateY(8px); max-height: 0; overflow: hidden; transition: opacity 160ms ease, transform 160ms ease, max-height 160ms ease; }
.service-card:hover .service-hover,.service-card:focus-within .service-hover { opacity: 1; transform: translateY(0); max-height: 4rem; }
.service-open-label { margin-top: auto; padding-top: 1rem; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--terracotta); }
.service-open-label::after { content: ' +'; }
.service-card[open] .service-open-label::after { content: ' –'; }
.service-more { padding: 1.2rem 1.5rem 1.5rem; color: #465766; border-top: 1px solid rgba(44,62,80,.08); }
.web-icon span { position: absolute; width: 30px; height: 23px; border: 3px solid var(--ink); left: 10px; top: 10px; border-radius: 4px; }
.web-icon span::after { content: ''; position: absolute; width: 14px; height: 3px; background: var(--terracotta); left: 5px; bottom: -8px; border-radius: 3px; }
.brand-icon span { position: absolute; width: 25px; height: 25px; border-radius: 50%; border: 4px solid var(--ink); left: 12px; top: 12px; box-shadow: 10px 8px 0 -5px var(--terracotta); }
.talk-icon span { position: absolute; width: 30px; height: 22px; border: 3px solid var(--ink); border-radius: 12px; left: 10px; top: 10px; }
.talk-icon span::after { content: ''; position: absolute; width: 9px; height: 9px; border-left: 3px solid var(--ink); border-bottom: 3px solid var(--ink); bottom: -7px; left: 6px; transform: skewY(-25deg); }
.content-icon span { position: absolute; width: 25px; height: 31px; border: 3px solid var(--ink); left: 13px; top: 9px; border-radius: 4px; }
.content-icon span::after { content: '•'; color: var(--terracotta); position: absolute; font-size: 28px; line-height: 1; left: 6px; top: 5px; }
.soft { background: var(--sand); }
.process-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.process { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.process li { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; align-items: start; background: var(--white); border-radius: 18px; padding: 1.2rem; border: 1px solid var(--border); }
.process li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-weight: 800; }
.process h3 { margin: .2rem 0 .4rem; font-size: 1.2rem; }
.process p { margin: 0; color: #53616d; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.price-card { border: 1px solid var(--border); border-radius: 22px; padding: 1.5rem; position: relative; background: var(--white); }
.price-card.featured { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-10px); }
.price-card.featured p:not(.price):not(.tag) { color: #e7ecef; }
.tag { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: #66737d; min-height: 2.3em; }
.featured .tag { color: #dce5ea; }
.price-card h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.price { font-size: 1.5rem; font-weight: 800; margin: 0 0 1.2rem; }
.price-card p:not(.price):not(.tag) { color: #53616d; }
.support-note { margin-top: 2rem; padding: 1.2rem 1.4rem; background: var(--sand); border-left: 5px solid var(--terracotta); border-radius: 0 14px 14px 0; }
.quote-section { padding-top: 0; }
.quote-box { background: var(--blush); border-radius: 28px; padding: clamp(2rem,5vw,4.5rem); }
blockquote { margin: 0; max-width: 920px; font-size: clamp(2rem,4vw,4rem); line-height: 1.08; font-weight: 800; letter-spacing: -.04em; }
.contact { background: var(--ink); color: var(--white); }
.contact .eyebrow { color: #cbd4da; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 4rem; align-items: center; }
.contact h2 { margin-bottom: 1rem; }
.contact p { color: #e1e7eb; max-width: 650px; }
.contact-box { background: var(--white); color: var(--ink); padding: 2rem; border-radius: 22px; }
.contact-box p { color: #53616d; }
.contact-box .primary { background: var(--terracotta); border-color: var(--terracotta); color: #1f2d39; width: 100%; }
.contact-box .primary:hover { background: #d66e53; }
.referral-form label { display: block; margin-bottom: .35rem; }
.referral-help { margin: 0 0 1rem; font-size: .95rem; }
.referral-row { display: grid; grid-template-columns: 1fr auto; gap: .75rem; align-items: stretch; }
.referral-row input { width: 100%; min-height: 52px; border: 2px solid #b9c0c5; border-radius: 999px; padding: .75rem 1rem; font: inherit; color: var(--ink); background: var(--white); text-transform: uppercase; letter-spacing: .06em; }
.referral-row input:focus { border-color: var(--terracotta); }
.referral-row .button { width: auto; cursor: pointer; }
.referral-status { min-height: 1.6em; margin: .8rem 0 0; font-size: .92rem; font-weight: 700; }
.referral-status.error { color: #9b2c20; }
.site-footer { background: #1f2d39; color: var(--white); padding: 2.2rem 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; }
.footer-inner span { color: #cbd4da; }
@media (max-width: 900px) {
  .service-grid,.pricing-grid { grid-template-columns: repeat(2,1fr); }
  .hero-grid,.process-wrap,.contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-top: 4.5rem; }
  .hero-card { min-height: 320px; }
  .price-card.featured { transform: none; }
}
@media (max-width: 680px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .7rem .5rem; }
  .hero { padding: 3.5rem 0 4rem; }
  .section { padding: 4.5rem 0; }
  .service-grid,.pricing-grid { grid-template-columns: 1fr; }
  .purpose-strip-inner { justify-content: flex-start; gap: .7rem 1rem; padding: 1rem 0; }
  .purpose-strip-inner span:not(:last-child)::after { margin-left: 1rem; }
  .referral-row { grid-template-columns: 1fr; }
  .referral-row .button { width: 100%; }
  .footer-inner { flex-direction: column; }
  h1 { font-size: clamp(3rem,15vw,4.7rem); }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
