@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  --dark:        #0D1B2A;
  --charcoal:    #1A2B3C;
  --slate:       #2C4156;
  --copper:      #C07A35;
  --copper-lt:   #D98F4A;
  --copper-dk:   #9A5E22;
  --cream:       #F4EDE0;
  --off-white:   #FAF7F2;
  --gray-lt:     #E8E2D9;
  --gray-mid:    #9AABB8;
  --text:        #1A1A1A;
  --text-muted:  #5A6A75;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Barlow', system-ui, sans-serif;
  --font-cond:   'Barlow Condensed', system-ui, sans-serif;

  --nav-h:       80px;
  --transition:  0.3s ease;
  --radius:      4px;
  --shadow:      0 8px 32px rgba(13,27,42,0.18);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.28);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1.05rem; line-height: 1.75; color: var(--text-muted); }

.label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ── Utilities ───────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 100px 0; }
.section--dark { background: var(--dark); color: var(--off-white); }
.section--dark p { color: var(--gray-mid); }
.section--charcoal { background: var(--charcoal); color: var(--off-white); }
.section--cream { background: var(--cream); }
.section--slate { background: var(--slate); color: var(--off-white); }

.text-center { text-align: center; }
.text-copper { color: var(--copper); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,122,53,0.35);
}
.btn-primary:hover {
  background: var(--copper-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,122,53,0.45);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--copper);
  background: var(--copper);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* ── Section Headers ─────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 600px; font-size: 1.1rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Navigation ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
}
#navbar.transparent {
  background: transparent;
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.nav-logo-tag {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--copper); }
.nav-cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  padding: 32px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { display: flex; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* HERO IMAGE — aerial view of neighborhood rooftops */
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2B3C 40%, #0A1520 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,122,53,0.12) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
}
.hero-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to left, rgba(192,122,53,0.08) 0%, transparent 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,122,53,0.15);
  border: 1px solid rgba(192,122,53,0.35);
  border-radius: 2px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-lt);
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--copper);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(192,122,53,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--copper);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── Services Grid ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(192,122,53,0.12);
  border: 1px solid rgba(192,122,53,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.service-card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ── Why Us ──────────────────────────────────────────── */
.why-us { background: var(--off-white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-visual {
  position: relative;
}
.why-us-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--charcoal);
  border-radius: 2px;
  /* PHOTO — owner inspecting roof with homeowner */
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 20px;
  text-align: center;
}
.why-us-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 180px; height: 180px;
  border: 2px solid var(--copper);
  border-radius: 2px;
  z-index: -1;
}
.why-us-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--copper);
  color: #fff;
  padding: 24px 28px;
  text-align: center;
}
.why-us-badge .big { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; line-height: 1; display: block; }
.why-us-badge .small { font-family: var(--font-cond); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-top: 4px; }
.why-us-content { }
.why-us-points { margin: 36px 0; display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--copper);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.why-point h4 { margin-bottom: 4px; color: var(--text); }
.why-point p { font-size: 0.95rem; margin: 0; }

/* ── Process ─────────────────────────────────────────── */
.process { background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
}
.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.06); }
.step-num {
  width: 56px; height: 56px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper);
  background: var(--dark);
  position: relative;
  z-index: 1;
}
.process-step h4 { color: #fff; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  padding: 40px 36px;
  border-top: 3px solid var(--copper);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--copper); font-size: 1rem; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text); font-family: var(--font-body); }
.author-meta { font-size: 0.82rem; color: var(--text-muted); }

/* ── Gallery ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
}
.gallery-item {
  background: var(--slate);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) { grid-column: 3 / 5; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
}
.gallery-item:hover .gallery-overlay { background: rgba(13,27,42,0.5); opacity: 1; }

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: var(--copper);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner h2 { color: #fff; max-width: 560px; }
.cta-inner h2 em { font-style: normal; color: var(--dark); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--copper-dk);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: #070E16;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-certifications {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cert-badge {
  background: rgba(192,122,53,0.12);
  border: 1px solid rgba(192,122,53,0.25);
  padding: 6px 12px;
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-lt);
  border-radius: 2px;
}
.footer-col h5 {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--copper-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  color: var(--copper);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}
.footer-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--copper-lt); }

/* ── Float Call Button ───────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: none;
}
.float-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(192,122,53,0.5);
  color: #fff;
  font-size: 1.4rem;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(192,122,53,0.5); }
  50% { box-shadow: 0 8px 40px rgba(192,122,53,0.75); }
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,122,53,0.1) 0%, transparent 60%);
}
.page-hero-line {
  width: 50px; height: 3px;
  background: var(--copper);
  margin-bottom: 20px;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.1rem; max-width: 520px; }

/* ── Services Page ───────────────────────────────────── */
.service-full { padding: 80px 0; border-bottom: 1px solid var(--gray-lt); }
.service-full:last-child { border-bottom: none; }
.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-full-grid.reverse { direction: rtl; }
.service-full-grid.reverse > * { direction: ltr; }
.service-full-photo {
  aspect-ratio: 16/10;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-full h3 { font-size: 1.8rem; margin-bottom: 16px; color: var(--text); }
.service-full h3 span { color: var(--copper); }
.service-full p { margin-bottom: 16px; }
.service-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.service-feature::before {
  content: '✓';
  color: var(--copper);
  font-weight: 700;
  font-size: 0.9rem;
}
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-left: 3px solid var(--copper);
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── About Page ──────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-stack { position: relative; }
.about-photo-main {
  aspect-ratio: 4/5;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-secondary {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 55%;
  aspect-ratio: 1/1;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.about-photo-secondary .num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.about-photo-secondary .txt {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 6px;
}
.about-content { padding-top: 20px; }
.about-content p { margin-bottom: 20px; }
.values-section { background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 32px;
  text-align: center;
  transition: background var(--transition);
}
.value-card:hover { background: rgba(255,255,255,0.07); }
.value-icon { font-size: 2.2rem; margin-bottom: 20px; }
.value-card h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; letter-spacing: 0.05em; }
.value-card p { font-size: 0.9rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(192,122,53,0.3), transparent);
}
.team-card h4 { font-size: 1.15rem; color: var(--text); margin-bottom: 4px; }
.team-card .team-role {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.team-card p { font-size: 0.9rem; }

/* ── Contact Page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: #fff;
}
.form-group textarea { height: 140px; resize: vertical; }
.contact-info { }
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-lt);
  align-items: flex-start;
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--cream);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}
.contact-info-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr { }
.hours-table td {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
}
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.map-placeholder {
  height: 400px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  /* GOOGLE MAP EMBED — 2847 Canton Road, Marietta, GA 30066 */
}
.map-placeholder span {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ── Scroll Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-lt);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}
.faq-q h4 { font-size: 1.05rem; color: var(--text); font-family: var(--font-body); font-weight: 600; }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border: 1px solid var(--gray-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--copper);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 24px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.95rem; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-us-visual { max-width: 480px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-stack { max-width: 440px; }
  .service-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-full-grid.reverse { direction: ltr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .float-call { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-badge { bottom: -12px; left: -12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
