/* =========================================================
   Hartwell & Co. — friendly local accountant & tax practice
   Aesthetic: warm professional & reassuring.
   Cream/off-white base, sage green + warm clay accent.
   Display: Fraunces (humanist serif). Body: Mulish.
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }

/* ---- Tokens ---- */
:root {
  --cream:    #f7f3ea;   /* warm off-white base */
  --cream-2:  #efe8d8;
  --paper:    #fdfbf6;   /* card paper */
  --ink:      #2e2a24;   /* warm near-black */
  --ink-2:    #443e34;
  --muted:    #847b6b;   /* warm grey-brown */
  --line:     #e3dac6;
  --line-2:   #d7cbb2;

  --sage:     #5a7a64;   /* primary sage green */
  --sage-d:   #3f5a48;
  --sage-l:   #7c9985;
  --sage-wash:#e7efe7;

  --clay:     #c1764a;   /* warm clay accent */
  --clay-d:   #a25c35;
  --clay-l:   #d99a73;
  --clay-wash:#f6e4d8;

  --gold:     #c79a52;
  --emerald:  #2f7d5b;   /* on-brand success colour */

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --body:  "Mulish", "Segoe UI", Helvetica, sans-serif;

  --mw: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --r: 18px;
  --r-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(60, 48, 30, 0.06);
  --shadow: 0 14px 40px -18px rgba(60, 48, 30, 0.28);
  --shadow-lg: 0 30px 70px -28px rgba(60, 48, 30, 0.36);
  --t: 0.45s cubic-bezier(.2,.7,.2,1);
}

/* ---- Base ---- */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  background-image:
    radial-gradient(1200px 600px at 85% -8%, rgba(90,122,100,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 12%, rgba(193,118,74,.08), transparent 55%);
  background-attachment: fixed;
}
.wrap { width: 100%; max-width: var(--mw); margin: 0 auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-weight: 800; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sage-d);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--clay); border-radius: 2px; }
.lead { font-size: 1.12rem; color: var(--ink-2); }
em { font-style: italic; color: var(--clay-d); }

section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-family: var(--serif); font-size: clamp(2rem, 4.4vw, 3.1rem); margin: .35em 0 .4em; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.center { margin-inline: auto; text-align: center; }
.center .eyebrow { justify-content: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: 100px;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap;
}
.btn .arr { transition: transform var(--t); }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--sage); color: #fff; box-shadow: 0 10px 24px -12px rgba(63,90,72,.8); }
.btn-solid:hover { background: var(--sage-d); transform: translateY(-2px); }
.btn-clay { background: var(--clay); color: #fff; box-shadow: 0 10px 24px -12px rgba(162,92,53,.8); }
.btn-clay:hover { background: var(--clay-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-d); background: var(--sage-wash); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,234,.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 22px; padding: 14px 0; position: relative; }
.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-mark { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.brand-mark .amp { color: var(--clay); font-style: italic; }
.brand-sub { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-top: 4px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  display: block; padding: .5em .9em; border-radius: 100px; font-weight: 700; font-size: .95rem;
  color: var(--ink-2); transition: background var(--t), color var(--t);
}
.nav-links a:hover { color: var(--sage-d); background: var(--sage-wash); }
.nav-links a.active { color: var(--sage-d); background: var(--sage-wash); }
.nav-cta { display: flex; align-items: center; gap: 16px; margin-left: 8px; }
.nav-phone { font-weight: 800; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }

/* ---- Hero ---- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy h1 { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.4rem); margin: .3em 0 .35em; }
.hero-tag { font-size: 1.18rem; color: var(--ink-2); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero-media { position: relative; }
.hero-media .frame {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 22px; position: relative; overflow: hidden;
}
.hero-media .frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(90,122,100,.10), transparent 60%);
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--clay); color: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); text-align: left;
}
.hero-badge .n { font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.hero-badge .l { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; opacity: .92; margin-top: 4px; }

/* ---- Trust strip ---- */
.trust-strip { background: var(--ink); color: var(--cream); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 40px var(--gutter); }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .ic { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(247,243,234,.08); color: var(--sage-l); }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item h3 { font-family: var(--serif); font-size: 1.5rem; color: #fff; }
.trust-item p { font-size: .85rem; color: #cfc6b3; margin-top: 2px; }

/* ---- Services ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--sage), var(--clay)); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-wash); color: var(--sage-d); margin-bottom: 18px; }
.svc-ic svg { width: 28px; height: 28px; }
.svc-card h3 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .96rem; }
.svc-card .price { display: block; margin-top: 16px; font-weight: 800; color: var(--clay-d); font-size: 1.02rem; }
.svc-card .price small { color: var(--muted); font-weight: 600; font-size: .82rem; }

/* ---- Filter bar ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 28px; }
.filter-btn {
  padding: .55em 1.1em; border-radius: 100px; font-weight: 800; font-size: .85rem;
  background: var(--paper); border: 1.5px solid var(--line-2); color: var(--ink-2);
  transition: var(--t);
}
.filter-btn:hover { border-color: var(--sage); color: var(--sage-d); }
.filter-btn.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.filter-count { margin-left: auto; color: var(--muted); font-size: .9rem; font-weight: 700; }
.filter-count b { color: var(--ink); }
[data-listing].hide { display: none; }

/* ---- Pricing rows ---- */
.price-table { display: grid; gap: 14px; }
.price-row {
  display: grid; grid-template-columns: 1.4fr 2fr auto; gap: 20px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 20px 24px; transition: var(--t);
}
.price-row:hover { border-color: var(--sage-l); box-shadow: var(--shadow-sm); }
.price-row h3 { font-family: var(--serif); font-size: 1.2rem; }
.price-row .desc { color: var(--muted); font-size: .92rem; }
.price-row .fee { text-align: right; }
.price-row .fee b { font-family: var(--serif); font-size: 1.5rem; color: var(--clay-d); display: block; }
.price-row .fee span { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.tag { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .3em .7em; border-radius: 100px; }
.tag-sage { background: var(--sage-wash); color: var(--sage-d); }
.tag-clay { background: var(--clay-wash); color: var(--clay-d); }

/* ---- Steps / what to expect ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 24px 26px; position: relative;
}
.step .num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--clay); line-height: 1;
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; font-family: var(--serif); }
.step p { color: var(--muted); font-size: .92rem; }

/* ---- Who we help ---- */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.help-card {
  border-radius: var(--r); padding: 30px 28px; border: 1px solid var(--line);
  background: var(--paper); transition: var(--t);
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.help-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--clay-wash); color: var(--clay-d); display: grid; place-items: center; margin-bottom: 16px; }
.help-card .ic svg { width: 26px; height: 26px; }
.help-card h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 8px; }
.help-card p { color: var(--muted); font-size: .95rem; }
.help-card ul { margin-top: 14px; display: grid; gap: 8px; }
.help-card li { display: flex; gap: 9px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.help-card li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--sage-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5a48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---- Reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-family: var(--serif); font-size: 1.14rem; line-height: 1.45; color: var(--ink); font-style: italic; }
.review .who { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 12px; }
.review .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: #fff; font-size: 1.05rem; }
.review .who b { display: block; font-size: .95rem; }
.review .who span { font-size: .82rem; color: var(--muted); }

/* ---- Blog ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .thumb { height: 150px; position: relative; overflow: hidden; }
.post .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.post .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-d); margin-bottom: 10px; }
.post h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 8px; line-height: 1.2; }
.post p { color: var(--muted); font-size: .93rem; }
.post .more { margin-top: 16px; font-weight: 800; color: var(--clay-d); font-size: .9rem; display: inline-flex; gap: 6px; }

.featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
}
.featured .art { position: relative; min-height: 280px; }
.featured .art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured .body { padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.featured .body h3 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 14px 0 12px; }
.featured .body p { color: var(--ink-2); }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--sage-d), var(--sage));
  color: #fff; border-radius: 26px; padding: clamp(40px, 6vw, 72px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 12% 120%, rgba(193,118,74,.45), transparent 60%),
    radial-gradient(360px 260px at 90% -20%, rgba(247,243,234,.18), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .btn-clay { box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--cream); border: 1.5px solid var(--line-2); border-radius: 12px;
  padding: .8em 1em; font-size: 1rem; transition: var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px var(--sage-wash);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin-top: 4px; font-weight: 700; font-size: .95rem; min-height: 1.2em; }

.info-card {
  background: var(--ink); color: var(--cream); border-radius: var(--r);
  padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow);
}
.info-card h3 { font-family: var(--serif); color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.info-card .sub { color: #cfc6b3; margin-bottom: 24px; }
.info-list { display: grid; gap: 18px; }
.info-list .row { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: rgba(247,243,234,.08); color: var(--sage-l); display: grid; place-items: center; }
.info-list .ic svg { width: 19px; height: 19px; }
.info-list b { display: block; color: #fff; font-size: .95rem; }
.info-list span { color: #cfc6b3; font-size: .92rem; }
.hours { margin-top: 24px; border-top: 1px solid rgba(247,243,234,.14); padding-top: 20px; }
.hours h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; color: var(--sage-l); }
.hours dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; font-size: .92rem; }
.hours dt { color: #cfc6b3; }
.hours dd { color: #fff; font-weight: 700; text-align: right; }
.hours .closed { color: var(--clay-l); }

.map-card { grid-column: 1 / -1; margin-top: 8px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
.map-card svg { width: 100%; height: 360px; display: block; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: var(--cream); margin-top: clamp(60px, 8vw, 110px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: clamp(48px, 6vw, 80px) 0 48px; }
.footer-brand .brand-mark { color: #fff; font-size: 1.6rem; }
.footer-brand p { color: #b8af9d; margin-top: 14px; font-size: .94rem; max-width: 34ch; }
.footer-brand .stars { color: var(--gold); letter-spacing: 2px; margin-top: 16px; display: block; }
.footer-col h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-l); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col p { color: #cfc6b3; font-size: .93rem; transition: var(--t); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(247,243,234,.12); padding: 24px 0 40px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #948b79; font-size: .82rem; }
.disclaimer { max-width: 100%; line-height: 1.5; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---- Page hero (sub pages) ---- */
.page-hero { padding: clamp(48px, 6vw, 80px) 0 clamp(20px, 3vw, 36px); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); margin: .3em 0 .35em; }
.page-hero p { color: var(--ink-2); font-size: 1.12rem; max-width: 56ch; }
.crumbs { font-size: .85rem; color: var(--muted); font-weight: 700; }
.crumbs a:hover { color: var(--sage-d); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; }
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; }
  .svc-grid, .help-grid, .reviews, .blog-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured .art { min-height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: calc(100% + 12px);
    left: 0; right: 0; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--r); padding: 14px; box-shadow: var(--shadow);
  }
  .nav.open .nav-cta { display: flex; flex-direction: column; align-items: stretch; gap: 12px; position: absolute; top: calc(100% + 12px); left: 0; right: 0; }
  .nav.open .nav-links + .nav-cta { top: calc(100% + 232px); }
  .nav.open .nav-cta .btn { justify-content: center; }
  .nav.open .nav-cta .nav-phone { text-align: center; }
  .nav.open { padding-bottom: 8px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .help-grid, .reviews, .blog-grid, .steps, .trust-strip .wrap, .footer-top { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .price-row .fee { text-align: left; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
