/* =========================================================
   Kingswell & Cutler Construction — Shared Stylesheet v1
   ========================================================= */

:root {
  color-scheme: light;

  /* Brand colours */
  --brand-primary:       #C9A84C;
  --brand-primary-dark:  #A8883A;
  --brand-primary-light: rgba(201, 168, 76, 0.12);
  --brand-primary-mid:   rgba(201, 168, 76, 0.35);

  /* Neutrals */
  --charcoal:       #1E1E1E;
  --charcoal-mid:   #4A4A4A;
  --charcoal-light: #6E6E6E;
  --off-white:      #F5F5F0;
  --warm-white:     #FAFAF8;
  --white:          #FFFFFF;

  /* Text */
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #7A7A7A;
  --text-inv:   #F5F5F0;

  /* Borders */
  --border-gold:  rgba(201, 168, 76, 0.28);
  --border-light: rgba(26, 26, 26, 0.1);
  --border-dark:  rgba(255, 255, 255, 0.1);

  /* Cards */
  --card-bg: #FFFFFF;
  --card-dark-bg: #2A2A2A;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.16);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-base: 0.35s ease;

  /* Layout */
  --nav-height: 74px;
  --topbar-height: 38px;
  --max-width:  1200px;

  /* Typography */
  --font-serif: 'Lora', 'Georgia', serif;
  --font-body:  -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #0c0c0c; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

section[id],
.service-detail-card[id] { scroll-margin-top: calc(var(--nav-height) + var(--topbar-height)); }

/* ── Hero Ticker ─────────────────────────────────────────── */
.hero-ticker {
  background: var(--brand-primary);
  overflow: hidden;
  padding: 0.72rem 0;
  position: relative;
  z-index: 1;
  user-select: none;
}

.hero-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.hero-ticker__track:hover { animation-play-state: paused; }

.hero-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero-ticker__sep {
  color: rgba(30, 30, 30, 0.3);
  font-size: 0.55rem;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: rgb(14, 14, 14);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(245, 245, 240, 0.72);
  text-decoration: none;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.top-bar__item:hover { color: var(--brand-primary); }

.top-bar__item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.top-bar__wa svg { fill: currentColor; stroke: none; }

.top-bar__label { color: var(--brand-primary); }

.top-bar__sep {
  color: rgba(245, 245, 240, 0.22);
  margin: 0 0.1rem;
}

.top-bar__dot {
  color: rgba(245, 245, 240, 0.2);
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 540px) {
  .top-bar__wa,
  .top-bar__dot { display: none; }
}

/* ── Accessibility ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand-primary);
  color: var(--charcoal);
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; letter-spacing: 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}

.section-rule {
  width: 52px;
  height: 2px;
  background: var(--brand-primary);
  margin-bottom: 2rem;
}

/* ── Layout Helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section-pad {
  padding-block: 6rem;
}

.section-pad--sm {
  padding-block: 4rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--brand-primary);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand-primary-light);
}

.btn-outline-inv {
  border: 1.5px solid rgba(245, 245, 240, 0.5);
  color: var(--text-inv);
  background: transparent;
}
.btn-outline-inv:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(201, 168, 76, 0.08);
}

.btn-ghost {
  color: var(--brand-primary);
  padding-inline: 0;
  gap: 0.4rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast), gap var(--t-fast);
}
.btn-ghost:hover {
  text-decoration-color: var(--brand-primary);
  gap: 0.65rem;
  transform: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--t-base), box-shadow var(--t-base);
  padding-top: max(0px, env(safe-area-inset-top));
}

.nav--scrolled {
  background: rgba(30, 30, 30, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.nav__menu a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 245, 240, 0.82);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.02em;
}

.nav__menu a:hover,
.nav__menu a.active {
  color: var(--brand-primary);
  background: rgba(201, 168, 76, 0.08);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__cta .btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-inv);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/logos/watermark-logo2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(30, 30, 30, 0.72) 0%,
    rgba(30, 30, 30, 0.48) 50%,
    rgba(201, 168, 76, 0.04) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: calc(var(--nav-height) + var(--topbar-height));
}

.hero__logo {
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}

.hero__logo img {
  height: 80px;
  width: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--brand-primary);
}

.hero__eyebrow span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.hero h1 {
  color: var(--text-inv);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-primary);
}

.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(245, 245, 240, 0.72);
  margin-bottom: 0.75rem;
  max-width: 560px;
}

.hero__near-me {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.55);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero__near-me { display: none; }
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-dark);
}

.hero__stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 245, 240, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.85); }
}

/* ── Page Banner (inner pages) ──────────────────────────── */
.page-banner {
  background: var(--charcoal);
  padding-block: 6rem 4rem;
  padding-top: calc(6rem + var(--nav-height) + var(--topbar-height));
  position: relative;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/logos/main-logo.jpg');
  background-size: auto 110%;
  background-position: right -2rem center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: none;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.88);
}

.page-banner__content {
  position: relative;
  z-index: 1;
}

.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 1rem;
}

.page-banner__breadcrumb a { color: var(--brand-primary); }
.page-banner__breadcrumb a:hover { text-decoration: underline; }

.page-banner h1 {
  color: var(--text-inv);
  margin-bottom: 0.75rem;
}

.page-banner p {
  color: rgba(245, 245, 240, 0.65);
  font-size: 1.1rem;
  max-width: 560px;
}

.page-banner--tall { padding-bottom: 7rem; }
.page-banner--no-wm .page-banner__bg { background-image: none; }

.page-banner--photo .page-banner__bg {
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.page-banner--photo .page-banner__overlay {
  background: rgba(30, 30, 30, 0.80);
}

@media (min-width: 769px) {
  .page-banner__bg {
    background-size: contain;
    background-position: center center;
  }
  .page-banner--tall { padding-bottom: 4rem; }
}

/* ── Services Grid ───────────────────────────────────────── */
.services { background: var(--off-white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.service-card:hover::before { transform: scaleX(1); }

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

.service-card__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Services page detailed cards */
.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: flex-start;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.service-detail-card__icon {
  width: 64px;
  height: 64px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.service-detail-card__icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

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

.service-detail-card p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.service-detail-card .service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.svc-extra { display: inline; }
.svc-readmore { display: none; }

@media (max-width: 768px) {
  .svc-extra { display: none; }
  .svc-serving { display: none; }
  .svc-tag-el { display: none !important; }
  .svc-readmore {
    display: inline;
    background: none;
    border: none;
    color: var(--brand-primary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.2rem;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .service-detail-card.is-expanded .svc-extra { display: inline; }
  .service-detail-card.is-expanded .svc-serving { display: block; }
  .service-detail-card.is-expanded .svc-tag-el { display: inline-block !important; }
  .service-detail-card.is-expanded .svc-readmore { display: none; }
}

/* ── About ───────────────────────────────────────────────── */
.about { background: var(--charcoal); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-frame {
  position: relative;
}

.about__image-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__image-frame .about__years-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--brand-primary);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-lg);
}

.about__years-badge .num {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}

.about__years-badge .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about .section-label { color: var(--brand-primary); }
.about h2 { color: var(--text-inv); }

.about__body {
  font-size: 1.05rem;
  color: rgba(245, 245, 240, 0.72);
  margin-bottom: 1.5rem;
}

.about__near-me {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.5);
  border-left: 2px solid var(--brand-primary);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.about__pillar svg { width: 18px; height: 18px; stroke: var(--brand-primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.about__pillar span { font-size: 0.9rem; color: rgba(245, 245, 240, 0.7); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery { background: var(--off-white); }

.gallery__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

/* Before/After Comparison Slider */
.ba-wrap {
  margin-bottom: 2rem;
}

.ba-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.ba-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
}

.ba-container img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--white);
  pointer-events: none;
  z-index: 2;
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ba-handle::before { top: calc(50% - 20px); }
.ba-handle::after {
  top: calc(50% - 20px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E1E1E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E1E1E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 30% center, 70% center;
  background-size: 12px, 12px;
}

.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  margin: 0;
  padding: 0;
}

.ba-badges {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: 1rem;
  z-index: 1;
  pointer-events: none;
}

.ba-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(30, 30, 30, 0.8);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.ba-badge--after {
  background: rgba(201, 168, 76, 0.9);
  color: var(--charcoal);
}

/* Gallery grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-caption {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}

/* Full gallery page groups */
.gallery__group {
  margin-bottom: 4rem;
}

.gallery__group-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery__group-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.25rem;
  background: var(--brand-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--t-fast);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews { background: var(--charcoal); }

.reviews .section-label { color: var(--brand-primary); }
.reviews h2 { color: var(--text-inv); }

.reviews-carousel {
  margin-top: 3rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-carousel__slide {
  width: 100%;
  flex-shrink: 0;
}

.reviews-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-carousel__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-carousel__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
}

.reviews-carousel__btn:hover {
  border-color: var(--brand-primary);
  background: rgba(201, 168, 76, 0.1);
}

.reviews-carousel__btn svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245, 245, 240, 0.65);
  stroke-width: 2;
  fill: none;
}

.reviews-carousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 245, 240, 0.2);
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  transition: background 0.25s ease, transform 0.25s ease;
}

.reviews-carousel__dot.active {
  background: var(--brand-primary);
  transform: scale(1.35);
}

.reviews-fc-wrap {
  position: relative;
  margin-top: 3rem;
  padding: 0 2.5rem;
}

.reviews-fc {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.reviews-fc::-webkit-scrollbar { display: none; }

.reviews-fc .review-card {
  flex: 0 0 calc(50% - 0.75rem);
  scroll-snap-align: start;
  min-width: 0;
}

.reviews-fc__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: var(--card-dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--t-base), border-color var(--t-base);
  color: var(--text-inv);
}

.reviews-fc__btn:hover:not(:disabled) {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.reviews-fc__btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.reviews-fc__btn--prev { left: 0; }
.reviews-fc__btn--next { right: 0; }

.reviews-fc__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .reviews-fc-wrap { padding: 0 0 3.5rem; }
  .reviews-fc .review-card { flex: 0 0 100%; }
  .reviews-fc__btn {
    top: auto;
    transform: none;
    bottom: 0;
    width: 42px;
    height: 42px;
  }
  .reviews-fc__btn--prev { left: calc(50% - 48px); }
  .reviews-fc__btn--next { right: calc(50% - 48px); }
}

.review-card {
  background: var(--card-dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.review-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.1);
}


.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-primary);
  stroke: none;
}

.review-card__text {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.72);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 1rem;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.review-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-inv);
}

.review-card__platform {
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.5);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-card__fb-icon {
  width: 14px;
  height: 14px;
  fill: #1877F2;
  flex-shrink: 0;
}

.review-card--fb::after {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: #1877F2;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.85;
}

.fb-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877F2;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background var(--t-base), opacity var(--t-base);
}

.fb-review-pill:hover { background: #1464d8; }

.fb-review-pill svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.fb-review-pill--outline {
  background: transparent;
  color: #1877F2;
  border: 1.5px solid #1877F2;
}

.fb-review-pill--outline:hover { background: rgba(24,119,242,0.08); }

.fb-review-pill--outline svg { fill: #1877F2; }

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-strip {
  background-color: var(--brand-primary);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0, 0, 0, 0.035) 8px,
    rgba(0, 0, 0, 0.035) 9px
  );
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip__icon {
  position: absolute;
  right: 3%;
  top: 1.25rem;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: right;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-strip__text h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.45rem;
  line-height: 1.15;
}

.cta-strip__text p {
  color: rgba(30, 30, 30, 0.62);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.cta-strip__chips {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-strip__chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.68);
}

.cta-strip__chip svg {
  width: 13px;
  height: 13px;
  stroke: var(--charcoal);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-shrink: 0;
  min-width: 200px;
}

.cta-strip__btn--wa {
  background: var(--charcoal);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-strip__btn--wa svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

.cta-strip__btn--call {
  border: 2px solid rgba(30, 30, 30, 0.35);
  color: var(--charcoal);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-strip__btn--call svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.cta-strip__btn--call:hover {
  background: rgba(30, 30, 30, 0.08);
}

@media (max-width: 768px) {
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .cta-strip__actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .cta-strip__actions .btn { flex: 1; min-width: 140px; }
  .cta-strip__icon {
    top: 1.25rem;
    right: 1.25rem;
    font-size: clamp(1rem, 4vw, 1.3rem);
    opacity: 0.18;
  }
}

/* ── Service Area ────────────────────────────────────────── */
.service-area { background: var(--warm-white); }

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: flex-start;
}

.service-area__map-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

#map {
  height: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-area__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-area__towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-area__town {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  letter-spacing: 0.01em;
}

.service-area__town svg { width: 20px; height: 20px; stroke: var(--brand-primary); fill: rgba(201,168,76,0.15); stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }

.service-area__near-me {
  background: var(--brand-primary-light);
  border-left: 3px solid var(--brand-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Leaflet overrides */
.leaflet-container { background: #1d2733; }

.leaflet-popup-content-wrapper {
  background: var(--card-dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  color: var(--text-inv);
}

.leaflet-popup-tip { background: var(--card-dark-bg); }

.leaflet-popup-content {
  color: var(--text-inv);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--off-white); }

.faq__max { max-width: 780px; margin-inline: auto; }

.faq__list { margin-top: 3rem; }

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding-block: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--t-fast);
}

.faq__question:hover { color: var(--brand-primary); }

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform var(--t-base);
}

.faq__item--open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item--open .faq__answer { grid-template-rows: 1fr; }

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Contact / CTA ───────────────────────────────────────── */
.contact { background: var(--charcoal); }

.contact .section-label { color: var(--brand-primary); }
.contact h2 { color: var(--text-inv); }

.contact__intro {
  font-size: 1.05rem;
  color: rgba(245, 245, 240, 0.65);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.contact__cards--hero {
  margin-top: 2rem;
  margin-bottom: 0;
  padding-bottom: 3rem;
}

.contact-card {
  background: var(--card-dark-bg);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--brand-primary-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-card--primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.contact-card--primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.contact-card--primary .contact-card__icon {
  background: rgba(30,30,30,0.15);
}

.contact-card__icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.contact-card--primary .contact-card__icon svg { stroke: var(--charcoal); }

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
}

.contact-card--primary .contact-card__label { color: rgba(30,30,30,0.6); }

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-inv);
  line-height: 1.3;
}

.contact-card--primary .contact-card__value { color: var(--charcoal); }

.contact-card__sub {
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.45);
}

.contact-card--primary .contact-card__sub { color: rgba(30,30,30,0.5); }

.contact__near-me {
  max-width: 640px;
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.75;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0C0C0C;
  border-top: 3px solid var(--brand-primary);
}

.footer__main {
  padding-block: 4.5rem 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.42);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  transition: background var(--t-fast), transform var(--t-fast);
  letter-spacing: 0.01em;
}

.footer__wa:hover {
  background: #1aad53;
  transform: translateY(-1px);
}

.footer__wa svg { width: 15px; height: 15px; fill: var(--white); flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 240, 0.4);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.footer__social a:hover {
  color: var(--brand-primary);
  border-color: var(--border-gold);
  background: var(--brand-primary-light);
}

.footer__social svg { width: 14px; height: 14px; fill: currentColor; }

.footer__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.48);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__links a:hover {
  color: rgba(245, 245, 240, 0.9);
  padding-left: 4px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.48);
  line-height: 1.4;
}

.footer__contact-list svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-list a {
  color: rgba(245, 245, 240, 0.48);
  transition: color var(--t-fast);
  word-break: break-all;
}

.footer__contact-list a:hover { color: var(--brand-primary); }

.footer__bottom {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.25);
}

.footer__invera {
  font-size: 0.78rem;
  color: rgba(245, 245, 240, 0.2);
}

.footer__invera a {
  color: rgba(245, 245, 240, 0.3);
  text-decoration: underline;
  transition: color var(--t-fast);
}

.footer__invera a:hover { color: var(--brand-primary); }

/* About page pillar text fix — light card context */
.pillar-light .about__pillar span { color: var(--text-mid); }
.pillar-light .about__pillar svg { stroke: var(--brand-primary); }

/* ── About page photo strip ──────────────────────────────── */
.about-strip__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.about-strip__van {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.about-strip__van img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-strip__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.about-strip__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-strip__num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
  display: block;
}

.about-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.5);
  display: block;
  line-height: 1.35;
}

.about-strip__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-strip__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-strip__top { grid-template-columns: 1fr; }
  .about-strip__van { aspect-ratio: 16 / 7; }
  .about-strip__photos { grid-template-columns: repeat(3, 1fr); }
  .about-page-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

@media (max-width: 540px) {
  .about-strip__photos { grid-template-columns: 1fr 1fr; }
  .about-strip__photo:last-child { grid-column: 1 / -1; max-width: calc(50% - 0.5rem); margin: 0 auto; width: 100%; }
  .about-strip__num { font-size: 1.9rem; }
}

/* ── About story: van photo with stats overlay ───────────── */
.about-story__van-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.about-story__van-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-story__stats-overlay {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.about-story__stat-card {
  background: rgba(20, 20, 20, 0.87);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.6rem;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-width: 82px;
}

.about-story__stat-card .about-strip__num {
  font-size: 1.55rem;
  margin-bottom: 0.15rem;
}

.about-story__stat-card .about-strip__label {
  font-size: 0.58rem;
}

@media (max-width: 768px) {
  .about-story__van-wrap img { aspect-ratio: 4 / 3; }
  .about-story__stats-overlay { gap: 0.15rem; bottom: 0.4rem; right: 0.4rem; }
  .about-story__stat-card { padding: 0.18rem 0.15rem; min-width: 40px; }
  .about-story__stat-card .about-strip__num { font-size: 0.75rem; }
  .about-story__stat-card .about-strip__label { font-size: 0.42rem; }
}

@media (max-width: 480px) {
  .about-story__stats-overlay { gap: 0.15rem; bottom: 0.4rem; right: 0.4rem; }
  .about-story__stat-card { padding: 0.18rem 0.15rem; min-width: 40px; }
  .about-story__stat-card .about-strip__num { font-size: 0.75rem; }
  .about-story__stat-card .about-strip__label { font-size: 0.42rem; }
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom)));
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ── Scroll Animations ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up--visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up--delay-1 { transition-delay: 0.1s; }
  .fade-up--delay-2 { transition-delay: 0.2s; }
  .fade-up--delay-3 { transition-delay: 0.3s; }
  .fade-up--delay-4 { transition-delay: 0.4s; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__image-frame { display: none; }
  .service-area__inner { grid-template-columns: 1fr; }
  .service-area__map-wrap { position: static; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-carousel__footer { flex-direction: column-reverse; align-items: flex-start; }
  .contact__cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  /* Full-screen overlay when open */
  .nav:has(.nav__menu--open) {
    height: calc(100dvh - var(--topbar-height));
    align-items: flex-start;
    border-bottom-color: transparent;
    box-shadow: none;
    background: rgb(8, 8, 8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Keep logo + hamburger pinned to top of the overlay */
  .nav:has(.nav__menu--open) .nav__inner {
    height: var(--nav-height);
    align-items: center;
  }

  /* Mobile overlay — absolute within the fixed nav avoids backdrop-filter containing-block bug */
  .nav__menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: rgb(8, 8, 8);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem 2rem 4rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav__menu.nav__menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__menu li { width: 100%; list-style: none; text-align: center; }

  .nav__menu a {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(245, 245, 240, 0.75);
    padding: 0.75rem 2rem;
    border-bottom: none;
    transition: color 0.2s ease;
    text-decoration: none;
  }

  .nav__menu a:hover,
  .nav__menu a.active {
    color: var(--brand-primary);
    background: transparent;
  }

  .nav__menu .btn {
    display: inline-flex;
    margin: 2rem auto 0;
    font-family: var(--font-body);
    font-size: 1rem;
    width: calc(100% - 3rem);
    justify-content: center;
  }

  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__scroll { display: none; }
  .hero__logo { margin-bottom: 1.5rem; }
  .hero__logo img { height: 64px; }
  .hero__bg {
    background-size: cover;
    background-position: center center;
  }
  .about__pillars { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery__intro { flex-direction: column; align-items: flex-start; }
  .page-banner--photo .page-banner__bg--area { background-size: auto 260%; background-position: 30% top; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .service-area__towns { grid-template-columns: 1fr; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-bottom: 2.5rem; }
  .contact__cards { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
}
