/* ===================================================================
   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; }

.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: .88rem; }
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 8px; padding-bottom: 8px; }
.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; }

/* 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__btns { justify-content: flex-end; }

/* 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; }

/* ---------- 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 .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; }

/* relief band */
.relief { text-align: center; }
.relief h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 880px; margin: 0 auto 14px; }
.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 .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* 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)); }
.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 { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; font-size: .88rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* 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; }
}
