/*
Theme Name: Eden Window Cleaning
Theme URI: https://edenwindowcleaning.co.uk
Author: Pro-cess
Author URI: https://pro-cess.co.uk
Description: Custom WordPress theme for Eden Window Cleaning Ltd, Doncaster. Fresh aqua and sky palette on a clean light base, with live Customizer controls for colours and fonts. Pure water window cleaning, gutters, fascias, conservatory roofs and solar panels.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eden
Tags: window-cleaning, light, fresh, custom-theme
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* =====================================================
   1. TOKENS
   ===================================================== */
:root {
  /* Palette (defaults; --primary, --deep, --accent are overridden inline
     from the Customizer so colours can be tuned without editing CSS) */
  --primary:      #2f74b5;
  --primary-dark: #275f96;
  --deep:         #143a5a;
  --deep-2:       #0d2a42;
  --accent:       #25a07d;
  --accent-dark:  #1d8568;

  --ink:   #0f172a;
  --body:  #475569;
  --muted: #64748b;
  --line:  #e2e8f0;

  --bg:      #ffffff;
  --bg-soft: #f5f9fc;
  --bg-tint: #e9f5fe;
  --white:   #ffffff;

  /* Functional */
  --success: #1d8568;
  --error:   #dc2626;

  /* Type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:  clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm:  clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg:  clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  --text-xl:  clamp(1.2rem, 1.1rem + 0.6vw, 1.45rem);
  --text-2xl: clamp(1.45rem, 1.2rem + 1.3vw, 2.05rem);
  --text-3xl: clamp(1.85rem, 1.5rem + 1.9vw, 2.6rem);
  --text-4xl: clamp(2.2rem, 1.7rem + 2.6vw, 3.2rem);
  --text-5xl: clamp(2.6rem, 1.9rem + 3.6vw, 4.2rem);

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --pad: clamp(1rem, 4vw, 2.5rem);

  /* Radii (soft, friendly) */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  /* Shadows (light theme: subtle) */
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 24px 60px rgba(15,23,42,0.14);
  --shadow-primary: 0 12px 28px rgba(47,116,181,0.28);
  --shadow-accent: 0 12px 28px rgba(37,160,125,0.30);

  /* Motion */
  --t-fast: 180ms ease;
  --t-base: 280ms ease;

  /* Layers */
  --z-header: 100;
  --z-popup:  9999;
}

/* =====================================================
   2. RESET + BASE
   ===================================================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 110px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--deep); }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--primary); color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   3. LAYOUT
   ===================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--deep {
  background: var(--deep);
  background-image: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  color: rgba(255,255,255,0.82);
}
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep .section__lead { color: rgba(255,255,255,0.78); }
.section--primary {
  background: var(--primary);
  background-image: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.92);
}
.section--primary h1, .section--primary h2, .section--primary h3, .section--primary h4 { color: #fff; }

.section__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-3xl); }
.section__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.section--deep .section__eyebrow { color: #8fc2e8; }
.section__title { font-size: var(--text-3xl); margin-bottom: var(--space-md); }
.section__lead {
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.6;
}

.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.text-center { text-align: center; }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =====================================================
   4. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--t-fast);
  line-height: 1;
  text-align: center;
}
.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.btn--primary { background: var(--primary); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: var(--shadow-primary); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost:hover { background: #fff; color: var(--deep); border-color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--line);
}
.btn--outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--white { background: #fff; color: var(--deep); border-color: #fff; }
.btn--white:hover { background: var(--bg-tint); color: var(--deep); border-color: var(--bg-tint); }
.btn--lg { padding: 1.15rem 2.3rem; font-size: var(--text-lg); }
.btn--sm { padding: 0.6rem 1.2rem; font-size: var(--text-sm); }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* =====================================================
   5. TOP TRUST STRIP
   ===================================================== */
.usp-strip {
  background: var(--deep);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.usp-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0.85rem;
}
.usp-strip i { color: #8fc2e8; }
@media (max-width: 720px) {
  .usp-strip { font-size: 0.74rem; padding: 0.45rem 0.5rem; }
  .usp-strip span { margin: 0 0.5rem; gap: 0.3rem; }
  .usp-strip span.hide-sm { display: none; }
}

/* =====================================================
   6. HEADER + NAV
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-fast), background var(--t-fast);
}
.site-header.is-scrolled { background: #fff; box-shadow: var(--shadow-md); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
  padding: 0.7rem var(--pad);
}
.brand { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.brand__logo { height: 64px; width: auto; flex-shrink: 0; }
.brand__text { line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--deep);
  display: block;
}
.brand__sub {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 480px) {
  .brand__logo { height: 52px; }
  .brand__name { font-size: var(--text-base); }
  .brand__sub { font-size: 0.58rem; letter-spacing: 0.16em; }
}

.nav { display: none; }
.nav__list { display: flex; gap: 1.5rem; align-items: center; }
.nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
}
.nav a:hover, .nav a.is-active { color: var(--primary-dark); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--primary); transform: scaleX(0);
  transform-origin: left; transition: transform var(--t-fast);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
@media (min-width: 1024px) { .nav { display: block; } }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-phone {
  display: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--deep);
  white-space: nowrap;
}
.header-phone i { color: var(--accent); margin-right: 0.35rem; }
.header-cta { display: none; }
@media (min-width: 600px) { .header-phone { display: inline-flex; align-items: center; } }
@media (min-width: 760px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--deep);
  font-size: 1.15rem;
  background: #fff;
}
.menu-toggle:hover { border-color: var(--primary); color: var(--primary); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--deep);
  background-image: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  z-index: 10000;
  padding: 5.5rem var(--pad) 3rem;
  transform: translateX(100%);
  transition: transform var(--t-base);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.3rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 2rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #fff;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__contact { padding-top: 1.5rem; }
.mobile-nav__contact p { color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; }
.mobile-nav__contact a { color: #8fc2e8; }

/* =====================================================
   7. HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: clamp(540px, 72vh, 760px);
  overflow: hidden;
  display: flex; align-items: center;
  background: var(--deep);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(13,42,66,0.92) 0%, rgba(13,42,66,0.85) 50%, rgba(18,52,80,0.7) 78%, rgba(20,58,90,0.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 4rem 0;
  max-width: 720px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-pill);
}
.hero__badge i { color: #5cc6a4; }
.hero__title {
  font-size: var(--text-5xl);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: #fff;
  text-shadow: 0 2px 22px rgba(13,42,66,0.55);
}
.hero__title .ink { color: #8fc2e8; }
.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  text-shadow: 0 1px 12px rgba(13,42,66,0.7);
}
.hero__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero__trust {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
}
.hero__trust .stars { color: #fbbf24; letter-spacing: 0.1em; }
.hero__trust strong { color: #fff; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--deep);
  background-image: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  color: #fff;
}
.page-hero__eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fc2e8;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: block;
}
.page-hero h1 { font-size: var(--text-4xl); color: #fff; }
.page-hero p {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  color: rgba(255,255,255,0.82);
  font-size: var(--text-lg);
}
.page-hero .breadcrumbs { justify-content: center; }

/* =====================================================
   8. USP CARDS UNDER HERO
   ===================================================== */
.usp-cards {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: var(--space-2xl) 0;
}
.usp-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}
.usp-card {
  display: flex; align-items: center; gap: 0.85rem;
  text-align: left;
}
.usp-card__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: var(--bg-tint);
  font-size: 1.35rem;
  border-radius: var(--radius-md);
}
.usp-card__label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
}
.usp-card__sub { font-size: 0.82rem; color: var(--muted); }

/* =====================================================
   9. CREDENTIAL BADGES
   ===================================================== */
.cred-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cred-row--center { justify-content: center; }
.cred-badge {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  background: var(--bg-tint);
  color: var(--deep);
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.cred-badge i { color: var(--accent); }
.section--deep .cred-badge { background: rgba(255,255,255,0.1); color: #fff; }
.section--deep .cred-badge i { color: #5cc6a4; }

/* =====================================================
   10. FEATURE CARDS
   ===================================================== */
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: var(--bg-tint);
  font-size: 1.6rem;
  border-radius: var(--radius-md);
}
.feature-card h3, .feature-card h4 { margin-bottom: var(--space-sm); font-size: var(--text-lg); }
.feature-card p { color: var(--muted); font-size: var(--text-sm); }

/* =====================================================
   11. SERVICES GRID
   ===================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  text-align: left;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #bae6fd; }
.service__icon {
  width: 58px; height: 58px;
  margin-bottom: var(--space-md);
  color: #fff;
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.service__name { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
.service__desc { font-size: var(--text-sm); color: var(--muted); flex: 1; margin-bottom: var(--space-md); }
.service__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); margin-top: auto; }
.service__price { font-family: var(--font-display); font-weight: 700; color: var(--deep); font-size: var(--text-base); }
.service__price span { font-weight: 500; color: var(--muted); font-size: 0.78rem; display: block; }
.service__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--primary-dark);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.service__link i { transition: transform var(--t-fast); }
.service:hover .service__link i { transform: translateX(3px); }

/* Service detail (single service page) */
.service-detail { display: grid; gap: var(--space-2xl); align-items: start; }
@media (min-width: 900px) { .service-detail { grid-template-columns: 1.4fr 1fr; gap: var(--space-4xl); } }
.service-detail__body p { color: var(--body); }
.service-includes {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}
.service-includes h3 { font-size: var(--text-lg); margin-bottom: var(--space-md); }
.tick-list { display: grid; gap: 0.7rem; }
.tick-list li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--body); font-size: var(--text-sm); }
.tick-list i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }

/* =====================================================
   12. STEPS (how it works)
   ===================================================== */
.steps { display: grid; gap: var(--space-xl); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { position: relative; text-align: center; padding: var(--space-md); }
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: #fff;
  background: linear-gradient(150deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-sm); }
.step p { color: var(--muted); font-size: var(--text-sm); }

/* =====================================================
   13. ABOUT
   ===================================================== */
.about { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 1fr 1.05fr; gap: var(--space-4xl); } }
.about__media {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about__copy h2 { margin-bottom: var(--space-md); }
.about__copy p { color: var(--body); }
.about__creds { margin-top: var(--space-lg); }

/* Stat band */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-xl); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: var(--text-4xl); color: #fff; line-height: 1; }
.stat__label { color: rgba(255,255,255,0.8); font-size: var(--text-sm); margin-top: 0.4rem; }

/* =====================================================
   14. TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial-card__stars { color: #fbbf24; margin-bottom: var(--space-md); font-size: var(--text-base); }
.testimonial-card__quote { color: var(--body); margin-bottom: var(--space-md); flex: 1; }
.testimonial-card__author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--text-sm);
  display: flex; align-items: center; gap: 0.5rem;
}
.testimonial-card__author i { color: var(--accent); }

/* =====================================================
   14b. WORK GALLERY
   ===================================================== */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 920px) { .work-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .work-gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); } }
.work-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}
.work-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}
.work-gallery__item:hover img { transform: scale(1.05); }

/* =====================================================
   15. FORMS
   ===================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: var(--space-md); }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-row input:not([type=checkbox]):not([type=radio]),
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-row input:not([type=checkbox]):not([type=radio]):focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,116,181,0.15);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row--inline { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 600px) { .form-row--inline { grid-template-columns: 1fr; } }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.6rem; }
.checkbox-tile {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.checkbox-tile:hover { border-color: var(--primary); background: var(--bg-tint); }
.checkbox-tile input { width: auto; accent-color: var(--accent); }

.form-note { font-size: var(--text-sm); color: var(--muted); margin-top: var(--space-sm); }
.form-alert { padding: var(--space-md) var(--space-lg); border-radius: var(--radius-sm); margin-bottom: var(--space-lg); font-size: var(--text-sm); }
.form-alert--ok { border: 1px solid var(--success); color: var(--success); background: rgba(22,163,74,0.07); }
.form-alert--err { border: 1px solid var(--error); color: var(--error); background: rgba(220,38,38,0.06); }

/* =====================================================
   16. CONTACT INFO CARDS
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--space-md);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto var(--space-md);
  color: var(--primary);
  background: var(--bg-tint);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
}
.contact-card h4 { font-size: var(--text-base); margin-bottom: 0.35rem; }
.contact-card p, .contact-card a { color: var(--body); font-size: var(--text-sm); word-break: break-word; }
.contact-card a:hover { color: var(--primary-dark); }

/* =====================================================
   17. FAQ ACCORDION
   ===================================================== */
.faq { display: grid; gap: var(--space-sm); max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
  cursor: pointer;
}
.faq__q::after { content: '+'; color: var(--primary); font-size: 1.5rem; transition: transform var(--t-fast); flex-shrink: 0; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 350ms ease; padding: 0 var(--space-lg); }
.faq__item.is-open .faq__a { max-height: 600px; padding: 0 var(--space-lg) var(--space-md); }
.faq__a p { color: var(--body); font-size: var(--text-sm); }

/* =====================================================
   18. PROSE (articles + legal pages)
   ===================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: var(--text-2xl); margin: var(--space-2xl) 0 var(--space-md); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--text-lg); margin: var(--space-xl) 0 var(--space-sm); }
.prose p { color: var(--body); margin-bottom: var(--space-md); }
.prose ul, .prose ol { margin: 0 0 var(--space-md) 1.3rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { color: var(--body); margin-bottom: 0.45rem; padding-left: 0.2rem; }
.prose a { color: var(--primary-dark); text-decoration: underline; }
.prose strong { color: var(--ink); }
.legal-meta { color: var(--muted); font-size: var(--text-sm); margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--line); }

/* =====================================================
   19. AREA / LINK CARDS
   ===================================================== */
.area-card {
  display: flex; align-items: center; gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  color: var(--ink);
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #bae6fd; color: var(--ink); }
.area-card__icon { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }
.area-card__name { font-family: var(--font-display); font-weight: 600; }
.area-card__sub { font-size: 0.78rem; color: var(--muted); }

/* =====================================================
   20. BOOKING EMBED
   ===================================================== */
.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.booking-embed iframe { width: 100%; min-height: 760px; border: 0; display: block; }
.booking-fallback {
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

/* =====================================================
   21. FOOTER
   ===================================================== */
.site-footer {
  background: var(--deep);
  background-image: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  color: rgba(255,255,255,0.72);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: var(--text-base); color: #fff; margin-bottom: var(--space-md); }
.footer-brand__logo { height: 60px; width: auto; margin-bottom: var(--space-md); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.7); }
.footer-col p { color: rgba(255,255,255,0.7); font-size: var(--text-sm); line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.75); display: block; padding: 0.2rem 0; font-size: var(--text-sm); }
.footer-col a:hover { color: #8fc2e8; }
.footer-col a i { width: 18px; color: #8fc2e8; margin-right: 0.4rem; }
.footer-col__social { display: flex; gap: 0.55rem; margin-top: var(--space-md); }
.footer-col__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; padding: 0;
}
.footer-col__social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-lg);
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: #8fc2e8; }

/* =====================================================
   22. BREADCRUMBS
   ===================================================== */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.3rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: var(--space-sm); }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { opacity: 0.5; }

/* =====================================================
   23. SCROLL REVEAL
   ===================================================== */
/* Hidden only when JS is confirmed running (html.ewc-js); without JS the
   content stays fully visible so nothing is ever lost to a script failure. */
.ewc-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }
.ewc-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 90ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================
   24. STICKY MOBILE CTA
   ===================================================== */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(15,23,42,0.08);
  padding: 0.5rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}
.mobile-cta-bar a {
  text-align: center;
  padding: 0.65rem 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}
.mobile-cta-bar a i { color: var(--primary); }
.mobile-cta-bar a.is-whatsapp i { color: #25d366; }
.mobile-cta-bar a.is-primary { background: var(--accent); color: #fff; }
.mobile-cta-bar a.is-primary i { color: #fff; }
@media (min-width: 760px) { .mobile-cta-bar { display: none; } }
@media (max-width: 759px) { body { padding-bottom: 62px; } }

/* =====================================================
   25. FLOATING WHATSAPP
   ===================================================== */
.wa-float {
  position: fixed;
  right: 18px; bottom: 80px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  z-index: 95;
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@media (min-width: 760px) { .wa-float { bottom: 24px; } }

/* =====================================================
   26. WP CORE OVERRIDES
   ===================================================== */
.alignleft  { float: left; margin: 0 var(--space-md) var(--space-md) 0; }
.alignright { float: right; margin: 0 0 var(--space-md) var(--space-md); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text { font-size: var(--text-sm); color: var(--muted); text-align: center; margin-top: 0.4rem; }
.screen-reader-text { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; left: 1rem; top: 1rem; z-index: 100000; background: #fff; padding: 0.6rem 1rem; border-radius: var(--radius-sm); }
