/* ==========================================================================
   Deanna's Estate Clearing  design system
   Navy & white with gold accents. Calm, classic, trustworthy.
   ========================================================================== */

:root {
  --navy-950: #0d1828;
  --navy-900: #132239;
  --navy:     #1b2f4b;
  --navy-700: #294468;
  --navy-600: #35547e;

  --cream:    #f8f4ec;
  --cream-2:  #f0e9da;
  --white:    #ffffff;

  --gold:      #c2a14d;
  --gold-deep: #a98836;
  --gold-soft: #e9ddb2;

  --ink:   #26303c;
  --muted: #5b6572;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Mulish", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --shadow-soft: 0 18px 45px -18px rgba(19, 34, 57, .22);
  --shadow-card: 0 10px 30px -12px rgba(19, 34, 57, .18);
  --radius: 14px;
  --radius-sm: 8px;

  --container: 1140px;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--gold-soft); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: .6rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.display-1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); }
.display-2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
.display-3 { font-size: clamp(1.45rem, 2.4vw, 1.8rem); }

em, .accent-italic { font-style: italic; color: var(--gold-deep); }

.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }
.text-center .eyebrow { justify-content: center; }
.text-center .eyebrow::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(19, 34, 57, .55);
}
.btn-navy:hover { background: var(--navy-700); color: var(--white); box-shadow: 0 18px 34px -14px rgba(19, 34, 57, .6); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 14px 30px -14px rgba(169, 136, 54, .55);
}
.btn-gold:hover { background: var(--gold-soft); color: var(--navy-950); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(255,255,255,.06); }

.btn-outline-navy {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
.link-arrow svg { transition: transform .18s ease; }
.link-arrow:hover { color: var(--gold-deep); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 47, 75, .08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(19, 34, 57, .35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand-mark { width: 52px; height: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
}
.brand-sub {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.main-nav ul {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.main-nav a {
  position: relative;
  display: inline-block;
  padding: .4rem 0;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold-deep); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-call { padding: .7rem 1.35rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(27, 47, 75, .25);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(13, 24, 40, .96) 0%, rgba(19, 34, 57, .88) 34%, rgba(19, 34, 57, .45) 62%, rgba(19, 34, 57, .25) 100%);
}
.hero-inner {
  padding: clamp(5rem, 12vh, 8.5rem) 0 clamp(5.5rem, 13vh, 9rem);
  max-width: 660px;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 em { color: var(--gold-soft); }
.hero-sub {
  font-size: 1.16rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
  max-width: 34rem;
  margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
  margin: 0;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .88);
}
.hero-trust svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.85); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }

.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.text-center { margin-inline: auto; }

/* ---------- Leaf divider ---------- */
.leaf-divider {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.4rem;
}

/* ---------- Gentle question cards ("Is this where you are?") ---------- */
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.question-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .1);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2.1rem;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.question-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(194, 161, 77, .55);
}
.question-card .q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.question-card h3 { font-size: 1.42rem; margin-bottom: .6rem; }
.question-card p { color: var(--muted); font-size: .98rem; margin-bottom: 1.2rem; }
.question-card .link-arrow { font-size: .78rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .1);
  border-radius: var(--radius);
  padding: 2.3rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card .s-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: .55rem; }
.service-card p { color: var(--muted); font-size: .97rem; flex-grow: 1; }
.service-card .link-arrow { margin-top: .4rem; font-size: .78rem; }

/* Featured (full-width) service card  used for the hard rubbish service */
.service-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.8rem;
  border: 1px solid rgba(194, 161, 77, .45);
  background: linear-gradient(120deg, var(--white) 55%, var(--cream) 100%);
}
.service-card.featured .s-icon { flex-shrink: 0; margin-bottom: 0; }
.service-card.featured .featured-body { display: flex; flex-direction: column; }
.service-card.featured .featured-body .link-arrow { margin-top: .8rem; }
.badge-new {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: .32rem .8rem;
  margin-bottom: .7rem;
}

/* ---------- Split feature (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split + .split { margin-top: clamp(4rem, 8vw, 6.5rem); }
.split-reverse .split-media { order: 2; }

.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .7;
}
.split-media img.tall { aspect-ratio: 4 / 5; }
.split-media img.wide { aspect-ratio: 4 / 3; }

.split-body h2 { margin-bottom: 1rem; }
.split-body .lead { margin-bottom: 1.4rem; }

.check-list {
  list-style: none;
  margin: 0 0 2rem; padding: 0;
  display: grid;
  gap: .85rem;
}
.check-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink);
}
.check-list svg { color: var(--gold-deep); flex-shrink: 0; margin-top: .25rem; }

/* ---------- Before & after gallery ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.ba-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ba-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .5s ease;
}
.ba-figure:hover img { transform: scale(1.03); }
.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: .38rem .95rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(19, 34, 57, .82);
  backdrop-filter: blur(4px);
}
.ba-label.gold { background: var(--gold); color: var(--navy-950); }
.ba-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.4rem 1.1rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .92);
  background: linear-gradient(to top, rgba(13, 24, 40, .85), transparent);
}
.ba-note {
  margin-top: 1.6rem;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  counter-increment: step;
  transition: background .22s ease, transform .22s ease;
}
.process-step:hover { background: rgba(255, 255, 255, .09); transform: translateY(-4px); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.32rem; margin-bottom: .5rem; }
.process-step p { font-size: .94rem; color: rgba(255, 255, 255, .75); margin: 0; }

/* ---------- Values / why us ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.value-card {
  display: flex;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .1);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-card);
}
.value-card .v-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
}
.value-card h3 { font-size: 1.28rem; margin-bottom: .35rem; }
.value-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Areas ---------- */
.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
}
.areas-cloud li {
  padding: .5rem 1.15rem;
  border: 1px solid rgba(27, 47, 75, .18);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.areas-cloud li:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(194, 161, 77, .16), transparent 60%),
    var(--navy-900);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-logo {
  width: 120px;
  margin: 0 auto 1.6rem;
  opacity: .95;
}
.cta-band h2 { color: var(--white); max-width: 20ch; margin-inline: auto; }
.cta-band h2 em { color: var(--gold-soft); }
.cta-band p {
  color: rgba(255, 255, 255, .8);
  max-width: 46rem;
  margin: 0 auto 2.4rem;
  font-size: 1.08rem;
}
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
.cta-phone-note {
  margin-top: 1.6rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .65);
}

/* ---------- Testimonial-free quote strip ---------- */
.quote-strip {
  border-left: 3px solid var(--gold);
  padding: .4rem 0 .4rem 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  max-width: 46ch;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .12);
  border-radius: var(--radius-sm);
  margin-bottom: .9rem;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary .faq-chevron {
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform .22s ease;
}
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
  font-size: .98rem;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-cards { display: grid; gap: 1.2rem; }
.contact-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .1);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(194, 161, 77, .55);
  color: var(--ink);
}
.contact-card .c-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
}
.contact-card > div { min-width: 0; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.contact-card .c-value { font-weight: 700; color: var(--navy); font-size: 1.05rem; overflow-wrap: anywhere; }
.contact-card .c-note { font-size: .88rem; color: var(--muted); overflow-wrap: anywhere; }

.contact-reassure {
  margin-top: 1.8rem;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 1.7rem;
  font-size: .95rem;
  color: var(--muted);
}
.contact-reassure h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.contact-reassure ul { margin: 0; padding-left: 1.15rem; }
.contact-reassure li { margin-bottom: .35rem; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border: 1px solid rgba(27, 47, 75, .1);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-soft);
}
.form-panel h2 { margin-bottom: .4rem; }
.form-intro { color: var(--muted); font-size: .98rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.3rem; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-field label .optional { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(27, 47, 75, .2);
  border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(194, 161, 77, .18);
}
.form-field .field-error {
  display: none;
  font-size: .85rem;
  color: #a33d2e;
  margin-top: .35rem;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #a33d2e; }
.form-field.has-error .field-error { display: block; }

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0; width: 0;
  overflow: hidden;
}
.form-privacy { font-size: .85rem; color: var(--muted); margin-top: 1rem; }

.form-alert {
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.8rem;
  font-size: .98rem;
}
.form-alert.success {
  background: #eef5ec;
  border: 1px solid #b8d3b0;
  color: #2e5a2b;
}
.form-alert.error {
  background: #f9eeec;
  border: 1px solid #e3b8b0;
  color: #8c3527;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .72);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-logo { width: 150px; margin-bottom: 1.2rem; }
.footer-tagline { color: rgba(255, 255, 255, .8); max-width: 26ch; }
.footer-insured {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: .88rem;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-nav ul, .footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .72); text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  padding-top: 1.8rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}
.footer-base p { margin: 0; }
.footer-note { font-style: italic; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-media img { opacity: .28; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(13,24,40,.97) 0%, rgba(19,34,57,.86) 55%, rgba(19,34,57,.6) 100%);
}
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: rgba(255, 255, 255, .82); }
.page-hero .eyebrow { color: var(--gold-soft); }

.breadcrumb {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Service detail blocks (services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(27, 47, 75, .1);
}
.service-detail:first-of-type { padding-top: 0; }
.service-detail:last-of-type { border-bottom: 0; padding-bottom: 0; }
.service-detail.reverse .sd-media { order: 2; }
.sd-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.service-detail h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.service-detail .sd-note {
  margin-top: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  color: var(--muted);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .question-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .sd-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(27, 47, 75, .12);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: .6rem 1.5rem 1.2rem;
  }
  .main-nav li { border-top: 1px solid rgba(27, 47, 75, .08); }
  .main-nav li:first-child { border-top: 0; }
  .main-nav a { display: block; padding: .9rem 0; }
  .btn-call span { display: none; }
  .btn-call { padding: .7rem .9rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { flex-direction: column; gap: 0; }
  .service-card.featured .s-icon { margin-bottom: 1.5rem; }
  .process { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 1rem; }
  .brand-name { font-size: 1.3rem; }
  .brand-sub { font-size: .58rem; letter-spacing: .28em; }
  .footer-base { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
