/* =====================================================
   MORTGAGES UK-WIDE — Brand Identity v1.0
   Colours: Forest #1A3A2C · Moss #2E6649 · Copper #B07030
            Cream #F8F4EC · Linen #F0EBE0 · White #FDFCF9
   Fonts:   Cormorant Garamond 700 (wordmark only)
            DM Sans 400/500/600 (all UI & body)
===================================================== */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --forest:      #1A3A2C;
  --forest-2:    #162F24;
  --moss:        #2E6649;
  --sage:        #4A8C65;
  --copper:      #B07030;
  --copper-lt:   #C8904A;
  --cream:       #F8F4EC;
  --linen:       #F0EBE0;
  --sand:        #E2D9C8;
  --white:       #FDFCF9;
  --text:        #1C1C1A;
  --mid:         #6B7568;
  --lt:          #A8A89E;
  --shadow:      0 8px 32px rgba(26,58,44,0.10);
  --shadow-lg:   0 20px 60px rgba(26,58,44,0.14);
  --radius:      16px;
  --radius-sm:   10px;
  --container:   1180px;
  --transition:  0.22s ease;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--linen);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; }

/* ── LAYOUT ─────────────────────────────────────── */
.container { width: min(var(--container), calc(100% - 2.5rem)); margin: 0 auto; }

/* ── WORDMARK (CSS-drawn — per brand guidelines) ── */
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.92;
  display: inline-block;
}
.wordmark__dash {
  display: inline-block;
  width: 0.38em;
  height: 0.07em;
  background: currentColor;
  border-radius: 1px;
  margin: 0 0.03em;
  vertical-align: 0.33em;
}
.wordmark--forest .wordmark__line-1 { color: var(--forest); }
.wordmark--forest .wordmark__line-2 .uk  { color: var(--copper); }
.wordmark--forest .wordmark__line-2 .wide{ color: var(--forest); }
.wordmark--white  .wordmark__line-1 { color: #fff; }
.wordmark--white  .wordmark__line-2 .uk  { color: var(--copper); }
.wordmark--white  .wordmark__line-2 .wide{ color: #fff; }

/* Favicon M mark */
.m-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  color: var(--copper);
}

/* ── TOPBAR ─────────────────────────────────────── */
.topbar {
  background: var(--forest-2);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  gap: 1rem;
}
.topbar a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.topbar a:hover { color: var(--copper-lt); }

/* ── HEADER / NAV ────────────────────────────────── */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--transition);
}
header.site-header.scrolled { box-shadow: 0 4px 24px rgba(26,58,44,0.08); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand .wordmark { font-size: 1rem; }

/* copper rule under stacked wordmark */
.wordmark-rule {
  display: block;
  height: 2px;
  background: var(--copper);
  width: 100%;
  margin-top: 3px;
  border-radius: 1px;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links > a:not(.btn):hover,
.nav-links > a.active { color: var(--forest); }
.nav-links > a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--copper);
  border-radius: 1px;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav */
.mobile-nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,58,44,0.4);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav-backdrop.visible { opacity: 1; }
@media (max-width: 980px) {
  .mobile-nav-backdrop { display: block; pointer-events: none; }
  .mobile-nav-backdrop.visible { pointer-events: all; }
}
.mobile-nav {
  display: flex;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 100;
  padding: 5.5rem 2rem 2.5rem;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--sand);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav > a:hover { color: var(--moss); padding-left: 0.5rem; }
/* CTA button inside mobile nav — full width, proper sizing */
.mobile-nav > .btn {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 20px rgba(26,58,44,0.22);
  margin-top: 2rem;
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,58,44,0.22);
}
.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,58,44,0.28);
}
.btn-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 6px 20px rgba(176,112,48,0.24);
}
.btn-copper:hover {
  background: var(--copper-lt);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--sand);
}
.btn-secondary:hover {
  border-color: var(--forest);
  background: rgba(26,58,44,0.04);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.nav-cta {
  background: var(--forest);
  color: #fff !important;
  font-size: 0.84rem;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 4px 14px rgba(26,58,44,0.2);
}
.nav-cta:hover { background: var(--moss); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.8rem;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
p.lead { font-size: 1.08rem; color: var(--mid); max-width: 60ch; line-height: 1.75; }

/* kicker label */
.kicker {
  display: inline-flex;
  padding: 0.28rem 0.75rem;
  background: rgba(176,112,48,0.12);
  color: var(--copper);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: 'DM Sans', sans-serif;
}
.kicker--light {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 5rem 0; }
.section-tinted { background: var(--cream); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  padding: 5rem 0 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 5% 20%, rgba(176,112,48,0.10) 0%, transparent 35%),
    radial-gradient(ellipse at 95% 80%, rgba(26,58,44,0.06) 0%, transparent 35%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.5rem; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--mid);
  font-size: 0.84rem;
  font-weight: 500;
}
.trust-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ── HERO IMAGE PANEL ────────────────────────────── */
.hero-img-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-panel img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Trust strip — horizontal bar across bottom of image */
.hero-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,58,44,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}
.hero-img-badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  text-align: center;
}
.hero-img-badge-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-img-badge-stat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-img-badge-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 0.5rem;
}

/* ── FAMILY SOFA STRIP ───────────────────────────── */
.family-strip {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.family-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.72);
}
.family-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(26,58,44,0.65) 0%, rgba(26,58,44,0.2) 60%, transparent 100%);
}
.family-strip-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  max-width: 580px;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.family-strip-quote::before { content: '\201C'; color: var(--copper-lt); }
.family-strip-quote::after  { content: '\201D'; color: var(--copper-lt); }

/* ── PHOTO BREAK ─────────────────────────────────── */
.photo-break { position: relative; height: 300px; overflow: hidden; }
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
}
.photo-break-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(26,58,44,0.6) 0%, transparent 70%);
}
.photo-break-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  max-width: 640px;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* ── CARDS ─────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel { padding: 1.75rem; }

/* ── GRIDS ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.1rem; }
.split  { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

/* ── WHO CARDS ─────────────────────────────────── */
.who-card { text-decoration: none; display: block; transition: transform var(--transition), box-shadow var(--transition); }
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.who-card h3 { margin-top: 0.75rem; font-size: 1.15rem; }
.who-card p { color: var(--mid); font-size: 0.9rem; line-height: 1.65; }
.who-card-link { display: inline-block; margin-top: 0.75rem; font-size: 0.82rem; font-weight: 600; color: var(--copper); }

/* ── SERVICE ICON WRAP ─────────────────────────── */
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(176,112,48,0.1);
  border: 1px solid rgba(176,112,48,0.18);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--copper);
  transition: background var(--transition);
}
.who-card:hover .service-icon-wrap,
.service-card:hover .service-icon-wrap {
  background: rgba(176,112,48,0.18);
}
.service-icon-wrap svg { display: block; }

/* ── SERVICE CARDS (homepage) ─────────────────── */
.service-card { transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── SERVICE CARDS (services page) ────────────── */
.service-card-lg { padding: 0; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.service-card-lg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { position: relative; height: 240px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.9); }
.service-card-lg:hover .service-card-img img { transform: scale(1.04); }
.service-card-img-badge {
  position: absolute; bottom: -22px; left: 1.75rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--forest);
  display: grid; place-items: center;
  color: var(--copper-lt);
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(26,58,44,0.22);
  z-index: 2;
}
.service-card-body { padding: 2.25rem 1.75rem 1.75rem; }
.service-card-body h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: 0.65rem; }
.service-card-body ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.service-card-body li { padding-left: 1.3rem; position: relative; margin: 0.5rem 0; color: var(--mid); font-size: 0.92rem; }
.service-card-body li::before { content: '–'; position: absolute; left: 0; color: var(--copper); font-weight: 700; }

/* ── SERVICE DETAIL GRID ──────────────────────── */
.service-detail-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 2rem; align-items: start; }
.service-detail-grid--reverse { grid-template-columns: 0.6fr 1.4fr; }
.service-detail-aside { display: flex; flex-direction: column; gap: 1rem; }

/* ── BAND (dark section) ──────────────────────── */
.band {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  right: -150px; top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,112,48,0.12), transparent 65%);
  pointer-events: none;
}
.band h2, .band h3, .band p { color: #fff; }
.band .muted-lt { color: rgba(255,255,255,0.7) !important; }
.premium-stat-grid { position: relative; z-index: 1; }

/* Feature cards in band */
.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(176,112,48,0.3); }
.feature-icon {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(176,112,48,0.15);
  border: 1px solid rgba(176,112,48,0.25);
  color: var(--copper-lt);
  margin-bottom: 1rem;
}
.feature-icon svg { display: block; }
.feature-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.feature-card span { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.55; }

/* Approach icons */
.approach-icon {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(176,112,48,0.15);
  border: 1px solid rgba(176,112,48,0.22);
  color: var(--copper-lt);
  margin-bottom: 1rem;
}
.approach-icon svg { display: block; }

/* ── LISTS ─────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { padding-left: 1.3rem; position: relative; margin: 0.5rem 0; color: var(--mid); font-size: 0.93rem; }
.check-list li::before { content: '–'; position: absolute; left: 0; color: var(--copper); font-weight: 700; }

/* ── FORMS ─────────────────────────────────────── */
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--forest); margin-bottom: 0.4rem; }
.label-hint { font-weight: 400; color: var(--lt); font-size: 0.78rem; }
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.82rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(176,112,48,0.15);
}
input::placeholder, textarea::placeholder { color: var(--lt); }

/* ── CALC OUTPUT ───────────────────────────────── */
.calc-output {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--sand);
  color: var(--forest);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ── NOTICE ─────────────────────────────────────── */
.notice {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(176,112,48,0.08);
  border: 1px solid rgba(176,112,48,0.22);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-item { padding: 0; overflow: hidden; }
.faq-item + .faq-item { margin-top: 0.65rem; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 1.65rem; height: 1.65rem;
  border-radius: 50%;
  background: rgba(176,112,48,0.1);
  display: grid; place-items: center;
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--copper);
  transition: background var(--transition), transform var(--transition);
}
.faq-item[open] .faq-icon { background: var(--copper); color: #fff; transform: rotate(45deg); }
.faq-item p { margin: 0; color: var(--mid); padding: 0 1.4rem 1.25rem; line-height: 1.75; font-size: 0.93rem; }

/* ── CTA STRIP ──────────────────────────────────── */
.cta-strip {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--sand);
}

/* ── TABLE ─────────────────────────────────────── */
.table-card { overflow: hidden; }
.table-card-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th, .rate-table td { padding: 0.95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--sand); font-size: 0.92rem; }
.rate-table th { background: var(--cream); color: var(--forest); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tbody tr:hover { background: rgba(176,112,48,0.04); }

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonial-card { display: flex; flex-direction: column; gap: 0.85rem; }
.testimonial-stars { color: var(--copper); font-size: 0.95rem; letter-spacing: 0.05em; }
.testimonial-text { color: var(--mid); font-size: 0.92rem; line-height: 1.75; margin: 0; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--sand); }
.testimonial-initials { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--forest); color: var(--copper-lt); display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; color: var(--forest); font-size: 0.88rem; }
.testimonial-author span { color: var(--lt); font-size: 0.8rem; }

/* ── TOOLS PROMO ─────────────────────────────── */
.tools-promo { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.tools-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tools-promo-card { display: flex; flex-direction: column; gap: 0.3rem; text-decoration: none; transition: transform var(--transition), box-shadow var(--transition); }
.tools-promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tools-promo-card strong { color: var(--forest); font-size: 0.92rem; }
.tools-promo-card span { color: var(--mid); font-size: 0.82rem; }

/* ── ESTIMATOR ──────────────────────────────────── */
.estimator-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
.estimator-results { display: flex; flex-direction: column; gap: 1rem; }
.result-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-sm); padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; }
.result-card.primary { background: var(--forest); border-color: var(--forest); }
.result-card.saving { background: rgba(46,102,73,0.06); border-color: rgba(46,102,73,0.2); }
.result-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lt); font-family: 'DM Sans', sans-serif; }
.result-card.primary .result-label { color: rgba(255,255,255,0.55); }
.result-card.saving .result-label { color: var(--moss); }
.result-value { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--forest); line-height: 1; }
.result-card.primary .result-value { color: var(--copper-lt); }
.result-card.saving .result-value { color: var(--moss); }
.estimator-message { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1rem 1.2rem; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius-sm); box-shadow: none; }
.estimator-message.warning { background: rgba(176,112,48,0.06); border-color: rgba(176,112,48,0.22); }
.estimator-message.alert { background: rgba(180,60,40,0.05); border-color: rgba(180,60,40,0.18); }
.estimator-msg-icon { width: 1.9rem; height: 1.9rem; border-radius: 50%; background: rgba(46,102,73,0.1); display: grid; place-items: center; flex-shrink: 0; color: var(--moss); margin-top: 0.1rem; }
.estimator-msg-icon.warn { background: rgba(176,112,48,0.12); color: var(--copper); }
.estimator-msg-icon.alert { background: rgba(180,60,40,0.1); color: #b43c28; }
.estimator-message p { color: var(--mid); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* ── PROCESS LIST ───────────────────────────────── */
.process-list { list-style: none; padding: 0; margin: 1rem 0 0; counter-reset: process; }
.process-list li { display: flex; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--sand); counter-increment: process; color: var(--mid); font-size: 0.93rem; line-height: 1.65; }
.process-list li:last-child { border-bottom: none; }
.process-list li::before { content: counter(process); width: 1.65rem; height: 1.65rem; border-radius: 50%; background: var(--forest); color: var(--copper-lt); display: grid; place-items: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.process-list li strong { color: var(--forest); }

/* ── WHO CARDS ──────────────────────────────────── */
.who-card { text-decoration: none; display: block; transition: transform var(--transition), box-shadow var(--transition); }
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── COMPLAINTS GRID ────────────────────────────── */
.complaints-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 0.75rem 0; color: var(--mid); display: flex; gap: 0.85rem; align-items: center; font-size: 0.93rem; }
.contact-list li strong { color: var(--forest); min-width: 5rem; }
.contact-icon { width: 1.9rem; height: 1.9rem; border-radius: 8px; background: rgba(176,112,48,0.1); display: grid; place-items: center; flex-shrink: 0; color: var(--copper); }
.contact-icon svg { display: block; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: var(--forest); color: rgba(255,255,255,0.82); padding-top: 3.5rem; }
.footer h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer a:hover { color: var(--copper-lt); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 0.7fr 1.1fr; gap: 2rem; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0.3rem 0; line-height: 1.65; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding: 1.25rem 0 2rem; }
.footer-bottom small { color: rgba(255,255,255,0.42); font-size: 0.78rem; line-height: 1.65; }
.footer-wordmark .wordmark__line-1 { color: rgba(255,255,255,0.9); }
.footer-wordmark .wordmark__line-2 .uk { color: var(--copper-lt); }
.footer-wordmark .wordmark__line-2 .wide { color: rgba(255,255,255,0.9); }

/* ── MOBILE BAR ─────────────────────────────────── */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none; gap: 0.75rem;
  padding: 0.85rem 1rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(253,252,249,0.97);
  border-top: 1px solid var(--sand);
  z-index: 60; backdrop-filter: blur(12px);
}
.mobile-bar .btn { flex: 1; justify-content: center; }

/* ── THANK YOU PAGE ─────────────────────────────── */
.thankyou-hero { padding: 5rem 0; background: var(--cream); }
.thankyou-wrap { max-width: 760px; }
.thankyou-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(46,102,73,0.1); border: 1.5px solid rgba(46,102,73,0.22); display: grid; place-items: center; margin-bottom: 1.5rem; color: var(--moss); }
.thankyou-next { margin-top: 2.5rem; padding: 2rem; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); box-shadow: var(--shadow); }
.thankyou-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.thankyou-steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--forest); color: var(--copper-lt); display: grid; place-items: center; font-size: 0.78rem; font-weight: 800; flex-shrink: 0; margin-top: 0.1rem; }
.thankyou-steps li > div strong { display: block; color: var(--forest); font-size: 0.95rem; margin-bottom: 0.2rem; }
.thankyou-steps li > div span { color: var(--mid); font-size: 0.9rem; line-height: 1.55; }
.thankyou-contact { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── SKIP LINK ──────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--forest); color: #fff; padding: 0.5rem 1rem; border-radius: 0 0 8px 8px; font-weight: 700; font-size: 0.88rem; z-index: 999; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* ── REVEAL ANIMATIONS ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP ───────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.5rem; z-index: 55;
  display: flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #fff;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.84rem;
  padding: 0.72rem 1.1rem 0.72rem 0.82rem;
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); color: #fff; }
.whatsapp-float svg { flex-shrink: 0; display: block; }

/* ── FAVICON SVG ────────────────────────────────── */
/* Served as favicon.svg */

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) { .nav-cta { font-size: 0.8rem; padding: 0.68rem 1rem; } }

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4, .split, .estimator-grid { grid-template-columns: 1fr; }
  .grid-2, .form-grid.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid, .service-detail-grid--reverse { grid-template-columns: 1fr; }
  .complaints-grid, .tools-promo { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-img-panel img { height: 360px; }
}

@media (max-width: 720px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  section { padding: 3.5rem 0; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 5.5rem; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .family-strip { height: 240px; }
  .photo-break { height: 220px; }
  .tools-promo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 2rem); }
  .whatsapp-float { bottom: calc(5.5rem + 0.85rem); right: 1rem; padding: 0.85rem; border-radius: 50%; }
  .whatsapp-float .whatsapp-float-label { display: none; }
}

/* ── MOBILE NAV BACKDROP SHOW ───────────────────── */
.mobile-nav-backdrop { display: block; pointer-events: none; }
.mobile-nav-backdrop.visible { pointer-events: all; }
