:root {
  --ink: #141a2e;
  --sub: #5b5f74;
  --paper: #f7f7fb;
  --paper-alt: #eeecfb;
  --card: #ffffff;
  --line: #e4e4ee;
  --accent: #6c4cf0;
  --accent-dark: #5537c9;
  --accent-soft: #efeaff;
  --radius: 14px;
  --font-head: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--paper); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--sub); }
a { color: var(--accent-dark); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: var(--accent-dark); margin-bottom: .6em; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,247,251,.94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .93rem; }
.main-nav a:hover { color: var(--accent-dark); }
.nav-cta { background: var(--ink); color: #fff !important; padding: 9px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* hero */
.hero { padding: 96px 0 72px; background: linear-gradient(180deg, var(--paper-alt), var(--paper)); }
.hero-inner { max-width: 680px; }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); color: var(--ink); }
.hero-sub { font-size: 1.14rem; color: var(--sub); max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: .95rem; border: 2px solid transparent; transition: transform .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* sections */
.section { padding: 76px 0; border-top: 1px solid var(--line); }
.section-alt { background: var(--card); }
.section h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--ink); }
.section-head { max-width: 62ch; }

/* how it works */
.step-list { counter-reset: step; list-style: none; margin: 36px 0 0; padding: 0; display: grid; gap: 0; }
.step-list li { counter-increment: step; position: relative; padding: 2px 0 30px 48px; border-left: 2px solid var(--line); margin-left: 17px; }
.step-list li:last-child { border-left-color: transparent; padding-bottom: 0; }
.step-list li::before { content: counter(step); position: absolute; left: -18px; top: 0; width: 34px; height: 34px; background: var(--ink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); font-size: .95rem; }
.step-list h3 { margin-bottom: .3em; font-size: 1.1rem; }
.step-list p { margin: 0; max-width: 56ch; }

/* value cards */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 32px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: .4em; }
.card p { margin: 0; font-size: .95rem; }

/* pricing */
.price-lead { background: var(--ink); color: #eceaf9; border-radius: var(--radius); padding: 30px 32px; margin: 32px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.price-lead .amount { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff; }
.price-lead .amount small { font-size: .95rem; font-weight: 500; color: #b9b4e6; }
.price-lead p { color: #c7c2ec; margin: 0; max-width: 40ch; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 8px; }
.tier-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.tier-card.featured { border: 2px solid var(--accent); position: relative; }
.tier-card .tier-featured-tag { position: absolute; top: -12px; right: 20px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 999px; }
.tier-card h3 { font-size: 1.1rem; margin-bottom: .2em; }
.tier-card .tier-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 6px 0 12px; }
.tier-card .tier-price small { font-size: .82rem; color: var(--sub); font-weight: 500; }
.tier-card ul { padding-left: 18px; margin: 0; font-size: .87rem; color: var(--sub); }
.tier-card li { margin-bottom: 6px; }
.price-note { font-size: .86rem; color: var(--sub); margin-top: 18px; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.about-copy p { max-width: 58ch; }
.locations { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.owner-row { display: flex; align-items: center; gap: 16px; margin: 18px 0 22px; }
.owner-photo { width: 96px; height: 128px; border-radius: 16px; object-fit: cover; border: 2px solid var(--line); flex-shrink: 0; }
.owner-row strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.owner-row span { font-size: .85rem; color: var(--sub); }

.locations h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-dark); margin-bottom: .8em; }
.locations ul { margin: 0; padding: 0; list-style: none; font-size: .95rem; }
.locations li { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.locations li:last-child { border-bottom: none; }

/* contact / cta */
.section-cta { background: var(--ink); color: #eceaf9; text-align: center; }
.section-cta h2 { color: #fff; }
.section-cta p { color: #c7c2ec; max-width: 48ch; margin: 0 auto 24px; }
.cta-inner .hero-actions { justify-content: center; }
.section-cta .btn-ghost { border-color: #c7c2ec; color: #eceaf9; }
.section-cta .btn-ghost:hover { background: #eceaf9; color: var(--ink); }

.site-footer { padding: 32px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--sub); }
.footer-note { font-style: italic; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .price-lead { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 360px; }
  .main-nav a { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .nav-cta { border-radius: 0; text-align: center; }
}
