/* =====================================================================
   We Care For You Transport — Brand Stylesheet
   Palette pulled from brand logo:  forest #252a2d · sage #92a495 · gold #abad78
   Type: HeyWow (display, brand font) + Poppins (body)
   ===================================================================== */

/* ---------- Brand font ---------- */
@font-face {
  font-family: "HeyWow";
  src: url("../fonts/HeyWow-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --forest:        #252a2d;
  --forest-900:    #1b1f21;
  --forest-700:    #2f363a;
  --sage:          #92a495;
  --sage-600:      #7c8f7f;
  --sage-300:      #b9c6ba;
  --sage-100:      #e4eae3;
  --gold:          #abad78;
  --gold-600:      #8f9159;
  --cream:         #f7f5ef;
  --cream-200:     #efece2;
  --paper:         #ffffff;
  --ink:           #232826;
  --ink-soft:      #51585a;
  --line:          #e2ddd0;

  --shadow-sm: 0 2px 8px rgba(37,42,45,.06);
  --shadow-md: 0 10px 30px rgba(37,42,45,.10);
  --shadow-lg: 0 24px 60px rgba(37,42,45,.16);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  --ff-display: "HeyWow", "Poppins", system-ui, sans-serif;
  --ff-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

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

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.h-xl { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.1rem); }
h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); color: var(--ink); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content:""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 100px;
  font-family: var(--ff-display); font-weight: 700; font-size: .98rem;
  border: 2px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-600); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--cream); }
.btn--on-dark.btn--ghost { color: #fff; }
.btn--on-dark.btn--ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(37,42,45,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  color: #d8ddd8; font-weight: 500; font-size: .98rem;
  padding: .5rem .85rem; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.is-active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 0; padding: .4rem; color: #fff;
}
.nav-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background: radial-gradient(120% 120% at 80% 0%, #2f3a39 0%, var(--forest) 55%, var(--forest-900) 100%);
  color: #fff; overflow: hidden;
}
.hero::after { /* subtle topographic / forest texture */
  content:""; position: absolute; inset: 0; z-index: -1; opacity: .14;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(146,164,149,.5) 0, transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(171,173,120,.45) 0, transparent 40%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem,5vw,4rem);
  padding: clamp(3.5rem,7vw,6rem) 0 clamp(3.5rem,7vw,5.5rem);
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: #d4dcd6; }
.hero .lead { color: #e7ece8; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero-trust li { display: flex; align-items: center; gap: .6rem; color: #cdd5cf; font-size: .95rem; }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* hero visual: framed logo medallion + photo slot */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-medallion {
  width: min(420px, 80%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(146,164,149,.18), rgba(27,31,33,.4));
  border: 1px solid rgba(255,255,255,.08);
  display: grid; place-items: center; padding: 12%;
  box-shadow: var(--shadow-lg);
}
.hero-medallion img { width: 100%; filter: drop-shadow(0 12px 24px rgba(0,0,0,.35)); }
.hero-photo {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 4/5;
}

/* ---------- Marquee / area strip ---------- */
.areastrip {
  background: var(--forest-900); color: #fff; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.areastrip .container { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; justify-content: center; }
.areastrip span { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; color: #cdd5cf; }
.areastrip svg { width: 18px; height: 18px; color: var(--gold); }
.areastrip strong { font-family: var(--ff-display); color: #fff; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sage-100); color: var(--forest); margin-bottom: 1.1rem;
}
.card-icon svg { width: 28px; height: 28px; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--forest); position: relative; aspect-ratio: 5/4;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-fallback {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 1rem;
  background: radial-gradient(120% 120% at 70% 10%, #2f3a39, var(--forest));
  color: #fff; text-align: center; padding: 2rem;
}
.media-fallback img { width: 58%; opacity: .95; }
.media-fallback span { font-size: .85rem; color: #aeb8b0; max-width: 28ch; }

/* checklist */
.ticks { display: grid; gap: .8rem; margin-top: 1.4rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink); }
.ticks svg { width: 22px; height: 22px; color: var(--gold-600); flex: none; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); text-align: center; }
.stat .num { font-family: var(--ff-display); font-size: clamp(2rem,1.4rem+2vw,3rem); color: var(--gold-600); }
.stat .lbl { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; background: var(--forest); color: var(--sage);
  font-family: var(--ff-display); font-size: 2.1rem; box-shadow: var(--shadow-sm);
  border: 3px solid var(--gold);
}
.team-card h3 { margin-bottom: .15rem; }
.team-role { color: var(--gold-600); font-weight: 600; font-size: .92rem; letter-spacing: .02em; }
.team-card p { font-size: .95rem; margin-top: .6rem; }

/* ---------- Mission band ---------- */
.band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-700) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,4rem);
  position: relative; overflow: hidden;
}
.band::before {
  content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px;
  background: radial-gradient(circle, rgba(171,173,120,.22), transparent 70%);
}
.band h2 { color: #fff; }
.band p { color: #dde3de; }
.band .eyebrow { color: var(--gold); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--gap); grid-template-columns: repeat(3,1fr); }
.step { position: relative; padding-top: .5rem; }
.step .n {
  width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: var(--forest);
  font-family: var(--ff-display); font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.4rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0; font-family: var(--ff-display);
  font-weight: 700; color: var(--forest); display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .25s; color: var(--gold-600); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 0 1.25rem; font-size: .98rem; }

/* ---------- CTA banner ---------- */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-600) 100%);
  color: var(--forest); border-radius: var(--radius-lg); text-align: center;
  padding: clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,5vw,3rem); position: relative; overflow: hidden;
}
.cta h2 { color: var(--forest); }
.cta p { color: #3c3f29; }
.cta .hero-cta { justify-content: center; }

/* ---------- Resource links ---------- */
.res-list { display: grid; gap: 1rem; }
.res-item {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s;
}
.res-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.res-item .ri-icon { width:44px;height:44px;border-radius:12px;background:var(--sage-100);display:grid;place-items:center;color:var(--forest);flex:none;}
.res-item .ri-icon svg{width:24px;height:24px;}
.res-item h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.res-item p { font-size: .94rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.info-list { display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ii-icon { width:46px;height:46px;border-radius:12px;background:var(--forest);color:var(--gold);display:grid;place-items:center;flex:none;}
.info-item .ii-icon svg{width:22px;height:22px;}
.info-item h3 { font-size: 1.05rem; margin-bottom: .1rem; }
.info-item a, .info-item p { color: var(--ink-soft); font-size: .98rem; }
.info-item a:hover { color: var(--gold-600); }

form.card { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--forest); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .95rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--cream); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(146,164,149,.25); background:#fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-900) 100%);
  color: #fff; padding: clamp(3rem,6vw,5rem) 0 clamp(2.5rem,5vw,4rem); text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd5cf; max-width: 60ch; margin: 1rem auto 0; }
.crumbs { display: flex; gap: .5rem; justify-content: center; font-size: .85rem; color: #9fb0a4; margin-bottom: 1rem; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: #c4cdc6; padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gap); padding-bottom: 2.5rem; }
.site-footer img.flogo { height: 52px; margin-bottom: 1.1rem; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #c4cdc6; font-size: .95rem; }
.site-footer a:hover { color: var(--gold); }
.footer-grid ul { display: grid; gap: .6rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #8f9a92;
}

/* ---------- Fleet photo (replaces logo placeholder) ---------- */
.media-card .fleet-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Taxi / Rates section ---------- */
.taxi { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-700) 100%); color: #fff; }
.taxi .eyebrow { color: var(--gold); }
.taxi h2 { color: #fff; }
.taxi p { color: #dde3de; }
.taxi-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.price-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.6rem; text-align: center;
}
.price-card .plabel { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.price-card .pamount { font-family: var(--ff-display); font-size: clamp(2.2rem,1.6rem+2vw,3rem); color: var(--gold); line-height: 1.1; margin: .35rem 0; }
.price-card .pamount small { font-size: 1rem; color: #cdd5cf; font-family: var(--ff-body); }
.price-card .pdesc { font-size: .9rem; color: #cdd5cf; }
.price-note { font-size: .85rem; color: #aeb8b0; margin-top: 1.1rem; }
.taxi-feats { display: grid; gap: .7rem; margin: 1.3rem 0 1.6rem; }
.taxi-feats li { display: flex; gap: .7rem; align-items: flex-start; color: #e7ece8; font-size: .98rem; }
.taxi-feats svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }
@media (max-width: 960px) { .taxi-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- Fare Estimator / Venmo calculator ---------- */
.calc {
  max-width: 620px; margin: 2.4rem auto 0; padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: left;
}
.calc-head { text-align: center; margin-bottom: 1.3rem; }
.calc-head .eyebrow { color: var(--gold-600); }
.calc-head h3 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); margin-top: .35rem; }
.calc-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; padding: .3rem;
  background: var(--cream-200); border-radius: 100px; margin-bottom: 1.4rem; }
.calc-tab { border: 0; background: transparent; cursor: pointer; padding: .6rem .5rem;
  border-radius: 100px; font-family: var(--ff-body); font-weight: 600; font-size: .92rem;
  color: var(--ink-soft); transition: background .2s, color .2s; }
.calc-tab.is-on { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.calc-field { display: block; }
.calc-field > span { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-bottom: .5rem; }
.calc-input { display: flex; align-items: center; gap: .5rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: .2rem .9rem; background: var(--cream);
  transition: border .2s, box-shadow .2s; }
.calc-input:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(171,173,120,.18); }
.calc-input input { flex: 1; border: 0; background: transparent; outline: 0; font-size: 1.3rem;
  font-family: var(--ff-display); color: var(--ink); padding: .55rem 0; min-width: 0; }
.calc-input em { font-style: normal; color: var(--ink-soft); font-size: .95rem; }
.calc-hint { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }
.calc-result { text-align: center; margin: 1.5rem 0 1.3rem; padding: 1.1rem; background: var(--cream);
  border-radius: var(--radius-sm); }
.calc-result-label { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; }
.calc-amount { display: block; font-family: var(--ff-display); font-size: clamp(2.2rem, 1.6rem + 2vw, 2.8rem);
  color: var(--gold-600); line-height: 1.1; margin: .25rem 0; }
.calc-breakdown { display: block; font-size: .88rem; color: var(--ink-soft); }
.calc-pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.calc-pay { width: 100%; justify-content: center; }
.calc-pay.is-disabled, .calc-pay:disabled { opacity: .55; cursor: not-allowed; }
.btn--venmo { background: #3d95ce; color: #fff; box-shadow: var(--shadow-sm); }
.btn--venmo:hover { background: #3284b8; color: #fff; box-shadow: var(--shadow-md); }
.btn--venmo svg { width: 18px; height: 18px; }
@media (max-width: 380px) { .calc-pay-row { grid-template-columns: 1fr; } }
.calc-note { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.calc-note a { color: var(--gold-600); text-decoration: underline; }

/* booking fields */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.calc-min { display: block; margin-bottom: .8rem; }
.calc-grid .calc-min { margin-bottom: 0; }
.calc-min > span { display: block; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-bottom: .35rem; }
.calc-min > input, .calc-min > textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border .2s, box-shadow .2s; resize: vertical;
}
.calc-min > input:focus, .calc-min > textarea:focus {
  outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(171,173,120,.18); background: #fff;
}
.calc-pane { margin-top: .2rem; }
.calc-pane .calc-input { padding: .05rem .85rem; }
.calc-pane .calc-input input { font-size: 1.05rem; padding: .62rem 0; }
@media (max-width: 480px) { .calc-grid { grid-template-columns: 1fr; gap: .8rem; } .calc-grid .calc-min { margin-bottom: 0; } }

/* ---------- Header "Text Us" button ---------- */
.nav-text {
  display: inline-flex; align-items: center; gap: .45rem; color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: .95rem;
  padding: .5rem 1rem; border: 2px solid rgba(255,255,255,.22); border-radius: 100px;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.nav-text svg { width: 17px; height: 17px; color: var(--gold); }
.nav-text:hover { background: rgba(255,255,255,.08); border-color: var(--gold); transform: translateY(-1px); }

/* ---------- Floating Call / Text dock (all pages) ---------- */
.contactdock { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: .7rem; }
.contactdock a {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.35rem; border-radius: 100px;
  font-family: var(--ff-display); font-weight: 700; box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.contactdock a:hover { transform: translateY(-2px); }
.contactdock .dock-call { background: var(--gold); color: var(--forest); }
.contactdock .dock-text { background: var(--forest); color: #fff; }
.contactdock svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .contactdock { left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0; }
  .contactdock a { flex: 1; justify-content: center; border-radius: 0; padding: 1rem; box-shadow: 0 -6px 20px rgba(37,42,45,.22); }
  body { padding-bottom: 60px; }
}
.nav-link-cta { display: none !important; color: var(--gold) !important; font-weight: 700 !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; max-width: 360px; }
  .split, .split--reverse .split-media, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone, .nav-text { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--forest); padding: 1rem 1.2rem 1.6rem; gap: .2rem;
    border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links a { padding: .8rem .6rem; font-size: 1.05rem; }
  .site-header.open .nav-links .nav-link-cta { display: block !important; border-top: 1px solid rgba(255,255,255,.08); margin-top: .3rem; padding-top: .9rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: .8rem 1.4rem; }
}
