/* ============ RINOVA Interior Finishes ============ */
:root {
  --burgundy: #591d2b;
  --burgundy-deep: #46151f;
  --cream: #f5f2ef;
  --cream-warm: #efe9e2;
  --sand: #cbb9a4;
  --gold: #c9a36a;
  --ink: #2b1a1e;
  --ink-soft: #6b5a5e;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(43, 26, 30, .12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); letter-spacing: .01em; }
h1 em { font-style: italic; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--cream); opacity: .9; }
.eyebrow.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(43,26,30,.18); }
.btn-burgundy { background: var(--burgundy); color: var(--cream); }
.btn-burgundy:hover { background: var(--burgundy-deep); }
.btn-cream { background: var(--cream); color: var(--burgundy); }
.btn-ghost { border-color: rgba(245,242,239,.55); color: var(--cream); }
.btn-ghost:hover { background: rgba(245,242,239,.12); box-shadow: none; }
.btn-whatsapp { background: #1fa855; color: #fff; margin-top: 1.4rem; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  padding: 0 18px;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(245, 242, 239, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(43,26,30,.14);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .95rem 1.7rem .95rem 2rem;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: .22em;
  color: var(--burgundy);
  font-weight: 500;
}
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  /* optical alignment: match INTERIOR's I to the stem of RINOVA's R */
  padding-left: 2px;
}
.wizard-logo .nav-logo-sub { padding-left: 0; }
.nav-links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav-links a {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink);
  transition: color .2s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-cta { padding: .8rem 1.6rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--burgundy); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(18,18,18,.1) 0%, rgba(18,18,18,.38) 55%, rgba(12,12,12,.72) 100%);
}
.hero-content {
  position: relative;
  color: var(--cream);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10rem 24px 4.5rem;
}
.hero-sub {
  max-width: 34rem;
  margin-top: 1.6rem;
  font-size: 1.02rem;
  opacity: .92;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-strip {
  position: relative;
  border-top: 1px solid rgba(245,242,239,.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.2rem 24px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .95;
}
.hero-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 7.5rem 24px; max-width: 1200px; margin: 0 auto; }
.section-cream {
  max-width: none;
  background: var(--cream-warm);
}
.section-cream > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-burgundy {
  max-width: none;
  background: var(--burgundy);
  color: var(--cream);
}
.section-burgundy > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 44rem !important; margin: 0 auto 4.2rem; }
.section-lede { margin-top: 1.2rem; color: var(--ink-soft); }
.section-burgundy .section-lede { color: rgba(245,242,239,.75); }

/* ---------- Services ---------- */
#services { max-width: 1420px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-img { aspect-ratio: 4 / 3; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.6rem 1.5rem 1.8rem; }
.service-body h3 { color: var(--burgundy); margin-bottom: .6rem; }
.service-body p { font-size: .9rem; color: var(--ink-soft); }
.service-price {
  margin-top: 1rem;
  font-size: .74rem !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink) !important;
}
.service-price strong { color: var(--burgundy); font-weight: 600; }

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* portrait frames: keep them from growing unwieldy on wide screens */
  max-width: 940px;
  margin: 0 auto;
}
.ba-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}
.ba-after, .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before-wrap .ba-before { width: auto; height: 100%; max-width: none; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
}
.ba-handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(43,26,30,.35);
}
.ba-handle span::before, .ba-handle span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border: 5px solid transparent;
}
.ba-handle span::before { left: 8px; transform: translateY(-50%); border-right-color: var(--burgundy); }
.ba-handle span::after { right: 8px; transform: translateY(-50%); border-left-color: var(--burgundy); }
.ba-tag {
  position: absolute;
  bottom: 14px;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 999px;
}
.ba-tag-before { left: 14px; background: rgba(43,26,30,.65); color: var(--cream); }
.ba-tag-after { right: 14px; background: var(--cream); color: var(--burgundy); }
.ba figcaption {
  text-align: center;
  margin-top: 1.1rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Split (finishes / about) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split-reverse .split-img { order: 2; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-body p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.split-body h2 { margin-bottom: 1.4rem; }
.split-body .btn { margin-top: 1rem; }
.ticks { list-style: none; margin: 1.6rem 0 1.4rem; }
.ticks li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: .7rem;
  font-size: .95rem;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  transform: rotate(-45deg);
}
.stats { display: flex; gap: 2.8rem; margin-top: 2.2rem; }
.stats div { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 500; color: var(--burgundy); line-height: 1; }
.stats span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: .5rem; }

/* ---------- Process ---------- */
.section-burgundy h2 { color: var(--cream); }
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2.4rem;
  counter-reset: step;
}
.process li { border-top: 1px solid rgba(245,242,239,.25); padding-top: 1.4rem; }
.process-num { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); letter-spacing: .1em; }
/* Cormorant's swash Q reads as ornamental; use a conventional serif Q */
.plain-q { font-family: 'Times New Roman', Georgia, serif; }
.process h3 { font-size: 1.35rem; margin: .6rem 0 .5rem; color: var(--cream); }
.process p { font-size: .86rem; color: rgba(245,242,239,.72); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 380px));
  justify-content: center;
  gap: 1.8rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.6rem 1.8rem 2.2rem;
  text-align: center;
}
.team-photo {
  width: 165px; height: 165px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--burgundy), var(--burgundy-deep));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo span { font-family: var(--font-serif); font-size: 2.2rem; color: var(--cream); letter-spacing: .08em; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { color: var(--burgundy); }
.team-role {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: .4rem 0 1rem;
  font-weight: 500;
}
.team-bio { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Quote ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}
.quote-intro h2 { color: var(--cream); margin-bottom: 1.2rem; }
.quote-intro p { color: rgba(245,242,239,.8); }
.quote-intro a { color: var(--gold); }
.quote-intro .btn { margin-top: 2.6rem; margin-right: .9rem; }
.quote-intro .btn-cream { color: var(--burgundy); }
.quote-intro .btn-whatsapp { color: #fff; }
.quote-form {
  background: rgba(245,242,239,.06);
  border: 1px solid rgba(245,242,239,.18);
  border-radius: var(--radius);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,242,239,.75);
}
.quote-form input, .quote-form select, .quote-form textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 300;
  color: var(--cream);
  background: rgba(245,242,239,.08);
  border: 1px solid rgba(245,242,239,.22);
  border-radius: 12px;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(245,242,239,.4); }
.quote-form select option { color: var(--ink); }
.quote-form .btn { align-self: flex-start; margin-top: .4rem; }
.form-note { font-size: .8rem; color: var(--gold); letter-spacing: .04em; text-transform: none; }

/* ---------- Footer ---------- */
.footer { background: var(--burgundy-deep); color: var(--cream); padding: 5rem 24px 2rem; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 2rem; letter-spacing: .24em; display: block; }
.footer-logo-sub { font-size: .55rem; letter-spacing: .42em; text-transform: uppercase; opacity: .7; display: block; margin-top: .2rem; }
.footer-tag { margin-top: 1.2rem; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(245,242,239,.85); text-decoration: none; margin-bottom: .55rem; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; }
.footer-bottom {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(245,242,239,.15);
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(245,242,239,.55);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .3em;
  margin-bottom: 1.3rem;
}
.testi-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.testi-card figcaption {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(43,26,30,.1);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.testi-card figcaption strong {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.testi-card figcaption span {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testi-review-cta {
  text-align: center;
  margin-top: 3rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.testi-review-cta a { color: var(--burgundy); font-weight: 500; }

/* ---------- Quote wizard ---------- */
.wizard-page {
  background: var(--burgundy);
  color: var(--cream);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.wizard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
}
.wizard-logo { text-align: center; }
.wizard-logo .nav-logo-name { color: var(--cream); font-size: 2rem; }
.wizard-logo .nav-logo-sub { color: rgba(245,242,239,.6); font-size: .66rem; }
.wizard-back-site, .wizard-whatsapp {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,242,239,.7);
  transition: color .2s;
}
.wizard-back-site:hover, .wizard-whatsapp:hover { color: var(--cream); }

.wizard-progress { max-width: 640px; width: 100%; margin: 1rem auto 0; padding: 0 24px; }
.wizard-progress-label {
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.wizard-progress-track {
  height: 3px;
  background: rgba(245,242,239,.18);
  border-radius: 99px;
  overflow: hidden;
}
.wizard-progress-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 99px;
  transition: width .45s ease;
}

.wizard {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 24px 4rem;
  position: relative;
}
.wstep-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); color: var(--cream); margin-bottom: 1.1rem; }
.wstep-title em { font-style: italic; }
.wstep-sub { color: rgba(245,242,239,.78); margin-bottom: 2rem; max-width: 30rem; }
.wstep-note {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  min-height: 1.2em;
}
.wstep-optional { font-size: .55em; color: rgba(245,242,239,.55); font-family: var(--font-sans); letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.wstep-hint { margin-top: 1.6rem; font-size: .74rem; color: rgba(245,242,239,.5); }
.wstep-hint strong { color: rgba(245,242,239,.75); font-weight: 500; }

.winput {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(245,242,239,.3);
  padding: .8rem 0;
  outline: none;
  transition: border-color .25s;
}
.winput:focus { border-bottom-color: var(--gold); }
.winput::placeholder { color: rgba(245,242,239,.35); }
.warea {
  border: 1px solid rgba(245,242,239,.3);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  resize: vertical;
}
.warea:focus { border-color: var(--gold); }

.wstep-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.2rem; flex-wrap: wrap; }
.wstep-skip {
  background: none;
  border: 0;
  color: rgba(245,242,239,.55);
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .6rem 0;
  transition: color .2s;
}
.wstep-skip:hover { color: var(--cream); }
.werror { color: #e8b8a0; font-size: .85rem; margin-top: .8rem; }

.chip-grid { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }
.chip {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(245,242,239,.07);
  border: 1px solid rgba(245,242,239,.35);
  border-radius: 999px;
  padding: 1rem 1.7rem;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s;
}
.chip:hover { background: rgba(245,242,239,.15); transform: translateY(-2px); }
.chip.selected { background: var(--cream); color: var(--burgundy); border-color: var(--cream); }

.wcontact-pref {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
  font-size: .8rem;
  letter-spacing: .1em;
  color: rgba(245,242,239,.75);
  flex-wrap: wrap;
}
.wcontact-pref label { display: flex; align-items: center; gap: .45rem; cursor: pointer; }
.wcontact-pref input { accent-color: var(--gold); }

.wizard-back {
  position: absolute;
  top: 0;
  left: 24px;
  background: none;
  border: 0;
  color: rgba(245,242,239,.6);
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .5rem 0;
  transition: color .2s;
}
.wizard-back:hover { color: var(--cream); }

.wdone-mark {
  width: 74px; height: 74px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
}

.enter-forward { animation: stepIn .45s ease both; }
.enter-back { animation: stepInBack .45s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes stepInBack { from { opacity: 0; transform: translateY(-22px); } to { opacity: 1; transform: none; } }

/* clickable service cards */
a.service-card { text-decoration: none; color: inherit; display: block; }
.service-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--burgundy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .2rem;
  transition: letter-spacing .25s;
}
a.service-card:hover .service-link { letter-spacing: .24em; }

/* quote section on the landing page */
.quote-panel {
  background: rgba(245,242,239,.06);
  border: 1px solid rgba(245,242,239,.18);
  border-radius: var(--radius);
  padding: 2.6rem;
}
.quote-panel h3 { color: var(--cream); font-size: 1.7rem; margin-bottom: 1.6rem; }
.quote-panel .chip-grid { margin-top: 0; }
.quote-panel-note { margin-top: 1.8rem; font-size: .8rem; color: rgba(245,242,239,.6); }
.quote-panel-note a { color: var(--gold); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1100px) and (min-width: 641px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .split, .quote-wrap { grid-template-columns: 1fr; gap: 2.6rem; }
  .split-reverse .split-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--cream);
    border-radius: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 0; }
  .nav { position: relative; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .section { padding: 5rem 20px; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 1.8rem; }
  .hero-content { padding-top: 8rem; }
}
