/* ==========================================================================
   RestartIT — shared design system
   Palette sampled from brand assets:
   navy #18253F · cream #F4EFE9 · copper #A8714A · steel #9FB0CB · deep #010E3A
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #18253F;
  --navy-deep:   #0F1A2E;
  --navy-900:    #0B1424;
  --navy-700:    #1E2D4A;
  --navy-600:    #26344D;
  --navy-500:    #32405B;
  --cream:       #F4EFE9;
  --cream-dim:   #D8D2CA;
  --brown:       #A8714A;
  --brown-600:   #905E3A;
  --brown-700:   #7A4E2F;
  --brown-300:   #C79973;
  --steel:       #9FB0CB;
  --steel-dim:   #7E8DA8;

  /* Semantic */
  --bg:          var(--navy);
  --surface:     var(--navy-600);
  --surface-2:   var(--navy-700);
  --text:        var(--cream);
  --text-muted:  var(--steel);
  --accent:      var(--brown);
  --border:      rgba(159, 176, 203, 0.16);
  --border-strong: rgba(159, 176, 203, 0.30);

  /* Typography */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1140px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow:    0 18px 40px -18px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 8px 22px -12px rgba(0, 0, 0, 0.5);
  --header-h:  72px;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brown-300); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--cream); }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; }
/* Outline (not box-shadow) so the ring survives overflow:hidden ancestors and forced-colors mode */
:focus-visible { outline: 3px solid var(--brown-300); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--alt { background: linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.center { text-align: center; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brown-600); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown-300);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brown); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.6rem); }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  /* brown-600, not brown: white on #A8714A is only 4.10:1 and fails WCAG AA */
  --btn-bg: var(--brown-600);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: 0 10px 24px -10px rgba(168, 113, 74, 0.8); }
.btn--primary:hover { background: var(--brown-700); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--border-strong); }
.btn--ghost:hover { color: var(--cream); border-color: var(--brown-300); background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 26, 46, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
/* Desktop: logo left · links centered in the header · Book Now right */
.nav { position: relative; display: flex; align-items: center; height: var(--header-h); }
.nav__brand { display: inline-flex; align-items: center; margin-right: auto; }
.nav__brand img { height: 44px; width: auto; }
.nav__menu { display: flex; align-items: center; }
.nav__links {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.96rem; color: var(--steel);
  padding: 9px 12px; border-radius: 999px; transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav__links a[aria-current="page"] { color: var(--cream); background: rgba(168,113,74,0.16); }
/* Marks the other division so it reads as a sibling site, not just another page */
.nav__links a.is-business { color: var(--brown-300); }
.nav__links a.is-business:hover { color: var(--cream); }
.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none; background: transparent; border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 10px; cursor: pointer; padding: 0;
  color: var(--cream); align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav[data-open="true"] .nav__toggle .icon-open { display: none; }
.nav[data-open="true"] .nav__toggle .icon-close { display: block; }

/* 1200px, not 1000px: the absolutely-centred links would otherwise overlap the logo */
@media (max-width: 1200px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--navy-deep); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 18px clamp(20px, 5vw, 40px) 26px;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  /* Reset desktop centering for the dropdown */
  .nav__links { position: static; transform: none; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav__cta { margin: 10px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(64px, 11vw, 128px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(168,113,74,0.18), transparent 60%),
    radial-gradient(760px 520px at 12% 92%, rgba(50,64,91,0.50), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-900) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image: radial-gradient(rgba(159,176,203,0.08) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(180deg, #000, transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
}
.hero__inner {
  max-width: 820px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__inner .eyebrow { justify-content: center; }
.hero h1 { font-size: clamp(2.2rem, 1.3rem + 4vw, 3.6rem); letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--brown-300); }
.hero__lead {
  color: var(--steel); font-size: clamp(1.06rem, 1rem + 0.5vw, 1.26rem);
  margin: 20px auto 0; max-width: 56ch;
}
.hero .btn-row { margin-top: 32px; justify-content: center; }
.hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px;
  margin-top: 34px; color: var(--steel); font-size: 0.92rem;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 17px; height: 17px; color: var(--brown-300); flex: none; }

/* ---------- Generic cards & grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, var(--navy-600), var(--navy-700));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.96rem; }

.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(168,113,74,0.14); border: 1px solid rgba(168,113,74,0.30);
  color: var(--brown-300); margin-bottom: 16px;
}
.icon-badge svg { width: 24px; height: 24px; }

/* ---------- Feature / why row ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon-badge { flex: none; margin-bottom: 0; }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Pill / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(159,176,203,0.08); border: 1px solid var(--border);
  color: var(--cream-dim); padding: 8px 15px; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
}
.chip svg { width: 15px; height: 15px; color: var(--brown-300); }

/* ---------- Tier label ---------- */
.tier-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.tier-head h2 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 1.9rem); }
.tier-head .tier-tag {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown-300); background: rgba(168,113,74,0.12); border: 1px solid rgba(168,113,74,0.3);
  padding: 5px 12px; border-radius: 999px;
}
.tier-head p { color: var(--text-muted); width: 100%; max-width: 60ch; }

/* Service card with checklist */
.service-card ul { margin-top: 14px; display: grid; gap: 9px; }
.service-card li { display: flex; gap: 10px; align-items: flex-start; color: var(--cream-dim); font-size: 0.93rem; }
.service-card li svg { width: 17px; height: 17px; color: var(--brown-300); flex: none; margin-top: 3px; }

/* Add-on small list */
.addon {
  display: flex; gap: 14px; align-items: center;
  background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 20px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.addon:hover { border-color: var(--border-strong); transform: translateX(3px); }
.addon .icon-badge { margin-bottom: 0; flex: none; width: 42px; height: 42px; }
.addon h3 { font-size: 1.02rem; }
.addon p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Banner / CTA strip ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__inner {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 54px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band__inner::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.9;
  background: radial-gradient(600px 240px at 50% -20%, rgba(168,113,74,0.22), transparent 70%);
}
.cta-band__inner > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.2rem); }
.cta-band p { color: var(--steel); max-width: 52ch; margin: 14px auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Divisions cross-link (home -> business) ---------- */
.divisions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 32px;
  border: 1px solid var(--border); border-left: 3px solid var(--brown); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  padding: clamp(24px, 4vw, 38px);
}
.divisions h2 { font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.8rem); margin-top: 4px; }
.divisions p { color: var(--text-muted); max-width: 56ch; margin-top: 10px; }
.divisions .btn { flex: none; }

/* ---------- FAQ (native details) ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 500; font-size: 1.04rem;
  color: var(--cream); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none; width: 22px; height: 22px; color: var(--brown-300);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq__body { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.98rem; }
.faq .faq__body p + p { margin-top: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px 20px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.contact-item .icon-badge { margin-bottom: 0; flex: none; }
.contact-item .label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.contact-item .value { font-family: var(--font-head); font-weight: 500; color: var(--cream); font-size: 1.05rem; word-break: break-word; }
.contact-item a.value:hover { color: var(--brown-300); }
.form-embed {
  background: var(--navy-700); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px; box-shadow: var(--shadow-sm);
}
.form-embed iframe { width: 100%; border: 0; border-radius: var(--radius-sm); display: block; min-height: 760px; background: #fff; }
.form-fallback { text-align: center; padding: 22px; color: var(--text-muted); font-size: 0.92rem; }

/* ---------- About / Team ---------- */
.prose { max-width: 760px; }
.prose p { color: var(--cream-dim); margin-top: 16px; font-size: 1.05rem; }
.prose p:first-child { margin-top: 0; }
.value-grid { margin-top: 30px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.profile { text-align: center; padding: 32px 26px; }
.profile__photo {
  width: 132px; height: 132px; border-radius: 50%; margin: 0 auto 20px;
  background: radial-gradient(circle at 50% 35%, var(--navy-500), var(--navy-900));
  border: 2px solid var(--border-strong); display: grid; place-items: center; overflow: hidden;
  color: var(--steel);
}
.profile__photo svg { width: 58px; height: 58px; opacity: 0.7; }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; }
.profile h3 { font-size: 1.25rem; }
.profile .role { color: var(--brown-300); font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; letter-spacing: 0.04em; margin-top: 4px; }
.profile .bio { color: var(--text-muted); margin-top: 14px; font-size: 0.96rem; }
.placeholder-note {
  display: inline-block; margin-top: 16px; font-size: 0.78rem; color: var(--steel);
  background: rgba(159,176,203,0.07); border: 1px dashed var(--border-strong); border-radius: 8px; padding: 6px 12px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(46px, 7vw, 84px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(700px 320px at 80% -10%, rgba(168,113,74,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
}
.page-hero h1 { font-size: clamp(2rem, 1.3rem + 2.8vw, 3rem); }
.page-hero p { color: var(--steel); margin-top: 14px; font-size: 1.1rem; max-width: 60ch; }
.breadcrumb { font-size: 0.85rem; color: var(--steel-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--steel); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: "/"; color: var(--steel-dim); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--border); padding-block: 54px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { color: var(--steel); font-size: 0.94rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-dim); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 2px; }
.footer-col a, .footer-col span { display: inline-block; padding-block: 10px; color: var(--cream-dim); font-size: 0.95rem; }
.footer-col a:hover { color: var(--brown-300); }
.footer-col .muted { color: var(--steel-dim); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(159,176,203,0.08); border: 1px solid var(--border); color: var(--cream-dim);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: var(--brown-300); background: rgba(168,113,74,0.18); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center;
  color: var(--steel-dim); font-size: 0.86rem;
}
.footer-hours { display: inline-flex; align-items: center; gap: 8px; }
.footer-hours svg { width: 15px; height: 15px; color: var(--brown-300); }

/* ---------- Scroll reveal ----------
   Content is hidden only after JS confirms it is running: the inline script in
   <head> sets .js-reveal on <html>. If that script or main.js never runs, the
   content simply stays visible instead of the page rendering blank. */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
.js-reveal .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js-reveal .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js-reveal .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESTARTIT FOR BUSINESS — secondary style
   Same three brand colours and the same type family as the residential site,
   shifted navy-forward: deeper ground, hairline gold rules instead of filled
   badges, sharper corners, wider editorial spacing. Everything below is
   scoped to .page-biz so the residential pages are untouched.
   ========================================================================== */
.page-biz {
  --bg: var(--navy-900);
  --hairline: rgba(199, 153, 115, 0.26);
  --hairline-strong: rgba(199, 153, 115, 0.55);
  --biz-panel: #0E1A2E;
  --radius-biz: 6px;
}
.page-biz .site-header { background: rgba(11, 20, 36, 0.88); }

/* Shared bits ----------------------------------------------------------- */
.biz-rule { height: 1px; background: linear-gradient(90deg, var(--hairline-strong), transparent); border: 0; }
.biz-label {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-300);
  margin-bottom: 18px;
}
.biz-label .num { font-size: 0.95rem; letter-spacing: 0.06em; opacity: 0.75; }
.biz-section { padding-block: clamp(60px, 9vw, 118px); border-top: 1px solid rgba(159, 176, 203, 0.10); }
.biz-section h2 { font-size: clamp(1.8rem, 1.15rem + 2.7vw, 2.75rem); letter-spacing: -0.02em; }
.biz-section > .container > p.lede { color: var(--steel); font-size: 1.08rem; max-width: 62ch; margin-top: 16px; }

/* Hero ------------------------------------------------------------------ */
.biz-hero { position: relative; overflow: hidden; padding-block: clamp(64px, 11vw, 132px); border-top: 1px solid var(--hairline-strong); }
.biz-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(760px 420px at 88% -10%, rgba(199, 153, 115, 0.16), transparent 62%),
    linear-gradient(168deg, #0E1A2E 0%, var(--navy-900) 62%, #080F1C 100%);
}
.biz-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.55;
  background-image: linear-gradient(rgba(159, 176, 203, 0.055) 1px, transparent 1px);
  background-size: 100% 32px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.biz-hero__grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .biz-hero__grid { grid-template-columns: 1fr; } }
.biz-hero h1 { font-size: clamp(2.3rem, 1.2rem + 4.6vw, 4rem); letter-spacing: -0.03em; line-height: 1.08; }
.biz-hero h1 .accent { color: var(--brown-300); }
.biz-hero__lead { color: var(--steel); font-size: clamp(1.06rem, 1rem + 0.55vw, 1.3rem); max-width: 54ch; margin-top: 22px; }
.biz-hero .btn-row { margin-top: 34px; }
.biz-hero__mark { justify-self: center; width: min(210px, 60vw); }
.biz-hero__mark img {
  width: 100%; height: auto; border-radius: 50%;
  border: 1px solid var(--hairline-strong); padding: 14px; background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 900px) { .biz-hero__mark { display: none; } }
.biz-hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px;
  padding-top: 22px; border-top: 1px solid rgba(159, 176, 203, 0.12);
  color: var(--steel); font-size: 0.92rem;
}
.biz-hero__meta span { display: inline-flex; align-items: center; gap: 9px; }
.biz-hero__meta svg { width: 16px; height: 16px; color: var(--brown-300); flex: none; }

/* Asymmetric label / content split -------------------------------------- */
.biz-split { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(24px, 5vw, 60px); }
@media (max-width: 860px) { .biz-split { grid-template-columns: 1fr; gap: 8px; } }
.biz-split__body p { color: var(--steel); font-size: 1.06rem; }
.biz-split__body p + p { margin-top: 18px; }
.biz-split__body strong { color: var(--cream); font-weight: 600; }

/* Hairline point list ---------------------------------------------------- */
.biz-points { display: grid; gap: 0; margin-top: 34px; }
.biz-points li { display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: start; padding: 20px 0; border-top: 1px solid rgba(159, 176, 203, 0.12); }
.biz-points li:last-child { border-bottom: 1px solid rgba(159, 176, 203, 0.12); }
.biz-points svg { width: 20px; height: 20px; color: var(--brown-300); margin-top: 3px; }
.biz-points h3 { font-size: 1.04rem; margin-bottom: 4px; }
.biz-points p { color: var(--steel); font-size: 0.96rem; }

/* Build tiers ------------------------------------------------------------ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; max-width: 620px; } }
.tier {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--biz-panel), rgba(11, 20, 36, 0.6));
  border: 1px solid rgba(159, 176, 203, 0.16); border-radius: var(--radius-biz);
  padding: 30px 26px 28px; transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.tier:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
/* The recommended tier: a gold edge and a lifted ground, so it reads as the default */
.tier--rec {
  border-color: var(--hairline-strong);
  background: linear-gradient(180deg, #12203a, rgba(11, 20, 36, 0.7));
}
.tier__badge {
  align-self: flex-start; margin-bottom: 14px;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-900); background: var(--brown-300);
  border-radius: 999px; padding: 5px 12px;
}
.tier__num { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; color: var(--brown-300); }
.tier h3 { font-size: 1.35rem; margin-top: 12px; letter-spacing: -0.01em; }
.tier__for { color: var(--steel); font-size: 0.95rem; margin-top: 10px; }
.tier hr { margin: 22px 0; border: 0; border-top: 1px solid rgba(159, 176, 203, 0.14); }
.tier ul { display: grid; gap: 11px; }
.tier li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; color: var(--cream-dim); font-size: 0.94rem; }
.tier li svg { width: 16px; height: 16px; color: var(--brown-300); margin-top: 5px; }

/* Care plan panel -------------------------------------------------------- */
.care {
  margin-top: 42px; border: 1px solid var(--hairline); border-radius: var(--radius-biz);
  background: linear-gradient(135deg, var(--biz-panel), rgba(11, 20, 36, 0.35));
  padding: clamp(26px, 4vw, 44px);
}
.care__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; }
.care__head h3 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.7rem); }
.care__tag {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brown-300);
  border: 1px solid var(--hairline-strong); border-radius: 999px; padding: 5px 12px;
}
.care > p { color: var(--steel); margin-top: 14px; max-width: 66ch; }
.care__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
@media (max-width: 940px) { .care__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .care__grid { grid-template-columns: 1fr; } }
.care__grid div { border-top: 1px solid var(--hairline); padding-top: 16px; }
.care__grid h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 6px; }
.care__grid p { color: var(--steel); font-size: 0.92rem; }

/* Process steps ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 46px; counter-reset: step; }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.steps li { position: relative; padding-top: 30px; border-top: 1px solid var(--hairline); }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -0.85em; left: 0; padding-right: 12px;
  background: var(--bg); font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.12em; color: var(--brown-300);
}
.steps h3 { font-size: 1.08rem; margin-bottom: 8px; }
.steps p { color: var(--steel); font-size: 0.95rem; }

/* Pricing panel ---------------------------------------------------------- */
.price-panel {
  margin-top: 38px; border: 1px solid var(--hairline-strong); border-radius: var(--radius-biz);
  background: linear-gradient(135deg, var(--biz-panel), rgba(11, 20, 36, 0.4));
  padding: clamp(24px, 4vw, 40px);
}
.price-panel dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
@media (max-width: 700px) { .price-panel dl { grid-template-columns: 1fr; } }
.price-panel .row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 8px 16px; padding: 17px 0; border-bottom: 1px solid rgba(159, 176, 203, 0.13); }
/* Put on an odd trailing row so it spans both columns instead of ending half-width */
.price-panel .row--wide { grid-column: 1 / -1; }
.price-panel dt { font-family: var(--font-head); font-weight: 600; color: var(--cream); font-size: 1rem; }
.price-panel dd { margin: 0; color: var(--brown-300); font-size: 0.95rem; font-weight: 500; }
.price-panel__note { color: var(--steel); font-size: 0.92rem; margin-top: 22px; }

/* Commented-out placeholder regions (portfolio / testimonials) ------------ */
.biz-placeholder {
  border: 1px dashed rgba(159, 176, 203, 0.3); border-radius: var(--radius-biz);
  padding: clamp(28px, 5vw, 48px); text-align: center; margin-top: 34px;
}
.biz-placeholder h3 { font-size: 1.15rem; }
.biz-placeholder p { color: var(--steel); font-size: 0.96rem; max-width: 56ch; margin: 12px auto 0; }

/* Quote form ------------------------------------------------------------- */
.quote-form {
  margin-top: 38px; border: 1px solid var(--hairline); border-radius: var(--radius-biz);
  background: linear-gradient(135deg, var(--biz-panel), rgba(11, 20, 36, 0.4));
  padding: clamp(24px, 4vw, 44px);
}
.quote-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
@media (max-width: 700px) { .quote-form__grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend {
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--cream);
}
.field .hint { color: var(--steel); font-size: 0.85rem; }
.field .req { color: var(--brown-300); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--cream);
  background: rgba(11, 20, 36, 0.65); border: 1px solid rgba(159, 176, 203, 0.22);
  border-radius: var(--radius-biz); padding: 13px 15px; width: 100%;
  transition: border-color 0.2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(159, 176, 203, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brown-300); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel-dim); }
/* Native select arrow is invisible on a dark ground, so draw our own */
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C79973' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field select option { background: var(--navy-900); color: var(--cream); }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.radio-row label { display: inline-flex; align-items: center; gap: 9px; font-weight: 400; font-family: var(--font-body); }
.radio-row input[type="radio"] { width: auto; accent-color: var(--brown-300); }
/* Honeypot: off-screen rather than display:none, which some bots skip */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 28px; }
.quote-form__actions .privacy { color: var(--steel); font-size: 0.88rem; max-width: 46ch; }

/* Thanks page ------------------------------------------------------------ */
.thanks { max-width: 640px; }
.thanks__mark {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--hairline-strong); color: var(--brown-300); margin-bottom: 26px;
}
.thanks__mark svg { width: 28px; height: 28px; }
.thanks h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3rem); letter-spacing: -0.02em; }
.thanks__lead { color: var(--steel); font-size: 1.12rem; margin-top: 18px; }
.thanks__note { color: var(--steel); font-size: 0.95rem; margin-top: 16px; }
.thanks .btn-row { margin-top: 32px; }

/* Closing CTA ------------------------------------------------------------ */
.biz-cta {
  border: 1px solid var(--hairline-strong); border-radius: var(--radius-biz);
  background:
    radial-gradient(620px 260px at 50% -30%, rgba(199, 153, 115, 0.18), transparent 68%),
    linear-gradient(135deg, var(--biz-panel), rgba(11, 20, 36, 0.5));
  padding: clamp(34px, 6vw, 66px); text-align: center;
}
.biz-cta h2 { font-size: clamp(1.6rem, 1.15rem + 2vw, 2.4rem); }
.biz-cta p { color: var(--steel); max-width: 56ch; margin: 16px auto 30px; }
.biz-cta .btn-row { justify-content: center; }
