/* ============================================
   DG Decks & Carpentry — V1 Crest-Inspired
   Premium warm aesthetic, deep shadows,
   pill buttons, generous spacing
   Brand: #1E1C44 / #A5A49B / #000
   Fonts: Rethink Sans + Onest
   ============================================ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10001;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* 2. Custom Properties */
:root {
  --color-primary: #1E1C44;
  --color-primary-dark: #13122e;
  --color-secondary: #A5A49B;
  --color-accent: #A5A49B;
  --color-text: #1a1a1a;
  --color-text-muted: #605c58;
  --color-text-inverse: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #F7F7F0;
  --color-bg-dark: #0c0b1e;
  --color-bg-card: #ffffff;
  --color-border: #e8e5e0;
  --color-border-strong: #d4d0ca;
  --btn-primary-bg: var(--color-primary);
  --btn-primary-text: #ffffff;
  --btn-primary-hover: var(--color-primary-dark);
  --btn-ghost-border: var(--color-primary);
  --btn-ghost-text: var(--color-primary);
  --font-display: 'Rethink Sans', Georgia, serif;
  --font-body: 'Onest', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* 3. Base */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg-alt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* 4. Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.13;
  color: var(--color-text);
  text-wrap: balance;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(38px, 5vw, 70px); font-weight: 700; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
p { max-width: 68ch; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #757470;
  margin-bottom: 16px;
}
.section-heading {
  margin-bottom: 24px;
}
.section-heading.centered { text-align: center; }
.section-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-secondary);
  margin-top: 20px;
  border-radius: 2px;
}
.section-heading.centered::after { margin-left: auto; margin-right: auto; }
.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.section-subtitle.centered { text-align: center; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* 5. Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 120px 0; }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
  box-shadow: 0 4px 14px rgba(30, 28, 68, 0.15);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(30, 28, 68, 0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--btn-ghost-text);
  border-color: var(--btn-ghost-border);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(30, 28, 68, 0.2);
}
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* 8. Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
  overflow: visible;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: visible;
}

/* Oversized logo */
.header-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: 116px;
  height: 48px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo img {
  position: absolute;
  left: 0;
  top: 0;
  height: 84px;
  width: auto;
  max-width: none;
  transition: height 0.25s ease-out;
  transform-origin: left top;
}
.site-header.scrolled .header-logo img { height: 44px; }
@media (min-width: 1025px) {
  .header-logo { width: 135px; height: 56px; }
  .header-logo img { height: 88px; }
  .site-header.scrolled .header-logo img { height: 52px; }
}

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.25s;
  position: relative;
}
.site-header:not(.scrolled) .header-nav a { color: var(--color-text-inverse); }
.header-nav a:hover { color: var(--color-secondary); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s;
  border-radius: 1px;
}
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; cursor: pointer; }
.has-dropdown .dropdown-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 250px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  color: var(--color-text) !important;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary) !important;
  padding-left: 26px;
}
.dropdown-menu a::after { display: none; }
/* Nested dropdown (flyout) */
.dropdown-menu .has-nested {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text) !important;
  cursor: pointer;
  transition: all 0.2s;
  border-top: 1px solid var(--color-border);
  margin-top: 6px;
}
.dropdown-menu .has-nested::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.dropdown-menu .has-nested:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary) !important;
  padding-left: 26px;
}
.nested-menu {
  position: absolute;
  top: -1px;
  left: 100%;
  min-width: 200px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.has-nested:hover .nested-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nested-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  color: var(--color-text) !important;
  transition: all 0.2s;
}
.nested-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary) !important;
  padding-left: 26px;
}
.nested-menu a::after { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-bg-dark);
  padding: 12px 26px;
  background: #E6DF50;
  border: 1px solid #E6DF50;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}
.site-header.scrolled .header-cta {
  background: #E6DF50;
  color: var(--color-bg-dark);
  border-color: #E6DF50;
}
.header-cta:hover {
  background: #d4cd3e;
  border-color: #d4cd3e;
  color: var(--color-bg-dark);
}
.header-cta svg { width: 16px; height: 16px; }

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-inverse);
  transition: all 0.3s;
}
.site-header.scrolled .mobile-menu-toggle span { background: var(--color-text); }
.mobile-menu-toggle.open span { background: var(--color-text-inverse); }
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--color-bg-dark);
  padding: 100px 32px 32px;
  transition: right 0.35s ease;
  z-index: 1005;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-inverse);
  border-bottom: 1px solid rgba(165, 164, 155, 0.1);
}
.mobile-nav a:hover { color: var(--color-secondary); }
.mobile-nav .dropdown-label { color: var(--color-secondary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 16px; padding: 8px 0 4px; border: none; }
.mobile-nav .mobile-subnav a { padding-left: 16px; font-size: 14px; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1004; }
body.nav-open .nav-overlay { display: block; }

/* 9. Hero */
.hero-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 11, 30, 0.88) 0%, rgba(30, 28, 68, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0;
  max-width: 680px;
  text-align: left;
}
.hero-content .section-label {
  color: var(--color-secondary);
  font-size: 13px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--color-text-inverse);
  margin-bottom: 28px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
}
.hero-content h1 span { color: var(--color-secondary); }
.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }
.hero-actions .btn-primary {
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  border-color: var(--color-secondary);
  box-shadow: 0 6px 20px rgba(165, 164, 155, 0.3);
}
.hero-actions .btn-primary:hover {
  background: #918f87;
  border-color: #918f87;
  box-shadow: 0 16px 36px rgba(165, 164, 155, 0.3);
}
.hero-actions .btn-ghost {
  color: var(--color-text-inverse);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-actions .btn-ghost:hover {
  border-color: var(--color-text-inverse);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-inverse);
}

/* Hero — Centered Variant */
.hero-section.is-centered {
  justify-content: center;
}
.hero-section.is-centered .hero-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section.is-centered .hero-content {
  text-align: center;
  margin: 0 auto;
}
.hero-section.is-centered .hero-actions {
  justify-content: center;
}
.hero-section.is-centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Hero — 2-Column with Lead Form */
.hero-section.has-form .hero-overlay {
  background: linear-gradient(135deg, rgba(12, 11, 30, 0.88) 0%, rgba(30, 28, 68, 0.65) 100%);
}
/* The form grid lives inside .hero-bg, so the bg must flow in-document
   for the section to grow with the form (otherwise it clips). */
.hero-section.has-form { overflow: visible; }
.hero-section.has-form .hero-bg { position: relative; inset: auto; width: 100%; }
.hero-form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
  padding: 160px 0;
}
.hero-left .section-label { color: var(--color-secondary); }
.hero-left h1 { color: var(--color-text-inverse); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; margin-bottom: 28px; }
.hero-left h1 span { color: var(--color-secondary); }
.hero-left .hero-subtitle { color: rgba(255, 255, 255, 0.75); max-width: 560px; font-size: 15px; line-height: 1.7; }
.hero-left .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-left .btn-ghost { color: var(--color-text-inverse); border-color: rgba(255, 255, 255, 0.25); }
.hero-left .btn-ghost:hover { border-color: var(--color-text-inverse); background: rgba(255, 255, 255, 0.08); color: var(--color-text-inverse); }
.hero-form-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-form-card h2 { font-size: 32px; margin-bottom: 6px; color: var(--color-text); }
.hero-form-card .form-subtitle { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; }
.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form .form-group { margin-bottom: 14px; }
.hero-form .form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 5px; }
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%; padding: 10px 14px; font-family: var(--font-body); font-size: 14px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-bg); color: var(--color-text); transition: border-color 0.2s;
}
.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(30, 28, 68, 0.06); }
.hero-form .form-group textarea { resize: vertical; min-height: 70px; }

/* 10. Trust Bar */
.trust-bar {
  background: var(--color-primary);
  padding: 28px 0;
  position: relative;
  z-index: 5;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(165, 164, 155, 0.2);
}
a.trust-item {
  text-decoration: none;
  transition: opacity 0.2s;
}
a.trust-item:hover { opacity: 0.75; }
a.trust-item .trust-number { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,0.3); }
a.trust-item:hover .trust-number { text-decoration-color: var(--color-secondary); }
.trust-item svg { width: 24px; height: 24px; color: var(--color-secondary); flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; }
.trust-number { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--color-text-inverse); }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.3; }

/* 11. Sections */

/* About */
.about-section { background: var(--color-bg); }
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-section .about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.5s;
}
.about-section .about-image:hover img { transform: scale(1.03); }
.about-text p { margin-bottom: 20px; color: var(--color-text-muted); font-size: 16px; line-height: 1.75; }
.about-text p:first-of-type { color: var(--color-text); font-size: 18px; line-height: 1.7; }
.about-text .btn { margin-top: 12px; }

/* Services */
.services-section { background: var(--color-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 11, 30, 0.92) 0%, rgba(12, 11, 30, 0.15) 55%);
}
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
}
.service-card-content h3 { color: var(--color-text-inverse); font-size: 24px; margin-bottom: 10px; }
.service-card-content p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
/* Service card hover reveal */
.service-card-details { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0; }
.service-card-details ul { list-style: none; padding: 0; margin: 0 0 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.service-card-details ul li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 3px 0 3px 14px; position: relative; }
.service-card-details ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--color-secondary); }
.service-card-details .details-label { font-size: 12px; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px; display: block; }
.service-card:hover .service-card-details { max-height: 300px; opacity: 1; }
.service-card-overlay { transition: background 0.4s ease; }
.service-card:hover .service-card-overlay { background: linear-gradient(0deg, rgba(12, 11, 30, 0.95) 0%, rgba(12, 11, 30, 0.7) 100%); }

.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.service-card:hover .service-card-link svg { transform: translateX(5px); }

/* Stats */
.stats-section {
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  padding: 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(165, 164, 155, 0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Why Choose Us */
.why-choose-section { background: var(--color-bg); }
.why-choose-section .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.why-items { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-items ul { list-style: none; padding: 0; margin: 8px 0 0; }
.why-items ul li { font-size: 15px; color: var(--color-text-muted); padding: 5px 0 5px 22px; position: relative; line-height: 1.5; }
.why-items ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-secondary); }
.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.why-item:hover .why-icon {
  background: var(--color-primary);
  box-shadow: 0 8px 24px rgba(30, 28, 68, 0.2);
}
.why-item:hover .why-icon svg { color: var(--color-text-inverse); }
.why-icon svg { width: 24px; height: 24px; color: var(--color-primary); transition: color 0.3s; }
.why-content h3 { font-size: 20px; margin-bottom: 8px; }
.why-content p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }
.why-image-stack { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.why-image-stack .why-image { flex: 1; }
.why-grid > .why-image { height: 100%; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; transition: transform 0.5s; }
.why-image:hover img { transform: scale(1.03); }

/* Process */
.process-section { background: var(--color-bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(30, 28, 68, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-number {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(30, 28, 68, 0.35);
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--color-border);
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-text-muted); max-width: 200px; margin: 0 auto; line-height: 1.6; }

/* Testimonials */
.testimonials-section { background: var(--color-bg-dark); }
.testimonials-section .section-label { color: var(--color-secondary); }
.testimonials-section .section-heading { color: var(--color-text-inverse); }
.testimonials-section .section-heading::after { background: var(--color-secondary); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(165, 164, 155, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 3px solid var(--color-secondary);
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  background: rgba(255, 255, 255, 0.07);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-stars svg { width: 18px; height: 18px; color: #f0c040; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { font-size: 15px; font-weight: 600; color: var(--color-text-inverse); }
.testimonial-location { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Gallery */
.gallery-section { background: var(--color-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid .row-2 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid > .gallery-item img { aspect-ratio: 1/1; }
.gallery-grid .row-2 .gallery-item img { aspect-ratio: 4/3; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 32px; height: 32px; color: var(--color-text-inverse); }
.gallery-cta { text-align: center; margin-top: 44px; }

/* CTA Strip */
.cta-strip {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(165, 164, 155, 0.06) 0%, transparent 50%);
}
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 {
  color: var(--color-text-inverse);
  margin-bottom: 12px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.cta-strip h2::after { display: none; }
.cta-strip p { color: rgba(255,255,255,0.6); margin: 0 auto 24px; font-size: 17px; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 32px;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.cta-phone:hover { color: #c4beb5; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary {
  background: #E6DF50;
  color: var(--color-bg-dark);
  border-color: #E6DF50;
  box-shadow: 0 6px 20px rgba(230, 223, 80, 0.3);
}
.cta-actions .btn-primary:hover { background: #d4cd3e; border-color: #d4cd3e; }

/* Service Areas */
.service-areas-section { background: var(--color-bg-alt); }
.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-areas-map { border-radius: var(--radius-md); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-lg); }
.service-areas-map iframe { width: 100%; height: 100%; min-height: 420px; }
.service-areas-content p { font-size: 16px; color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.7; }
.service-areas-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.service-areas-list li { font-size: 16px; font-weight: 500; color: var(--color-text); padding-left: 20px; position: relative; }
.service-areas-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); }

/* FAQ */
.faq-section { background: var(--color-bg); }
.faq-section .faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.faq-item[open] .faq-question::after {
  content: '\00d7';
  font-size: 20px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.faq-question:hover { color: var(--color-primary); }
.faq-answer { padding: 0 28px 24px; }
.faq-answer p { font-size: 15px; color: var(--color-text-muted); line-height: 1.75; }

/* 12. Footer */
.site-footer {
  background: var(--color-bg-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(165, 164, 155, 0.08);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-inverse);
  margin-bottom: 20px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 64px; width: auto; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(165, 164, 155, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-bg-dark); }
.footer-social svg { width: 16px; height: 16px; }
.footer-nav a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--color-secondary); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-secondary); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--color-secondary); }
.footer-bottom {
  padding: 28px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-license { font-size: 13px; color: rgba(255,255,255,0.55); }

/* 13. Forms */
.contact-section { background: var(--color-bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--color-bg-card);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(30, 28, 68, 0.06);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { padding: 16px; background: #ecfdf5; border-radius: var(--radius-sm); margin-top: 16px; }
.form-success p { color: #065f46; font-size: 15px; font-weight: 500; }
.form-error { padding: 16px; background: #fef2f2; border-radius: var(--radius-sm); margin-top: 16px; }
.form-error p { color: #991b1b; font-size: 15px; }
.form-error a { color: #991b1b; text-decoration: underline; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--color-bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--color-primary); }
.contact-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--color-text); }
.contact-card a,
.contact-card p { font-size: 15px; color: var(--color-text-muted); }
.contact-card a:hover { color: var(--color-primary); }

/* GMB Map */
.gmb-map-section { line-height: 0; }
.gmb-map-section iframe { width: 100%; height: 420px; border: 0; }

/* Focus Styles (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible,
.service-card:focus-visible,
.gallery-item:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.hero-form .form-group input:focus-visible,
.hero-form .form-group select:focus-visible,
.hero-form .form-group textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  box-shadow: none;
}

/* Inner Pages */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(12, 11, 30, 0.88) 0%, rgba(30, 28, 68, 0.6) 100%); }
.page-hero .hero-content { position: relative; z-index: 2; padding-top: 140px; }
.page-hero h1 { color: var(--color-text-inverse); font-size: clamp(32px, 4vw, 52px); margin-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Content sections for inner pages */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--color-bg-alt); }
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-split[style*="gap:0"] { align-items: stretch; }
.content-split[style*="gap:0"] .content-image { height: 100%; }
.content-split[style*="gap:0"] .content-image img { height: 100%; object-fit: cover; }
.content-section h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 24px;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-secondary);
  margin-top: 16px;
  border-radius: 2px;
}
.content-section h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 36px;
  margin-bottom: 12px;
}
.content-section p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 16px;
}
.content-section p.lead { color: var(--color-text); font-size: 18px; }
.highlight-text {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-primary);
  padding: 24px 28px;
  margin: 28px 0 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.highlight-text p { color: var(--color-text); font-weight: 500; margin-bottom: 0; font-size: 16px; line-height: 1.7; }
.content-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.content-section ul li {
  font-size: 15px;
  color: var(--color-text-muted);
  padding: 4px 0 4px 20px;
  position: relative;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.content-section ul.single-col { grid-template-columns: 1fr; }
.content-section .content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.content-section .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Process steps for inner pages (reuse homepage pattern) */
.inner-process { counter-reset: inner-step; }
.inner-process .process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.inner-process .process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(30, 28, 68, 0.25);
  flex-shrink: 0;
}
.inner-process h3 { margin-top: 8px; margin-bottom: 8px; }
.inner-process p { margin-bottom: 0; }

/* Service navigation grid */
.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-nav-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.service-nav-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}
.service-nav-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}
.service-nav-card h3 {
  font-size: 18px;
  margin: 0;
  color: var(--color-text);
}
.service-nav-card h3::after { display: none; }

@media (max-width: 1024px) {
  .service-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-nav-grid { grid-template-columns: 1fr; }
}

/* Interactive service list */
.interactive-service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.interactive-service-list li {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.25s;
}
.interactive-service-list li::before { display: none; }
.interactive-service-list li:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-left-color: var(--color-secondary);
}
.interactive-service-list li.active {
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-bg-alt);
  border-left-color: var(--color-primary);
}
.interactive-service-list li a { color: inherit; text-decoration: none; }
.interactive-service-list li a:hover { text-decoration: underline; }
.interactive-service-image img { transition: opacity 0.3s ease; }
.interactive-service-image img.fading { opacity: 0; }

/* Related services grid */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.related-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.related-service-card h3 { font-size: 20px; margin-bottom: 10px; margin-top: 0; }
.related-service-card h3::after { display: none; }
.related-service-card p { font-size: 14px; margin-bottom: 16px; }

@media (max-width: 1024px) {
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .related-services { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .content-section ul { grid-template-columns: 1fr; }
  .page-hero { min-height: 35vh; }
}

/* 14. Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.gallery-lightbox { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.gallery-lightbox.open { opacity: 1; visibility: visible; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: var(--color-text-inverse); font-size: 36px; cursor: pointer; padding: 8px; z-index: 10; transition: color 0.2s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--color-secondary); }
.lightbox-close { top: -48px; right: 0; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); font-size: 48px; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms; animation-duration: 0.01ms; }
}

/* 15. Responsive */
@media (max-width: 1024px) {
  .section-pad { padding: 80px 0; }
  .header-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero-section.has-form { min-height: auto; overflow: visible; }
  .hero-section.has-form .hero-bg { position: relative; inset: auto; width: 100%; }
  .hero-form-grid { grid-template-columns: 1fr; gap: 32px; padding: 120px 0; }
  .hero-form-card { max-width: 480px; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .service-areas-map { min-height: 300px; }
  .service-areas-map iframe { min-height: 300px; }
  .trust-bar-inner { gap: 20px; }
  .trust-item:not(:last-child)::after { display: none; }
  .about-section .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-choose-section .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .row-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .row-2 .gallery-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gmb-map-section iframe { height: 320px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 130px 0; }
  .hero-section.has-form { min-height: auto; overflow: visible; }
  .hero-section.has-form .hero-bg { position: relative; inset: auto; width: 100%; }
  .hero-form-grid { padding: 110px 0; }
  .hero-left .hero-actions { flex-direction: column; }
  .hero-left .btn { width: 100%; justify-content: center; }
  .hero-form .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { flex-direction: column; gap: 14px; text-align: center; }
  .trust-item { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .row-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* Map Embed */
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* Featured Review Card */
.featured-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(30, 28, 68, 0.12);
  border: 1px solid var(--color-border);
}
.featured-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.featured-review-badge::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.featured-review-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 16px;
}
.featured-review-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}
.featured-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.featured-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.featured-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-review-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  display: block;
}
.featured-review-author-loc {
  font-size: 13px;
  color: var(--color-text-muted);
}
.featured-review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.featured-review-stars svg {
  width: 18px;
  height: 18px;
}
.featured-review-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.featured-review-cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* Reviews Grid */
.reviews-grid-section { background: var(--color-bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(30, 28, 68, 0.08);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.review-card-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.review-card-stars svg { width: 16px; height: 16px; }
.review-card-quote {
  font-size: 56px;
  line-height: 1;
  color: var(--color-bg-alt);
  font-family: Georgia, serif;
  font-weight: 700;
  margin-top: -8px;
  user-select: none;
}
.review-card-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 24px;
}
.review-card-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 20px;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  display: block;
  line-height: 1.3;
}
.review-card-author-loc {
  font-size: 13px;
  color: var(--color-text-muted);
}
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Hero Split Grid (Gallery page) */
.hero-split-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 0;
  width: 100%;
}
.hero-split-left { max-width: 520px; }
.hero-split-left .section-label { color: var(--color-secondary); font-size: 13px; margin-bottom: 20px; display: block; }
.hero-split-left h1 { color: var(--color-text-inverse); margin-bottom: 20px; font-size: clamp(34px, 3.8vw, 52px); line-height: 1.1; }
.hero-split-left .hero-subtitle { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.hero-split-left .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-split-left .hero-actions .btn-primary { background: var(--color-secondary); color: var(--color-bg-dark); border-color: var(--color-secondary); }
.hero-split-left .hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.hero-split-left .hero-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-split-right {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 36px;
  backdrop-filter: blur(4px);
}
.hero-split-intro {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.hero-split-list li {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}
.hero-split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.hero-split-close {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 1024px) {
  .hero-split-grid { grid-template-columns: 1fr; gap: 40px; padding: 130px 0; }
  .hero-split-left { max-width: 100%; }
}
@media (max-width: 640px) {
  .hero-split-list { grid-template-columns: 1fr; }
  .hero-split-right { padding: 24px; }
}

/* Review card body clamp + Read more toggle */
.review-card-body {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-body.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.review-card-toggle {
  background: none;
  border: none;
  padding: 4px 0 0;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: block;
  text-align: left;
  font-family: var(--font-body);
}
.review-card-toggle:hover { text-decoration: underline; }

/* Contact Page Photo Carousel */
.contact-photo-carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--color-bg-alt);
}
.cpc-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cpc-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.cpc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cpc-prev,
.cpc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.cpc-prev { left: 12px; }
.cpc-next { right: 12px; }
.cpc-prev:hover,
.cpc-next:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.cpc-prev svg,
.cpc-next svg { width: 18px; height: 18px; color: var(--color-primary); }
.cpc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.cpc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.cpc-dot.active {
  background: #fff;
  transform: scale(1.25);
}
