/* ===========================================================
   Amy Vlahos, EA — Accounting & Income Tax Service
   Palette drawn from the business card: burgundy on warm cream
   =========================================================== */

:root {
  --burgundy:      #7a1e2d;
  --burgundy-dark: #591420;
  --burgundy-deep: #40101a;
  --burgundy-soft: #9e3547;
  --cream:         #fbf9f7;
  --cream-2:       #f4efeb;
  --line:          #e6ded9;
  --ink:           #262121;
  --muted:         #6f6763;
  --white:         #ffffff;
  --gold:          #c9a24b;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 2px 10px rgba(64, 16, 26, .06);
  --shadow-md: 0 12px 34px rgba(64, 16, 26, .10);
  --shadow-lg: 0 26px 60px rgba(64, 16, 26, .16);

  --radius: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; margin: 0; color: var(--burgundy-deep); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.3px; }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--burgundy); }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.4rem); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.6rem;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2rem; height: 1px; background: var(--burgundy); transform: translateY(-50%);
}
.eyebrow.light { color: #e9c3ca; }
.eyebrow.light::before { background: #e9c3ca; }

.section-head { max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: .6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; font-size: .98rem;
  padding: .9rem 1.7rem; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  letter-spacing: .02em;
}
.btn-primary { background: var(--burgundy); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--burgundy); border-color: rgba(122,30,45,.3); }
.btn-ghost:hover { border-color: var(--burgundy); background: rgba(122,30,45,.05); transform: translateY(-2px); }
.btn-sm { padding: .7rem 1.3rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,249,247,.85);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; transition: padding .3s var(--ease); }
.site-header.scrolled .header-inner { padding: .7rem 0; }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  background: var(--burgundy); color: var(--cream); font-family: var(--serif);
  font-weight: 600; font-size: 1.35rem; border-radius: 10px; letter-spacing: .02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--burgundy-deep); }
.brand-name em { color: var(--burgundy); font-style: normal; }
.brand-tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav > a { font-size: .95rem; font-weight: 400; color: var(--ink); position: relative; transition: color .2s; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--burgundy); transition: width .28s var(--ease);
}
.main-nav > a:not(.nav-cta):hover { color: var(--burgundy); }
.main-nav > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--burgundy); color: var(--cream) !important;
  padding: .6rem 1.15rem; border-radius: 50px; font-weight: 500;
  transition: background .25s, transform .25s;
}
.nav-cta:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--burgundy); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Geometric line motif ---------- */
.hero-lines, .contact-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(115deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient( 65deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient(160deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient( 20deg, transparent 49.9%, var(--line) 50%, transparent 50.1%);
  background-size: 340px 340px, 480px 480px, 620px 620px, 260px 260px;
}
.contact-lines { opacity: .12; }
.contact-lines {
  background-image:
    linear-gradient(115deg, transparent 49.9%, rgba(255,255,255,.5) 50%, transparent 50.1%),
    linear-gradient( 65deg, transparent 49.9%, rgba(255,255,255,.5) 50%, transparent 50.1%),
    linear-gradient(160deg, transparent 49.9%, rgba(255,255,255,.5) 50%, transparent 50.1%);
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(8rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 6rem); overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #fff 0%, var(--cream) 55%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-content { max-width: 620px; }
.hero h1 { margin-bottom: 1.4rem; }
.hero-lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }

/* Google reviews badge */
.google-reviews {
  display: inline-flex; align-items: center; gap: .9rem; max-width: 100%;
  background: var(--white); border: 1px solid var(--line); border-radius: 50px;
  padding: .65rem 1.3rem .65rem .75rem; box-shadow: var(--shadow-md); margin-bottom: 2rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.google-reviews:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(122,30,45,.22); }
.gr-logo { position: relative; display: grid; place-items: center; width: 40px; height: 40px; flex: none;
  background: var(--cream); border-radius: 50%; }
.gr-logo svg { width: 21px; height: 21px; }
.gr-logo::before { content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: gr-pulse 2.8s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes gr-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(66,133,244,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(66,133,244,0); }
  100% { box-shadow: 0 0 0 0 rgba(66,133,244,0); }
}
.gr-text { display: flex; flex-direction: column; line-height: 1.2; }
.gr-stars { color: #f5b400; font-size: .82rem; letter-spacing: .14em; }
.gr-text strong { font-size: .95rem; font-weight: 500; color: var(--ink); }
.gr-arrow { width: 18px; height: 18px; fill: var(--burgundy); flex: none; transition: transform .3s var(--ease); }
.google-reviews:hover .gr-arrow { transform: translateX(4px); }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; }
.hero-trust li { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--ink); }
.tick { width: 20px; height: 20px; fill: var(--burgundy); flex: none;
  background: rgba(122,30,45,.1); border-radius: 50%; padding: 3px; }

.hero-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  position: relative;
}
.hero-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.hero-card-mark { display: grid; place-items: center; width: 54px; height: 54px; flex: none;
  background: var(--burgundy); color: var(--cream); font-family: var(--serif); font-size: 1.5rem; border-radius: 12px; }
.hero-card-top strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--burgundy-deep); }
.hero-card-top small { color: var(--muted); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-card-quote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.4; color: var(--ink); font-style: italic; margin-bottom: 1.6rem; }
.hero-card-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.4rem; text-align: center; }
.hero-card-stats .num { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--burgundy); line-height: 1; }
.hero-card-stats small { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--burgundy-deep); color: var(--cream); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 2.2rem 0; }
.trust-item { display: flex; align-items: center; gap: .9rem; }
.trust-item svg { width: 34px; height: 34px; fill: var(--gold); flex: none; }
.trust-item strong { display: block; font-size: 1rem; font-family: var(--serif); font-size: 1.15rem; }
.trust-item span { font-size: .82rem; color: rgba(255,255,255,.7); }
/* Full-sentence trust item — sized down so it wraps to a similar height as the others. */
.trust-item strong.trust-long { font-size: 1rem; line-height: 1.3; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--burgundy);
  transition: width .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(122,30,45,.2); }
.service-card:hover::before { width: 100%; }
.service-icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(122,30,45,.1), rgba(122,30,45,.03)); margin-bottom: 1.1rem; }
.service-icon svg { width: 26px; height: 26px; fill: var(--burgundy); }
.service-card h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.service-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.service-card.feature { background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-dark) 100%); border-color: transparent; }
.service-card.feature h3, .service-card.feature p { color: var(--cream); }
.service-card.feature p { color: rgba(255,255,255,.82); }
.service-card.feature .service-icon { background: rgba(255,255,255,.14); }
.service-card.feature .service-icon svg { fill: var(--cream); }
.service-card.feature::before { background: var(--gold); }
.badge { position: absolute; top: 1rem; right: 1rem; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--gold); color: var(--burgundy-deep); padding: .28rem .6rem; border-radius: 50px; font-weight: 600; }

.service-card.cta-card { display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  background: var(--cream-2); border-style: dashed; }
.service-card.cta-card h3 { color: var(--burgundy-deep); }
.service-card.cta-card p { margin-bottom: 1.1rem; }

/* ---------- About ---------- */
.about { background: var(--cream-2); }
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-visual { position: relative; display: grid; place-items: center; gap: 1.6rem; min-height: 380px; }
.about-badge {
  display: grid; place-items: center; gap: .4rem; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--burgundy-soft), var(--burgundy) 55%, var(--burgundy-dark));
  color: var(--cream); box-shadow: var(--shadow-lg); position: relative;
}
.about-badge::after { content: ""; position: absolute; inset: -14px; border: 1px solid var(--burgundy); border-radius: 50%; opacity: .4; }
.about-badge .ea-big { font-family: var(--serif); font-size: 4.6rem; font-weight: 600; line-height: 1; }
.about-badge span:last-child { letter-spacing: .18em; text-transform: uppercase; font-size: .82rem; }
.about-credential { display: inline-flex; align-items: center; gap: .7rem;
  background: var(--white); padding: .85rem 1.3rem; border-radius: 50px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.about-credential svg { width: 24px; height: 24px; fill: var(--burgundy); flex: none; }
.about-credential p { margin: 0; font-size: .86rem; color: var(--ink); line-height: 1.35; white-space: nowrap; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--muted); }
.about-content strong { color: var(--ink); }
.about-list { list-style: none; margin: 1.4rem 0 2rem; padding: 0; display: grid; gap: .7rem; }
.about-list li { display: flex; align-items: center; gap: .7rem; font-size: .98rem; }

/* ---------- Why / steps ---------- */
.why { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--burgundy); color: var(--cream); font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.1rem; }
.step h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }
.step-note { margin-top: .9rem !important; padding-top: .9rem; border-top: 1px dashed var(--line);
  font-size: .84rem !important; color: var(--burgundy) !important; font-weight: 500; }

/* ---------- Locations ---------- */
.locations { background: var(--cream-2); }
/* This section head has no <h2>, so the lead paragraph carries it. */
.locations .section-head p { font-size: 1.18rem; color: var(--ink); margin-top: .2rem; }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; max-width: 560px; margin: 0 auto; }
.location-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.location-card h3 { font-size: 1.5rem; margin-bottom: 1.1rem; color: var(--burgundy); }
.location-card address { font-style: normal; }
.location-card address p { display: flex; align-items: flex-start; gap: .65rem; color: var(--ink); font-size: .96rem; margin-bottom: .7rem; }
.location-card svg { width: 20px; height: 20px; fill: var(--burgundy); flex: none; margin-top: 2px; }
.location-card a:hover { color: var(--burgundy); }
.location-card .fax { color: var(--muted); font-size: .9rem; }
.location-hours { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.location-hours h4 { display: flex; align-items: center; gap: .5rem; font-family: var(--sans); font-size: .74rem;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 1rem; }
.location-hours h4 svg { width: 17px; height: 17px; fill: var(--burgundy); }
.hours-group { margin-bottom: 1rem; }
.hours-group:last-of-type { margin-bottom: .9rem; }
.hours-label { display: block; font-size: .8rem; font-weight: 600; color: var(--burgundy-deep);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .35rem; }
.hours-label em { font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--muted); font-size: .82rem; margin-left: .3rem; }
.hours-group p { margin: 0 0 .2rem; font-size: .93rem; color: var(--ink); }
.hours-note { margin: 0; font-size: .9rem; color: var(--burgundy); font-weight: 700; }

.location-notes { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 .4rem; }
.location-notes span { display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--burgundy);
  background: rgba(122,30,45,.07); border: 1px solid rgba(122,30,45,.18);
  padding: .42rem .8rem; border-radius: 50px; }
.location-notes svg { width: 15px; height: 15px; margin-top: 0; }
.location-links { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.4rem; margin-top: 1rem; }
.location-map { display: inline-block; font-weight: 500; color: var(--burgundy); border-bottom: 1px solid transparent; transition: border-color .2s; }
.location-map:hover { border-color: var(--burgundy); }
.location-review { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 500;
  color: var(--burgundy-deep); background: rgba(201,162,75,.14); border: 1px solid rgba(201,162,75,.45);
  padding: .5rem .95rem; border-radius: 50px; transition: background .25s, transform .25s var(--ease); }
.location-review svg { width: 16px; height: 16px; fill: var(--gold); margin-top: 0; }
.location-review:hover { background: rgba(201,162,75,.26); transform: translateY(-2px); }

/* ---------- Contact ---------- */
.contact { position: relative; background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-deep) 100%); color: var(--cream); overflow: hidden; }
.contact-inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.contact-info h2 { color: var(--cream); margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,.8); max-width: 420px; }
.contact-details { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1rem; }
.contact-details li { display: flex; align-items: center; gap: .8rem; }
.contact-details svg { width: 22px; height: 22px; fill: var(--gold); flex: none; }
.contact-details a { color: var(--cream); border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-details a:hover { border-color: var(--cream); }

.contact-form { background: var(--white); border-radius: 18px; padding: 2.2rem; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink); margin-bottom: .4rem; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(122,30,45,.12); background: var(--white);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #c0392b; }
.form-note { margin: 1rem 0 0; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.success { color: #1e7d4f; }
.form-note.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--burgundy-deep); color: rgba(255,255,255,.75); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(3rem,6vw,4.5rem) 0 2.5rem; text-align: center; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); display: block; }
.footer-brand .brand-name em { color: var(--gold); }
.footer-brand .brand-tag { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; max-width: 320px; margin-left: auto; margin-right: auto; }
.footer-col h4 { color: var(--cream); font-family: var(--serif); font-size: 1.2rem; margin-bottom: 1rem; font-weight: 500; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p strong { display: block; color: var(--cream); font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; font-size: .72rem; margin-bottom: .25rem; }
.footer-col p a { display: inline; }
.footer-fax { color: rgba(255,255,255,.5); font-size: .84rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0; }
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.55); text-align: center; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 1.5rem; bottom: 1.5rem; width: 48px; height: 48px; border-radius: 50%;
  background: var(--burgundy); display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s, background .25s; z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--burgundy-dark); }
.to-top svg { width: 26px; height: 26px; fill: var(--cream); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .trustbar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .brand-tag { display: none; }

  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: .2rem; background: var(--cream); padding: 6rem 1.6rem 2rem;
    box-shadow: -20px 0 60px rgba(64,16,26,.18); transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; margin-top: 1rem; border-bottom: none; }
  .nav-toggle { display: flex; z-index: 101; }
}
@media (max-width: 560px) {
  .service-grid, .steps, .location-grid, .trustbar-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-card-stats { gap: .5rem; }
  .google-reviews { gap: .7rem; padding: .6rem 1rem .6rem .6rem; }
  .gr-text strong { font-size: .86rem; }
  .about-credential p { white-space: normal; }
  .about-credential { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .gr-logo::before { animation: none; }
}
