/* ============================================================
   TOP LONDON REMOVALS — LUXURY EDITORIAL DESIGN SYSTEM
   British Heritage Register. Racing green + antique bronze.
   ============================================================ */

:root {
  /* Palette */
  --green: #0E2A1F;
  --green-dark: #061812;
  --green-mid: #1B3D2D;
  --bronze: #A07142;
  --bronze-deep: #7F5832;
  --bronze-light: #C9A06A;
  --pearl: #F4EFE3;
  --cream: #E8E0CC;
  --charcoal: #1F1815;
  --muted: #6B5F4D;
  --rule: #D8CDB4;
  --cognac: #8B5A2B;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1180px;
  --measure: 65ch;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bronze-deep); }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.section--pearl { background: var(--pearl); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--pearl); }
.section--green-dark { background: var(--green-dark); color: var(--pearl); }
.prose { max-width: var(--measure); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); margin: 0 0 0.5em; }
h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--green);
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--green);
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--green);
}
p { margin: 0 0 1.1em; }
.answer { font-size: 1.08rem; color: var(--charcoal); max-width: var(--measure); }
.lede { font-size: 1.18rem; color: var(--charcoal); max-width: var(--measure); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  color: var(--bronze);
  margin: 0 0 1rem;
  display: block;
}
.section--green .eyebrow, .section--green-dark .eyebrow { color: var(--bronze-light); }
.stat-num {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--bronze);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.section--green .stat-num { color: var(--bronze-light); }

/* ---------- Divider ---------- */
.diamond-rule {
  border: 0;
  border-top: 1px solid var(--rule);
  position: relative;
  margin: 0;
  height: 0;
}
.diamond-rule::before {
  content: "\25C6";
  position: absolute;
  top: -0.62em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pearl);
  padding: 0 14px;
  color: var(--bronze);
  font-size: 11px;
  line-height: 1;
}
.section--cream + .diamond-rule::before { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 2px;
  border: 0;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.btn-primary {
  background: var(--bronze);
  color: var(--pearl);
}
.btn-primary::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn-primary:hover { background: var(--bronze-deep); }
.btn-primary:hover::after { transform: scaleX(1); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 14px 26px;
}
.btn-secondary:hover { background: var(--green); color: var(--pearl); }
.btn-ghost {
  background: transparent;
  color: var(--pearl);
  border: 2px solid var(--pearl);
  padding: 14px 26px;
}
.btn-ghost:hover { background: var(--pearl); color: var(--green); }
.link-tertiary {
  color: var(--bronze-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.link-tertiary:hover { color: var(--bronze); }

/* ---------- Cards ---------- */
.card {
  background: var(--cream);
  border-top: 1px solid var(--bronze);
  border-radius: 2px;
  padding: 28px;
}
.card h3 { font-weight: 700; }
.section--green .card { background: var(--green-mid); }
.section--green .card h3 { color: var(--bronze-light); }
.section--green .card p { color: rgba(244,239,227,0.86); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--pearl);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  color: var(--bronze);
  background: var(--green);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.brand__word {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--green);
  line-height: 1.2;
}
.nav__links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--bronze-deep); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; }
.nav__toggle { display: none; background: none; border: 0; color: var(--green); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--pearl);
  background: var(--green-dark);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--green-dark) 0%, rgba(14,42,31,0.6) 30%, rgba(14,42,31,0) 70%);
  z-index: 1;
}
.hero__monogram {
  position: absolute;
  top: 28px; right: var(--gutter);
  z-index: 2;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--bronze-light);
  letter-spacing: 1px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero h1 { color: var(--pearl); max-width: 16ch; }
.hero__subhead {
  color: rgba(244,239,227,0.85);
  font-size: 1.15rem;
  max-width: 52ch;
  margin-bottom: 1.6rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--pearl); border-bottom: 1px solid var(--rule); }
.trustbar__inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 10px 18px;
  padding: 18px var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
}
.trustbar span {
  font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 2.4px;
  color: var(--green);
}
.trustbar .sep { color: var(--bronze); }

/* ---------- At a glance ---------- */
.glance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.glance__col .eyebrow { margin-bottom: 0.4rem; }
.glance__col p { font-size: 0.95rem; color: var(--muted); margin-top: 0.5rem; }

/* ---------- Service magazine rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-row--flip .svc-row__media { order: 2; }
.svc-row__media img { border-radius: 2px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.svc-row__body ul { list-style: none; margin: 1rem 0; }
.svc-row__body li {
  padding-left: 20px; position: relative; margin-bottom: 0.4rem; font-size: 0.96rem;
}
.svc-row__body li::before {
  content: "\25C6"; color: var(--bronze); position: absolute; left: 0; font-size: 9px; top: 0.45em;
}
.svc-row__from { font-family: var(--serif); font-weight: 800; color: var(--cognac); font-size: 1.3rem; margin: 0.4rem 0 1rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; counter-reset: step; }
.step { }
.step__num {
  font-family: var(--serif); font-weight: 800; color: var(--bronze);
  font-size: 40px; line-height: 1; display: block; margin-bottom: 0.4rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.96rem; color: var(--muted); }

/* ---------- Why us 2x2 ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---------- Pricing ---------- */
.pricing { max-width: 760px; margin: 0 auto; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: baseline;
  padding: 20px 0 20px 22px;
  border-bottom: 1px solid rgba(201,160,106,0.25);
  border-left: 1px solid var(--bronze);
  margin-bottom: 2px;
}
.price-row:last-of-type { border-bottom: 0; }
.price-row h3 { color: var(--pearl); margin: 0; font-size: 1.15rem; }
.price-row p { color: rgba(244,239,227,0.7); margin: 0.2rem 0 0; font-size: 0.9rem; }
.price-row .amt { font-family: var(--serif); font-weight: 800; color: var(--bronze-light); font-size: clamp(22px, 3vw, 30px); white-space: nowrap; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rv {
  background: var(--cream); border-top: 1px solid var(--bronze);
  border-radius: 2px; padding: 28px; position: relative;
}
.rv__mark { font-family: var(--serif); font-weight: 800; color: var(--bronze); font-size: 44px; line-height: 0.6; }
.rv-text { font-style: italic; color: var(--charcoal); margin: 0.6rem 0 1rem; }
.rv__by { font-size: 0.85rem; color: var(--muted); font-style: normal; }

/* ---------- Where we work ---------- */
.map-embed { width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--rule); border-radius: 2px; filter: grayscale(1) sepia(0.2) contrast(0.95); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.2rem; }
.pill {
  display: inline-block; padding: 8px 16px; border: 1px solid var(--rule);
  border-radius: 2px; background: var(--pearl); color: var(--green);
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
}
.pill:hover { border-color: var(--bronze); color: var(--bronze-deep); }
.pullquote { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--green); line-height: 1.3; }

/* ---------- Pre-footer CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--pearl); }
.cta-band__phone { font-family: var(--serif); font-weight: 800; font-size: clamp(30px, 5vw, 52px); color: var(--bronze-light); text-decoration: none; display: inline-block; margin: 0.4rem 0 1.4rem; letter-spacing: -0.01em; }

/* ---------- FAQ accordion (Speakable-safe) ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--green);
}
.faq-q .faq-icon { color: var(--bronze); font-size: 22px; flex: none; transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a p { padding-bottom: 22px; margin: 0; color: var(--charcoal); max-width: var(--measure); }

/* ---------- Forms ---------- */
.form-card { background: var(--cream); border-top: 1px solid var(--bronze); border-radius: 2px; padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 0.98rem;
  border: 1px solid var(--rule); border-radius: 2px; background: var(--pearl); color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bronze); outline: none; }
.field textarea { min-height: 96px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Postcode -> address finder */
.addr-row { display: flex; gap: 8px; align-items: stretch; }
.addr-row input { flex: 1; min-width: 0; }
.addr-find { padding: 10px 14px; white-space: nowrap; font-size: 0.85rem; flex: none; }
.addr-select { width: 100%; margin-top: 8px; padding: 12px 14px; font-family: var(--sans); font-size: 0.98rem; border: 1px solid var(--rule); border-radius: 2px; background: var(--pearl); color: var(--charcoal); }
.addr-select:focus { border-color: var(--bronze); outline: none; }
.addr-note { margin-top: 6px; font-size: 0.82rem; color: var(--muted); }
.form-msg { margin-top: 12px; font-size: 0.92rem; }
.form-msg.ok { color: var(--green); }
.form-msg.err { color: #8a2e23; }

/* ---------- Breadcrumb ---------- */
.crumbs { padding: 16px var(--gutter); max-width: var(--maxw); margin: 0 auto; font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: var(--bronze-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--rule); margin: 0 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: rgba(244,239,227,0.82); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding: 64px var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.footer h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: var(--bronze-light); margin: 0 0 16px; }
.footer a { color: rgba(244,239,227,0.82); text-decoration: none; }
.footer a:hover { color: var(--bronze-light); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 0.92rem; }
.footer__brand .brand__word { color: var(--pearl); }
.footer__brand .brand__mark { background: var(--green-mid); }
.footer__legal { border-top: 1px solid rgba(201,160,106,0.2); padding: 20px var(--gutter); text-align: center; font-size: 0.82rem; color: rgba(244,239,227,0.6); max-width: var(--maxw); margin: 0 auto; }
.footer__legal a { color: var(--bronze-light); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: var(--pearl); padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --section-pad: 64px; }
  .glance { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-row--flip .svc-row__media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
/* Collapse nav to the menu button before items get cramped */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--pearl); border-bottom: 1px solid var(--rule); padding: 16px var(--gutter); gap: 14px; z-index: 70;
  }
}

@media (max-width: 720px) {
  :root { --section-pad: 56px; }
  .nav__phone { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .card { padding: 20px; }
  .hero__content { padding-bottom: 44px; }
}
