/* ========================================
   STYLES.CSS — Foundation Design System
   ======================================== */

/* --- CSS Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

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

/* --- CSS Variables --- */
:root {
  /* Layout */
  --navbar-height: 80px;
  --max-width: 1200px;
  --content-width: 65ch;
  --section-pad: 80px 20px;
  --section-pad-mobile: 50px 16px;
  --radius: 8px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Colors — Ark Roofing & Renovations */
  --primary: #2C5F7C;
  --primary-dark: #1E4259;
  --primary-rgb: 44, 95, 124;
  --secondary: #1A1A1A;
  --accent: #D4A853;
  --text: #1A1A1A;
  --text-light: #555;
  --bg: #ffffff;
  --bg-alt: #F7F8FA;
  --bg-dark: #111111;
  --bg-warm: #F0EDE8;

  /* Elevation System */
  --elevation-1: 0 1px 3px rgba(0,0,0,0.08);
  --elevation-2: 0 4px 16px rgba(0,0,0,0.10);
  --elevation-3: 0 8px 28px rgba(0,0,0,0.16);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;
}

/* --- Skip-to-Content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: var(--space-sm); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}
@media (max-width: 767px) {
  .container { padding-inline: var(--space-md); }
}

/* --- Prose Width --- */
.prose { max-width: var(--content-width); }
.prose-centered { max-width: var(--content-width); margin-inline: auto; }

/* --- Answer Block --- */
.answer-block {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: var(--space-lg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-xl) 0;
}

/* --- Eyebrow Label --- */
.eyebrow-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

/* --- Section Title --- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: var(--space-lg);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: var(--content-width);
  line-height: 1.6;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 0 var(--primary-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--primary-dark);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--primary-dark);
}

.btn-secondary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* Ripple effect (optional use) */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* --- Cards --- */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--elevation-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--elevation-3);
  transform: translateY(-4px);
}

/* --- Badge Strip --- */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 0;
}
.badge-strip .badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .section-title { color: #fff; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover { box-shadow: 0 6px 0 rgba(0,0,0,0.2); }
.cta-banner .btn-primary:active { box-shadow: 0 2px 0 rgba(0,0,0,0.2); }

/* --- Stat Counter --- */
.stat-counter {
  text-align: center;
  padding: var(--space-lg);
}
.stat-counter .stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.stat-counter .stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Ticker Strip --- */
.ticker-strip {
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  padding: var(--space-md) 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: var(--space-2xl);
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-strip:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Image Composition --- */
.img-reveal {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.split .img-reveal,
.split-reverse .img-reveal {
  aspect-ratio: 4 / 3;
}
.img-reveal:hover img {
  transform: scale(1.03);
}
.split img, .split-reverse img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.grid-asym {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split-reverse > :first-child { order: 2; }
.split-reverse > :last-child { order: 1; }

/* Grid children min-width */
.grid-2 > *, .grid-3 > *, .grid-asym > *, .split > *, .split-reverse > * {
  min-width: 0;
}

/* --- Navbar --- */
body { padding-top: var(--navbar-height); }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  background: var(--primary);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(var(--primary-rgb), 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--elevation-2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.navbar-logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: var(--space-xs) 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}
.nav-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--elevation-3);
  list-style: none;
  padding: var(--space-sm) 0;
  z-index: 1001;
  margin: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block !important;
}
.dropdown li { list-style: none; margin: 0; padding: 0; }
.dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--text) !important;
  font-size: 0.95rem;
  white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--navbar-height));
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.mobile-menu .mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.mobile-menu .mobile-dropdown a {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
}

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: var(--space-lg);
  color: #fff;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  line-height: 1.6;
}
.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}
.hero .hero-phone {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: #fff;
}

/* Hero load animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 { animation: heroFadeUp 0.6s ease forwards; }
.hero p { animation: heroFadeUp 0.6s ease 0.15s forwards; opacity: 0; }
.hero .hero-cta { animation: heroFadeUp 0.6s ease 0.3s forwards; opacity: 0; }
.hero .badge-strip { animation: heroFadeUp 0.6s ease 0.45s forwards; opacity: 0; }

/* --- Scroll Animation Base --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate="wipe-right"] {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transform: none;
  transition: clip-path 0.6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-animate="wipe-right"].in-view {
  clip-path: inset(0 0 0 0);
}

/* --- Floating Label Forms --- */
.form-group {
  position: relative;
  margin-bottom: var(--space-lg);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md);
  padding-top: var(--space-lg);
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}
.form-group label {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all var(--transition);
  background: var(--bg);
  padding: 0 4px;
}
.form-group textarea ~ label {
  top: var(--space-lg);
  transform: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
  top: 2px;
  transform: none;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.875rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--primary); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { margin: 0 var(--space-sm); }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: #fff;
}
.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--accent); }
.footer-social a svg,
.footer-social a i { color: #fff; width: 18px; height: 18px; }
.footer-entity {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-bottom {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--elevation-2);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 990;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--primary-dark); }

/* --- Typography (Oswald + Source Sans 3) --- */
body {
  font-family: 'Source Sans 3', 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--secondary);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { line-height: 1.6; }

/* --- Homepage-Specific Sections --- */

/* Services Grid */
.services-section { padding: var(--section-pad); background: var(--bg); }
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--elevation-2);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
}
.service-card:hover {
  box-shadow: var(--elevation-3);
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.15);
}
.service-card .card-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.service-card .card-icon i { width: 24px; height: 24px; }
.service-card h3 { margin: 0; font-size: 1.15rem; }
.service-card p { font-size: 0.95rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.service-card .card-arrow {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--transition);
}
.service-card:hover .card-arrow { gap: var(--space-sm); }
.service-card .card-arrow i { width: 16px; height: 16px; }

/* Why Choose Section */
.why-choose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.5;
}
.why-choose-list .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 2px;
}
.why-choose-list .check-icon i { width: 16px; height: 16px; }

/* Stats Section */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--space-3xl) var(--space-lg);
}
.stats-section .stat-counter .stat-number { color: var(--accent); }
.stats-section .stat-counter .stat-label { color: rgba(255,255,255,0.7); }
.grid-4-desktop { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) {
  .grid-4-desktop { grid-template-columns: repeat(2, 1fr); }
}

/* Before/After Section */
.before-after-section { padding: var(--section-pad); background: var(--bg-warm); }
.ba-label {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}
.ba-label--before { background: #dc2626; color: #fff; }
.ba-label--after { background: #16a34a; color: #fff; }
.ba-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--elevation-2);
}
.ba-image-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Gallery Grid — Masonry-style */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-md);
}
.gallery-grid .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-grid .gallery-item:hover img { transform: scale(1.04); }
.gallery-grid .gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }
}

/* About Snippet */
.about-snippet { padding: var(--section-pad); background: var(--bg-warm); }
.about-snippet .img-reveal { border-radius: var(--radius); }
.about-snippet .img-reveal img { aspect-ratio: 4/3; object-fit: cover; }

/* FAQ Section */
.faq-section { padding: var(--section-pad); background: var(--bg); }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-item:first-child { border-top: 1px solid #e5e5e5; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 var(--space-lg);
  color: var(--text-light);
  line-height: 1.7;
}

/* Closing CTA */
.closing-cta {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent);
}
.closing-cta .section-title { color: #fff; }
.closing-cta .hero-phone { color: var(--accent); justify-content: center; margin-bottom: var(--space-xl); }
.closing-cta .btn-primary {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 0 #b8913e;
  font-size: 1.1rem;
  padding: var(--space-md) var(--space-2xl);
}
.closing-cta .btn-primary:hover { box-shadow: 0 6px 0 #b8913e; }
.closing-cta .btn-primary:active { box-shadow: 0 2px 0 #b8913e; }

/* ========================================
   RESPONSIVE
   ======================================== */

/* --- Tablet (768-1023px) --- */
@media (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-asym { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile (<768px) --- */
@media (max-width: 767px) {
  :root {
    --navbar-height: 70px;
  }

  .hero { min-height: 70vh; }
  section { padding: var(--section-pad-mobile); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-reverse {
    grid-template-columns: 1fr;
  }
  .split-reverse > :first-child { order: 1; }
  .split-reverse > :last-child { order: 2; }

  .nav-links, .nav-phone-desktop { display: none; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
