/* ---------- Self-hosted fonts (latin woff2, was Google Fonts) ---------- */
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:400;font-display:swap;src:url(/assets/fonts/cormorant-garamond-italic-co3ZmX.woff2) format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:500;font-display:swap;src:url(/assets/fonts/cormorant-garamond-italic-co3ZmX.woff2) format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/cormorant-garamond-normal-co3bmX.woff2) format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/cormorant-garamond-normal-co3bmX.woff2) format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/manrope-normal-xn7gYH.woff2) format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/manrope-normal-xn7gYH.woff2) format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:600;font-display:swap;src:url(/assets/fonts/manrope-normal-xn7gYH.woff2) format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url(/assets/fonts/manrope-normal-xn7gYH.woff2) format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400;font-display:swap;src:url(/assets/fonts/playfair-display-normal-nuFiD-.woff2) format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url(/assets/fonts/playfair-display-normal-nuFiD-.woff2) format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url(/assets/fonts/playfair-display-normal-nuFiD-.woff2) format('woff2');}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:swap;src:url(/assets/fonts/playfair-display-normal-nuFiD-.woff2) format('woff2');}
/* ---------- Taylor Made Removals - design system ---------- */

:root {
  /* Brand */
  --navy-900: #14224A;
  --navy-800: #1B2C5C;
  --navy-700: #2A3B6E;
  --navy-600: #3D4F84;
  --gold-700: #7D5F1F; /* accessible gold - passes WCAG AA (4.5:1) on light backgrounds for small text */
  --gold-600: #B08A37;
  --gold-500: #C9A24A;
  --gold-400: #D9B870;
  --gold-200: #EBD9A9;
  --ivory:    #F5EFE2;
  --cream:    #FAF6EC;
  --paper:    #FFFCF5;
  --white:    #FFFFFF;
  --ink:      #0F1830;
  --mute:     #6B7390;
  --rule:     #E2D9C2;

  /* Per-aesthetic variables - default = A Heritage */
  --page-bg: var(--ivory);
  --section-bg: var(--cream);
  --section-bg-alt: var(--paper);
  --rule-color: var(--gold-500);
  --rule-thickness: 1px;
  --card-bg: var(--paper);
  --card-border: var(--rule);
  --eyebrow-color: var(--gold-700);
  --serif-display: "Playfair Display", "Times New Roman", serif;
  --serif-text: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ----- Aesthetic B - Modern ----- */
[data-aesthetic="b"] {
  --page-bg: #FFFFFF;
  --section-bg: #FFFFFF;
  --section-bg-alt: #FAFAF7;
  --rule-color: #E5E3DC;
  --rule-thickness: 1px;
  --card-bg: #FFFFFF;
  --card-border: #ECEAE3;
  --eyebrow-color: var(--gold-600);
}

/* ----- Aesthetic C - Editorial ----- */
[data-aesthetic="c"] {
  --page-bg: #FFFFFF;
  --section-bg: var(--navy-800);
  --section-bg-alt: var(--ivory);
  --rule-color: var(--gold-500);
  --rule-thickness: 2px;
  --card-bg: var(--navy-800);
  --card-border: rgba(201,162,74,0.35);
  --eyebrow-color: var(--gold-400);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif-display);
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  line-height: 1.04;
  text-wrap: balance;
}
.h1 { font-size: clamp(48px, 7.4vw, 104px); }
.h2 { font-size: clamp(36px, 4.8vw, 64px); }
.h3 { font-size: clamp(24px, 2.4vw, 32px); }
.h4 { font-size: clamp(20px, 1.6vw, 24px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eyebrow-color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow.has-rule::after {
  content: none;
}

.lede {
  font-family: var(--serif-text);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--navy-700);
  font-weight: 400;
}

/* Accent word in headings - gold emphasis, upright (no italics) */
.italic-mark {
  font-style: normal;
  color: var(--gold-600);
}
.section-band-navy .italic-mark { color: var(--gold-400); }

/* ---------- Section scaffolding ---------- */
section { position: relative; padding-block: clamp(64px, 9vw, 128px); }
.section-band { background: var(--section-bg-alt); }
.section-band-navy { background: var(--navy-800); color: var(--ivory); }
.section-band-navy .display,
.section-band-navy .eyebrow { color: var(--gold-400); }
.section-band-navy .lede { color: rgba(255,255,255,0.78); }

.divider-rule {
  border: 0;
  border-top: var(--rule-thickness) solid var(--rule-color);
  margin: 0;
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-500);
}
.gold-rule::before, .gold-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
[data-aesthetic="a"] .gold-rule::before,
[data-aesthetic="a"] .gold-rule::after {
  box-shadow: 0 3px 0 -2px currentColor;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy-800); color: var(--ivory); }
.btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-400); }
.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--navy-800); padding-inline: 8px; }
.btn-ghost:hover { color: var(--gold-600); }

.btn-lg { padding: 18px 32px; font-size: 15px; }

.btn-whatsapp { background: #25D366; color: #0B2E1A; }
.btn-whatsapp:hover { background: #1FB956; }

.tap-phone {
  font-family: var(--sans);
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.01em;
  color: var(--navy-800);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.tap-phone .label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--page-bg);
  border-bottom: 1px solid var(--rule-color);
}
.site-header .bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 18px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark img { width: 52px; height: 52px; object-fit: contain; }
.brand-mark .name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-mark .name span:first-child {
  font-family: var(--serif-display);
  font-size: 18px;
  color: var(--navy-800);
  letter-spacing: 0.12em;
}
.brand-mark .name span:last-child {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-700);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: all .2s;
}
.nav-links a:hover { color: var(--navy-900); border-bottom-color: var(--gold-500); }
.nav-links a.active { color: var(--navy-900); border-bottom-color: var(--gold-500); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .phone {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-800);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .site-header .bar { grid-template-columns: 1fr auto; }
  .nav-cta { justify-content: flex-end; margin-left: auto; }
  .nav-cta .phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  position: relative;
}
.hero .ornament-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-500);
  margin: 16px auto;
  max-width: 220px;
}
.hero .ornament-rule::before, .hero .ornament-rule::after {
  content: ""; flex: 1; height: 1px; background: currentColor;
}
.hero .ornament-rule .diamond {
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

.hero-editorial {
  text-align: center;
}
.hero-editorial .lede {
  max-width: 720px;
  margin: 12px auto 16px;
}
.hero-editorial .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.hero-split .cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
}

.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--card-bg);
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  overflow: hidden;
}
.hero-image.wide { aspect-ratio: 21/8; margin-top: clamp(20px,3vw,36px); }
.placeholder-slot {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--paper) 0 14px,
      var(--cream) 14px 28px
    );
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-slot::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--paper);
  padding: 6px 12px;
  border: 1px solid var(--rule);
}
[data-aesthetic="c"] .section-band-navy .placeholder-slot {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px);
  border-color: rgba(201,162,74,0.4);
}
[data-aesthetic="c"] .section-band-navy .placeholder-slot::after {
  background: var(--navy-900);
  color: var(--gold-200);
  border-color: rgba(201,162,74,0.4);
}

/* ---------- Banner strip (under hero) ---------- */
.trust-strip {
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
  background: var(--section-bg-alt);
}
.trust-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-block: 28px;
}
.trust-strip .item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.trust-strip .item .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.trust-strip .item .value {
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--navy-800);
}
@media (max-width: 700px) {
  .trust-strip .row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-color);
  border: 1px solid var(--rule-color);
}
.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: background .2s;
}
.service-card:hover { background: var(--section-bg-alt); }
.service-card .icon {
  width: 44px;
  height: 44px;
  color: var(--gold-600);
}
.service-card h3 {
  font-family: var(--serif-display);
  font-size: 26px;
  color: var(--navy-800);
  margin: 0;
  font-weight: 500;
}
.service-card p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--mute);
  margin: 0;
  line-height: 1.55;
}
.service-card .more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  align-self: flex-start;
  padding-bottom: 2px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Values block - 4 cards, fills the row evenly with no empty cells */
.services-grid.values-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .services-grid.values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid.values-grid { grid-template-columns: 1fr; } }

[data-aesthetic="b"] .services-grid {
  background: transparent;
  border: 0;
  gap: 24px;
}
[data-aesthetic="b"] .service-card {
  border: 1px solid var(--card-border);
}

/* ---------- Two-column editorial blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial .stars {
  color: var(--gold-500);
  letter-spacing: 4px;
  font-size: 18px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif-text);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy-800);
}
.testimonial blockquote::before {
  content: "\201C";
  font-size: 44px;
  line-height: 0;
  display: block;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.testimonial .author {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mute);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
}
.testimonial .author .source {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.section-band-navy .testimonial {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,162,74,0.25);
}
.section-band-navy .testimonial blockquote { color: var(--ivory); }
.section-band-navy .testimonial .author { color: rgba(255,255,255,0.7); border-top-color: rgba(201,162,74,0.25); }

/* ---------- Coverage map ---------- */
.coverage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 1024px) { .coverage { grid-template-columns: 1fr; } }

.coverage .map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--section-bg-alt);
  border: 1px solid var(--rule-color);
  overflow: hidden;
}
.coverage .map svg { width: 100%; height: 100%; display: block; }

.coverage .towns {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 0;
  border: 1px solid var(--rule);
}
.coverage .towns li {
  list-style: none;
  padding: 14px 22px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif-text);
  font-size: 19px;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.coverage .towns li:last-child { border-bottom: 0; }
.coverage .towns .post {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gold-700);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule-color); }
.faq-q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--navy-800);
}
.faq-q .num {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-700);
  min-width: 32px;
}
.faq-q .toggle {
  font-family: var(--serif-display);
  font-size: 28px;
  color: var(--gold-500);
  transition: transform .25s;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-item {
  border-bottom: 1px solid var(--rule-color);
}
/* Animate only the answer panel so the question header never moves
   (the header is a normal sibling, not part of the animated grid). */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  min-height: 0;
  overflow: hidden;
  padding-left: 60px;
  transition: padding-bottom .3s ease;
  font-family: var(--serif-text);
  font-size: 18px;
  color: var(--navy-700);
}
.faq-item.open .faq-a-inner { padding-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
  padding-bottom: 32px;
}
.site-footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) {
  .site-footer .top { grid-template-columns: 1fr 1fr; }
}
.site-footer h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:hover { color: var(--gold-400); }
.site-footer .brand-line {
  font-family: var(--serif-display);
  font-size: 24px;
  color: var(--ivory);
  letter-spacing: 0.08em;
}
.site-footer .bottom {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.site-footer .bottom .footer-areas {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-400);
}

/* ---------- Contact form ---------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 600;
}
.form-field input, .form-field textarea, .form-field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--navy-700);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy-800);
  outline: none;
  transition: border-color .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  font-family: var(--sans);
  color: var(--mute);
  opacity: 1;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-bottom-color: var(--gold-500); }
/* Normalise the select so Safari doesn't render its own pill/serif control */
.form-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-right: 26px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%231B2C5C' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}
.form-field select option { font-family: var(--sans); color: var(--navy-800); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
/* Honeypot spam trap - hidden from humans, still present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Visually hidden but available to screen readers and crawlers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact form success: blur the submitted form and float a thank-you over it */
.quote-form.is-submitted {
  filter: blur(4px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.quote-success {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: clamp(24px, 5vw, 48px);
  text-align: center;
  border-radius: inherit;
  background: rgba(250, 246, 236, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: quoteSuccessIn 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.quote-success-tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--gold-600);
  box-shadow: 0 6px 20px rgba(176, 138, 55, 0.4);
}
.quote-success p {
  margin: 0;
  max-width: 20em;
  font-family: var(--serif-text);
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.4;
  color: var(--navy-800);
}
@keyframes quoteSuccessIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Misc ---------- */
.kicker {
  font-family: var(--serif-text);
  font-style: normal;
  color: var(--gold-700);
  font-size: 22px;
}
.center { text-align: center; }
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 32px; }

/* ---------- Aesthetic-specific tweaks ---------- */
[data-aesthetic="a"] section { position: relative; }
[data-aesthetic="a"] section.ornate::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 5px;
  background:
    linear-gradient(to bottom, var(--gold-500), var(--gold-500)) 0 0/100% 1px no-repeat,
    linear-gradient(to bottom, var(--gold-500), var(--gold-500)) 0 100%/100% 1px no-repeat;
}

[data-aesthetic="b"] .display { font-weight: 400; letter-spacing: -0.02em; }
[data-aesthetic="b"] section { padding-block: clamp(80px, 11vw, 160px); }
[data-aesthetic="b"] .eyebrow::before { width: 14px; }
[data-aesthetic="b"] .eyebrow.has-rule::after { width: 14px; }

[data-aesthetic="c"] .display { font-weight: 500; }
[data-aesthetic="c"] .hero { background: var(--navy-800); color: var(--ivory); }
[data-aesthetic="c"] .hero .display { color: var(--ivory); }
[data-aesthetic="c"] .hero .lede { color: rgba(255,255,255,0.78); }
[data-aesthetic="c"] .hero .tap-phone { color: var(--gold-400); }
[data-aesthetic="c"] .hero .tap-phone .label { color: var(--gold-400); }
[data-aesthetic="c"] .hero .btn-outline { border-color: var(--gold-500); color: var(--gold-400); }
[data-aesthetic="c"] .hero .btn-outline:hover { background: var(--gold-500); color: var(--navy-900); }
[data-aesthetic="c"] .hero .btn-primary { background: var(--gold-500); color: var(--navy-900); }
[data-aesthetic="c"] .hero .btn-primary:hover { background: var(--gold-400); }
[data-aesthetic="c"] .hero .placeholder-slot {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px);
  border-color: rgba(201,162,74,0.4);
}
[data-aesthetic="c"] .hero .placeholder-slot::after {
  background: var(--navy-900);
  color: var(--gold-200);
  border-color: rgba(201,162,74,0.4);
}
[data-aesthetic="c"] .hero .ornament-rule { color: var(--gold-500); }

/* ============================================================
   Hamburger / mobile menu
   ============================================================ */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy-800);
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--page-bg);
  z-index: 60;
  padding: 96px 24px 32px;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 61;
}
.mobile-menu-close span {
  position: absolute;
  width: 20px;
  height: 1.5px;
  background: var(--navy-800);
}
.mobile-menu-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu-links a {
  font-family: var(--serif-display);
  font-size: 26px;
  line-height: 1;
  color: var(--navy-800);
  padding: 20px 4px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.mobile-menu-links a:last-child { border-bottom: 0; }
.mobile-menu-links a.active { color: var(--gold-600); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-cta .btn { width: 100%; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-header .bar { gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .quote-btn { display: none; }
}

/* ============================================================
   Mobile fixes - under 700px / 600px
   ============================================================ */
@media (max-width: 700px) {
  /* Brand mark scaled down */
  .brand-mark img { width: 40px; height: 40px; }
  .brand-mark .name span:first-child { font-size: 15px; }
  .brand-mark .name span:last-child { font-size: 8px; letter-spacing: 0.24em; }

  /* Section padding tighter */
  section { padding-block: clamp(48px, 12vw, 80px); }

  /* Hero CTAs: keep on one line at all costs */
  .hero-editorial .cta-row,
  .hero-split .cta-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 24px;
  }
  .hero-editorial .cta-row .btn,
  .hero-split .cta-row .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 10px;
    font-size: 11px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-editorial .cta-row .btn svg,
  .hero-split .cta-row .btn svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
  }

  /* Coverage: tighten gap so map+towns align nicely */
  .coverage { gap: 16px; }
  /* Coverage map - full width, matches SVG 4:3 aspect ratio so SVG fills container */
  .coverage .map {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 4/3;
  }
  .coverage .map svg { width: 100%; height: 100%; display: block; }
  /* Towns: single column on mobile */
  .coverage .towns { grid-template-columns: 1fr; }
  .coverage .towns li {
    padding: 12px 16px;
    font-size: 16px;
    border-right: 0 !important;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .coverage .towns li:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
  .coverage .towns .post { white-space: nowrap; }

  /* Review platform grid in homepage - force single column */
  .review-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }

  /* Footer: stack, center, no overflow */
  .site-footer .top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-bottom: 32px;
  }
  .site-footer .brand-line { text-align: center; }
  .site-footer ul { align-items: center; }
  .site-footer a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .site-footer .bottom {
    justify-content: center;
    text-align: center;
  }

  /* Form: prevent overflow */
  .form-field { min-width: 0; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px; /* iOS won't zoom at 16+ */
  }

  /* Contact page: form first on mobile via flex order, full-width stretched */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    align-items: stretch !important;
  }
  .contact-form-wrap {
    order: 1;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    padding: 16px !important; /* tighter on mobile so the form has more usable space */
  }
  .contact-details {
    order: 2;
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }
  /* Contact detail buttons (text/email): go full-width and allow the long
     email address to wrap instead of overflowing off the right edge */
  .contact-details .btn {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  /* Tighter form grid spacing on mobile */
  .form-grid { gap: 18px; }
  /* Make sure the form itself can't overflow horizontally */
  .contact-form-wrap form { max-width: 100%; min-width: 0; width: 100%; }
  /* Tighten container gutter so the contact form gets more usable width
     while keeping equal margin left and right */
  main[data-screen-label="04 Contact"] .container { padding-left: 12px; padding-right: 12px; }
}

/* Contact page: keep two-col items top-aligned (form is taller than details) */
.contact-grid { align-items: start; }

/* Home: Facebook page feed embed.
   The Page Plugin maxes out at 500px wide (Facebook's own limit); give the
   wrapper a defined 500px width so adapt-container-width renders at full size
   on desktop instead of collapsing to a narrow shrink-to-fit box. */
.fb-embed {
  width: 500px;
  max-width: 100%;
  margin-inline: auto;
  /* No reserved height: the feed now ships as a compact click-to-load facade
     (see .fb-facade), so there is nothing to reserve space for until the
     visitor asks for it - and once they do, the height comes from the widget. */
}
.fb-embed .fb-page,
.fb-embed .fb-page span,
.fb-embed .fb-page iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Contact page: map embed */
.map-embed {
  position: relative;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  border-top: 1px solid var(--rule-color);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.02);
}
.map-embed .map-canvas {
  width: 100%;
  height: 100%;
  background: var(--ivory);
  z-index: 0;
}
.map-embed .map-canvas .leaflet-tile-pane { filter: grayscale(0.2) contrast(1.02); }
.map-embed .map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  background: var(--navy-800);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(20,34,74,0.24);
}
.map-embed .map-link:hover { background: var(--gold-500); color: var(--navy-900); }

/* Ensure all form inputs always take full width even on desktop */
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Prevent any element from causing horizontal scroll */
html, body { overflow-x: hidden; }

/* ============================================================
   Photo hero - full-bleed Sandbanks background (landing page)
   ============================================================ */
.hero.hero-photo {
  padding: 0;
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rule-color);
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroKenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.4%, -1.2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .hero-bg { animation: none; transform: scale(1.04); }
}
.hero-photo .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,18,38,0.62) 0%, rgba(11,18,38,0.50) 50%, rgba(11,18,38,0.72) 100%);
}
.hero-photo .hero-photo-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  /* Slightly less padding on top than bottom so the eyebrow's line-leading
     doesn't make the block read low - keeps equal visual space top/bottom. */
  padding-top: calc(clamp(56px, 9vw, 120px) - 6px);
  padding-bottom: clamp(56px, 9vw, 120px);
}
.hero-photo .eyebrow {
  color: var(--gold-200);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-photo .display {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.4);
}
.hero-photo .hero-accent { color: var(--gold-400); font-style: normal; }
.hero-photo .ornament-rule { color: var(--gold-400); margin: 18px auto; }
.hero-photo .lede {
  color: #fff;
  font-weight: 500;
  max-width: 720px;
  margin: 14px auto 0;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}
.hero-photo .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-photo .btn-outline {
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
}
.hero-photo .btn-outline:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}
@media (max-width: 700px) {
  .hero.hero-photo { min-height: clamp(460px, 78vh, 660px); }
  .hero-photo .cta-row { gap: 10px; flex-wrap: nowrap; }
  .hero-photo .cta-row .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .hero-photo .cta-row .btn svg { flex: 0 0 auto; width: 16px; height: 16px; }
}

/* ---------- Footer: registered company identity + legal links ---------- */
/* Companies Act 2006 s.82 / e-Commerce Regs 2002 reg. 6 disclosure. Small and
   quiet, but present on every page. */
.site-footer .footer-legal-id {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
}
.site-footer .footer-legal a {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
}
.site-footer .footer-legal a:hover { color: var(--gold-400); border-bottom-color: var(--gold-400); }

/* Last row: copyright left, "Website by" credit right. Kept at 0.6 alpha so the
   12px text clears the 4.5:1 WCAG AA floor on the navy ground. */
.site-footer .footer-credit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px 24px;
  flex-wrap: wrap;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.site-footer .footer-credit .footer-credit-by { margin-left: auto; }

@media (max-width: 620px) {
  .site-footer .bottom { justify-content: flex-start; }
  /* Once it wraps, a right-pushed credit would sit alone against the far edge. */
  .site-footer .footer-credit { justify-content: flex-start; }
  .site-footer .footer-credit .footer-credit-by { margin-left: 0; }
}

/* ---------- Contact form: privacy notice at the point of collection ---------- */
.form-consent {
  margin: 24px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
}
.form-consent a { color: var(--gold-700); border-bottom: 1px solid var(--gold-500); font-weight: 600; }
.form-consent a:hover { color: var(--navy-800); }

/* ---------- Legal pages (privacy / cookies / terms) ---------- */
.legal-head { max-width: 880px; }
.legal-head .lede { max-width: 62ch; }
.legal-meta {
  margin: 20px 0 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
}

.legal { max-width: 880px; }
.legal h2 {
  font-family: var(--serif-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy-900);
  margin: 56px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  margin: 36px 0 0;
}
.legal p { margin: 16px 0 0; max-width: 68ch; }
.legal ul { margin: 16px 0 0; padding-left: 22px; max-width: 68ch; }
.legal li { margin-top: 8px; }
.legal a {
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 1px;
}
.legal a:hover { color: var(--gold-700); border-bottom-color: var(--gold-700); }
.legal strong { font-weight: 700; color: var(--navy-900); }
.legal em { font-style: italic; }

/* Registered-details list — the same facts as the footer, set as a plain block. */
.legal ul.legal-facts {
  list-style: none;
  padding: 20px 24px;
  margin-top: 20px;
  background: var(--white);
  border-left: 3px solid var(--gold-500);
}
.legal ul.legal-facts li { margin-top: 4px; }
.legal .legal-address {
  padding-left: 20px;
  border-left: 3px solid var(--rule);
  line-height: 1.8;
}

/* Tables scroll inside themselves rather than pushing the page sideways. */
.legal-table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin: 24px 0 0;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}
.legal-table thead th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  text-align: left;
  padding: 0 20px 10px 0;
  border-bottom: 1px solid var(--gold-500);
  white-space: nowrap;
}
.legal-table td {
  vertical-align: top;
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid var(--rule);
  min-width: 150px;
}
.legal-table tr td:last-child, .legal-table tr th:last-child { padding-right: 0; }
/* The table is its own scroll container, so it must be reachable by keyboard
   (WCAG 2.1.1) and needs an accessible name — the caption supplies both. */
.legal-table:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 4px; }
.legal-table-caption {
  text-align: left;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  padding-bottom: 10px;
}
/* Where a wide table has to scroll sideways, say so rather than leaving people
   to discover it. */
@media (max-width: 760px) {
  .legal-table { font-size: 14px; }
  .legal-table td { min-width: 128px; padding-right: 16px; }
  .legal-table-caption::after {
    content: " — scroll sideways to see it all";
    color: var(--gold-700);
  }
}

/* ---------- Facebook feed: click-to-load consent facade ---------- */
/* Nothing is requested from Meta until the button is pressed - see script.js. */
.fb-facade {
  width: 500px;
  max-width: 100%;
  margin-inline: auto;
}
.fb-facade-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 36px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-align: center;
}
.fb-facade.is-loaded .fb-facade-inner { display: none; }
.fb-facade-mark { color: var(--navy-700); opacity: 0.85; }
.fb-facade-text {
  margin: 0;
  max-width: 42ch;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--mute);
}
.fb-facade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.fb-facade-btn[disabled] { opacity: 0.6; cursor: default; }
.fb-facade-note {
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mute);
}
.fb-facade-note a { color: var(--gold-700); border-bottom: 1px solid var(--gold-500); font-weight: 600; }
.fb-facade .fb-page,
.fb-facade .fb-page span,
.fb-facade .fb-page iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Model cancellation form (Consumer Contracts Regs 2013, Sch. 3) — set apart
   from the surrounding prose so it reads as a document to copy, not as advice. */
.legal-form-block {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--card-border);
  font-size: 15px;
}
.legal-form-block p { margin-top: 14px; max-width: none; }
.legal-form-block p:first-child { margin-top: 0; }
.legal-form-rule { font-family: var(--sans); color: var(--navy-800); }
.legal-form-note { font-size: 13px; color: var(--mute); }
