/* ============================================================
   ALPHARETTA PET BOARDING — style.css
   Base styles, variables, typography, layout, components
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --forest:       #0D2818;
  --forest-mid:   #1A4A2E;
  --forest-rich:  #2A6040;
  --sage:         #5A8A6A;
  --sage-light:   #8DB59D;
  --green-pale:   #EAF2ED;
  --cream:        #F7F3EC;
  --cream-deep:   #EDE6D8;
  --warm-white:   #FDFBF8;
  --white:        #FFFFFF;
  --gold:         #B5893A;
  --gold-light:   #D4AA65;
  --gold-pale:    #F5EDD8;
  --text:         #1A1A16;
  --text-mid:     #3A3A32;
  --text-muted:   #6B6B5E;
  --text-subtle:  #9A9A8E;
  --border:       #E2DDD4;
  --border-mid:   #C8C1B4;
  --shadow-sm:    0 2px 8px rgba(13,40,24,0.08);
  --shadow-md:    0 8px 32px rgba(13,40,24,0.12);
  --shadow-lg:    0 20px 60px rgba(13,40,24,0.16);
  --shadow-xl:    0 32px 80px rgba(13,40,24,0.20);
  --section-pad:  6rem;
  --container:    1180px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-gold   { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }

.bg-cream      { background: var(--cream); }
.bg-white      { background: var(--white); }
.bg-forest     { background: var(--forest); }
.bg-warm       { background: var(--warm-white); }
.bg-green-pale { background: var(--green-pale); }

/* ============================================================
   IMAGE ZOOM UTILITY
   ============================================================ */
.img-zoom { overflow: hidden; border-radius: inherit; }
.img-zoom img { transition: transform 0.6s ease; }
.img-zoom:hover img { transform: scale(1.04); }

/* ============================================================
   PREMIUM CARD BASE
   ============================================================ */
.card-premium {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(13,40,24,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,40,24,0.14);
  border-color: rgba(181,137,58,0.35);
}

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.card-glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(181,137,58,0.3);
}
.btn-primary:hover {
  background: #9A7230;
  border-color: #9A7230;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181,137,58,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--forest-mid);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--forest-mid);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--forest-mid);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  padding: 0.55rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}
.topbar-item:hover { color: #fff; }
.topbar-phone {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: linear-gradient(135deg, #B5893A 0%, #9A7230 100%);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.5rem;
  transition: opacity 0.2s;
}
.announce-bar a:hover { opacity: 0.85; }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: linear-gradient(135deg, #0D2818 0%, #1A4A2E 100%);
  background-image:
    linear-gradient(135deg, #0D2818 0%, #1A4A2E 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 50%);
  background-size: cover, 20px 20px;
  padding: 3.5rem 0;
  position: relative;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  color: #fff;
  padding: 0 2rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(181,137,58,0.4), transparent);
}
.stat-item .stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  animation: fade-in-up 0.6s ease both;
}
.stat-item .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  display: block;
}
.stat-item .stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #0D2818 0%, #0A1F12 100%);
  background-image:
    linear-gradient(135deg, #0D2818 0%, #0A1F12 100%),
    radial-gradient(ellipse at 30% 50%, rgba(181,137,58,0.12) 0%, transparent 60%);
  background-blend-mode: normal, normal;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(181,137,58,0.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Decorative paw watermark */
.cta-band::after {
  content: '';
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='65' rx='22' ry='28' fill='white'/%3E%3Cellipse cx='22' cy='38' rx='11' ry='14' fill='white'/%3E%3Cellipse cx='78' cy='38' rx='11' ry='14' fill='white'/%3E%3Cellipse cx='36' cy='22' rx='8' ry='11' fill='white'/%3E%3Cellipse cx='64' cy='22' rx='8' ry='11' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.03;
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-band > .container > p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 0.75rem;
}
.cta-band-fine {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin: 0 auto 2.5rem;
  display: block;
}
.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,40,24,0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item.large {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(13,40,24,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 48px rgba(13,40,24,0.12);
  transform: translateY(-4px);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--green-pale);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.testimonial-stars svg {
  color: var(--gold);
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.testimonial-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-subtle);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.reviews-section-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,12,0.95) 0%, rgba(7,20,12,0.6) 50%, rgba(7,20,12,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}
.page-hero-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.page-hero h1 {
  color: #fff;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  max-width: 500px;
  line-height: 1.7;
}

/* ============================================================
   TRUST POINTS
   ============================================================ */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-mid);
}
.trust-point-text {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.trust-point h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.trust-point p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--forest-mid), var(--gold), var(--forest-mid));
  opacity: 0.4;
}
.step {
  text-align: center;
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 16px rgba(13,40,24,0.06);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(13,40,24,0.2);
}
.step h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.step p {
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ============================================================
   LOCATION CARD (floating)
   ============================================================ */
.location-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 260px;
  z-index: 3;
  border: 1px solid var(--border);
}
.location-card .lc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.location-card .lc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.location-card .lc-addr {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.location-card .lc-hours {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(13,40,24,0.04);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.faq-item.open {
  border-left: 3px solid var(--gold);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--forest-mid); }
.faq-btn svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-btn svg {
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 0 1.5rem;
}

/* ============================================================
   DIFF SECTION (alternating)
   ============================================================ */
.diff-section {
  padding: 5rem 0;
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diff-inner.reverse {
  direction: rtl;
}
.diff-inner.reverse > * {
  direction: ltr;
}
.diff-content h2 {
  margin-bottom: 1rem;
}
.diff-content p {
  margin-bottom: 1.5rem;
}
.diff-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.diff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.diff-img:hover img {
  transform: scale(1.03);
}
/* Odd sections: slight rotation */
.diff-section:nth-of-type(odd) .diff-img {
  transform: rotate(-1deg);
}
.diff-section:nth-of-type(odd) .diff-img:hover {
  transform: rotate(-1deg) scale(1.02);
}
/* Big decorative number */
.diff-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--green-pale);
  line-height: 0.9;
  display: block;
  margin-bottom: -1.5rem;
  user-select: none;
}
.diff-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.diff-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.diff-point svg {
  color: var(--forest-rich);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table thead {
  background: var(--forest);
  color: #fff;
}
.compare-table thead th {
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compare-table thead th:not(:first-child) {
  text-align: center;
}
.compare-table thead th.highlight-col {
  background: var(--gold);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: rgba(13,40,24,0.02);
}
.compare-table tbody td {
  padding: 1rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.compare-table tbody td:not(:first-child) {
  text-align: center;
}
.compare-table td.apb-col {
  background: rgba(234,242,237,0.6);
}
.compare-table .check { color: #2A6040; font-weight: 700; }
.compare-table .cross { color: #C0392B; }
.compare-table .partial { color: #D4AA65; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: flex-start;
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(26,74,46,0.1);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-error-msg {
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 0.3rem;
  display: block;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B5E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--forest-mid);
  cursor: pointer;
}
.form-checkbox.error label { color: #C0392B; }
.honeypot-field { display: none !important; }
.form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: 0.4rem;
}
.contact-info {
  position: sticky;
  top: 100px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest-mid);
}
.ci-item a {
  color: var(--text-mid);
  transition: color 0.2s;
}
.ci-item a:hover { color: var(--forest); }
.ci-hours-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}
.ci-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.ci-hours-row:last-child { border-bottom: none; }
.map-embed-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.25rem;
  border-top: 4px solid var(--gold);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
/* Legacy alias */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.25rem;
  border-top: 4px solid var(--gold);
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A1F12;
  color: rgba(255,255,255,0.45);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-serving {
  font-size: 0.78rem;
  margin-top: 0.5rem !important;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer-logo span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: rgba(255,255,255,0.85);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--sage);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: rgba(255,255,255,0.85);
}
.footer-hours {
  font-size: 0.82rem;
  margin-top: 0.5rem;
  line-height: 1.8;
}
.footer-hours strong {
  color: rgba(255,255,255,0.65);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SERVICES NAV (sticky sub-nav)
   ============================================================ */
.services-nav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.services-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.services-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.services-nav a:hover { color: var(--forest-mid); }
.services-nav a.active {
  color: var(--forest);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   REQUIREMENTS BLOCK
   ============================================================ */
.requirements-block {
  background: linear-gradient(135deg, #0D2818 0%, #1A4A2E 100%);
  padding: 5rem 0;
}
.requirements-block .section-label {
  color: var(--gold-light);
}
.requirements-block h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.requirements-block > .container > p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.req-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.req-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181,137,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.req-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.req-card ul {
  list-style: none;
}
.req-card ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.req-card ul li:last-child { border-bottom: none; }
.req-card ul li::before {
  content: '✓';
  color: var(--sage-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   VALUES CARDS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(13,40,24,0.06);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(181,137,58,0.4);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-pale) 0%, rgba(181,137,58,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--forest-mid);
  transition: background 0.3s;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--green-pale) 0%, rgba(181,137,58,0.18) 100%);
}
.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--forest);
}
.value-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   FACILITY CHECKLIST
   ============================================================ */
.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.facility-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.facility-item svg {
  color: var(--forest-mid);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PULL QUOTE
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
}

/* ============================================================
   SERVICE SECTION LAYOUT
   ============================================================ */
.service-section {
  padding: 5.5rem 0;
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-img:hover img {
  transform: scale(1.03);
}
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(181,137,58,0.9);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.service-content h2 {
  margin-bottom: 1rem;
}
.service-content p {
  margin-bottom: 1.25rem;
}
.service-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(181,137,58,0.12);
  border: 1px solid rgba(181,137,58,0.3);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-feature:last-child {
  border-bottom: none;
}
.service-feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--forest-rich);
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}
.price-from {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-mid);
}
.price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   MOSAIC GALLERY (About page)
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mosaic-item {
  overflow: hidden;
  border-radius: 16px;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mosaic-item:hover img {
  transform: scale(1.05);
}
.mosaic-item.tall {
  grid-row: span 2;
}

/* ============================================================
   HERO TRUST SIGNALS
   ============================================================ */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
}
.hero-trust-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.trust-badge svg {
  color: var(--gold-light);
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem;
}
.thankyou-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--forest-mid);
  box-shadow: 0 8px 32px rgba(13,40,24,0.12);
}
.thankyou-card h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--forest);
}
.thankyou-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thankyou-details {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}
.thankyou-detail-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
}
.thankyou-detail-row svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem;
}
.notfound-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.notfound-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  opacity: 0.12;
  margin-bottom: -2rem;
}
.notfound-card h1 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--forest);
}
.notfound-card p {
  margin-bottom: 2rem;
}
.notfound-links {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.notfound-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.notfound-links a:hover { color: var(--forest-mid); }

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: 4rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 2;
  }

  .stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-item:not(:last-child)::after { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before { display: none; }

  .diff-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .diff-inner.reverse { direction: ltr; }
  .diff-section:nth-of-type(odd) .diff-img {
    transform: none;
  }
  .diff-section:nth-of-type(odd) .diff-img:hover {
    transform: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info { position: static; }

  .req-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .compare-table {
    font-size: 0.82rem;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 0.75rem 0.75rem;
  }

  .hide-tablet { display: none; }

  .why-trust-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-img {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-pad: 3rem; }

  .container { padding: 0 1.25rem; }

  .topbar-item:not(.topbar-phone) { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: span 1; }

  .stat-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .req-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-btns {
    flex-direction: column;
    align-items: center;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .mosaic-item.tall { grid-row: span 1; }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .facility-list {
    grid-template-columns: 1fr;
  }

  .thankyou-card {
    padding: 2.5rem 1.5rem;
  }

  .notfound-card {
    padding: 2.5rem 1.5rem;
  }

  .reviews-header {
    padding: 0 1rem;
  }

  .pull-quote p {
    font-size: 1.3rem;
  }
}
