:root {
  --navy-950: #081526;
  --navy-900: #0d1b2f;
  --navy-800: #142743;
  --navy-700: #1b3558;
  --blue: #0d6f9b;
  --green: #78b82a;
  --green-dark: #477713;
  --gold: #f6c928;
  --cream: #f7f7f2;
  --white: #ffffff;
  --ink: #132033;
  --muted: #5f6b7a;
  --line: #dfe4e8;
  --shadow: 0 24px 70px rgba(8, 21, 38, .14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.9rem, 6.3vw, 5.8rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }

.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
[id] { scroll-margin-top: 130px; }
.section { padding: 108px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 14px; top: -80px; padding: 12px 18px; border-radius: 8px; background: var(--gold); color: var(--navy-950); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 14px; }

.notice-bar { background: var(--navy-950); color: rgba(255,255,255,.82); font-size: .88rem; }
.notice-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notice-inner a { color: var(--white); font-weight: 700; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(12,31,51,.08); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo-full { width: 205px; height: auto; flex: 0 0 auto; border-radius: 7px; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a { color: #304056; font-weight: 700; font-size: .94rem; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--blue); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: var(--cream); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 43px; padding-inline: 17px; color: var(--white) !important; background: var(--navy-900); }
.button-primary { color: var(--navy-950); background: var(--gold); box-shadow: 0 14px 34px rgba(246,201,40,.23); }
.button-primary:hover { background: #ffda4e; box-shadow: 0 18px 38px rgba(246,201,40,.28); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.05); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-dark:hover { background: var(--navy-700); }
.button-outline-dark { color: var(--navy-900); border-color: #cdd4dc; background: transparent; }
.button-outline-dark:hover { border-color: var(--navy-900); background: rgba(13,27,47,.04); }

.hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(132deg, var(--navy-950) 0%, var(--navy-900) 52%, #10385a 100%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.hero-grid { position: relative; z-index: 2; min-height: 715px; padding: 92px 0 104px; display: grid; grid-template-columns: 1.15fr .75fr; align-items: center; gap: 74px; }
.hero-copy { max-width: 730px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 24px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--green-dark); }
.hero h1 { max-width: 770px; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { max-width: 680px; margin-bottom: 32px; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 30px 0 0; padding: 0; color: rgba(255,255,255,.72); list-style: none; font-size: .9rem; }
.trust-list span { color: var(--green); font-weight: 900; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(8px); }
.hero-orb-one { width: 420px; height: 420px; right: -180px; top: -150px; background: rgba(120,184,42,.17); }
.hero-orb-two { width: 360px; height: 360px; left: 45%; bottom: -250px; background: rgba(13,111,155,.24); }

.hero-panel { padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.075); box-shadow: 0 36px 80px rgba(0,0,0,.24); backdrop-filter: blur(16px); }
.panel-top { display: flex; align-items: center; gap: 14px; padding: 8px 8px 20px; }
.panel-top > div { display: grid; }
.panel-label { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.panel-top strong { margin-top: 4px; font-family: "Manrope", sans-serif; font-size: 1.08rem; }
.panel-services { display: grid; gap: 10px; }
.panel-services a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(5,16,30,.35); text-decoration: none; transition: background .2s, transform .2s; }
.panel-services a:hover { transform: translateX(4px); background: rgba(5,16,30,.55); }
.panel-services a > span:nth-child(2) { display: grid; }
.panel-services small { color: rgba(255,255,255,.58); }
.panel-services b { color: var(--gold); font-size: 1.2rem; }
.service-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--navy-950); background: var(--gold); font-weight: 900; font-size: .76rem; }
.panel-footer { display: flex; flex-wrap: wrap; gap: 6px 13px; padding: 18px 8px 4px; color: rgba(255,255,255,.56); font-size: .75rem; }

.proof-strip { padding: 22px 0; border-bottom: 1px solid var(--line); background: var(--cream); }
.proof-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.proof-inner p { margin: 0; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.industry-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.industry-list span { padding: 6px 12px; border: 1px solid #d9ded6; border-radius: 999px; color: #51605a; background: rgba(255,255,255,.62); font-size: .82rem; font-weight: 700; }

.section-light { background: var(--white); }
.section-heading { margin-bottom: 50px; display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 60px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 7px; color: var(--muted); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 465px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 16px 50px rgba(20,39,67,.07); }
.service-card-featured { border-color: rgba(120,184,42,.48); background: linear-gradient(180deg, #fbfff7 0%, #fff 70%); }
.card-badge { position: absolute; right: 22px; top: 22px; padding: 6px 10px; border-radius: 999px; color: #416f0d; background: #e9f6da; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.card-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 26px; border-radius: 14px; color: var(--white); background: var(--navy-800); font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.service-card-featured .card-icon { color: var(--navy-950); background: var(--gold); }
.service-card h3 { margin-bottom: 14px; font-size: 1.65rem; }
.service-card > p { color: var(--muted); }
.service-card ul { display: grid; gap: 10px; margin: 10px 0 30px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 24px; color: #405064; font-size: .92rem; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }
.text-link { margin-top: auto; color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.tax-help-section { background: var(--cream); }
.tax-help-intro { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: end; }
.tax-help-intro h2 { margin-bottom: 0; }
.tax-help-intro > div:last-child > p { color: var(--muted); font-size: 1.04rem; }
.tax-help-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tax-help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.tax-help-grid article { min-height: 290px; padding: 28px; border: 1px solid #dde2dc; border-radius: 18px; background: rgba(255,255,255,.78); }
.tax-help-grid article:nth-child(2) { border-color: rgba(120,184,42,.55); background: #fbfff7; }
.tax-number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 42px; border-radius: 10px; color: var(--white); background: var(--navy-800); font-size: .72rem; font-weight: 900; }
.tax-help-grid article:nth-child(2) .tax-number { color: var(--navy-950); background: var(--gold); }
.tax-help-grid h3 { font-size: 1.24rem; }
.tax-help-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.notice-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 18px; padding: 24px 28px; border-radius: 16px; color: var(--white); background: var(--navy-900); }
.notice-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-family: "Manrope", sans-serif; font-size: 1.25rem; font-weight: 900; }
.notice-callout > div:nth-child(2) { display: grid; }
.notice-callout strong { font-family: "Manrope", sans-serif; font-size: 1rem; }
.notice-callout span { color: rgba(255,255,255,.65); font-size: .88rem; }
.notice-callout .text-link { color: var(--gold); white-space: nowrap; }

.section-navy { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.section-navy::before { content: ""; position: absolute; width: 540px; height: 540px; right: -250px; top: -250px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.02); }
.split-grid { position: relative; display: grid; grid-template-columns: .84fr 1fr; gap: 86px; align-items: center; }
.split-grid h2 { margin-bottom: 24px; }
.section-lead { margin-bottom: 30px; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.problem-list > div { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.055); }
.problem-list > div > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--navy-950); background: var(--gold); font-weight: 900; font-size: .72rem; }
.problem-list p { margin: 0; color: rgba(255,255,255,.6); font-size: .88rem; }
.problem-list strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 1rem; }

.process-section { background: var(--cream); }
.center-heading { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.process-grid li { padding: 28px; border: 1px solid #e0e4dc; border-radius: 18px; background: rgba(255,255,255,.72); }
.process-grid li > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 44px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-family: "Manrope", sans-serif; font-weight: 900; }
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .76fr 1.1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; min-height: 610px; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-950); box-shadow: var(--shadow); }
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.about-visual::before { content: ""; position: absolute; z-index: 2; inset: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; pointer-events: none; }
.about-visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(6,18,34,.03) 36%, rgba(6,18,34,.86) 100%); pointer-events: none; }
.visual-caption { position: absolute; z-index: 3; left: 48px; right: 48px; bottom: 46px; display: grid; color: var(--white); }
.visual-caption strong { font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.visual-caption span { color: rgba(255,255,255,.58); }
.visual-caption .visual-eyebrow { margin-bottom: 5px; color: var(--gold); font-family: "Manrope", sans-serif; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; }
.about-copy h2 { margin-bottom: 24px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.about-values div { padding: 16px; border-radius: 14px; background: var(--cream); }
.about-values strong, .about-values span { display: block; }
.about-values strong { margin-bottom: 3px; color: var(--navy-800); }
.about-values span { color: var(--muted); font-size: .78rem; }

.reviews-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.reviews-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -300px; bottom: -330px; border-radius: 50%; background: rgba(13,111,155,.2); box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012); }
.reviews-heading { position: relative; display: grid; grid-template-columns: 1.1fr .68fr; gap: 70px; align-items: end; }
.reviews-copy h2 { margin-bottom: 22px; }
.reviews-copy > p:not(.eyebrow) { max-width: 560px; margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.facebook-rating { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; width: min(100%, 390px); justify-self: end; padding: 16px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.06); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.facebook-rating:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.facebook-mark { display: grid; place-items: end center; width: 44px; height: 44px; overflow: hidden; border-radius: 50%; color: var(--white); background: #1877f2; font-family: Arial, sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.facebook-rating-copy { display: grid; }
.facebook-rating-copy strong { font-family: "Manrope", sans-serif; font-size: 1rem; }
.facebook-rating-copy small { color: rgba(255,255,255,.58); font-size: .8rem; }
.facebook-rating-arrow { color: var(--gold); font-size: 1.15rem; }
.review-card-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.review-card { display: flex; flex-direction: column; min-height: 320px; margin: 0; padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.055)); box-shadow: 0 24px 60px rgba(0,0,0,.17); }
.review-kicker { display: inline-flex; align-items: center; align-self: flex-start; gap: 9px; margin-bottom: 24px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.review-kicker span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-size: .78rem; }
.review-card blockquote { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.48; letter-spacing: -.02em; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 28px; }
.review-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 900; }
.review-author { display: grid; }
.review-card figcaption strong { color: var(--white); font-family: "Manrope", sans-serif; }
.review-card figcaption small { color: rgba(255,255,255,.52); font-size: .76rem; }
.reviews-footer { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-top: 30px; }
.review-note { max-width: 550px; margin: 0; color: rgba(255,255,255,.46); font-size: .76rem; }
.review-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.review-actions .text-link { margin-top: 0; color: var(--gold); }

.client-forms-section { background: var(--cream); }
.client-forms-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.client-forms-heading h2 { max-width: 700px; margin-bottom: 0; }
.client-forms-intro > p { margin-bottom: 22px; color: var(--muted); font-size: 1.02rem; }
.form-safety-note { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 16px; margin: -18px 0 28px; padding: 20px 22px; border: 1px solid #d7dfca; border-radius: 16px; background: #fbfff7; }
.form-safety-note > span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-family: "Manrope", sans-serif; font-weight: 900; }
.form-safety-note strong { display: block; margin-bottom: 3px; color: var(--navy-900); font-family: "Manrope", sans-serif; }
.form-safety-note p { margin: 0; color: var(--muted); font-size: .88rem; }
.client-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.client-form-card { display: flex; flex-direction: column; min-height: 270px; padding: 30px; border: 1px solid #dde2dc; border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: 0 14px 40px rgba(20,39,67,.055); }
.client-form-card-returning { grid-column: 1 / -1; min-height: 230px; border-color: rgba(13,111,155,.35); background: linear-gradient(125deg, #fff, #f0f8fc); }
.client-form-card-secure { border-color: rgba(120,184,42,.55); background: linear-gradient(150deg, #fbfff7, #fff); }
.client-form-label { align-self: flex-start; margin-bottom: 22px; padding: 6px 10px; border-radius: 999px; color: #416f0d; background: #e9f6da; font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.client-form-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.client-form-card p { margin-bottom: 26px; color: var(--muted); font-size: .92rem; }

.faq-section { background: #f5f7f8; }
.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 90px; }
.muted { color: var(--muted); }
.muted a { color: var(--blue); font-weight: 800; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; cursor: pointer; font-family: "Manrope", sans-serif; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green-dark); font-size: 1.45rem; font-weight: 500; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding-right: 35px; color: var(--muted); }

.cta-section { padding: 32px 0 90px; background: #f5f7f8; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .6fr; gap: 70px; align-items: center; padding: 60px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--navy-900), #154c72); box-shadow: var(--shadow); }
.cta-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -100px; bottom: -190px; border-radius: 50%; background: rgba(120,184,42,.22); }
.cta-card h2 { margin-bottom: 18px; }
.cta-card p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.68); }
.cta-actions { position: relative; z-index: 2; display: grid; gap: 10px; justify-items: stretch; }
.cta-actions > a:not(.button) { color: rgba(255,255,255,.8); font-weight: 700; text-align: center; text-decoration: none; }
.availability-note { color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.4; text-align: center; }

.site-footer { padding: 72px 0 28px; color: rgba(255,255,255,.64); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .75fr .75fr 1fr; gap: 48px; }
.footer-brand .brand-logo-full { width: 235px; margin-bottom: 18px; }
.footer-grid h3 { margin-bottom: 18px; color: var(--white); font-size: .86rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid p { font-size: .88rem; }
.footer-grid > div > a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,.66); font-size: .9rem; text-decoration: none; }
.footer-grid > div > a:hover { color: var(--gold); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 30px; }
.footer-bottom p { margin: 0; font-size: .75rem; }
.footer-bottom-right { display: grid; justify-items: end; gap: 9px; max-width: 700px; }
.footer-bottom-right > p { text-align: right; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
.footer-legal a { color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 700; text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

.legal-body { background: var(--cream); }
.legal-header .nav-wrap { min-height: 96px; }
.legal-header-nav { display: flex; align-items: center; gap: 22px; }
.legal-header-nav > a:not(.button) { color: #304056; font-weight: 700; text-decoration: none; }
.legal-hero { padding: 92px 0 84px; color: var(--white); background: linear-gradient(132deg, var(--navy-950), var(--navy-900) 60%, #10385a); }
.legal-hero-inner { max-width: 850px; }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(2.75rem, 6vw, 5rem); }
.legal-hero p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.legal-section { padding: 76px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 780px); justify-content: center; gap: 64px; align-items: start; }
.legal-toc { position: sticky; top: 130px; display: grid; gap: 4px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.82); }
.legal-toc strong { margin-bottom: 8px; color: var(--navy-900); font-family: "Manrope", sans-serif; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { padding: 6px 0; color: var(--muted); font-size: .84rem; font-weight: 700; text-decoration: none; }
.legal-toc a:hover { color: var(--blue); }
.legal-content { padding: 48px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 18px 55px rgba(20,39,67,.07); }
.legal-content section + section { margin-top: 42px; padding-top: 36px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.legal-content h3 { margin: 26px 0 10px; font-size: 1.08rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #49586b; }
.legal-content ul { display: grid; gap: 9px; padding-left: 22px; }
.legal-content a { color: var(--blue); font-weight: 700; }
.legal-callout { margin-bottom: 38px; padding: 22px 24px; border-left: 4px solid var(--green-dark); border-radius: 0 14px 14px 0; background: #f5faef; }
.legal-callout strong { display: block; margin-bottom: 5px; color: var(--navy-900); font-family: "Manrope", sans-serif; }
.legal-callout p { margin: 0; font-size: .9rem; }
.legal-meta { display: inline-flex; margin-top: 24px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; }
.legal-footer .footer-bottom { margin-top: 0; }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: .86rem; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 38px; }
  .section-heading, .split-grid, .about-grid, .reviews-heading, .client-forms-heading, .faq-grid { gap: 50px; }
  .service-card { padding: 26px; }
}

@media (max-width: 860px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: none; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav > a { padding: 6px 0; font-size: 1rem; }
  .site-nav .button { margin-top: 6px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-panel { max-width: 620px; }
  .section-heading, .split-grid, .about-grid, .reviews-heading, .client-forms-heading, .faq-grid, .cta-card { grid-template-columns: 1fr; }
  .facebook-rating { justify-self: start; }
  .client-forms-heading { gap: 24px; }
  .tax-help-intro { grid-template-columns: 1fr; gap: 24px; }
  .tax-help-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid .service-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; grid-template-columns: 1fr 1fr; }
  .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  [id] { scroll-margin-top: 110px; }
  .wrap { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .notice-inner { min-height: 44px; justify-content: center; text-align: center; }
  .notice-inner span { display: none; }
  .nav-wrap { min-height: 94px; }
  .brand-logo-full { width: 168px; height: auto; }
  .hero-grid { min-height: auto; padding: 72px 0 78px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { display: grid; }
  .trust-list { display: grid; gap: 9px; }
  .hero-panel { padding: 14px; }
  .panel-services a { padding: 14px; }
  .proof-inner { align-items: flex-start; flex-direction: column; }
  .industry-list { justify-content: flex-start; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid, .problem-list, .process-grid, .about-values, .client-form-grid, .footer-grid { grid-template-columns: 1fr; }
  .client-form-card-returning { grid-column: auto; }
  .tax-help-grid { grid-template-columns: 1fr; }
  .tax-help-grid article { min-height: auto; }
  .tax-number { margin-bottom: 25px; }
  .notice-callout { grid-template-columns: auto 1fr; }
  .notice-callout .text-link { grid-column: 1 / -1; }
  .service-grid .service-card:last-child { grid-column: auto; }
  .service-card { min-height: auto; }
  .process-grid li > span { margin-bottom: 25px; }
  .about-visual { min-height: 560px; }
  .visual-caption { left: 38px; right: 38px; bottom: 38px; }
  .review-card-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; padding: 32px 24px; }
  .reviews-footer { align-items: flex-start; flex-direction: column; }
  .review-actions { width: 100%; align-items: stretch; }
  .review-actions .button { width: 100%; }
  .cta-card { padding: 38px 24px; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-right { justify-items: start; }
  .footer-bottom-right > p { text-align: left; }
  .footer-legal { justify-content: flex-start; }
  .legal-header-nav > a:not(.button) { display: none; }
  .legal-header .brand-logo-full { width: 155px; }
  .legal-hero { padding: 70px 0 64px; }
  .legal-section { padding: 48px 0 76px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc strong { grid-column: auto; }
  .legal-content { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
