/* ============================================================
   TOTAL DESIGN CONCRETE — style.css
   Pool water teal + concrete gray + warm gold accent
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing (4px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Font families */
  --font-display: 'Cabinet Grotesk', 'General Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* --- LIGHT MODE (default) --- */
:root, [data-theme="light"] {
  --color-bg:             #FFFFFF;
  --color-surface:        #F8F8F6;
  --color-surface-2:      #F2F1EE;
  --color-surface-offset: #ECEAE6;
  --color-divider:        #E0DDDA;
  --color-border:         #D4D1CA;

  --color-text:           #1A1A1A;
  --color-text-muted:     #5C5C5C;
  --color-text-faint:     #9A9A9A;
  --color-text-inverse:   #FFFFFF;

  /* Primary — deep pool teal */
  --color-primary:        #0A5C6B;
  --color-primary-hover:  #084D5A;
  --color-primary-active: #063E49;
  --color-primary-light:  #E8F4F6;

  /* Accent — warm gold */
  --color-accent:         #C8923C;
  --color-accent-hover:   #B5802E;
  --color-accent-active:  #9D6E24;

  /* Concrete gray */
  --color-concrete:       #5C5C5C;
  --color-concrete-light: #F5F4F2;

  /* Utility */
  --color-success:        #2E7D32;
  --color-star:           #F9A825;

  --shadow-sm: 0 1px 3px rgba(10, 92, 107, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 92, 107, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 92, 107, 0.12);
}

/* --- DARK MODE --- */
[data-theme="dark"] {
  --color-bg:             #121A1C;
  --color-surface:        #182226;
  --color-surface-2:      #1E2A2E;
  --color-surface-offset: #1A2428;
  --color-divider:        #2A3A3E;
  --color-border:         #344448;

  --color-text:           #E0E8EA;
  --color-text-muted:     #8FA0A4;
  --color-text-faint:     #5A7074;
  --color-text-inverse:   #121A1C;

  --color-primary:        #3EA8B8;
  --color-primary-hover:  #2D8E9C;
  --color-primary-active: #1F7584;
  --color-primary-light:  #1A2E32;

  --color-accent:         #D9A654;
  --color-accent-hover:   #C89340;
  --color-accent-active:  #B5802E;

  --color-concrete:       #8FA0A4;
  --color-concrete-light: #1E2A2E;

  --color-success:        #66BB6A;
  --color-star:           #FFD54F;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #121A1C;
    --color-surface:        #182226;
    --color-surface-2:      #1E2A2E;
    --color-surface-offset: #1A2428;
    --color-divider:        #2A3A3E;
    --color-border:         #344448;
    --color-text:           #E0E8EA;
    --color-text-muted:     #8FA0A4;
    --color-text-faint:     #5A7074;
    --color-text-inverse:   #121A1C;
    --color-primary:        #3EA8B8;
    --color-primary-hover:  #2D8E9C;
    --color-primary-active: #1F7584;
    --color-primary-light:  #1A2E32;
    --color-accent:         #D9A654;
    --color-accent-hover:   #C89340;
    --color-accent-active:  #B5802E;
    --color-concrete:       #8FA0A4;
    --color-concrete-light: #1E2A2E;
    --color-success:        #66BB6A;
    --color-star:           #FFD54F;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  }
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-divider);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo svg {
  width: 48px;
  height: 48px;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.logo-tagline {
  font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.7rem);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}

.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all var(--transition-interactive);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-inverse);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: transparent;
}

.theme-toggle:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

/* Mobile nav toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  background: none;
  border: none;
}

@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

.mobile-toggle.active span { background: transparent; }
.mobile-toggle.active span::before { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--color-primary);
}

.mobile-nav-phone {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 24, 0.65) 0%,
    rgba(10, 20, 24, 0.5) 35%,
    rgba(10, 20, 24, 0.55) 60%,
    rgba(10, 20, 24, 0.75) 85%,
    rgba(10, 20, 24, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-24) var(--space-6) var(--space-16);
  max-width: 900px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 0.8rem + 3.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-10);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-actions .btn {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  position: relative;
  background: rgba(10, 20, 24, 0.95);
  margin: 0 calc(-1 * var(--space-6));
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: 600;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-badge .stars {
  color: var(--color-star);
}


/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  padding-inline: var(--space-6);
}

.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-header {
  text-align: left;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
}

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

.section--dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section--dark .section-label {
  color: var(--color-accent);
}

.section--dark .section-title {
  color: #fff;
}

.section--dark .section-desc {
  color: rgba(255,255,255,0.75);
}


/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 20, 24, 0.9) 0%,
    rgba(10, 20, 24, 0.4) 50%,
    rgba(10, 20, 24, 0.15) 100%
  );
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}


/* ============================================================
   BEFORE & AFTER / GALLERY
   ============================================================ */
.ba-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}

@media (max-width: 768px) {
  .ba-showcase {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  color: #fff;
}

.ba-label--before {
  background: rgba(92, 92, 92, 0.9);
}

.ba-label--after {
  background: rgba(10, 92, 107, 0.9);
}

/* Gallery Filter Tabs */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.gallery-filter {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  cursor: pointer;
  transition: all var(--transition-interactive);
  white-space: nowrap;
}

.gallery-filter:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.gallery-filter.active {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (max-width: 599px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  transform: scale(1.02);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 92, 107, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(10, 92, 107, 0.25);
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: var(--space-6);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: 24px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.lightbox-prev { left: var(--space-4); }
.lightbox-next { right: var(--space-4); }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (max-width: 480px) {
  .differentiators {
    grid-template-columns: 1fr;
  }
}

.diff-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
}

.diff-card svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.diff-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.diff-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 0;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--color-star);
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}


/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}

.area-card {
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.area-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin: 0 auto var(--space-3);
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.area-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.area-card--hq {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--space-4);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.contact-item-value {
  font-size: var(--text-base);
  color: #fff;
  font-weight: 600;
}

.contact-item-value a {
  color: #fff;
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.social-link:hover {
  background: var(--color-accent);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-6) var(--space-8);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-xs);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 400ms; }


/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-6);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-2);
}

.form-group .required {
  color: var(--color-cta);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cta);
  background: rgba(255,255,255,0.12);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-10);
}

.form-group select option {
  background: #1a2a30;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* File upload */
.file-label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm) !important;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  justify-content: center;
}

.file-label:hover {
  border-color: var(--color-cta);
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.file-input {
  display: none !important;
}

.photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.photo-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-item .remove-photo {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-submit {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: 700;
  margin-top: var(--space-2);
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(67, 122, 34, 0.2);
  border: 1px solid rgba(67, 122, 34, 0.4);
  border-radius: var(--radius-md);
  color: #8fce6a;
  margin-top: var(--space-4);
}

.form-success a {
  color: #8fce6a;
}

.form-error {
  padding: var(--space-4);
  background: rgba(161, 44, 123, 0.2);
  border: 1px solid rgba(161, 44, 123, 0.4);
  border-radius: var(--radius-md);
  color: #e88bc5;
  margin-top: var(--space-4);
}

.form-error a {
  color: #e88bc5;
}

/* Hero phone number text */
.hero-phone {
  text-align: center;
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-phone a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-phone a:hover {
  color: var(--color-cta);
}

/* Gallery Project Labels */
.gallery-project-label {
  grid-column: 1 / -1;
  padding: var(--space-2) 0;
  margin-top: var(--space-4);
}

.gallery-project-label:first-child {
  margin-top: 0;
}

.gallery-project-label h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.gallery-project-label.hidden {
  display: none;
}
