/* =========================================================
   Laundrette & Dry Cleaner — shared stylesheet
   ========================================================= */

:root {
  --blue-900: #0b2947;
  --blue-800: #0e3564;
  --blue-700: #123f78;
  --blue-600: #17509a;
  --blue-500: #2064c4;
  --blue-100: #e8f1fc;
  --blue-50: #f3f8fe;

  --amber-500: #f2a71b;
  --amber-600: #d68f0f;

  --grey-900: #171b21;
  --grey-700: #3d444d;
  --grey-600: #5a6472;
  --grey-300: #d7dde3;
  --grey-100: #f4f6f9;
  --white: #ffffff;

  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(11, 41, 71, 0.07);
  --shadow-md: 0 12px 32px rgba(11, 41, 71, 0.12);

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--blue-900);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1em; color: var(--grey-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--alt {
  background: var(--grey-100);
}

.section--navy {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.82); }

.section-head {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--amber-500);
  color: var(--blue-900);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--amber-600); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--ghost {
  background: var(--blue-100);
  color: var(--blue-700);
}
.btn--ghost:hover { background: var(--blue-100); box-shadow: var(--shadow-sm); }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--amber-500); }
.topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--grey-300);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue-900);
  font-size: 1.05rem;
  line-height: 1.15;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .93rem;
  color: var(--grey-700);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--blue-700);
  border-color: var(--amber-500);
}

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--amber-500);
  color: var(--blue-900);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  padding: 10px 0;
  animation: ticker-scroll 24s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 0 28px;
  border-right: 1px solid rgba(11,41,71,.25);
}
@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08) 0, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(242,167,27,.14) 0, transparent 45%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 46ch;
}
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
}
.hero__stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.hero__visual {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero__visual img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 56px 0 64px;
}
.page-hero h1 { color: var(--white); margin-bottom: .3em; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--amber-500); }
.page-hero p.lead { color: rgba(255,255,255,.82); max-width: 60ch; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }

.service-card a.card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.service-card a.card-link:hover { color: var(--amber-600); }

/* ---------- Feature list ---------- */
.feature {
  display: flex;
  gap: 16px;
}
.feature .icon-badge { margin-bottom: 0; flex-shrink: 0; }
.feature h3 { margin-bottom: .3em; }
.feature p { margin-bottom: 0; font-size: .93rem; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--blue-50);
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
}
.stat-strip .container {
  display: flex;
  justify-content: space-between;
  padding: 30px 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-strip .stat { text-align: center; flex: 1; min-width: 130px; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--blue-800);
}
.stat span { font-size: .82rem; color: var(--grey-600); }

/* ---------- Hours table ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.hours-table td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--grey-300);
}
.hours-table td:first-child { font-weight: 600; color: var(--grey-900); font-family: var(--font-head); }
.hours-table td:last-child { text-align: right; color: var(--grey-700); }
.hours-table tr.is-today td { color: var(--blue-700); }
.hours-table tr.is-today td:first-child::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ea043;
  margin-right: 8px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
}
.open-status.is-open { background: #e7f7ec; color: #1c7a3c; }
.open-status.is-closed { background: #fdeceb; color: #b3261e; }
.open-status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ---------- Reviews ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.reviews-summary__score {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1;
}
.stars { color: var(--amber-500); letter-spacing: 2px; font-size: 1.1rem; }
.reviews-summary__meta { font-size: .88rem; color: var(--grey-600); }

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.review-card__time { font-size: .76rem; color: var(--grey-600); }
.review-card__text {
  font-size: .9rem;
  color: var(--grey-700);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.reviews-note {
  font-size: .78rem;
  color: var(--grey-600);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-loading, .reviews-fallback-note {
  font-size: .88rem;
  color: var(--grey-600);
}

/* ---------- Price table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--blue-800);
  padding: 18px 22px;
  background: var(--blue-50);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 22px;
  border-bottom: 1px solid var(--grey-300);
  font-size: .93rem;
}
.price-table td:last-child, .price-table th:last-child {
  text-align: right;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue-700);
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: none; }

.price-note {
  background: var(--amber-500);
  color: var(--blue-900);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
}

/* ---------- Area list ---------- */
.area-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: 26px;
}
.area-card h3 { display: flex; align-items: center; gap: 10px; }
.postcode-pill {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--amber-500);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--blue-900); margin-bottom: .2em; }
.cta-banner p { color: rgba(11,41,71,.75); margin-bottom: 0; }
.cta-banner .btn--primary { background: var(--blue-900); color: var(--white); }
.cta-banner .btn--primary:hover { background: var(--blue-800); }

/* ---------- Map ---------- */
.map-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-frame__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--grey-100);
  color: var(--blue-700);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  text-align: center;
}
.map-frame__placeholder span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .8rem;
  color: var(--grey-600);
}
.map-frame__placeholder:hover { background: var(--blue-100); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--blue-900);
  color: rgba(255,255,255,.9);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__inner p { margin: 0; font-size: .88rem; max-width: 60ch; color: rgba(255,255,255,.85); }
.cookie-banner__inner p a { color: var(--white); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__actions .btn--ghost { background: rgba(255,255,255,.12); color: var(--white); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,.2); }

/* ---------- Contact form ---------- */
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--blue-900);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--grey-900);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
}
.form-note { font-size: .8rem; color: var(--grey-600); margin-top: 10px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid h4 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid ul li a:hover { color: var(--amber-500); }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .88rem; max-width: 32ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--amber-500); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.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;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 44px; }
  .hero__visual { order: -1; max-width: 480px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }
  header.site-header.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid var(--grey-300);
    box-shadow: var(--shadow-md);
  }
  .topbar__left { gap: 14px; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .section { padding: 52px 0; }
  .stat-strip .container { justify-content: flex-start; }
}
