:root {
  --coral: #f47e70;
  --peach: #f2a064;
  --gold: #f6c85f;
  --gold-deep: #c99722;
  --ink: #343436;
  --muted: #6f6c69;
  --white: #ffffff;
  --cream: #fffaf3;
  --soft-peach: #fff2ed;
  --soft-gold: #fff9e9;
  --soft-beige: #fbf5ec;
  --input: #fffdf8;
  --border: #e4ddd7;
  --border-strong: #d7cec7;
  --shadow: 0 12px 34px rgba(62, 47, 36, .07);
  --shadow-strong: 0 20px 56px rgba(62, 47, 36, .12);
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1180px;
  --gradient: linear-gradient(90deg, var(--coral) 0%, var(--peach) 52%, var(--gold) 100%);
}

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

.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(980px, calc(100% - 44px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 98px;
  background: #fff;
  border-bottom: 1px solid rgba(228, 221, 215, .78);
  transition: background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(52, 52, 54, .05);
}
.nav { height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand img { width: 232px; height: auto; }
.brand-tagline { margin-top: -5px; padding-left: 2px; font-size: .77rem; font-weight: 750; letter-spacing: .03em; color: var(--peach); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .96rem; font-weight: 600; }
.nav-links > a:not(.btn):hover { color: var(--coral); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-size: 1.55rem; cursor: pointer; padding: 6px; }

/* Type */
.eyebrow { color: var(--coral); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .76rem; margin-bottom: 12px; }
h1, h2, h3, h4 { line-height: 1.14; margin-top: 0; color: var(--ink); }
h1 { font-size: clamp(2.65rem, 5vw, 4.75rem); letter-spacing: -.045em; margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); letter-spacing: -.035em; margin-bottom: 16px; }
h3 { font-size: 1.28rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 10px; }
p { margin-top: 0; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 22px; font-weight: 750; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--gradient); box-shadow: 0 9px 24px rgba(244,126,112,.20); }
.btn-primary:hover { box-shadow: 0 13px 30px rgba(244,126,112,.26); }
.btn-secondary { background: white; border-color: var(--border-strong); color: var(--ink); }
.btn-secondary:hover { box-shadow: 0 8px 22px rgba(62,47,36,.08); }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 750; margin-top: auto; padding-top: 20px; }
.text-link:hover { color: var(--coral); }

/* Sections */
.hero { padding: 88px 0 76px; background: var(--soft-gold); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 58px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.hero-card .quote { font-size: 1.48rem; line-height: 1.3; font-weight: 800; margin-bottom: 18px; }
.hero-card p { color: var(--muted); margin-bottom: 0; }
.section { padding: 84px 0; }
.section.white { background: var(--white); }
.section.peach { background: var(--soft-peach); }
.section.gold { background: var(--soft-gold); }
.section.beige { background: var(--soft-beige); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 17px 40px rgba(62,47,36,.10); }
.card p { color: var(--muted); }
.equal-card { display: flex; flex-direction: column; height: 100%; }
.icon-label { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; color: var(--gold-deep); background: #fff8de; }
.icon-label svg, .service-icon svg, .form-heading-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.short-list { list-style: none; padding: 0; margin: 8px 0 0; }
.short-list li { position: relative; padding-left: 20px; margin: 9px 0; color: var(--muted); }
.short-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-deep); font-weight: 900; }

.promise { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); }
.promise p { max-width: 900px; color: var(--muted); font-size: 1.08rem; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; background: #fff4c8; color: #8c6713; padding: 8px 13px; font-size: .86rem; font-weight: 800; margin-top: 8px; }
.why-grid .card { min-height: 190px; }

/* Full width CTA */
.gradient-band { background: var(--gradient); color: white; padding: 62px 0; }
.gradient-band h2, .gradient-band p { color: white; }
.gradient-band p { max-width: 760px; font-size: 1.08rem; }
.gradient-band .btn { margin-top: 8px; background: white; color: var(--ink); box-shadow: 0 10px 26px rgba(122,76,44,.16); }

/* Page hero */
.page-hero { padding: 68px 0 48px; background: var(--cream); border-bottom: 1px solid rgba(228,221,215,.55); }
.page-hero p { max-width: 780px; color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.page-hero h1 { font-size: clamp(2.45rem, 4.2vw, 4.05rem); }

/* Service page */
.service-stack { display: grid; gap: 28px; }
.service-card { padding: 30px; }
.service-head { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gold-deep); }
.service-head h2 { font-size: clamp(1.65rem, 2.8vw, 2.35rem); margin: 0; }
.service-list-area { border-radius: 18px; padding: 24px 26px; }
.service-list-area.peach-tint { background: #fff1ed; }
.service-list-area.gold-tint { background: #fff8e2; }
.service-list-area.beige-tint { background: #fbf3e8; }
.service-checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 26px; }
.service-checks li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.service-checks li::before { content: "✓"; color: var(--gold-deep); font-weight: 900; }

/* Meet Us */
.meet-page { background: #fff9e9; }
.meet-page .page-hero { background: #fff9e9; }
.shared-intro { max-width: 900px; margin-bottom: 34px; color: var(--muted); font-size: 1.08rem; }
.profile-stack { display: grid; gap: 30px; }
.profile-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: 42px; align-items: center; min-height: 430px; padding: 40px; }
.profile-card.reverse { grid-template-columns: 1.3fr .7fr; }
.profile-card.reverse .profile-visual { order: 2; }
.profile-card.reverse .profile-copy { order: 1; }
.profile-visual { height: 320px; border-radius: 26px; background: var(--gradient); display: grid; place-items: center; color: white; font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 850; letter-spacing: -.04em; box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.profile-copy { align-self: center; }
.profile-title { color: var(--coral); font-weight: 800; margin-top: -5px; margin-bottom: 15px; }
.credential-line { display: inline-flex; flex-wrap: wrap; gap: 8px; padding: 9px 13px; border-radius: 999px; background: var(--soft-gold); color: #7f621b; font-size: .9rem; font-weight: 800; margin-bottom: 17px; }
.profile-copy p { color: var(--muted); }

/* Form page */
.contact-page { background: var(--soft-peach); padding: 62px 0 86px; }
.form-shell { width: min(1000px, calc(100% - 44px)); margin: 0 auto; background: white; border: 1px solid var(--border); border-radius: 30px; box-shadow: var(--shadow-strong); padding: 38px; }
.form-section { padding: 24px 0 12px; }
.form-section:first-child { padding-top: 0; }
.form-section + .form-section { border-top: 1px solid rgba(228,221,215,.8); margin-top: 12px; }
.form-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.form-heading h2 { font-size: 1.5rem; margin: 0; letter-spacing: -.02em; }
.form-heading-icon { color: var(--gold-deep); display: grid; place-items: center; width: 28px; height: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 720; font-size: .95rem; }
.req { color: var(--coral); }
input, select { width: 100%; border: 1px solid #d8d0ca; border-radius: 14px; padding: 13px 14px; background: var(--input); color: var(--ink); min-height: 49px; }
input:focus, select:focus { outline: 3px solid rgba(246,200,95,.18); border-color: #c7b77e; }
.field-help { font-size: .83rem; color: var(--muted); margin-top: 2px; }
.conditional { display: none; }
.conditional.show { display: block; }

.service-mini-stack { display: grid; gap: 16px; margin-top: 12px; }
.service-mini { border: 1px solid var(--border); border-radius: 18px; padding: 20px; }
.service-mini.accounting { background: #fff2ed; }
.service-mini.tax { background: #fff9e5; }
.service-mini.advisory { background: #fbf4ea; }
.mini-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mini-head .service-icon { width: 30px; height: 30px; }
.mini-head h3 { margin: 0; font-size: 1.08rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; }
.check { display: flex; gap: 9px; align-items: flex-start; font-weight: 560; cursor: pointer; }
.check input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 19px; height: 19px; min-height: 19px; margin: 2px 0 0; padding: 0; border: 1px solid #cfc7c0; border-radius: 6px; background: white; display: grid; place-items: center; flex: 0 0 auto; }
.check input[type="checkbox"]::after { content: "✓"; font-size: 13px; font-weight: 900; color: white; transform: scale(0); transition: transform .12s ease; }
.check input[type="checkbox"]:checked { background: var(--gold); border-color: var(--gold-deep); }
.check input[type="checkbox"]:checked::after { transform: scale(1); }

.tax-panel { background: linear-gradient(100deg, rgba(244,126,112,.085), rgba(246,200,95,.13)); border: 1px solid #eadfca; border-radius: 20px; padding: 24px; margin-top: 14px; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.privacy-note { background: var(--soft-gold); border-left: 3px solid var(--gold); border-radius: 8px; padding: 13px 15px; color: var(--muted); font-size: .9rem; margin-top: 15px; }
.submit-btn { width: 100%; border: 0; margin-top: 22px; min-height: 52px; }
.form-error { display: none; margin: 12px 0 0; color: #a33a2f; font-size: .92rem; }
.form-error.show { display: block; }
.confirmation { display: none; text-align: center; padding: 64px 30px; }
.confirmation.show { display: block; }
.confirm-icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: #fff3c2; color: var(--gold-deep); display: grid; place-items: center; font-size: 1.8rem; font-weight: 900; }
.confirmation h2 { font-size: 1.8rem; max-width: 620px; margin: 0 auto 22px; }

/* Footer */
.site-footer { background: white; position: relative; padding: 36px 0 38px; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); }
.footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand img { width: 220px; }
.footer-tagline { margin-top: -5px; padding-left: 2px; color: var(--peach); font-size: .78rem; font-weight: 750; }
.footer-copy { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.footer-legal { color: #8a8683; font-size: .78rem; white-space: nowrap; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why-grid .card { min-height: 0; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 98px; left: 0; right: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); padding: 22px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav-links.open { display: flex; }
  .profile-card, .profile-card.reverse { grid-template-columns: 1fr; gap: 26px; }
  .profile-card.reverse .profile-visual, .profile-card.reverse .profile-copy { order: initial; }
  .profile-visual { height: 270px; }
}

@media (max-width: 680px) {
  .container, .narrow, .form-shell { width: min(100% - 28px, var(--max)); }
  .site-header, .nav { height: 92px; }
  .nav-links { top: 92px; }
  .brand img { width: 205px; }
  .brand-tagline { font-size: .70rem; }
  .hero { padding: 62px 0 58px; }
  .section { padding: 64px 0; }
  .page-hero { padding: 52px 0 38px; }
  .service-checks, .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 24px 19px; }
  .field.full { grid-column: auto; }
  .promise, .card { padding: 24px; }
  .profile-card { padding: 24px; }
  .gradient-band { padding: 50px 0; }
  .footer-legal { white-space: normal; }
}
