/** Shopify CDN: Minification failed

Line 526:75 Expected "}" to go with "{"

**/
/* ============================================================
   Ring2Wash — Shared Design System
   Design: Clean Service Utility
   White dominant, Teal (#0D9488) brand, Space Grotesk + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #CCFBF1;
  --teal-mid: #14B8A6;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --white: #FFFFFF;
  --grey-50: #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-400: #94A3B8;
  --grey-600: #475569;
  --grey-700: #334155;
  --text-body: #1E293B;
  --text-muted: #64748B;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 8px 40px rgba(15,23,42,0.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p { color: var(--text-body); line-height: 1.7; }

/* ---- Layout ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  padding: 0 20px;
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
}
.navbar-logo-text span { color: var(--teal); }
.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links a {
  font-size: 14px; font-weight: 600; color: var(--grey-600);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--teal); }
.navbar-cta {
  background: var(--teal); color: white;
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.navbar-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.navbar-phone {
  font-size: 14px; font-weight: 700; color: var(--teal);
  display: flex; align-items: center; gap: 6px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--grey-100);
  padding: 20px; z-index: 99; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--navy); padding: 8px 0; border-bottom: 1px solid var(--grey-100); }
.mobile-menu .mobile-cta {
  background: var(--teal); color: white;
  padding: 14px; border-radius: var(--radius);
  text-align: center; font-weight: 700; font-size: 16px; margin-top: 8px;
}

/* ---- Sticky Book Bar (Mobile) ---- */
.sticky-book-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 98;
  background: var(--navy); padding: 12px 20px;
  gap: 12px; align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-book-bar a {
  flex: 1; background: var(--teal); color: white;
  padding: 14px; border-radius: var(--radius);
  text-align: center; font-weight: 700; font-size: 15px;
}
.sticky-book-bar a.secondary {
  background: transparent; border: 2px solid rgba(255,255,255,0.3);
  color: white; flex: 0 0 auto; padding: 14px 18px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 700;
  transition: all 0.2s; cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.35); }
.btn-secondary { background: var(--navy); color: white; }
.btn-secondary:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #D97706; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* ---- Badges ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
}
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.badge-gold { background: var(--gold-light); color: #92400E; }
.badge-navy { background: var(--navy); color: white; }
.badge-green { background: #D1FAE5; color: #065F46; }

/* ---- Cards ---- */
.card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 24px; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: 12px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy); padding: 14px 20px;
  text-align: center;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.trust-item span { color: var(--gold); font-size: 16px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 50%, #F8FAFC 100%);
  padding: 80px 20px 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow { margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.hero-trust-item .icon { font-size: 18px; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: white; border-radius: 20px; padding: 28px;
  box-shadow: var(--shadow-lg); max-width: 380px; width: 100%;
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.hero-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.hero-card-sub { font-size: 13px; color: var(--text-muted); }
.hero-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.hero-step { display: flex; align-items: center; gap: 12px; }
.hero-step-num { width: 28px; height: 28px; background: var(--teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.hero-step-text { font-size: 14px; font-weight: 600; color: var(--navy); }
.hero-card-cta { width: 100%; background: var(--teal); color: white; padding: 14px; border-radius: var(--radius); font-weight: 700; font-size: 15px; text-align: center; display: block; transition: background 0.2s; }
.hero-card-cta:hover { background: var(--teal-dark); }

/* ---- Postcode Search ---- */
.postcode-section {
  background: var(--navy); padding: 48px 20px;
}
.postcode-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.postcode-inner h2 { color: white; margin-bottom: 10px; }
.postcode-inner p { color: var(--grey-400); margin-bottom: 28px; }
.postcode-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 20px; }
.postcode-input {
  flex: 1; padding: 16px 20px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: white;
  font-size: 16px; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  outline: none; transition: border-color 0.2s;
  text-align: center; letter-spacing: 2px;
}
.postcode-input::placeholder { color: rgba(255,255,255,0.4); letter-spacing: 0; }
.postcode-input:focus { border-color: var(--teal); }
.postcode-btn {
  background: var(--teal); color: white;
  padding: 16px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.postcode-btn:hover { background: var(--teal-mid); }
.postcode-result {
  padding: 16px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; margin-top: 12px;
  display: none;
}
.postcode-result.success { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.3); }
.postcode-result.error { background: rgba(239,68,68,0.15); color: #F87171; border: 1px solid rgba(239,68,68,0.3); }
.postcode-result.show { display: block; }
.postcode-suburbs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.postcode-suburb-tag {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
}

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  padding: 28px; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 8px; font-size: 20px; }
.service-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.service-price { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--teal); margin-bottom: 16px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-features li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 800; }

/* ---- How It Works ---- */
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: var(--grey-100); z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 72px; height: 72px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.3);
}
.how-step h4 { margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-muted); }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--grey-100); padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-source { font-size: 12px; color: var(--text-muted); }
.reviews-summary {
  text-align: center; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.reviews-score { font-family: 'Space Grotesk', sans-serif; font-size: 64px; font-weight: 800; color: var(--navy); line-height: 1; }
.reviews-stars { font-size: 28px; color: #F59E0B; letter-spacing: 4px; }
.reviews-count { font-size: 15px; color: var(--text-muted); }

/* ---- Offer Banner ---- */
.offer-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 48px 20px; text-align: center;
}
.offer-banner h2 { color: white; margin-bottom: 12px; }
.offer-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 17px; }
.offer-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 8px 24px; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800;
  margin-bottom: 24px;
}

/* ---- Booking Form ---- */
.booking-section { background: var(--grey-50); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.booking-form-wrap {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--grey-200); border-radius: var(--radius);
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--text-body); background: white;
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--teal); color: white;
  padding: 18px; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.35); }
.booking-info { padding-top: 8px; }
.booking-info h3 { margin-bottom: 20px; }
.booking-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.booking-info-icon { width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.booking-info-text h4 { margin-bottom: 4px; font-size: 16px; }
.booking-info-text p { font-size: 14px; color: var(--text-muted); }

/* ---- Pricing Table ---- */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th { background: var(--navy); color: white; padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.pricing-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; text-align: right; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--grey-100); font-size: 15px; }
.pricing-table td:last-child { text-align: right; font-weight: 700; color: var(--teal); font-family: 'Space Grotesk', sans-serif; }
.pricing-table tr:hover td { background: var(--grey-50); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-category { background: var(--grey-50) !important; }
.pricing-category td { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; padding: 10px 20px; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: white; padding: 60px 20px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--teal); }
.footer-brand p { color: var(--grey-400); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: var(--grey-400); font-size: 14px; margin-bottom: 10px; }
.footer-contact-item a { color: var(--teal-mid); font-weight: 600; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--grey-400); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-mid); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--grey-600); font-size: 13px; }
.footer-bottom a { color: var(--grey-400); font-size: 13px; }

/* ---- Suburb Landing Page ---- */
.suburb-hero { background: linear-gradient(135deg, #F0FDFA 0%, #FFFFFF 100%); padding: 60px 20px 48px; }
.suburb-hero-inner { max-width: 900px; margin: 0 auto; }
.suburb-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.suburb-breadcrumb a { color: var(--teal); font-weight: 600; }
.suburb-hero h1 { margin-bottom: 16px; }
.suburb-hero h1 span { color: var(--teal); }
.suburb-hero p { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: 28px; }
.suburb-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.suburb-stat { display: flex; flex-direction: column; }
.suburb-stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; color: var(--teal); line-height: 1; }
.suburb-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--grey-100); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--navy); cursor: pointer; background: none; border: none;
}
.faq-question:hover { color: var(--teal); }
.faq-icon { font-size: 20px; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-steps { grid-template-columns: 1fr; }
  .postcode-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-book-bar { display: flex; }
  body { padding-bottom: 80px; }
  .trust-bar-inner { gap: 16px; }
  .trust-item { font-size: 12px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 16px 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section { padding: 48px 0; }
  .booking-form-wrap { padding: 24px; }
}

/* ---- Service Detail Cards (Services Page) ---- */
.service-detail-card {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 40px 0; border-bottom: 1px solid var(--grey-100);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-icon {
  font-size: 48px; flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--teal-light); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}
.service-detail-content { flex: 1; }
.service-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; margin-bottom: 12px; flex-wrap: wrap;
}
.service-detail-header h2 { margin-bottom: 4px; font-size: 26px; }
.service-detail-subtitle { font-size: 15px; color: var(--text-muted); }
.service-detail-price {
  font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--teal); white-space: nowrap; flex-shrink: 0;
}
.service-detail-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.service-detail-content > p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.service-detail-content .service-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 24px;
}
.service-detail-content .service-features li::before { content: none; }

/* ---- Section SM ---- */
.section-sm { padding: 32px 0; }

@media (max-width: 768px) {
  .service-detail-card { flex-direction: column; gap: 20px; }
  .service-detail-header { flex-direction: column; }
  .service-detail-content .service-features { grid-template-columns: 1fr; }