/* ============================================================
   CASTLEMAN ESTATE SERVICES
   Palette carried over from the existing site: forest / cream / gold
   ============================================================ */

:root {
  /* Brand */
  --forest:        #1C3A2E;
  --forest-deep:   #132720;
  --forest-soft:   #2A4C3D;
  --cream:         #F4EFE4;
  --cream-warm:    #FBF8F1;
  --cream-deep:    #E8E1D2;
  --gold:          #C3A15B;
  --gold-soft:     #D9C08A;
  --ink:           #16261E;
  --ink-muted:     #56685E;

  /* Type */
  --font-mark: 'Cinzel', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm — 8pt scale */
  --s1: 0.5rem;  --s2: 1rem;    --s3: 1.5rem;  --s4: 2rem;
  --s5: 3rem;    --s6: 4rem;    --s7: 6rem;    --s8: 8rem;

  --wrap: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* The header is sticky, so anchor jumps must clear it or the section
   heading lands underneath the nav. */
:target, [id] { scroll-margin-top: 104px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing — without it the HTML width/height attributes
   become presentational hints that defeat every aspect-ratio below. */
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }

p { margin: 0 0 var(--s2); max-width: 68ch; }

.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
@media (min-width: 900px) { .wrap { width: min(100% - 6rem, var(--wrap)); } }

.eyebrow {
  font-family: var(--font-mark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s2);
}

.rule { width: 56px; height: 1px; background: var(--gold); border: 0; margin: var(--s3) 0; }
.rule--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--solid { background: var(--forest); color: var(--cream-warm); }
.btn--solid:hover { background: var(--forest-deep); }
.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(28,58,46,.35); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(28,58,46,.05); }
.btn--gold { background: var(--gold); color: var(--forest-deep); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--onDark { background: transparent; color: var(--cream); border-color: rgba(244,239,228,.4); }
.btn--onDark:hover { background: rgba(244,239,228,.1); border-color: var(--cream); }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,228,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,58,46,.1);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3); min-height: 84px;
}

.mark { text-decoration: none; display: block; line-height: 1; flex-shrink: 0; }
.mark__name {
  font-family: var(--font-mark); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.17em; color: var(--forest); display: block;
}
.mark__sub {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.4rem;
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.mark__sub::before, .mark__sub::after {
  content: ""; flex: 1; height: 1px; background: currentColor; opacity: .55;
}

.nav { display: none; }
@media (min-width: 1000px) { .nav { display: flex; align-items: center; gap: var(--s4); } }

.nav__link {
  position: relative;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--forest); text-decoration: none;
  padding: 0.5rem 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--forest); }

/* Services dropdown */
.drop { position: relative; }
.drop__chev { transition: transform .25s var(--ease); }
.drop[data-open="true"] .drop__chev { transform: rotate(180deg); }
.drop__menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 268px; padding: 0.6rem;
  background: var(--cream-warm);
  border: 1px solid rgba(28,58,46,.12);
  box-shadow: 0 18px 44px -12px rgba(19,39,32,.22);
  border-radius: var(--radius);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  list-style: none; margin: 0;
}
.drop[data-open="true"] .drop__menu,
.drop:hover .drop__menu,
.drop:focus-within .drop__menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop__menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.drop__item a {
  display: block; padding: 0.7rem 0.9rem;
  font-size: 0.82rem; letter-spacing: .04em; text-decoration: none;
  color: var(--ink); border-radius: var(--radius);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.drop__item a:hover { background: rgba(28,58,46,.06); color: var(--forest); }
.drop__item a small {
  display: block; font-size: 0.68rem; color: var(--ink-muted);
  letter-spacing: 0; margin-top: 2px;
}

.header__cta { display: none; }
@media (min-width: 1000px) { .header__cta { display: inline-flex; } }

/* Mobile toggle */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px;
  background: none; border: 0; cursor: pointer;
}
.burger span { display: block; height: 1.5px; background: var(--forest); transition: transform .3s var(--ease), opacity .2s; }
@media (min-width: 1000px) { .burger { display: none; } }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobilenav {
  display: none; border-top: 1px solid rgba(28,58,46,.1);
  background: var(--cream-warm); padding: var(--s2) 0 var(--s4);
}
.mobilenav[data-open="true"] { display: block; }
@media (min-width: 1000px) { .mobilenav { display: none !important; } }
.mobilenav a {
  display: block; padding: 0.9rem 0;
  font-size: 0.95rem; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; color: var(--forest);
  border-bottom: 1px solid rgba(28,58,46,.08);
}
.mobilenav .sub a {
  padding-left: var(--s3); text-transform: none; letter-spacing: 0;
  font-size: 0.9rem; color: var(--ink-muted);
}
.mobilenav .btn { margin-top: var(--s3); width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; gap: var(--s5); align-items: center; padding: var(--s6) 0; }
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr 1.35fr;
    gap: var(--s6); padding: var(--s7) 0;
  }
}
.hero__copy { max-width: 34rem; }
.hero h1 { margin-bottom: var(--s3); }
.hero h1 em {
  font-style: italic; color: var(--forest);
  position: relative;
}
.hero__lede { font-size: 1.05rem; color: var(--ink-muted); margin-bottom: var(--s4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s2); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* biased left of centre: the sofa, pool and palms live there */
  object-position: 36% 50%;
  border-radius: var(--radius);
}
@media (min-width: 980px) { .hero__media img { aspect-ratio: 5 / 4; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(28,58,46,.08);
  border-radius: var(--radius); pointer-events: none;
}

/* ---------- Trust bar ---------- */
.trust { background: var(--forest); color: var(--cream); }
.trust__grid {
  display: grid; gap: var(--s4);
  grid-template-columns: 1fr; padding: var(--s5) 0;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .trust__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s3); } }
.trust__item { display: flex; gap: var(--s2); align-items: flex-start; }
@media (min-width: 1000px) {
  .trust__item { padding-right: var(--s3); border-right: 1px solid rgba(195,161,91,.3); }
  .trust__item:last-child { border-right: 0; }
}
.trust__icon { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.trust__item h3 { font-size: 1.3rem; margin-bottom: 0.25rem; color: var(--cream-warm); }
.trust__item p { font-size: 0.86rem; color: rgba(244,239,228,.72); margin: 0; line-height: 1.55; }

/* ---------- Sections ---------- */
.section { padding: var(--s7) 0; }
@media (min-width: 900px) { .section { padding: var(--s8) 0; } }
.section--warm { background: var(--cream-warm); }
.section__head { max-width: 42rem; margin-bottom: var(--s6); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head p { color: var(--ink-muted); margin-top: var(--s2); }
.section__head--center p { margin-inline: auto; }

/* ---------- Services ---------- */
.services { display: grid; gap: var(--s4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services { grid-template-columns: repeat(4, 1fr); gap: var(--s3); } }

.svc {
  display: flex; flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid rgba(28,58,46,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(195,161,91,.5);
  box-shadow: 0 24px 48px -20px rgba(19,39,32,.28);
}
.svc__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.045); }
.svc__body { padding: var(--s3); display: flex; flex-direction: column; flex: 1; }
.svc h3 { margin-bottom: var(--s1); }
.svc p { font-size: 0.9rem; color: var(--ink-muted); flex: 1; margin-bottom: var(--s3); }
.svc__links { display: flex; flex-direction: column; gap: 0.6rem; }
.svc__links .btn { width: 100%; font-size: 0.72rem; padding: 0.7rem 1rem; min-height: 44px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: var(--s3); grid-template-columns: 1fr; }
@media (min-width: 850px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--cream);
  border: 1px solid rgba(28,58,46,.1);
  border-radius: var(--radius);
  padding: var(--s4) var(--s3) var(--s3);
  display: flex; flex-direction: column;
  position: relative;
}
.quote__glyph {
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: .45; margin-bottom: -0.6rem;
}
.quote p {
  font-family: var(--font-display); font-size: 1.28rem; line-height: 1.45;
  color: var(--ink); flex: 1; margin-bottom: var(--s3);
}
.quote__by { border-top: 1px solid rgba(28,58,46,.12); padding-top: var(--s2); }
.quote__by strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--forest); }
.quote__by span {
  font-family: var(--font-mark); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Areas ---------- */
.areas {
  position: relative; color: var(--cream);
  background: var(--forest-deep); overflow: hidden;
}
.areas__bg { position: absolute; inset: 0; }
.areas__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .17; }
.areas__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,39,32,.85), rgba(19,39,32,.95));
}
.areas__inner { position: relative; padding: var(--s7) 0; text-align: center; }
.areas h2 {
  font-family: var(--font-mark); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-warm);
}
.areas__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem var(--s3); margin: var(--s4) auto 0; max-width: 54rem;
  list-style: none; padding: 0;
}
.areas__list li {
  font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(244,239,228,.85);
  display: flex; align-items: center; gap: var(--s3);
}
.areas__list li:not(:last-child)::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: .8;
}
.areas__note { margin: var(--s4) auto 0; color: rgba(244,239,228,.6); font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta { background: var(--cream-warm); }
.cta__inner {
  text-align: center; padding: var(--s7) 0;
  display: flex; flex-direction: column; align-items: center;
}
.cta p { color: var(--ink-muted); margin-bottom: var(--s4); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }

/* ---------- Quote form ---------- */
.quoteblock { background: var(--forest); color: var(--cream); }
.quoteblock__grid {
  display: grid; gap: var(--s5); padding: var(--s7) 0; align-items: start;
}
@media (min-width: 920px) {
  .quoteblock__grid { grid-template-columns: 1fr 1.15fr; gap: var(--s7); }
}
.quoteblock h2 { color: var(--cream-warm); }
.quoteblock__lede { color: rgba(244,239,228,.72); margin-top: var(--s3); }
.quoteblock__direct { margin-top: var(--s4); }
.quoteblock__direct h4 {
  font-family: var(--font-mark); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 var(--s2);
}
.quoteblock__direct a {
  display: block; font-size: 1.05rem; text-decoration: none;
  color: var(--cream-warm); margin-bottom: 0.4rem;
  transition: color .2s var(--ease);
}
.quoteblock__direct a:hover { color: var(--gold-soft); }

.form {
  background: var(--cream-warm); color: var(--ink);
  border-radius: var(--radius); padding: var(--s4);
  box-shadow: 0 30px 60px -28px rgba(10,22,17,.55);
}
@media (min-width: 600px) { .form { padding: var(--s5); } }

.field { margin-bottom: var(--s3); }
.field > label,
.fieldset > legend {
  display: block; padding: 0;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 0.5rem;
}
.field .req { color: var(--gold); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  width: 100%; min-height: 48px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--ink); background: #fff;
  border: 1px solid rgba(28,58,46,.22); border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 116px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231C3A2E' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.4rem; cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195,161,91,.22);
}
.field__help { font-size: 0.78rem; color: var(--ink-muted); margin: 0.4rem 0 0; }

.field--split { display: grid; gap: var(--s2); }
@media (min-width: 560px) { .field--split { grid-template-columns: 1fr 1fr; } }

.fieldset { border: 0; padding: 0; margin: 0 0 var(--s3); }
.checks { display: grid; gap: 0.5rem; }
@media (min-width: 560px) { .checks { grid-template-columns: 1fr 1fr; } }
.check {
  display: flex; align-items: center; gap: 0.65rem;
  min-height: 46px; padding: 0.5rem 0.85rem;
  border: 1px solid rgba(28,58,46,.18); border-radius: var(--radius);
  background: #fff; cursor: pointer;
  font-size: 0.92rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.check:hover { border-color: rgba(195,161,91,.65); }
.check input { width: 17px; height: 17px; accent-color: var(--forest); cursor: pointer; flex-shrink: 0; }
.check:has(input:checked) { border-color: var(--gold); background: rgba(195,161,91,.09); }
.check:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.form .btn { width: 100%; margin-top: var(--s1); }
.form__note { font-size: 0.76rem; color: var(--ink-muted); text-align: center; margin: var(--s2) 0 0; }

.form__sent {
  display: none;
  padding: var(--s3); margin-bottom: var(--s3);
  background: rgba(28,58,46,.06);
  border: 1px solid rgba(28,58,46,.2);
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.form__sent[data-show="true"] { display: block; }

/* ---------- Partner / delivered-by ---------- */
.partner {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3);
  padding: var(--s3); margin-top: var(--s4);
  background: var(--cream-warm);
  border: 1px solid rgba(195,161,91,.5);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.partner__body { flex: 1 1 16rem; }
.partner__eyebrow {
  font-family: var(--font-mark); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 0.35rem;
}
.partner__body strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: var(--forest); line-height: 1.2;
}
.partner__body p { font-size: 0.88rem; color: var(--ink-muted); margin: 0.5rem 0 0; }
.partner .btn { flex-shrink: 0; }

/* External-link marker inside the services dropdown */
.drop__item--child a { padding-left: 1.9rem; position: relative; }
.drop__item--child a::before {
  content: ""; position: absolute; left: 0.95rem; top: 1.15rem;
  width: 8px; height: 1px; background: var(--gold);
}
.drop__ext { display: inline-block; margin-left: 0.3rem; color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: rgba(244,239,228,.8); }
.footer__grid {
  display: grid; gap: var(--s5); padding: var(--s6) 0 var(--s4);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s6); } }
.footer .mark__name { color: var(--cream-warm); }
.footer__blurb { font-size: 0.88rem; color: rgba(244,239,228,.62); margin-top: var(--s3); max-width: 30ch; }
.footer h4 {
  font-family: var(--font-mark); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--s2);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; }
.footer a {
  font-size: 0.9rem; text-decoration: none; color: rgba(244,239,228,.78);
  transition: color .2s var(--ease);
}
.footer a:hover { color: var(--gold-soft); }
.footer__bottom {
  border-top: 1px solid rgba(195,161,91,.22);
  padding: var(--s3) 0;
  display: flex; flex-wrap: wrap; gap: var(--s2);
  align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(244,239,228,.5);
}

/* ---------- Service page ---------- */
.pagehead { position: relative; color: var(--cream); background: var(--forest-deep); overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.pagehead__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(19,39,32,.94) 30%, rgba(19,39,32,.62));
}
.pagehead__inner { position: relative; padding: var(--s7) 0; }
.pagehead h1 { color: var(--cream-warm); max-width: 16ch; }
.pagehead p { color: rgba(244,239,228,.78); margin-top: var(--s3); font-size: 1.05rem; }

.split { display: grid; gap: var(--s5); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 1fr; gap: var(--s7); } }
.checklist { list-style: none; padding: 0; margin: var(--s3) 0 0; }
.checklist li {
  display: flex; gap: var(--s2); align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(28,58,46,.1);
  font-size: 0.95rem;
}
.checklist svg { flex-shrink: 0; color: var(--gold); margin-top: 4px; }
.split__media img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .svc:hover { transform: none; }
  .svc:hover .svc__img img { transform: none; }
}
