/* ==========================================================================
   Comfort Kitchen & Bath — Global Styles
   Aesthetic: Warm Luxury Residential
   ========================================================================== */

/* Google Fonts loaded via <link> in HTML head for performance */

/* --- CSS Custom Properties --- */
:root {
  --green: #2C4A3E;
  --green-dark: #1E352C;
  --green-light: #3A6354;
  --brass: #B8956A;
  --brass-light: #D4B48E;
  --brass-dark: #9A7A54;
  --cream: #FAFAF7;
  --surface: #F2EFEA;
  --surface-dark: #E8E4DE;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #5C5C5C;
  --text-light: #8A8580;
  --border: #E5E2DD;
  --border-dark: #D0CBC4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(184,149,106,.25);
}
.faq-question:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 72ch; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: block;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.8;
}

.bg-surface { background: var(--surface); }
.bg-green {
  background: var(--green);
  color: var(--white);
}
.bg-green h2, .bg-green h3, .bg-green h4,
.bg-green .section-label { color: var(--brass-light); }
.bg-green p, .bg-green li { color: rgba(255,255,255,.85); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--brass);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 20px 40px; font-size: 1.05rem; }

.btn svg, .btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}
.btn:hover .arrow { transform: translateX(4px); }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.header-logo img {
  height: 42px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--green);
  background: rgba(44,74,62,.06);
}

.header-nav .nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green) !important;
  background: none !important;
}
.header-phone:hover {
  background: none !important;
}
.header-phone svg {
  width: 18px;
  height: 18px;
}

.header-cta {
  margin-left: 8px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,53,44,.88) 0%, rgba(44,74,62,.72) 50%, rgba(30,53,44,.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 48px 0;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero .section-label {
  color: var(--brass-light);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page hero (shorter, for inner pages) */
.hero-page {
  min-height: calc(100vh - var(--header-height));
}
.hero-page .hero-content {
  padding: 48px 0;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,53,44,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(30,53,44,.95) 0%, rgba(30,53,44,.2) 70%);
}
.service-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  line-height: 1.5;
}
.service-card .card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-card .card-arrow svg { color: white; width: 18px; height: 18px; }
.service-card:hover .card-arrow {
  background: var(--brass);
  transform: translate(4px, -4px);
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--border-dark);
}
.process-step:last-child::after { display: none; }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 64px;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Differentiators / Feature Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h4 {
  margin-bottom: 10px;
  color: var(--green);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Split Sections (Image + Text) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; color: var(--text-secondary); }
.split-content .btn { margin-top: 12px; }

/* --- Form --- */
.quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.quote-form h3 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}
.quote-form .form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  min-width: 0;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,74,62,.1);
}
.form-group input::placeholder { color: var(--text-light); }
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%235C5C5C'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.form-agreement {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 4px;
  grid-column: 1 / -1;
}
.form-agreement input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}
.form-agreement label {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.45;
}
.form-agreement a {
  color: var(--green);
  text-decoration: underline;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 4px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
}

/* --- Hero Form (overlay style) --- */
.hero-form-wrapper {
  position: relative;
  z-index: 1;
  width: 480px;
  flex-shrink: 0;
}
.hero-form-wrapper .quote-form {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
}

.hero-with-form {
  justify-content: space-between;
}
.hero-with-form .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--green); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}
.faq-item.open .faq-icon {
  background: var(--green);
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Benefits List --- */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-check svg { width: 14px; height: 14px; color: white; }
.benefit-item h4 { font-size: 1rem; margin-bottom: 4px; }
.benefit-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.bg-green .benefit-item p { color: rgba(255,255,255,.85); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin: 0 auto 36px;
  max-width: 600px;
}
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}
.cta-stat {
  text-align: center;
}
.cta-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1;
}
.cta-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* --- Service Areas Grid --- */
.areas-list {
  columns: 4;
  column-gap: 32px;
  margin-top: 36px;
}
.areas-list li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  break-inside: avoid;
}
.areas-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  margin-right: 10px;
  vertical-align: middle;
}

/* --- Materials List --- */
.materials-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.material-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.material-item:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-sm);
}
.material-icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.material-icon svg { width: 22px; height: 22px; }
.material-item h4 { margin-bottom: 6px; color: var(--green); }
.material-item p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* --- Why Choose Us Checklist --- */
.checklist {
  margin-top: 32px;
}
.checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.checklist-item:last-child { border: none; }
.checklist-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist-check svg { width: 12px; height: 12px; color: white; }
.checklist-item p { font-size: 0.95rem; color: var(--text-secondary); }

/* --- Footer --- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 4px; filter: invert(1) hue-rotate(180deg) brightness(1.8); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--brass-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brass-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* --- Mobile Sticky CTA --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--green);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1;
}
.mobile-cta .cta-call {
  background: var(--brass);
}
.mobile-cta .cta-quote {
  border: 2px solid rgba(255,255,255,.3);
}

/* --- Policy Pages --- */
.policy-content {
  padding: 60px 0 100px;
  margin-top: var(--header-height);
}
.policy-content h1 {
  margin-bottom: 8px;
}
.policy-date {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.policy-content h2:first-of-type { border-top: none; padding-top: 0; }
.policy-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 12px 0 20px 20px;
}
.policy-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Contact Page Specifics --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-info-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-info-card .icon {
  width: 56px;
  height: 56px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.contact-info-card .icon svg { width: 24px; height: 24px; }
.contact-info-card h4 { margin-bottom: 6px; }
.contact-info-card p { font-size: 0.92rem; color: var(--text-secondary); }
.contact-info-card a { color: var(--green); font-weight: 500; }

/* --- Map Embed --- */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  margin-top: 48px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.features-grid-4 { grid-template-columns: repeat(4, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .features-grid, .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
  .areas-list { columns: 3; }
  .hero-with-form .container { flex-direction: column; align-items: stretch; }
  .hero-form-wrapper { width: 100%; max-width: 500px; }
  .hero-content { max-width: 100%; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  section { padding: 64px 0; }

  .header-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  /* When menu is open, make header full-screen */
  .site-header.menu-open {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #FFFFFF;
    backdrop-filter: none;
    border-bottom: none;
  }
  .site-header.menu-open .header-inner {
    height: var(--header-height);
  }

  /* Mobile nav overlay */
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    bottom: 0;
    height: calc(100vh - var(--header-height));
    background: #FFFFFF;
    padding: 24px;
    gap: 4px;
    animation: slideDown 0.3s ease;
    overflow-y: auto;
  }
  .header-nav.open a {
    padding: 16px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .header-nav.open .nav-divider { display: none; }
  .header-nav.open .header-phone {
    margin-top: auto;
    justify-content: center;
    font-size: 1.1rem;
    padding: 20px;
    background: var(--surface) !important;
    border-radius: var(--radius-sm);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero { min-height: 70vh; }
  .hero-page { min-height: 60vh; }

  .services-grid, .services-grid-3 { grid-template-columns: 1fr; }
  .features-grid, .features-grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse { direction: ltr; }
  .benefits-list { grid-template-columns: 1fr; }
  .areas-list { columns: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-stats { flex-direction: column; gap: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }

  .quote-form { padding: 28px 20px; }

  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 72px; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .areas-list { columns: 1; }
  .hero-content { padding: 48px 0; }
}

/* --- Success Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalSlideUp 0.4s cubic-bezier(.4,0,.2,1);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon svg { width: 36px; height: 36px; color: white; }
.modal-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.modal-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-close {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-close:hover { background: var(--green-dark); }
