/* ==========================================================================
   Elite HC Service — Design tokens
   ========================================================================== */
:root {
  --color-primary: #3B4B34;      /* Dark Olive */
  --color-secondary: #E8DCC3;    /* Warm Beige */
  --color-bg: #FAF7F2;           /* Soft White */
  --color-accent: #C8A15A;       /* Gold */
  --color-supporting: #6F7F5D;   /* Sage Green */
  --color-text: #2B2B2B;         /* Charcoal */
  --color-taupe: #B9B3A6;        /* Light Taupe */
  --color-sage-light: #D7DDD1;   /* Light Sage */
  --color-gold-soft: #E6C989;    /* Soft Gold */
  --color-white: #FFFFFF;

  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(43, 43, 43, 0.06);
  --shadow-md: 0 12px 32px rgba(43, 43, 43, 0.12);

  --container-max: 1660px;
  --transition: 200ms ease-out;

  --z-fab: 20;
  --z-header: 30;
  --z-dropdown: 40;
  --z-lightbox: 50;
}

@media (max-width: 699px) {
  :root { --space-5: 2.25rem; }
}

@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;
  }
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
  color: var(--color-primary);
}
h3 { font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-2); max-width: 68ch; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (max-width: 699px) {
  .container { padding: 0 16px; }
}
@media (min-width: 1400px) {
  .container { padding: 0 var(--space-6); }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-3);
  z-index: 100;
}
.skip-link:focus {
  left: var(--space-2);
  top: var(--space-2);
}

.eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-supporting);
  margin: 0 0 var(--space-3);
  padding-bottom: var(--space-2);
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}
.eyebrow-inverse { color: var(--color-gold-soft); }
.eyebrow-inverse::after { background: var(--color-gold-soft); }
.story-copy .eyebrow::after,
.quote-block-copy .eyebrow::after { left: 0; transform: none; }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
@media (max-width: 699px) {
  .section-head { margin-bottom: var(--space-4); }
}
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
.section-subtitle { color: var(--color-text); opacity: 0.8; margin: 0 auto; font-size: 1.05rem; }

section { padding: var(--space-7) 0; }
@media (max-width: 699px) {
  section { padding: var(--space-6) 0; }
}

/* ---- Scroll reveal ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.service-card[data-reveal],
.why-grid [data-reveal],
.gallery-item[data-reveal],
.ba-slider[data-reveal] { transition-delay: var(--reveal-delay, 0ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  border-radius: 999px;
  padding: 0.9rem 1.85rem;
  min-height: 44px;
  box-sizing: border-box;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn::after {
  content: "\2192";
  display: inline-block;
  transition: transform var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:hover::after { transform: translateX(3px); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover { background: #2d3a28; }
.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-accent:hover { background: var(--color-gold-soft); }
.btn-ghost {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-ghost:hover { background: var(--color-primary); color: var(--color-white); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-block::after { content: none; }
.btn-block { width: 100%; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1.5px solid var(--color-accent);
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}
.card-link:hover { color: var(--color-supporting); gap: 0.6em; }

.stars { color: var(--color-accent); letter-spacing: 2px; font-size: 0.95rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(59, 75, 52, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);

}
.logo-img { height: 82px; width: auto; }
@media (max-width: 1199px) {

  .logo-img { height: 78px; }
}

.main-nav { display: none; }
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: nowrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-primary); border-color: var(--color-accent); }
.nav-link[aria-current="page"] { color: var(--color-primary); border-color: var(--color-accent); }

.has-dropdown { position: relative; }
.nav-dropdown-toggle svg { transition: transform var(--transition); }
.has-dropdown:hover .nav-dropdown-toggle svg,
.has-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: var(--space-1) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: var(--z-dropdown);
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text);
}
.dropdown li a:hover { background: var(--color-secondary); color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
@media (max-width: 1199px) {
  .header-cta { display: none; }
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--color-primary);
  transition: background-color var(--transition), color var(--transition);
}
.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-phone:hover { background: var(--color-primary); color: var(--color-white); }
@media (max-width: 1199px) {
  .header-phone { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
@media (max-width: 1199px) {
  .main-nav {
    display: block;
    position: fixed;
    inset: 0;
    top: 76px;
    background: var(--color-bg);
    padding: var(--space-4);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: var(--z-dropdown);
    overflow-y: auto;
  }
  .main-nav { top: var(--header-height, 76px); }
  .main-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: var(--space-1); width: 100%; }
  .nav-link { width: 100%; padding: 0.9rem 0; font-size: 1.05rem; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    display: none;
    width: 100%;
    padding-left: var(--space-3);
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
}
@media (min-width: 1200px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero--video {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 92vh;
  min-height: 92svh;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-primary);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 32%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.08) 80%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 30%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy { max-width: 640px; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: var(--space-3);
  text-wrap: balance;
  color: var(--color-white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero-subtitle {
  font-size: 1.15rem;
  max-width: 52ch;
  color: var(--color-bg);
  opacity: 0.95;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 699px) {
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.72) 100%);
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 var(--space-3);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
@media (max-width: 599px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: var(--space-3); }
  .hero-stat { padding-left: var(--space-2)!important; }
}
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-left: var(--space-4);
}
.hero-stat:first-child { padding-left: 0!important; }
.hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.hero-stat:first-child::before { display: none; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-bg);
  opacity: 0.85;
}
.hero-copy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}
.hero-copy .btn-ghost:hover { background: var(--color-white); color: var(--color-primary); }

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  background: var(--color-secondary);
  padding: var(--space-4) 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-primary);
  position: relative;
  padding: 0.25rem 0;
}
.trust-icon {
  width: 40px;
  height: 40px;
  padding: 9px;
  flex-shrink: 0;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(var(--space-2) * -1);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: var(--color-taupe);
    opacity: 0.5;
  }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.service-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(59, 75, 52, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.service-card-media {
  position: relative;
  aspect-ratio: 4/2.5;
  overflow: hidden;
  background: var(--color-secondary);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: top;
  transition: transform 450ms ease-out;
}
.service-card:hover .service-card-media img { transform: scale(1.07); }
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}
.service-number {
  position: absolute;
  z-index: 1;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}
.service-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-4);
}
.service-card-body h3 { font-size: 1.25rem; margin-top: var(--space-1); margin-bottom: var(--space-1); }
.service-card-body p { opacity: 0.85; font-size: 0.95rem; }
.service-card-body .card-link { margin-top: auto; padding-top: var(--space-2); align-self: flex-start; }

.service-card[data-reveal]:nth-child(1) { --reveal-delay: 0ms; }
.service-card[data-reveal]:nth-child(2) { --reveal-delay: 80ms; }
.service-card[data-reveal]:nth-child(3) { --reveal-delay: 160ms; }
.service-card[data-reveal]:nth-child(4) { --reveal-delay: 240ms; }
.service-card[data-reveal]:nth-child(5) { --reveal-delay: 320ms; }
.service-card[data-reveal]:nth-child(6) { --reveal-delay: 400ms; }

.service-card--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4);
}
.service-card-logo {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
.service-card-tagline {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0;
}

@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Get Instant Quote block
   ========================================================================== */
.quote-block {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
}
.quote-block-copy {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: var(--space-6) var(--space-4);
}
.quote-block-copy::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: var(--quote-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(32px) saturate(1.15);
  transform: scale(1.1);
  z-index: -1;
}
.quote-block-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 75, 52, 0.68), rgba(30, 38, 26, 0.82));
  z-index: -1;
}
@media (max-width: 699px) {
  .quote-block-copy { padding: var(--space-5) var(--space-3); }
}
.quote-block h2 { color: var(--color-white); font-size: clamp(1.6rem, 3vw, 2.2rem); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35); }
.quote-block-highlight {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.quote-block-text { color: var(--color-secondary); opacity: 0.95; margin: 0 0 var(--space-4); max-width: 46ch; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); }
.quote-block-media {
  position: relative;
  min-height: 240px;
}
.quote-block-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: top;
  display: block;
}

@media (min-width: 700px) {
  .quote-block { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .quote-block-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: var(--space-7) var(--space-6); }
  .quote-block-media { min-height: 100%; }
}

/* ==========================================================================
   Our Story
   ========================================================================== */
.story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
.story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-image: var(--story-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 3/2;
}
@media (min-width: 900px) {
  .story-inner { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
  .story-media { height: 100%; aspect-ratio: auto; }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-us { background: var(--color-secondary); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
.why-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background-image: var(--why-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 4/3;
  width: 100%;
}
.why-section-head {
  text-align: left;
  max-width: none;
  margin: 0 0 var(--space-4);
}
.why-section-head .eyebrow::after { left: 0; transform: none; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.why-item {
  position: relative;
  background: var(--color-bg);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: border-box;
  color: var(--color-accent);
  background: var(--color-secondary);
  border-radius: 50%;
  margin-bottom: var(--space-2);
}
.why-item h3 { font-size: 1.15rem; }
.why-item p { opacity: 0.85; font-size: 0.95rem; margin: 0; }
.why-grid [data-reveal]:nth-child(1) { --reveal-delay: 0ms; }
.why-grid [data-reveal]:nth-child(2) { --reveal-delay: 90ms; }
.why-grid [data-reveal]:nth-child(3) { --reveal-delay: 180ms; }
.why-grid [data-reveal]:nth-child(4) { --reveal-delay: 270ms; }

@media (min-width: 560px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .why-us-inner { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
  .why-media { height: 100%; aspect-ratio: auto; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-swiper {
  width: 100%;
}
.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: var(--space-4);
}
.gallery-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.3;
  width: 8px;
  height: 8px;
}
.gallery-pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--color-accent); }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-out;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(59,75,52,0.28), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(4n+1) { --reveal-delay: 0ms; }
.gallery-item:nth-child(4n+2) { --reveal-delay: 90ms; }
.gallery-item:nth-child(4n+3) { --reveal-delay: 180ms; }
.gallery-item:nth-child(4n+4) { --reveal-delay: 270ms; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(43, 43, 43, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  color: var(--color-white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.12); }
.lightbox-close { top: var(--space-3); right: var(--space-3); }
.lightbox-close svg, .lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-prev { left: var(--space-2); }
.lightbox-next { right: var(--space-2); }
@media (min-width: 700px) {
  .lightbox-prev { left: var(--space-5); }
  .lightbox-next { right: var(--space-5); }
}

/* ==========================================================================
   Before & After
   ========================================================================== */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (max-width: 699px) {
  .ba-grid { gap: var(--space-3); }
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
}
.ba-slider:focus-within { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.ba-img-after { z-index: 0; }
.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-label {
  position: absolute;
  top: var(--space-2);
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(43, 43, 43, 0.55);
  color: var(--color-white);
  pointer-events: none;
}
.ba-label-before { left: var(--space-2); }
.ba-label-after { right: var(--space-2); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  will-change: left;
}
.ba-handle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.ba-range::-webkit-slider-thumb {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
}
.ba-range::-moz-range-thumb {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  border: none;
}
.ba-caption {
  margin: var(--space-2) 0 0;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
}
.ba-slider:nth-of-type(1) { --reveal-delay: 0ms; }
.ba-slider:nth-of-type(2) { --reveal-delay: 90ms; }
.ba-slider:nth-of-type(3) { --reveal-delay: 180ms; }
.ba-slider:nth-of-type(4) { --reveal-delay: 270ms; }
.ba-slider:nth-of-type(5) { --reveal-delay: 360ms; }
.ba-slider:nth-of-type(6) { --reveal-delay: 450ms; }

@media (min-width: 700px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4) var(--space-5); }
}
@media (min-width: 1080px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { position: relative; overflow: hidden; background: var(--color-secondary); }
.reviews::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: var(--reviews-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(40px) saturate(1.1);
  opacity: 0.4;
  z-index: 0;
}
.reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232, 220, 195, 0.55), rgba(232, 220, 195, 0.82));
  z-index: 0;
}
.reviews .container { position: relative; z-index: 1; }
.reviews-swiper {
  width: 100%;
}
.swiper-slide { height: auto; }
.review-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100%;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}
.quote-mark {
  position: absolute;
  z-index: -1;
  top: -1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-secondary);
  line-height: 1;
}
.review-card p:not(.review-author) {
  position: relative;
  font-size: 1.02rem;
  font-weight: 400;
  opacity: 0.92;
}
.review-author { position: relative; font-weight: 600; font-size: 0.9rem; margin: 0; }
.review-author span { font-weight: 400; opacity: 0.65; }
.reviews-controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.reviews-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.reviews-arrow:hover { background: var(--color-white); transform: translateY(-1px); }
.reviews-arrow svg { width: 20px; height: 20px; }
.reviews-cta { text-align: center; margin-top: var(--space-4); }

/* ==========================================================================
   Service areas
   ========================================================================== */
.service-areas { position: relative; overflow: hidden; }
.service-areas::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: var(--areas-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(40px) saturate(1.1);
  opacity: 0.3;
  z-index: 0;
}
.service-areas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.8), rgba(250, 247, 242, 0.92));
  z-index: 0;
}
.service-areas .container { position: relative; z-index: 1; }
.city-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.city-chip-list li {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

@media (max-width: 599px) {
  .city-chip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .city-chip-list li { text-align: center; }

	.contact-form-title{
		text-align: center;
	}
}
.service-areas-note { text-align: center; margin: var(--space-4) auto 0; opacity: 0.8; }
.service-areas-note a { color: var(--color-supporting); font-weight: 600; border-bottom: 1px solid currentColor; }
.service-areas-cta { text-align: center; margin-top: var(--space-4); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--color-secondary); }
.contact--plain { background: none; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;

}
.contact-text .eyebrow::after { left: 0; transform: none; }
.contact-subtitle { margin: 0 0 var(--space-4); }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
}
.contact-info-list li { display: flex; align-items: center; gap: 0.6rem; }
.contact-info-list svg { width: 22px; height: 22px; color: var(--color-supporting); flex-shrink: 0; }
.contact-info-list a { color: var(--color-primary); font-weight: 600; }
.contact-info-note { opacity: 0.7; font-size: 0.9rem; padding-left: 2rem; }
.contact-social { margin-bottom: var(--space-4); }
.contact-social a { border-color: rgba(59, 75, 52, 0.25); }
.contact-social a:hover { background: rgba(59, 75, 52, 0.08); border-color: var(--color-accent); }
.contact-social svg { color: var(--color-primary); }

.contact-form-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
}
@media (max-width: 699px) {
  .contact-form-panel { padding: var(--space-4) var(--space-3); }
}
.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: var(--contact-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(32px) saturate(1.15);
  transform: scale(1.1);
  z-index: -1;
}
.contact-form-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 75, 52, 0.68), rgba(30, 38, 26, 0.82));
  z-index: -1;
}
.contact-form-title {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);

}
@media (max-width: 699px) {
  .contact-form { gap: var(--space-2); }
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 600; font-size: 0.9rem; color: var(--color-bg); }
.form-required { color: var(--color-accent); }
.form-row input, .form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact-form-status {
  margin: 0;
  font-weight: 600;
  color: var(--color-gold-soft);
}

@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 0.9fr 1.1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-primary); color: var(--color-secondary); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-top: var(--space-7);
  padding-bottom: var(--space-6);
}
.footer-logo { height: 96px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
@media (max-width: 699px) {
  .footer-logo { height: 64px; }
}
.footer-tagline { font-weight: 300; letter-spacing: 0.04em; margin: var(--space-2) 0; }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 40px; height: 40px;
        border: 1px solid rgb(232 220 195);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background-color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: rgba(232,220,195,0.12); border-color: var(--color-accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { opacity: 0.85; font-size: 0.92rem; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--color-accent); }
.footer-note { opacity: 0.6; font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(232,220,195,0.15);
  padding: var(--space-3) 0;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; opacity: 0.7; }

@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 959px) {
	.trust-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
		max-width: 180px;
  }
.story-media {
order: 2;
	}
	.service-card-logo {
    width: 50%;

}
}

.quote-block-section{
	padding: 0;
	margin-top: var(--space-7);
	margin-bottom: var(--space-7);
}
@media (max-width: 699px) {
  .quote-block-section { margin-top: var(--space-6); margin-bottom: var(--space-6); }
}
.contact .footer-social a {
   
    border: 1px solid rgb(58 76 52);

}
.contact-social{
		margin-bottom: 0;
}

/* ==========================================================================
   Quick call button (fixed)
   ========================================================================== */
.quick-call-btn {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  z-index: var(--z-fab);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background-color var(--transition);
}
.quick-call-btn:hover {
  transform: scale(1.08);
  background: #2d3a28;
}
.quick-call-btn svg { width: 26px; height: 26px; }
@media (max-width: 599px) {
  .quick-call-btn { right: var(--space-2); bottom: var(--space-2); width: 50px; height: 50px; }
  .quick-call-btn svg { width: 22px; height: 22px; }
}

/* ==========================================================================
   Page header (inner pages, e.g. About Us)
   ========================================================================== */
.page-header {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  min-height: 78svh;
  padding: var(--space-6) 0;
}
.page-header-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-header-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 699px) {
  .page-header-media img { object-position: 68% 55%; }
.our-work  .page-header-media img { object-position: 
	center 55%; }
}
.page-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.page-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
}
.page-header-rule { display: block; width: 40px; height: 2px; background: var(--color-accent); margin-bottom: var(--space-2); }
.page-header-title { color: var(--color-white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: var(--space-2); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35); }
.page-header-subtitle { color: var(--color-secondary); opacity: 0.95; max-width: 46ch; margin: 0; font-size: 1.05rem; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); }
.page-header-stats { margin-top: 0; flex-shrink: 0; }
@media (min-width: 900px) {
  .page-header { min-height: 90vh; min-height: 90svh; }
  .page-header-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: var(--space-5); }
  .page-header-copy { max-width: 54%; }
}
@media (max-width: 699px) {
  .page-header {min-height: 92svh; padding: var(--space-5) 0; }
  .page-header-inner { gap: var(--space-2); }
  .page-header-rule { margin-bottom: 0.6rem; }
  .page-header-title { margin-bottom: 0.6rem; }
  .page-header-subtitle { color: #ffffff; }
  .page-header-stats { gap: 0.75rem; row-gap: 0.4rem; }
  .page-header-stats .hero-stat { padding-left: 0.6rem; }
  .page-header::after {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 60%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0) 100%);
  }
}

/* ==========================================================================
   Meet Our Team (About page)
   ========================================================================== */
.team-section { background: var(--color-secondary); }
.founder-section { background: var(--color-secondary); }
.team-founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}
.team-founder-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  margin: 0 auto;
}
.team-founder-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-founder-copy { position: relative; padding-top: var(--space-2); }
.team-founder-quote-mark {
  position: absolute;
  top: -1.75rem;
  left: -0.3rem;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  color: var(--color-taupe);
  opacity: 0.5;
  line-height: 1;
  z-index: 0;
}
.team-founder-name { position: relative; font-size: 1.6rem; margin-bottom: 0.2rem; }
.team-founder-role { position: relative; color: var(--color-accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: var(--space-3); padding-bottom: var(--space-2); }
.team-founder-role::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--color-accent); }
.team-founder-quote { position: relative; font-size: 1.2rem; font-weight: 400; font-style: italic; color: var(--color-primary); max-width: 48ch; }
@media (min-width: 700px) {
  .team-founder-inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: center; }
  .team-founder-media { max-width: none; margin: 0; }
}

.team-carousel { position: relative; }
.team-swiper { width: 100%; padding-bottom: var(--space-2); }
.team-card {
  text-align: center;
  background: var(--color-bg);
  border: 1px solid rgba(59, 75, 52, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 699px) {
  .team-card { padding: var(--space-1); }
}
.team-card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: var(--space-2);
}
.team-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.team-card-caption { font-weight: 600; color: var(--color-primary); margin: 0; font-size: 0.95rem; padding-bottom: var(--space-1); }
.team-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.team-controls:has(.swiper-button-lock) { display: none; }

/* ==========================================================================
   Service Areas (page)
   ========================================================================== */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .areas-grid { gap: var(--space-4); }
}
.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  flex: 0 1 calc(50% - var(--space-3) / 2);
  background: var(--color-bg);
  border: 1px solid rgba(59, 75, 52, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
@media (min-width: 700px) {
  .area-card { flex-basis: calc(33.333% - var(--space-4) * 2 / 3); }
}
@media (min-width: 1080px) {
  .area-card { flex-basis: calc(25% - var(--space-4) * 3 / 4); }
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.area-card-icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  box-sizing: border-box;
  color: var(--color-accent);
  background: var(--color-secondary);
  border-radius: 50%;
  margin-bottom: 0.3rem;
}
.area-card-name { font-weight: 600; color: var(--color-primary); font-size: 1.05rem; }
.area-card-state { font-size: 0.82rem; opacity: 0.6; letter-spacing: 0.04em; text-transform: uppercase; }
.areas-grid [data-reveal]:nth-child(4n+1) { --reveal-delay: 0ms; }
.areas-grid [data-reveal]:nth-child(4n+2) { --reveal-delay: 70ms; }
.areas-grid [data-reveal]:nth-child(4n+3) { --reveal-delay: 140ms; }
.areas-grid [data-reveal]:nth-child(4n+4) { --reveal-delay: 210ms; }

.area-map { background: var(--color-secondary); }
.area-map-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
.area-map-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.area-map-points li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; color: var(--color-primary); }
.area-map-points svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }
.area-map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.area-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 900px) {
  .area-map-inner { grid-template-columns: 0.8fr 1.2fr; }
  .area-map-frame { aspect-ratio: 4/3; }
}

/* ==========================================================================
   Service page (Regular House Cleaning, etc.)
   ========================================================================== */
.page-header-actions { margin-top:24px; }
.included{
	background: var(--color-secondary);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem var(--space-4);
}
@media (min-width: 700px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}
.included-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(59, 75, 52, 0.12);
}
.included-item svg { width: 22px; height: 22px; color: var(--color-accent); flex-shrink: 0; }

.process { background: var(--color-secondary); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 700px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.process-step-number {
  position: absolute;
  top: -0.8rem;
  right: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--color-secondary);
  line-height: 1;
  z-index: 0;
}
.process-step-title { position: relative; font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step-text { position: relative; opacity: 0.85; font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Perfect For (service pages)
   ========================================================================== */
.perfect-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.perfect-for-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
}
.perfect-for-list svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }
@media (max-width: 599px) {
  .perfect-for-list { display: grid; grid-template-columns: 1fr; }
  .perfect-for-list li { justify-content: center; text-align: center; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-bg);
  border: 1px solid rgba(59, 75, 52, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex-shrink: 0; transition: transform var(--transition); color: var(--color-accent); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item-body { padding: 0 var(--space-4) var(--space-4); opacity: 0.85; }
.faq-item-body p { margin: 0; }


/* ==========================================================================
   Reviews page — rating strip + static grid
   ========================================================================== */
.rating-strip { text-align: center; padding-top: var(--space-6); padding-bottom: 0; }
.rating-strip-value { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; color: var(--color-accent); line-height: 1; }
.rating-strip-stars { color: var(--color-accent); letter-spacing: 3px; font-size: 1.3rem; margin: var(--space-1) 0; }
.rating-strip-note { opacity: 0.7; font-size: 0.95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
.reviews-grid .review-card { height: 100%; box-sizing: border-box; }
.reviews-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); margin-top: var(--space-5); }

/* ==========================================================================
   Contact page — quick-connect strip
   ========================================================================== */
.quick-connect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .quick-connect-grid { grid-template-columns: repeat(3, 1fr); }
}
.quick-connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  background: var(--color-bg);
  border: 1px solid rgba(59, 75, 52, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quick-connect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quick-connect-icon {
  width: 52px;
  height: 52px;
  padding: 13px;
  box-sizing: border-box;
  color: var(--color-accent);
  background: var(--color-secondary);
  border-radius: 50%;
}
.quick-connect-card h3 { font-size: 1.1rem; margin: 0; }
.quick-connect-card p { opacity: 0.8; font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Our Work page — static full gallery grid (no swiper)
   ========================================================================== */
.gallery-grid-static {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 700px) {
  .gallery-grid-static { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
}
@media (min-width: 1080px) {
  .gallery-grid-static { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Blog page — coming soon stub
   ========================================================================== */
.coming-soon { text-align: center; }
.coming-soon-icon {
  width: 72px;
  height: 72px;
  padding: 18px;
  box-sizing: border-box;
  margin: 0 auto var(--space-3);
  color: var(--color-accent);
  background: var(--color-secondary);
  border-radius: 50%;
}
.coming-soon-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); margin-top: var(--space-4); }

/* ==========================================================================
   Blog listing page
   ========================================================================== */
.blog-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(59, 75, 52, 0.14);
}
.blog-list-head h2 { margin: 0; font-size: 1.5rem; }
.blog-sort {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(59, 75, 52, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  cursor: pointer;
  transition: border-color var(--transition);
}
.blog-sort:hover { border-color: var(--color-accent); }
.blog-cards { display: flex; flex-direction: column; gap: var(--space-4); }
.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-white);
  border: 1px solid rgba(59, 75, 52, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-media { overflow: hidden; aspect-ratio: 16 / 10; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease-out; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { display: flex; flex-direction: column; padding: var(--space-4); }
.blog-card-date { font-style: italic; opacity: 0.6; font-size: 0.9rem; }
.blog-card-title { font-size: 1.4rem; margin: 0.4rem 0 var(--space-3); }
.blog-card-excerpt { opacity: 0.85; font-size: 0.98rem; margin: 0 0 var(--space-3); }
.blog-card .card-link { margin-top: auto; align-self: flex-start; }
@media (min-width: 700px) {
  .blog-card { grid-template-columns: 340px 1fr; }
  .blog-card-media { aspect-ratio: auto; }
  .blog-card-body { padding: var(--space-5); }
}

/* ==========================================================================
   Blog post (article) page
   ========================================================================== */
.post { padding-top: var(--space-6); }
.post-header { max-width: 860px; margin: 0 auto var(--space-5); text-align: center; }
.post-title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: var(--space-3); text-wrap: balance; }
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  color: var(--color-text);
  opacity: 0.8;
  font-size: 0.92rem;
}
.post-meta-date { font-style: italic; }
.post-share { display: flex; align-items: center; gap: 0.5rem; }
.post-share span { font-weight: 600; opacity: 0.9; }
.post-share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(59, 75, 52, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.post-share a:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.post-share svg { width: 15px; height: 15px; }
.post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  margin-bottom: var(--space-5);
}
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body > p:first-of-type { font-size: 1.15rem; line-height: 1.75; }
.post-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: var(--space-5) 0 var(--space-2); }
.post-body p { margin: 0 0 var(--space-3); font-size: 1.05rem; }
.post-body ul { list-style: disc; margin: 0 0 var(--space-3); padding-left: 1.4rem; }
.post-body ul li { margin-bottom: 0.45rem; }
.post-body a { color: var(--color-supporting); font-weight: 600; border-bottom: 1px solid currentColor; }
.post-figure { margin: var(--space-5) 0; }
.post-figure img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: block; }
.post-figure figcaption { text-align: center; font-size: 0.85rem; opacity: 0.6; font-style: italic; padding-top: var(--space-2); }
.post-back { display: inline-flex; margin-top: var(--space-5); }


/* ==========================================================================
   WordPress integration
   ========================================================================== */

/* Sticky header must not cover in-page anchor targets (#services, #contact, ...) */
html {
  scroll-padding-top: calc(var(--header-height, 76px) + 16px);
}

/* Admin bar offsets so the sticky header stays visible while logged in */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 1199px) {
  .admin-bar .main-nav { top: calc(var(--header-height, 76px) + 46px); }
}
@media (min-width: 783px) {
  .admin-bar .main-nav { top: calc(var(--header-height, 76px) + 32px); }
}

/* WordPress core alignment / caption classes used inside post content */
.post-body .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.post-body .alignleft { float: left; margin: 0 var(--space-3) var(--space-3) 0; }
.post-body .alignright { float: right; margin: 0 0 var(--space-3) var(--space-3); }
.post-body .wp-caption-text { font-size: 0.9rem; opacity: 0.75; }

/* The story / why media panels are only rendered once an image is set in the
   admin. Without them the copy is the sole grid child and should span the row
   instead of being squeezed into the first column. */
@media (min-width: 900px) {
  .story-inner > .story-copy:only-child { grid-column: 1 / -1; }
  .why-us-inner > .why-content:only-child { grid-column: 1 / -1; }
}

/* Google reviews widget (Trustindex).
   The widget sizes its cards from data-review-target-width (300px) and does
   not stretch, so on the site's wide container three reviews left a gap on
   the right. Capping the wrapper to roughly three cards keeps the row full
   and centred; raise the value if the widget is switched to more columns. */
.reviews-widget {
  max-width: 1000px;
  margin: 0 auto;
}
.reviews-widget .ti-widget { margin: 0 auto; }

/* ==========================================================================
   Add-on pricing (home)
   ========================================================================== */
.pricing { background: var(--color-secondary); }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (min-width: 900px) {
  .pricing-inner { grid-template-columns: 1.65fr 0.35fr; }
}
.pricing-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) var(--space-3);
}
@media (min-width: 700px) {
  .pricing-list { grid-template-columns: 1fr 1fr; column-gap: var(--space-5); }
}
.pricing-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(59, 75, 52, 0.18);
}
.pricing-item-name { flex: 1 1 auto; font-size: 0.95rem; }
.pricing-item-price {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  white-space: nowrap;
}
.pricing-note {
  margin: var(--space-3) 0 var(--space-4);
  font-size: 0.9rem;
  opacity: 0.75;
}
/* Shown whole, so cap the width — a 2:3 poster at full column width would
   tower over the price list next to it. Full size opens in the lightbox. */
.pricing-media { margin: 0 auto; max-width: 400px; }
/* The poster reuses .gallery-item so it opens in the shared lightbox, but the
   gallery styles it as a square thumbnail (aspect-ratio 1/1 + object-fit:
   cover). A tall checklist must be shown whole, so undo that here. */
.pricing-media .gallery-item {
  display: block;
  cursor: zoom-in;
  aspect-ratio: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.pricing-media .gallery-item::after { content: none; }
.pricing-media .gallery-item:hover { transform: translateY(-4px); }
.pricing-media .gallery-item img,
.pricing-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.pricing-media .gallery-item:hover img { transform: none; }
.pricing-media-caption {
  margin-top: var(--space-2);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-supporting);
}
@media (max-width: 699px) {
  /* Centre the note and the button; the price rows keep their
     name-left / price-right alignment. */
  .pricing-content { text-align: center; }
  .pricing-list { text-align: left; }
}

/* Footer legal links, next to the copyright line */
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2) var(--space-4);
  flex-wrap: wrap;
}
.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-3);
}
.footer-legal a {
  font-size: 0.82rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-legal a:hover { opacity: 1; }
@media (max-width: 699px) {
  .footer-bottom .container { justify-content: flex-start; }
}

/* ==========================================================================
   Text pages (Client Service Policies, Privacy Policy)
   ========================================================================== */
.text-page { padding: var(--space-6) 0 var(--space-7); }
.text-page-inner { max-width: 860px; margin: 0 auto; }
.text-page-meta {
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(59, 75, 52, 0.14);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-supporting);
}
.text-page-section + .text-page-section { margin-top: var(--space-5); }
.text-page-section-title {
  display: flex;
  align-items: baseline;
  gap: 0.65em;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 var(--space-3);
  text-wrap: balance;
}
.text-page-section-number {
  flex-shrink: 0;
  font-size: 0.85em;
  font-weight: 700;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
/* .post-body is centred and narrow for articles; here it fills the column. */
.text-page .post-body { max-width: none; margin: 0; }
.text-page .post-body > p:first-of-type { font-size: 1.05rem; line-height: 1.7; }
.text-page .post-body p:last-child { margin-bottom: 0; }
/* Diamond markers, matching the source policy document. */
.text-page-section-body ul { list-style: none; padding-left: 0; }
.text-page-section-body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}
.text-page-section-body ul li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.75em;
  color: var(--color-accent);
}
.text-page-outro {
  margin-top: var(--space-6);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-secondary);
}
.text-page-outro-title { font-size: 1.25rem; margin: 0 0 var(--space-2); }
@media (max-width: 699px) {
  .text-page { padding: var(--space-5) 0 var(--space-6); }
  .text-page-section-title { gap: 0.5em; }
}

/* Contact Form 7 inside the design's form panel.
   CF7 wraps every control in <span class="wpcf7-form-control-wrap">; the row is
   a column flexbox, so the wrapper has to behave like a block for the control
   to fill the row the way the mockup does. */
.form-row .wpcf7-form-control-wrap { display: block; }
.form-row .wpcf7-form-control-wrap input,
.form-row .wpcf7-form-control-wrap textarea { width: 100%; box-sizing: border-box; }
.contact-form .wpcf7-submit { align-self: flex-start; }
.contact-form-notice {
  margin-top: var(--space-3);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-secondary);
  opacity: 0.85;
}
.contact-form-notice p { margin: 0; }
.contact-form-notice a { color: var(--color-gold-soft); border-bottom: 1px solid currentColor; }
.contact-form .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.85rem; margin-top: 0.35rem; }
.contact-form .wpcf7-response-output { margin: var(--space-3) 0 0; padding: 0.75rem 1rem; border: 1px solid currentColor; font-size: 0.9rem; }
.contact-form .wpcf7-spinner { display: block; margin: 0.5rem 0 0; }

.story{
	    background: var(--color-secondary);
}