/*
   Better Call Wes — Design System v2 "Signwritten"
   Premium-craft execution of the trusted-local-trade register.
   One family (Archivo, variable width), committed navy, orange = action only.
   No glassmorphism, no gradient text, no icon-card template grids.
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,62..125,100..900;1,62..125,100..900&display=swap');

:root {
  /* ── Brand colour (identity, untouched) ── */
  --color-primary: #0F2942;
  --color-primary-light: #1A3A5A;
  --color-primary-deep: #0A1E33;

  --color-accent: #FF6B00;
  --color-accent-hover: #E35D00;
  --color-accent-glow: rgba(255, 107, 0, 0.35);

  /* WhatsApp green is reserved for WhatsApp actions only */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE5D;

  /* ── Neutrals, tinted toward the navy hue (never pure black/white) ── */
  --color-bg: oklch(0.978 0.005 245);
  --color-bg-alt: oklch(0.958 0.007 245);
  --color-white: oklch(0.995 0.002 245);

  --text-dark: oklch(0.24 0.03 250);
  --text-body: oklch(0.42 0.025 250);
  --text-light: oklch(0.56 0.02 250);
  --text-white: oklch(0.985 0.004 245);
  --text-white-muted: oklch(0.985 0.004 245 / 0.78);

  /* Hairlines */
  --line: oklch(0.88 0.012 250);
  --line-strong: oklch(0.80 0.018 250);
  --line-on-dark: oklch(0.985 0.004 245 / 0.14);

  /* ── Layout ── */
  --container-width: 1200px;

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ── Elevation: quiet by default, earned on hover ── */
  --shadow-sm: 0 1px 2px oklch(0.24 0.03 250 / 0.06), 0 1px 3px oklch(0.24 0.03 250 / 0.05);
  --shadow-md: 0 4px 12px -2px oklch(0.24 0.03 250 / 0.10);
  --shadow-lg: 0 16px 32px -8px oklch(0.24 0.03 250 / 0.16);
  --shadow-xl: 0 24px 48px -12px oklch(0.24 0.03 250 / 0.20);
  --shadow-accent: 0 8px 24px -6px var(--color-accent-glow);
  --shadow-inner: inset 0 1px 0 oklch(1 0 0 / 0.06);

  /* ── Type ── */
  --font: 'Archivo', system-ui, -apple-system, sans-serif;
  --stretch-display: 118%;
  --stretch-label: 108%;

  /* ── Motion ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms;
  --t-med: 280ms;
}

/* ════════════════════ Reset & base ════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease-out);
}

::selection {
  background: var(--color-primary);
  color: var(--text-white);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════ Typography ════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-stretch: var(--stretch-display);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 4.6vw + 1rem, 4.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.75rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.2rem, 0.6vw + 1rem, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.008em;
}

.lead {
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.3rem);
  line-height: 1.55;
  color: var(--text-body);
}

strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* On dark surfaces, strong inherits the light text colour */
.hero-home strong, .hero strong, .page-hero strong, .area-hero strong,
.section-navy strong, .cta-section strong, .craft-band-overlay strong,
.trust-strip strong, .footer strong {
  color: inherit;
}

/* Eyebrow label above headings */
.section-label {
  display: inline-block;
  font-stretch: var(--stretch-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

/* ════════════════════ Layout ════════════════════ */

.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--roomy { padding: clamp(5.5rem, 11vw, 9rem) 0; }

.section-gray {
  background: var(--color-bg-alt);
}

.section-navy {
  background: var(--color-primary);
}
.section-navy h2, .section-navy h3 { color: var(--text-white); }
.section-navy p { color: var(--text-white-muted); }

.section-header {
  max-width: 680px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}

.section-header p { margin-inline: auto; }

.section-header p {
  margin-top: 0.85rem;
  font-size: 1.1rem;
  color: var(--text-body);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.grid-booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ════════════════════ Buttons ════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.9rem;
  font-family: var(--font);
  font-stretch: var(--stretch-label);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.005em;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--text-white);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--text-white);
}
.btn-dark:hover {
  background: var(--color-primary-light);
  color: var(--text-white);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--text-white);
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-hover);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

/* On navy surfaces */
.section-navy .btn-outline,
.hero-home .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline,
.area-hero .btn-outline,
.cta-section .btn-outline {
  color: var(--text-white);
  border-color: oklch(0.985 0.004 245 / 0.45);
}
.section-navy .btn-outline:hover,
.hero-home .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.area-hero .btn-outline:hover,
.cta-section .btn-outline:hover {
  background: var(--text-white);
  color: var(--color-primary);
  border-color: var(--text-white);
}

/* Inline text link with arrow */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  transition: color var(--t-fast) var(--ease-out), gap var(--t-fast) var(--ease-out);
}
.learn-more:hover {
  color: var(--color-accent);
  gap: 0.7rem;
}

/* ════════════════════ Header & navigation ════════════════════ */

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-med) var(--ease-out);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.nav-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  font-size: 0.95rem;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
}
.nav-phone:hover { color: var(--color-accent); }

.main-nav .btn {
  margin-left: 0.4rem;
  min-height: 46px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              visibility var(--t-fast);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}

.dropdown-item:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 0.5rem 0;
}

/* Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.mobile-menu-btn:hover { background: var(--color-bg-alt); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 1rem;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-accent); }

.top-bar { display: none; }

/* ════════════════════ Hero system ════════════════════ */

/* Homepage hero: navy-drenched, two-column, photo right */
.hero-home {
  background: var(--color-primary);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.hero-home .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-home h1 {
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.hero-home .lead {
  color: var(--text-white-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white-muted);
  margin-bottom: 1.5rem;
}

.rating-badge .stars {
  color: var(--color-accent);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

/* Trust strip folded into the hero bottom */
.trust-strip {
  border-top: 1px solid var(--line-on-dark);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white-muted);
}

.trust-strip i,
.trust-strip svg {
  width: 17px;
  height: 17px;
  color: var(--color-accent);
}

/* Interior page hero (services hub, about, contact etc.) */
.hero,
.page-hero {
  position: relative;
  background: var(--color-primary);
  color: var(--text-white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.page-hero h1,
.hero h1 { color: var(--text-white); }

.page-hero p,
.hero p { color: var(--text-white-muted); }

/* Legacy photo-bg heroes keep working */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.23 0.045 250 / 0.94) 0%, oklch(0.23 0.045 250 / 0.82) 55%, oklch(0.23 0.045 250 / 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* Typographic area hero for location pages */
.area-hero {
  background: var(--color-primary);
  color: var(--text-white);
  padding: clamp(3.5rem, 8vw, 6rem) 0 0;
}

.area-hero .container {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.area-hero .crumb {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white-muted);
  margin-bottom: 1.4rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.area-hero .crumb a:hover { color: var(--color-accent); }

.area-hero h1 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.area-hero .lead {
  color: var(--text-white-muted);
  margin-bottom: 1.75rem;
}

.area-postcodes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.area-postcodes .badge {
  background: oklch(0.985 0.004 245 / 0.08);
  border: 1px solid var(--line-on-dark);
  color: var(--text-white);
}

/* ════════════════════ Asymmetric service rows (homepage) ════════════════════ */

.svc-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(1.75rem, 4.5vw, 4rem);
  align-items: center;
}

.svc-row:nth-child(even) .svc-row-media { order: 2; }

.svc-row-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.svc-row-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.svc-row:hover .svc-row-media img {
  transform: scale(1.025);
}

.svc-row-body h3 {
  font-size: clamp(1.45rem, 1.4vw + 1rem, 1.9rem);
  margin-bottom: 0.8rem;
}

.svc-row-body p {
  margin-bottom: 1.1rem;
}

.svc-price {
  display: block;
  font-weight: 800;
  font-stretch: var(--stretch-label);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 1.3rem;
}

.svc-price em {
  font-style: normal;
  color: var(--color-accent);
}

/* ════════════════════ Legacy service cards (hub + interior pages) ════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out);
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card > img {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.4rem;
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.98rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  margin-bottom: 1.1rem;
}

.service-icon i, .service-icon svg { width: 22px; height: 22px; }

/* ════════════════════ Numbered editorial list (replaces icon-card grids) ════════════════════ */

.num-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  counter-reset: numlist;
}

.num-item {
  counter-increment: numlist;
  border-top: 2px solid var(--color-primary);
  padding-top: 1.4rem;
}

.num-item::before {
  content: counter(numlist, decimal-leading-zero);
  display: block;
  font-weight: 800;
  font-stretch: var(--stretch-display);
  font-size: 1rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.num-item h3 { margin-bottom: 0.6rem; }
.num-item p { font-size: 0.99rem; }

/* Legacy why-choose compat, restyled to match */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.why-choose-card {
  background: none;
  border-top: 2px solid var(--color-primary);
  padding-top: 1.4rem;
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* ════════════════════ Badges / postcode chips ════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out);
}

a.badge:hover, .badge:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-white);
}

/* ════════════════════ Reviews ════════════════════ */

.stars {
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.review-stat {
  background: var(--color-white);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.review-stat-number {
  display: block;
  font-weight: 800;
  font-stretch: var(--stretch-display);
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  color: var(--color-primary);
  line-height: 1.1;
}

.review-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.testimonial-card,
.review-card {
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.review-quote {
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0.9rem 0 1.2rem;
}

.review-name {
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--color-primary);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ════════════════════ FAQ ════════════════════ */

.faq-item {
  background: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  overflow: hidden;
}

.faq-item:first-of-type { border-top: 1px solid var(--line); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0.25rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1.08rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--text-dark);
  cursor: pointer;
  gap: 1rem;
  min-height: 44px;
}

.faq-question:hover { color: var(--color-accent); }

.faq-question i, .faq-question svg {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--t-med) var(--ease-out);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 360ms var(--ease-out);
}

.faq-answer > * {
  min-height: 0;
  padding: 0 0.25rem;
}

.faq-answer p {
  padding-bottom: 1.35rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 65ch;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }

/* ════════════════════ Price anchor & included list (service template) ════════════════════ */

.price-anchor {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.price-anchor .amount {
  font-weight: 800;
  font-stretch: var(--stretch-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-primary);
  line-height: 1;
}

.price-anchor .note {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.included-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  color: var(--text-body);
}

.included-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.22em;
  border-radius: 50%;
  background: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ════════════════════ Job gallery ════════════════════ */

.job-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.job-gallery figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--line);
}

.job-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.job-gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ════════════════════ Manufacturer trust badges ════════════════════ */

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter var(--t-med) var(--ease-out);
}

.trust-badge:hover img { filter: none; }

.trust-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ════════════════════ CTA band ════════════════════ */

.cta-section {
  background: var(--color-primary);
  color: var(--text-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 0.9rem;
}

.cta-section p {
  color: var(--text-white-muted);
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════ Footer ════════════════════ */

.footer {
  background: var(--color-primary-deep);
  color: var(--text-white-muted);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
  font-size: 0.96rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 3rem;
}

.footer-brand .logo img { height: 64px; }

.footer-brand p {
  margin-top: 1.1rem;
  line-height: 1.65;
  max-width: 38ch;
}

.footer h3 {
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--text-white-muted);
  transition: color var(--t-fast) var(--ease-out);
}

.footer-links a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding: 1.4rem 0;
  font-size: 0.88rem;
}

.footer-bottom a { color: var(--text-white-muted); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ════════════════════ Floating mobile CTAs ════════════════════ */

.floating-cta-group {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1100;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: flex-end;
}

.floating-book,
.floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-stretch: var(--stretch-label);
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
  transition: transform var(--t-fast) var(--ease-out);
}

.floating-book { background: var(--color-accent); }
.floating-cta { background: var(--color-whatsapp); }

.floating-book:hover,
.floating-cta:hover {
  transform: translateY(-2px);
  color: var(--text-white);
}

@media (min-width: 768px) {
  .floating-cta-group, .floating-cta { display: none; }
}

/* ════════════════════ Legacy compatibility (restyled, no glass) ════════════════════ */

.glass-card-luxury {
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--text-white);
  font-weight: 800;
  font-stretch: var(--stretch-display);
}

.leave-review-section { background: var(--color-bg-alt); }
.leave-review-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.leave-review-step {
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

/* ════════════════════ Homepage components ════════════════════ */

.dropdown-heading {
  padding: 0.4rem 1.15rem 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.dropdown-item-all {
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Craftsmanship visual band */
.craft-band {
  position: relative;
  height: clamp(260px, 36vw, 380px);
  overflow: hidden;
}

.craft-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, oklch(0.23 0.045 250 / 0.88) 0%, oklch(0.23 0.045 250 / 0.45) 60%, oklch(0.23 0.045 250 / 0.12) 100%);
}

.craft-band-overlay h2 {
  color: var(--text-white);
  margin-bottom: 0.7rem;
  font-size: clamp(1.6rem, 2.4vw + 0.6rem, 2.3rem);
}

.craft-band-overlay p {
  color: var(--text-white-muted);
  font-size: 1.08rem;
  max-width: 46ch;
}

/* Quote-first card inside booking band */
.quote-first-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.quote-first-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.7rem;
}

.quote-first-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* Included list on navy */
.included-list-dark li { color: var(--text-white-muted); }

/* Meet Wes */
.meet-wes-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cred-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.cred-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--text-dark);
  font-size: 0.98rem;
}

.cred-row i, .cred-row svg {
  width: 19px;
  height: 19px;
  color: var(--color-accent);
}

/* Area badge groups */
.badge-anchor {
  font-size: 1.05rem;
  padding: 0.65rem 1.6rem;
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-white);
}

.badge-anchor:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

.area-group-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 auto 0.8rem;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

/* FAQ via details/summary */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child { border-top: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0.25rem;
  font-size: 1.08rem;
  font-weight: 700;
  font-stretch: var(--stretch-label);
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  transition: color var(--t-fast) var(--ease-out);
}

.faq-list summary:hover { color: var(--color-accent); }
.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-list details[open] summary::after { content: "\2212"; }

.faq-list details p {
  padding: 0 0.25rem 1.3rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 65ch;
}

.inline-link {
  color: var(--color-accent);
  font-weight: 600;
}
.inline-link:hover { text-decoration: underline; }

/* ════════════════════ Reviews page: Google banner ════════════════════ */

.google-rating-banner {
  background: var(--color-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.google-rating-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.google-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-logo-wrap svg { flex-shrink: 0; }

.google-logo-wrap span {
  font-weight: 700;
  font-stretch: var(--stretch-label);
  font-size: 1.4rem;
  color: var(--text-dark);
}

.google-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.google-stars {
  display: flex;
  gap: 0.2rem;
  color: #FBBC04;
  font-size: 1.4rem;
}

.google-rating-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.google-rating-text strong {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 800;
}

.btn-google {
  background: var(--color-white);
  color: #1a73e8;
  border: 1px solid var(--line);
}
.btn-google:hover { color: #1557b0; box-shadow: var(--shadow-md); }
.btn-google svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .google-rating-banner { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; }
  .google-rating-info { flex-direction: column; gap: 1rem; }
}

/* ════════════════════ Two-column hero variant (some service pages) ════════════════════ */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-grid .hero-content { max-width: none; }

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero { background: var(--color-primary); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrapper { max-width: 520px; }
}

/* ════════════════════ Motion: hero entrance ════════════════════ */

@media (prefers-reduced-motion: no-preference) {
  .hero-home .hero-copy > * {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 700ms var(--ease-out) forwards;
  }
  .hero-home .hero-copy > *:nth-child(1) { animation-delay: 60ms; }
  .hero-home .hero-copy > *:nth-child(2) { animation-delay: 140ms; }
  .hero-home .hero-copy > *:nth-child(3) { animation-delay: 220ms; }
  .hero-home .hero-copy > *:nth-child(4) { animation-delay: 300ms; }

  .hero-home .hero-media {
    opacity: 0;
    animation: fade 900ms var(--ease-out) 250ms forwards;
  }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade {
  to { opacity: 1; }
}

/* ════════════════════ Responsive ════════════════════ */

@media (max-width: 1024px) {
  .main-nav .nav-link, .main-nav .dropdown { display: none; }
  .nav-phone { display: none; }
  .main-nav .btn { margin-left: 0; }
  .mobile-menu-btn { display: inline-flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-home .container {
    grid-template-columns: 1fr;
    padding-top: 2.75rem;
    padding-bottom: 2.5rem;
  }

  .hero-media { max-width: 540px; }
  .hero-media img { aspect-ratio: 16 / 11; }

  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row-media { order: 0; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }

  .logo img { height: 42px; }

  .hero-cta-row .btn { width: 100%; }

  .trust-strip .container {
    gap: 0.45rem 1.5rem;
    justify-content: flex-start;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
}
