/* ============================================================
   BrightBooks — Bookkeeping & Payroll Bureau
   Warm cream · cheerful coral/amber · soft rounded cards
   Humanist type pairing: Fraunces + Figtree
   ============================================================ */

:root {
  /* palette */
  --cream:      #fbf4e9;
  --cream-2:    #f6ebda;
  --paper:      #fffdf8;
  --ink:        #2c2622;
  --ink-soft:   #6b6259;
  --line:       #e8dcc7;

  --coral:      #f0623a;
  --coral-dk:   #d44a25;
  --amber:      #f6a92b;
  --honey:      #fbd36b;
  --teal:       #1f8a7a;
  --teal-dk:    #156b5e;
  --mint:       #e7f3ef;

  /* gradients */
  --grad-warm:  linear-gradient(135deg, #f0623a 0%, #f6a92b 100%);
  --grad-honey: linear-gradient(135deg, #fbd36b 0%, #f6a92b 100%);
  --grad-cream: linear-gradient(180deg, #fbf4e9 0%, #f6ebda 100%);
  --grad-teal:  linear-gradient(135deg, #1f8a7a 0%, #2bb39d 100%);

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Figtree", system-ui, sans-serif;

  /* shape */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 30px;
  --r-xl: 44px;

  /* shadow */
  --sh-sm: 0 4px 14px rgba(70,50,30,.07);
  --sh:    0 14px 40px rgba(70,50,30,.10);
  --sh-lg: 0 30px 70px rgba(70,50,30,.16);

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 540; line-height: 1.06; letter-spacing: -.015em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--coral); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-dk);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px;
}

.section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .98rem;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  will-change: transform;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid { background: var(--grad-warm); color: #fff; box-shadow: 0 10px 26px rgba(240,98,58,.34); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(240,98,58,.42); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--coral); color: var(--coral-dk); }
.btn-teal { background: var(--grad-teal); color: #fff; box-shadow: 0 10px 26px rgba(31,138,122,.3); }
.btn-teal:hover { transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,244,233,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
}
.site-header.shrink {
  background: rgba(255,253,248,.92);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 0;
  transition: padding .3s var(--ease);
}
.site-header.shrink .nav { padding: 13px 0; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -.02em; display: inline-flex; align-items: center; gap: 2px;
}
.brand-mark .spark { color: var(--coral); }
.brand-sub {
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700; margin-top: 4px;
}

.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a {
  display: block; padding: 9px 16px; border-radius: 100px;
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(240,98,58,.08); }
.nav-links a.active { color: var(--coral-dk); background: rgba(240,98,58,.12); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; color: var(--ink);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--coral); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 70; }
.nav-toggle span {
  width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px;
  transition: transform .3s var(--ease), opacity .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(246,169,43,.16), transparent 60%),
    radial-gradient(50% 60% at 5% 90%, rgba(31,138,122,.10), transparent 60%),
    var(--cream);
}
.blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; opacity: .5; }
.blob.a { width: 260px; height: 260px; background: var(--grad-honey); top: -60px; right: 6%; }
.blob.b { width: 180px; height: 180px; background: var(--grad-teal); bottom: 40px; left: -50px; opacity: .25; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.hero-copy h1 { margin: 18px 0 22px; }
.hero-tag { font-size: 1.16rem; color: var(--ink-soft); max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.hero-trust { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--ink-soft); }
.hero-trust .stars { color: var(--amber); letter-spacing: 2px; }
.hero-trust b { color: var(--ink); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); border: 7px solid var(--paper);
  transform: rotate(1.4deg);
}
.hero-frame img { width: 100%; height: 540px; object-fit: cover; }

.hero-badge {
  position: absolute; left: -26px; bottom: 46px;
  background: var(--paper); border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--sh); text-align: center;
  border: 1px solid var(--line); transform: rotate(-3deg);
}
.hero-badge .n { font-family: var(--serif); font-size: 2.3rem; color: var(--coral); line-height: 1; }
.hero-badge .l { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-top: 6px; }

.hero-float {
  position: absolute; right: -16px; top: 30px;
  display: flex; align-items: center; gap: 12px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; padding: 11px 18px 11px 12px; box-shadow: var(--sh);
}
.hero-float .ic {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-teal); color: #fff;
}
.hero-float .ic svg { width: 18px; height: 18px; }
.hero-float b { display: block; font-size: 1.02rem; }
.hero-float span span { font-size: .78rem; color: var(--ink-soft); }

/* logos strip */
.logos { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos .wrap { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.logos .lab { font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.logos .li { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--ink-soft); opacity: .72; transition: opacity .25s, color .25s; }
.logos .li:hover { opacity: 1; color: var(--coral-dk); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); color: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-block: 64px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -15px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.13);
}
.stat .n { font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 3.5rem); color: var(--honey); line-height: 1; }
.stat .suf { color: var(--coral); }
.stat .l { margin-top: 10px; font-size: .92rem; color: rgba(255,255,255,.66); font-weight: 600; }

/* ============================================================
   FEATURE / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 6px solid var(--paper); }
.split-media img { width: 100%; height: 560px; object-fit: cover; transition: transform 1.1s var(--ease); }
.split-media .frame:hover img { transform: scale(1.06); }
.split-copy h2 { margin: 16px 0 20px; }
.split-copy > p { color: var(--ink-soft); font-size: 1.08rem; }

.ticks { list-style: none; margin: 28px 0 32px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; }
.ticks .tk {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--mint); color: var(--teal); margin-top: 1px;
}
.ticks .tk svg { width: 14px; height: 14px; }

.split-stat {
  position: absolute; bottom: -24px; right: -20px;
  background: var(--grad-warm); color: #fff; border-radius: var(--r);
  padding: 20px 24px; box-shadow: var(--sh); transform: rotate(2deg);
}
.split-stat .n { font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.split-stat .l { font-size: .8rem; opacity: .92; margin-top: 4px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--grad-warm);
  transition: width .45s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--coral); margin-bottom: 20px;
}
.svc-ic svg { width: 27px; height: 27px; }
.svc-card.alt .svc-ic { background: var(--mint); color: var(--teal); }
.svc-card.alt2 .svc-ic { background: #fdf0d6; color: var(--amber); }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-weight: 700; font-size: .9rem; color: var(--coral-dk);
}
.svc-link .arr { transition: transform .3s var(--ease); }
.svc-card:hover .svc-link .arr { transform: translateX(5px); }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process { background: var(--grad-cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px; position: relative; }
.step .num {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: #fff;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-warm); margin-bottom: 18px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--ink-soft); }
.step .dash { position: absolute; right: -14px; top: 50px; color: var(--line); display: none; }

/* ============================================================
   PRICING
   ============================================================ */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.plan.feat { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.04); }
.plan.feat:hover { transform: scale(1.04) translateY(-6px); }
.plan-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-dk); background: rgba(240,98,58,.12); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px;
}
.plan.feat .plan-tag { color: var(--ink); background: var(--honey); }
.plan h3 { font-size: 1.5rem; }
.plan .price { font-family: var(--serif); font-size: 3rem; line-height: 1; margin: 14px 0 4px; }
.plan .price span { font-size: 1rem; font-family: var(--sans); color: var(--ink-soft); font-weight: 600; }
.plan.feat .price span { color: rgba(255,255,255,.6); }
.plan .price small { font-size: 1.3rem; vertical-align: super; }
.plan .blurb { font-size: .94rem; color: var(--ink-soft); margin-bottom: 22px; }
.plan.feat .blurb { color: rgba(255,255,255,.7); }
.plan ul { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.plan ul li { display: flex; gap: 11px; font-size: .96rem; }
.plan ul li svg { flex: none; width: 18px; height: 18px; color: var(--teal); margin-top: 3px; }
.plan.feat ul li svg { color: var(--honey); }
.plan .btn { width: 100%; justify-content: center; }
.plan.feat .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.quote .mark { font-family: var(--serif); font-size: 4rem; line-height: .6; color: var(--honey); height: 30px; }
.quote .stars { color: var(--amber); letter-spacing: 2px; margin: 8px 0 14px; }
.quote p { color: var(--ink); font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.quote .av {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; color: #fff; font-size: 1.1rem;
}
.quote .who b { display: block; font-size: .98rem; }
.quote .who span { font-size: .84rem; color: var(--ink-soft); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  background: var(--grad-warm); color: #fff; border-radius: var(--r-xl);
  padding: 70px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta::after { width: 220px; height: 220px; bottom: -120px; left: -60px; }
.cta h2 { position: relative; color: #fff; }
.cta p { position: relative; max-width: 40em; margin: 16px auto 30px; font-size: 1.12rem; opacity: .95; }
.cta .actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-solid { background: #fff; color: var(--coral-dk); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.cta .btn-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.cta .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 80px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.foot-brand .brand-mark { color: #fff; font-size: 1.7rem; }
.foot-brand p { margin: 18px 0; max-width: 30em; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: background .25s, transform .25s, color .25s;
}
.foot-social a:hover { background: var(--coral); color: #fff; transform: translateY(-3px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { color: rgba(255,255,255,.66); transition: color .2s; font-size: .96rem; }
.foot-col a:hover { color: var(--honey); }
.foot-contact li { display: flex; gap: 11px; font-size: .94rem; margin-bottom: 13px; }
.foot-contact svg { flex: none; width: 17px; height: 17px; color: var(--coral); margin-top: 3px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.foot-disclaimer { background: rgba(0,0,0,.25); padding: 18px 0; font-size: .8rem; color: rgba(255,255,255,.42); text-align: center; }
.foot-disclaimer .wrap { line-height: 1.6; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { padding: 64px 0 70px; position: relative; overflow: hidden; background: var(--grad-cream); }
.page-head::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 80% at 85% 0%, rgba(246,169,43,.16), transparent 60%);
}
.page-head .wrap { position: relative; z-index: 1; }
.crumbs { font-size: .86rem; color: var(--ink-soft); margin-bottom: 16px; font-weight: 600; }
.crumbs a:hover { color: var(--coral-dk); }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 16ch; }
.page-head p { color: var(--ink-soft); font-size: 1.12rem; max-width: 44ch; margin-top: 18px; }

/* ============================================================
   FILTER BAR + SERVICE LIST (services page)
   ============================================================ */
.filterbar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.filterbar button {
  padding: 10px 22px; border-radius: 100px; font-weight: 700; font-size: .9rem;
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .25s;
}
.filterbar button:hover { border-color: var(--coral); color: var(--coral-dk); }
.filterbar button.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.svc-list .svc-card { display: flex; flex-direction: column; }
.svc-card.hide { display: none; }
.svc-card .price-from { margin-top: auto; padding-top: 18px; font-weight: 700; color: var(--ink); }
.svc-card .price-from span { color: var(--ink-soft); font-weight: 600; font-size: .85rem; }

.feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px;
}
.feature-mini { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; }
.feature-mini .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--cream-2); color: var(--coral); display: grid; place-items: center; margin-bottom: 14px; }
.feature-mini .ic svg { width: 22px; height: 22px; }
.feature-mini h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feature-mini p { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-sm); }
.form-card h2 { font-size: 1.9rem; margin-bottom: 8px; }
.form-card > p { color: var(--ink-soft); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .86rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral); box-shadow: 0 0 0 4px rgba(240,98,58,.12); background: var(--paper);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
[data-form-note] { margin-top: 16px; font-weight: 700; color: var(--teal); min-height: 1.2em; opacity: 0; transition: opacity .3s; }
[data-form-note].show { opacity: 1; }

.info-card { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 36px; }
.info-card h3 { color: #fff; margin-bottom: 22px; }
.info-list { list-style: none; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 14px; }
.info-list .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--honey); }
.info-list .ic svg { width: 19px; height: 19px; }
.info-list b { display: block; color: #fff; font-size: .96rem; }
.info-list span, .info-list a { color: rgba(255,255,255,.7); font-size: .94rem; }
.info-list a:hover { color: var(--honey); }

.hours-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; margin-top: 26px; }
.hours-card h3 { margin-bottom: 18px; }
.hours-card .row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.hours-card .row:last-child { border-bottom: none; }
.hours-card .row span:last-child { font-weight: 700; }
.hours-card .row.closed span:last-child { color: var(--coral-dk); }

.map-wrap { margin-top: 60px; border-radius: var(--r-lg); overflow: hidden; border: 6px solid var(--paper); box-shadow: var(--sh); position: relative; }
.map-wrap svg.map { display: block; width: 100%; height: 360px; }
.map-pin {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-100%);
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 100px;
  font-size: .85rem; font-weight: 700; box-shadow: var(--sh); display: flex; gap: 7px; align-items: center;
}
.map-pin svg { width: 15px; height: 15px; color: var(--honey); }

/* ============================================================
   BLOG
   ============================================================ */
.featured-post {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
}
.featured-post .media { overflow: hidden; }
.featured-post .media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; transition: transform 1s var(--ease); }
.featured-post:hover .media img { transform: scale(1.05); }
.featured-post .body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.tag { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-dk); background: rgba(240,98,58,.12); padding: 5px 13px; border-radius: 100px; }
.featured-post h2 { font-size: 2.1rem; margin: 18px 0 14px; }
.featured-post p { color: var(--ink-soft); }
.post-meta { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-size: .88rem; color: var(--ink-soft); }
.post-meta .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-teal); display: grid; place-items: center; color: #fff; font-family: var(--serif); font-size: .95rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--sh); }
.post-card .thumb { height: 200px; position: relative; overflow: hidden; }
.post-card .thumb .ph { width: 100%; height: 100%; display: grid; place-items: center; }
.post-card .thumb .ph svg { width: 64px; height: 64px; color: rgba(255,255,255,.85); }
.post-card .tag { position: absolute; left: 16px; top: 16px; background: var(--paper); }
.post-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.post-card p { font-size: .94rem; color: var(--ink-soft); margin-bottom: 18px; }
.post-card .post-meta { margin-top: auto; }

.news-card { background: var(--grad-cream); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 50px; text-align: center; margin-top: 64px; }
.news-card h2 { font-size: 2rem; }
.news-card p { color: var(--ink-soft); margin: 14px auto 26px; max-width: 40ch; }
.news-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.news-form input { flex: 1; padding: 15px 18px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--paper); font-family: inherit; font-size: 1rem; outline: none; }
.news-form input:focus { border-color: var(--coral); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.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; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .split-media img, .featured-post .media img, .post-card, .svc-card, .btn { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1024px) {
  .steps .step:not(:last-child) .dash { display: block; }
}

@media (max-width: 980px) {
  .hero-grid, .split, .split.rev .split-media, .contact-grid, .featured-post { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .hero-media { max-width: 520px; margin: 10px auto 0; }
  .split-media img, .hero-frame img { height: 420px; }
  .svc-grid, .plan-grid, .quotes, .post-grid, .steps, .feature-row { grid-template-columns: 1fr 1fr; }
  .plan.feat { transform: none; }
  .plan.feat:hover { transform: translateY(-6px); }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 76px 0; }
  .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    flex-direction: column; gap: 6px; padding: 100px 26px 40px;
    background: var(--paper); box-shadow: -20px 0 50px rgba(0,0,0,.14);
    transform: translateX(105%); transition: transform .4s var(--ease);
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links a { font-size: 1.1rem; padding: 12px 16px; }

  .svc-grid, .plan-grid, .quotes, .post-grid, .steps, .feature-row, .stats .wrap, .foot-grid, .field.two, .news-form { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .cta { padding: 50px 26px; }
  .featured-post .body, .form-card, .info-card { padding: 30px; }
  .hero-frame { transform: none; }
  .news-form { flex-direction: column; }
  .news-form .btn { justify-content: center; }
  .foot-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 440px) {
  .hero-badge { left: 0; }
  .hero-float { right: 0; }
  body { font-size: 16px; }
}
