/* ===================================================================
   RV Interior Care — Master Stylesheet
   Brand colors: Teal #009CA6 | Orange #FF7F32 | Ink #101820 | Cream #faf6f0
   Type: BrandFont (Continuum) / Oswald display · Hanken Grotesk body
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

@font-face {
  font-family: "BrandFont";
  src: url("../fonts/brand-font.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}

:root {
  --teal: #009CA6;
  --teal-dark: #00767e;
  --teal-light: #e6f6f7;
  --orange: #FF7F32;
  --orange-dark: #e8650f;
  --ink: #101820;
  --ink-soft: #2a3540;
  --gray: #5b6770;
  --cream: #faf6f0;
  --gray-light: #faf6f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(16, 24, 32, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 24, 32, 0.12);
  --shadow-lg: 0 18px 48px rgba(16, 24, 32, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Hanken Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brandfont {
  font-family: "BrandFont", "Oswald", "Arial Narrow", "Arial Black", sans-serif;
  line-height: 1.12;
  letter-spacing: 0.3px;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; font-size: 1.05rem; }
a { color: var(--teal-dark); text-decoration: none; }

img { max-width: 100%; display: block; }
picture { display: contents; }
/* gallery images are direct grid items wrapped in <picture> — let the picture be the grid item */
.grid > picture { display: block; }
.grid > picture > img { width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 80px 0; }
.section--tight { padding: 54px 0; }
.section--gray { background: var(--gray-light); }
.section--teal { background: var(--teal); color: #fff; }
.section--ink { background: var(--ink); color: #fff; }
.section--teal h1, .section--teal h2, .section--teal h3,
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.section--teal .eyebrow, .section--ink .eyebrow { color: #ffd9bf; }

.lead { font-size: 1.22rem; color: var(--gray); max-width: 760px; }
.section--teal .lead, .section--ink .lead { color: rgba(255,255,255,0.9); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,127,50,.35); }
.btn--orange:hover { background: var(--orange-dark); box-shadow: 0 12px 26px rgba(255,127,50,.45); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(0,156,166,.32); }
.btn--teal:hover { background: var(--teal-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); }
.btn--lg { padding: 18px 38px; font-size: 1.12rem; }

/* ---------- Header (centered logo) ---------- */
.site-header { background: #fff; }

/* slim utility bar */
.utility-bar { background: var(--ink); color: #fff; font-size: 0.92rem; }
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
.utility-bar a { color: #fff; font-weight: 600; }
.utility-bar a:hover { color: var(--orange); }
.utility-bar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.utility-bar__tag { color: #ffd9bf; font-weight: 700; letter-spacing: .5px; }
.utility-bar__right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ub-portal { color: #fff; font-weight: 700; white-space: nowrap; }
.ub-portal:hover { color: var(--orange); }
.ub-social { display: flex; align-items: center; gap: 8px; }
.ub-social a { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; transition: background .15s ease, transform .15s ease; }
.ub-social a:hover { background: var(--orange); transform: translateY(-1px); }
.ub-social svg { width: 21px; height: 21px; display: block; }

/* centered brand block */
.brand-row { text-align: center; padding: 18px 16px 0; }
.brand-row__logo { display: inline-block; line-height: 0; }
.brand-row__logo img { height: 230px; width: auto; max-width: 100%; transition: transform .2s ease; }
.brand-row__logo:hover img { transform: scale(1.03); }

/* sticky nav bar under the logo */
.main-nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-top: 3px solid var(--teal); box-shadow: var(--shadow-sm); }
.main-nav__inner { display: flex; align-items: center; justify-content: center; min-height: 66px; position: relative; }

.nav__links { display: flex; align-items: center; gap: 10px; list-style: none; flex-wrap: wrap; justify-content: center; padding: 11px 0; }
.nav__links a {
  display: block; padding: 10px 20px; color: var(--ink-soft);
  font-weight: 700; font-size: .95rem; border-radius: 50px;
  border: 2px solid #e4e9eb; background: #fff; white-space: nowrap;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav__links a:hover {
  color: #fff; background: var(--teal); border-color: var(--teal);
  transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,156,166,.28);
}
.nav__links a.active { color: #fff; background: var(--teal); border-color: var(--teal); }
.nav__cta { margin-left: 4px; }
.nav__cta a {
  color: #fff; background: var(--orange); border-color: var(--orange);
  box-shadow: 0 6px 14px rgba(255,127,50,.30);
}
.nav__cta a:hover { color: #fff; background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: 0 8px 18px rgba(255,127,50,.42); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); }
.nav__toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  color: #fff;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(16,24,32,.86) 0%, rgba(16,24,32,.62) 45%, rgba(0,118,126,.35) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; padding: 70px 0; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p { font-size: 1.25rem; color: rgba(255,255,255,.92); margin-bottom: 28px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--sm { min-height: 360px; }
.hero--sm .hero__inner { padding: 50px 0; }

/* right-aligned hero variant (text over right side of image) */
.hero--right::before { background: linear-gradient(to left, rgba(16,24,32,.9) 0%, rgba(16,24,32,.58) 42%, rgba(0,118,126,.22) 100%); }
.hero--right .hero__inner { margin-left: auto; margin-right: 0; padding-right: 34px; text-align: right; }
.hero--right .hero__inner--wide { padding-right: 100px; }
.hero--right .hero__btns { justify-content: flex-end; }

@media (max-width: 700px) {
  .hero__inner { padding-left: 22px; padding-right: 22px; }
  .hero--right .hero__inner { text-align: left; margin-left: 0; margin-right: auto; padding-left: 22px; padding-right: 22px; }
  .hero--right .hero__inner--wide { padding-right: 22px; }
  .hero--right .hero__btns { justify-content: flex-start; }
}

/* badge */
.price-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--orange); color: #fff; border-radius: 50%;
  width: 132px; height: 132px; justify-content: center;
  box-shadow: var(--shadow-md); border: 4px solid #fff;
  transform: rotate(-8deg);
}
.price-badge b { font-family: "BrandFont", sans-serif; font-size: 2.5rem; line-height: 1; }
.price-badge span { font-size: .72rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Express banner ---------- */
.express {
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
}
.express .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: 34px 22px; }
.express__text h2 { color: #fff; margin-bottom: 6px; }
.express__text p { margin: 0; color: rgba(255,255,255,.95); }
.express__price { font-family: "BrandFont", sans-serif; font-size: 4rem; line-height: 1; white-space: nowrap; }
.express__price small { font-size: 1rem; display: block; font-family: inherit; letter-spacing: 1px; }

/* Tiny Homes page: tighter (halved) section spacing */
.tight-page .section { padding-top: 40px; padding-bottom: 40px; }
.tight-page .section--tight { padding-top: 27px; padding-bottom: 27px; }
.tight-page .cta-strip { padding-top: 40px; }

/* full-bleed clickable banner image (e.g. $69 Express) */
.express-banner { display: block; line-height: 0; }
.express-banner a { display: block; }
.express-banner img { width: 100%; height: auto; display: block; }
/* half-size, centered with white space around it */
.express-banner--half { padding: 48px 20px; text-align: center; }
.express-banner--half a { display: inline-block; max-width: 80%; }
@media (max-width: 600px) { .express-banner--half { padding: 32px 16px; } .express-banner--half a { max-width: 80%; } }

/* scroll crossfade banner: new image on top fades to reveal base image underneath */
.express-fade { display: block; line-height: 0; }
.express-fade a { display: block; position: relative; }
.express-fade img { width: 100%; display: block; }
.express-fade__base { height: auto; }
.express-fade__top { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: opacity; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid #eef1f2; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__img { height: 210px; width: 100%; object-fit: cover; }
.card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { color: var(--gray); font-size: 1rem; }
.card__link { margin-top: auto; font-weight: 800; color: var(--orange-dark); }
.card__link:hover { color: var(--orange); }

/* feature/icon tiles */
.feature { text-align: center; padding: 30px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid #eef1f2; }
.feature .ic { width: 64px; height: 64px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); font-size: 1.8rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--gray); font-size: .98rem; margin: 0; }

/* split media row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.split--reverse .split__media { order: 2; }

/* checklist */
.checklist { list-style: none; margin: 18px 0; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; font-size: 1.05rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; background: var(--teal); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 900;
}
.section--teal .checklist li::before, .section--ink .checklist li::before { background: var(--orange); }

/* trust badges row */
.trust { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.trust__item {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border: 2px solid var(--teal-light); border-radius: 50px; padding: 12px 24px;
  font-weight: 800; color: var(--ink); box-shadow: var(--shadow-sm);
}
.trust__item .ic { color: var(--teal); font-size: 1.4rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat b { font-family: "BrandFont", sans-serif; font-size: 2.8rem; color: var(--orange); display: block; line-height: 1; }
.stat span { font-weight: 700; color: var(--gray); }
.section--ink .stat span, .section--teal .stat span { color: rgba(255,255,255,.85); }

/* price/package cards */
.price-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid #eef1f2; display: flex; flex-direction: column; }
.price-card--featured { border: 3px solid var(--orange); box-shadow: var(--shadow-md); position: relative; }
.price-card--featured::before {
  content: "MOST POPULAR"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: 1px;
  padding: 6px 16px; border-radius: 50px;
}
.price-card h3 { color: var(--teal-dark); }
.price-card .amt { font-family: "BrandFont", sans-serif; font-size: 3rem; color: var(--ink); margin: 6px 0 4px; }
.price-card .amt small { font-size: 1rem; color: var(--gray); font-family: inherit; }
.price-card .price-note { font-size: .9rem; color: var(--gray); margin: 2px 0 12px; }
.price-card .tier-blurb { font-size: .92rem; line-height: 1.4; color: var(--ink); font-style: italic; margin: 4px 0 12px; min-height: 3.6em; }
.price-card .checklist { flex: 1; }

/* add-on price list */
.pricelist { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid #eef1f2; overflow: hidden; }
.pricelist__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 24px; border-bottom: 1px solid #f0f2f3; }
.pricelist__row:last-child { border-bottom: none; }
.pricelist__row:nth-child(odd) { background: var(--cream); }
.pricelist__name { font-weight: 700; }
.pricelist__name small { display: block; font-weight: 400; color: var(--gray); font-size: .9rem; }
.pricelist__price { font-family: "BrandFont", "Oswald", sans-serif; font-size: 1.4rem; color: var(--orange-dark); white-space: nowrap; }

/* exclusions / note callout */
.note-box { background: #fff; border-left: 5px solid var(--orange); border-radius: 10px; padding: 20px 24px; box-shadow: var(--shadow-sm); }
.note-box h3 { font-size: 1.15rem; margin-bottom: 8px; }
.note-box p { margin: 0; color: var(--gray); font-size: 1rem; }

/* story float — text wraps around the photo */
.story-float { float: left; width: 46%; max-width: 440px; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 4px 30px 16px 0; }
@media (max-width: 700px) { .story-float { float: none; width: 100%; max-width: none; margin: 0 0 18px; } }

/* relief band */
.relief { text-align: center; }
.relief h2 { font-size: clamp(1.6rem, 3.2vw, 2.45rem); max-width: 100%; margin: 0 auto 14px; padding: 0 16px; }
.relief p { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 680px; margin: 0 auto; }

/* keep a heading on one line on larger screens (wraps on small phones) */
.nowrap-lg { max-width: none; }
@media (min-width: 768px) { .nowrap-lg { white-space: nowrap; } }

/* steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step__num { flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--teal); color: #fff; font-family: "BrandFont", sans-serif; font-size: 1.5rem; display: grid; place-items: center; }
.step h3 { margin-bottom: 4px; }
.step p { color: var(--gray); margin: 0; }

/* CTA strip */
.cta-strip { background: var(--ink); color: #fff; text-align: center; padding: 56px 0 14px; }
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; font-size: 1.15rem; }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-info { }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .ci .ic { flex: none; width: 50px; height: 50px; border-radius: 12px; background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center; font-size: 1.4rem; }
.contact-info .ci b { display: block; font-size: 1.1rem; }
.contact-info .ci a, .contact-info .ci span { color: var(--gray); }

.form { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); border: 1px solid #eef1f2; }
.form label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.form .field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #d8dee2; border-radius: 10px;
  font-size: 1rem; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,156,166,.15);
}
.form textarea { min-height: 130px; resize: vertical; }
.form-section { font-size: 1.15rem; color: var(--teal-dark); margin: 26px 0 14px; padding-top: 16px; border-top: 1px solid #e6eaec; }
.form-section:first-of-type { margin-top: 6px; padding-top: 0; border-top: none; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.check { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: .98rem; cursor: pointer; }
.check input { width: auto; }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }

/* add-on included in selected tier */
.check.is-included { opacity: .6; cursor: default; }
.check.is-included input { pointer-events: none; }
.inc-badge { display: inline-block; margin-left: 6px; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--teal); border-radius: 999px; padding: 1px 8px; }
.field.is-included { opacity: .6; }

/* conditional / recurring blocks */
.cond { display: none; }
.cond.is-on { display: block; }
.recurring-block { background: #fff; border: 1px dashed var(--teal); border-radius: 14px; padding: 18px 20px; margin: 4px 0 8px; }
.recurring-block .form-section { margin-top: 0; padding-top: 0; border-top: none; }
.est-sub { font-family: "BrandFont", "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; color: var(--teal-dark); margin: 14px 0 8px; padding-top: 12px; border-top: 1px solid rgba(16,24,32,.12); }
.est-sub:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.est-row .est-hours { font-family: "BrandFont", "Oswald", sans-serif; font-size: 1.15rem; color: var(--ink-soft); }

/* quote chooser cards */
.quote-card { text-align: center; padding: 40px 26px; text-decoration: none; color: var(--ink); }
.quote-card .qc-icon { width: 104px; height: 104px; margin: 0 auto 18px; border-radius: 50%; background: var(--teal-light); display: grid; place-items: center; font-size: 3.1rem; transition: background .2s ease; }
.quote-card:hover .qc-icon { background: var(--orange); }
.quote-card h3 { margin-bottom: 8px; }
.quote-card p { color: var(--gray); margin: 0 0 16px; font-size: 1rem; }
.quote-card .qc-go { font-weight: 800; color: var(--orange-dark); }
.quote-card:hover .qc-go { color: var(--orange); }

/* pricing calculator */
.estimate-box { background: var(--teal-light); border: 2px solid var(--teal); border-radius: 14px; padding: 20px 24px; margin: 6px 0 18px; }
.est-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 1.05rem; margin-bottom: 8px; color: var(--ink-soft); }
.est-row .est-val { font-family: "BrandFont", "Oswald", sans-serif; font-size: 1.3rem; color: var(--teal-dark); }
.est-row.total { border-top: 1px solid rgba(16,24,32,.15); padding-top: 12px; margin-top: 4px; margin-bottom: 0; font-weight: 800; }
.est-row.total span:first-child { font-size: 1.2rem; }
.est-row.total .est-val { font-size: 1.9rem; color: var(--orange-dark); }
.disclosure { color: var(--orange-dark); font-weight: 600; font-size: .95rem; background: #fff5ef; border-left: 4px solid var(--orange); border-radius: 8px; padding: 14px 16px; margin: 6px 0 20px; }

.form-success { text-align: center; padding: 28px 10px; }
.form-success h3 { color: var(--teal-dark); margin-bottom: 8px; }
.form-success p { color: var(--gray); margin: 0; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* service comparison guide */
.svc-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; margin: 6px 0 22px; }
.svc-legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--ink-soft); }
.lvl { display: inline-block; min-width: 62px; text-align: center; font-size: .8rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; line-height: 1.35; letter-spacing: .01em; }
.lvl--inc { background: var(--teal); color: #fff; }
.lvl--surface { background: var(--teal-light); color: var(--teal-dark); }
.lvl--deep { background: var(--ink); color: #fff; }
.lvl--addon { background: #fff; color: var(--orange-dark); border: 1.5px solid var(--orange); }
.lvl--no { color: #c2cacf; font-weight: 800; }
.svc-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid #e6eaec; border-radius: 14px; box-shadow: var(--shadow-sm); }
.svc-table { border-collapse: collapse; width: 100%; min-width: 760px; font-size: .95rem; }
.svc-table th, .svc-table td { padding: 11px 12px; text-align: center; border-bottom: 1px solid #d9e0e3; border-right: 1px solid #d9e0e3; vertical-align: middle; }
.svc-table th:last-child, .svc-table td:last-child { border-right: none; }
.svc-table tbody th { border-right: 2px solid #cfd7da; }
.svc-table thead th { position: sticky; top: 0; background: var(--teal-dark); color: #fff; z-index: 3; font-family: "BrandFont", "Oswald", sans-serif; letter-spacing: .02em; font-size: 1rem; }
.svc-table thead th .pf { display: block; font-size: .72rem; opacity: .85; font-weight: 400; font-family: "Hanken Grotesk", sans-serif; }
.svc-table thead th:first-child { text-align: left; }
.svc-table tbody th { text-align: left; font-weight: 700; color: var(--ink); position: sticky; left: 0; background: #fff; z-index: 1; min-width: 240px; }
.svc-table tbody th small { display: block; font-weight: 400; color: var(--gray); font-size: .8rem; margin-top: 2px; }
.svc-row-group th { background: var(--cream); color: var(--teal-dark); font-family: "BrandFont", "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.svc-table tbody tr:not(.svc-row-group):hover td { background: #fbfdfd; }
.svc-note { font-size: .9rem; color: var(--gray); margin-top: 12px; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid #e6eaec; border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-weight: 800; font-size: 1.08rem; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); }
.faq-q .pm { color: var(--orange); font-size: 1.5rem; transition: transform .2s; flex: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 24px; color: var(--gray); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }

/* area tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tags span { background: #fff; border: 2px solid var(--teal-light); color: var(--teal-dark); font-weight: 700; padding: 8px 18px; border-radius: 50px; }
.section--teal .area-tags span, .section--ink .area-tags span { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 60px 0 26px; }
.site-footer h4 { color: #fff; font-family: "BrandFont", sans-serif; margin-bottom: 16px; font-size: 1.15rem; letter-spacing: .5px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 252px; max-width: 100%; width: auto; margin-bottom: 14px; filter: drop-shadow(0 0 5px rgba(255,255,255,.6)) drop-shadow(0 0 16px rgba(255,255,255,.35)); }
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; transition: background .15s ease, transform .15s ease; }
.social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: .98rem; margin-bottom: 10px; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-contact .fc-note { font-size: .82rem; font-weight: 400; color: rgba(255,255,255,.62); }
.footer-bottom a { color: rgba(255,255,255,.72); font-weight: 600; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; font-size: .88rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Employee Links footer dropdown (opens upward) */
.emp-links { position: relative; }
.emp-links > summary { cursor: pointer; list-style: none; color: rgba(255,255,255,.82); font-weight: 700; }
.emp-links > summary::-webkit-details-marker { display: none; }
.emp-links > summary::after { content: " ▾"; font-size: .8em; }
.emp-links[open] > summary::after { content: " ▴"; }
.emp-links[open] > summary:hover, .emp-links > summary:hover { color: var(--orange); }
.emp-menu { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 10px; background: var(--ink-soft); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 8px; min-width: 210px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 2px; z-index: 60; }
.emp-menu a { color: rgba(255,255,255,.85); padding: 9px 12px; border-radius: 6px; font-weight: 600; white-space: nowrap; }
.emp-menu a:hover { background: rgba(255,255,255,.12); color: #fff; }

/* floating call button (mobile) */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: none; }
.fab a { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.5rem; box-shadow: var(--shadow-lg); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-8deg);} 50% { transform: translateY(-9px) rotate(-8deg);} }
.price-badge { animation: floaty 3.4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .price-badge { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .main-nav__inner { justify-content: flex-start; min-height: 56px; }
  .brand-row { padding: 14px 16px 12px; }
  .brand-row__logo img { height: 160px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    padding: 10px 16px 18px; gap: 2px; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform .3s ease; z-index: -1;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 16px; border-radius: 10px; text-align: center; }
  .nav__cta { margin: 8px 0 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .express .container { flex-direction: column; text-align: center; }
  .fab { display: block; }
  .form .row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .utility-bar__contact { gap: 14px; font-size: .82rem; }
  .utility-bar__tag { display: none; }
  .brand-row__logo img { height: 122px; }
}
