/* ============================================================
   Clarity Roofing Florida — clarityroofingfl.com
   Static site CSS — faithful port of WordPress/Elementor design
   Colors: Navy #1B2B5B, Gold/Orange accent #E8931D, White
   Font: Inter (matches original)
   ============================================================ */

:root {
  --navy:      #1B2B5B;
  --navy-dark: #141f45;
  --navy-mid:  #233270;
  --gold:      #E8931D;
  --gold-lt:   #f5a83c;
  --white:     #ffffff;
  --off-white: #f5f7fb;
  --gray-lt:   #e8ecf4;
  --gray:      #8a94a8;
  --body-txt:  #3d4566;
  --font:      'Inter', sans-serif;
  --radius:    6px;
  --max-w:     1200px;
  --sec:       clamp(64px, 8vw, 100px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body-txt);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 0.97rem; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label { /* "What we offer" style small label */
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

/* ── Utilities ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--sec) 0; }
.section-sm { padding: 56px 0; }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.centered   { text-align: center; }
.bg-navy    { background: var(--navy); }
.bg-off     { background: var(--off-white); }

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-primary  { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); }
.btn-gold     { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-white    { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); }
.btn-outline  { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── Top Bar ── */
.topbar {
  background: var(--navy-dark);
  padding: 7px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(27,43,91,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo img { height: 42px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.site-nav > li > a:hover,
.site-nav > li > a.active { color: var(--gold); }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.5; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  min-width: 250px;
  box-shadow: 0 8px 32px rgba(27,43,91,0.14);
  z-index: 200;
  overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-lt);
  transition: background 0.12s, color 0.12s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--off-white); color: var(--gold); }

.nav-phone {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-left: 16px;
  transition: background 0.2s;
}
.nav-phone:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--navy-dark);
  padding: 16px 0 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav .sub a {
  padding-left: 40px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .m-cta {
  margin: 16px 24px 0;
  display: block;
  text-align: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ── Hero ── */
.hero {
  background: var(--off-white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.hero-content {
  padding: 72px 48px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.hero-content h1 { color: var(--navy); margin-bottom: 20px; }
.hero-content p  { color: #555; max-width: 460px; margin-bottom: 32px; font-size: 0.97rem; line-height: 1.7; }
/* Image bleeds to right viewport edge */
.hero-image {
  position: relative;
  overflow: hidden;
  /* Extend to right edge of viewport */
  margin-right: calc(-50vw + var(--max-w) / 2);
  min-height: 480px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Hero mini cards below */
.hero-cards {
  background: var(--white);
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
}
.hero-cards .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-card {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-lt);
  text-align: center;
}
.hero-card:last-child { border-right: none; }
.hero-card-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 36px; height: 36px; color: var(--navy); }
.hero-card h3 { color: var(--gold); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.hero-card p { color: #666; font-size: 0.875rem; line-height: 1.6; }

/* ── About Strip (challenge section) ── */
.about-strip { background: var(--white); }
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { color: var(--navy); margin-bottom: 20px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.about-text p  { color: #555; margin-bottom: 14px; font-size: 0.97rem; line-height: 1.7; }
/* Stats sit below the two-column grid as their own band */
.stats-band {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  margin-top: 48px;
  /* Span full width by using negative margin trick */
}
.stat-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-lt);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 6px; display: block; }
/* Image — no border-radius, fills column */
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }

/* ── Dark Banner ── */
.dark-banner {
  background: var(--navy);
  padding: 56px 0;
}
.dark-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  max-width: 860px;
  line-height: 1.3;
}

/* ── Services Section ── */
.services-section { background: var(--white); }
.services-section .container > .section-label { margin-bottom: 6px; }
.services-section .container > h2 { text-align: center; color: var(--navy); margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(27,43,91,0.12); transform: translateY(-2px); }
.service-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
/* Grayscale on unhoverd, color on hover — matches original */
.service-card-img img { filter: grayscale(30%); }
.service-card:hover .service-card-img img { filter: grayscale(0%); }
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card h3 { color: var(--navy); font-size: 1.05rem; }
.service-card p  { color: #666; font-size: 0.875rem; line-height: 1.6; flex: 1; }
.service-card .btn { align-self: flex-start; margin-top: 8px; }

/* ── Why Choose (CTA + worker image) ── */
.why-section {
  background: var(--off-white);
  overflow: hidden;
}
.why-section .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: end;
}
.why-left {}
.why-left h2 { color: var(--navy); margin-bottom: 16px; }
.why-left p  { color: #555; margin-bottom: 32px; font-size: 0.97rem; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-feat {
  background: rgba(27,43,91,0.06);
  border-radius: var(--radius);
  padding: 20px;
}
.why-feat-icon svg { width: 28px; height: 28px; color: var(--navy); margin-bottom: 10px; }
.why-feat h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.9rem; }
.why-feat p  { color: #666; font-size: 0.84rem; line-height: 1.55; }
.why-worker {
  width: 200px;
  flex-shrink: 0;
  align-self: flex-end;
}
.why-worker img { width: 100%; }
.why-right {
  text-align: center;
  padding: 48px 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.why-years {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.why-right .why-years { color: var(--white); }
.why-right .why-label { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.stars-row { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; }
.why-right p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.6; }

/* ── Save Money Strip ── */
.save-strip {
  background: var(--navy);
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
}
.save-strip-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/clarity-roofing-commercial-flat-roof-inspection.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.save-strip .container { position: relative; z-index: 2; }
.save-strip h2 { color: var(--white); max-width: 580px; margin-bottom: 16px; }
.save-strip > .container > p { color: rgba(255,255,255,0.75); max-width: 540px; margin-bottom: 40px; }
.save-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
}
.save-feat {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.save-feat h4 { color: var(--white); margin-bottom: 10px; font-size: 0.92rem; }
.save-feat p  { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }
.testimonials-section .container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.testimonial-image { border-radius: 12px; overflow: hidden; }
.testimonial-image img { width: 100%; height: 420px; object-fit: cover; }
.testimonials-content {}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  margin-bottom: 24px;
}
.testimonial-card:last-child { margin-bottom: 0; }
.quote-mark {
  font-size: 4rem;
  color: var(--navy);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-lt);
  flex-shrink: 0;
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.stars-sm { color: var(--gold); font-size: 0.75rem; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-section .container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.faq-list {}
.faq-list h2 { color: var(--navy); margin-bottom: 8px; }
.faq-divider { width: 40px; height: 3px; background: var(--gold); margin-bottom: 32px; }
details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
details summary {
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details[open] summary { background: var(--navy); color: var(--white); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 1.3rem; flex-shrink: 0; color: var(--gold); transition: transform 0.2s; }
details[open] summary::after { transform: rotate(45deg); color: var(--white); }
details .faq-body { padding: 16px 20px 20px; font-size: 0.91rem; color: #555; line-height: 1.7; }

.faq-contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-lt);
  position: sticky;
  top: 100px;
}
.faq-contact-box small { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }
.faq-contact-box h3 { color: var(--navy); margin: 10px 0 20px; font-size: 1.15rem; }
.faq-contact-box .btn { width: 100%; justify-content: center; margin-bottom: 24px; }
.faq-divider-sm { width: 100%; height: 1px; background: var(--gray-lt); margin-bottom: 24px; }
.faq-contact-box h4 { color: var(--navy); margin-bottom: 14px; }
.contact-mini-form { display: flex; flex-direction: column; gap: 10px; }
.contact-mini-form input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-mini-form input:focus { border-color: var(--navy); }

/* ── Contact Section ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info p  { color: #555; font-size: 0.97rem; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; }
.c-detail-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-detail-icon svg { width: 18px; height: 18px; color: var(--white); }
.c-detail label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 2px; }
.c-detail a, .c-detail span { font-size: 0.93rem; color: var(--navy); }
.contact-form-box {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px 36px;
}
.contact-form-box h3 { color: var(--navy); margin-bottom: 24px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d0d6e8;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--body-txt);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.95rem; margin-top: 6px; }
.form-success { display: none; padding: 14px; background: #e8f5e9; border-radius: var(--radius); color: #2e7d32; font-size: 0.88rem; margin-top: 10px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; }

/* ── Service Detail ── */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.service-body h2 { color: var(--navy); margin-bottom: 16px; }
.service-body h3 { color: var(--navy); margin: 28px 0 10px; font-size: 1.1rem; }
.service-body p  { color: #555; margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
.service-body ul { margin: 12px 0 20px; }
.service-body ul li {
  padding: 9px 0 9px 24px;
  position: relative;
  color: #555;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-lt);
}
.service-body ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.service-sidebar { position: sticky; top: 88px; }
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 20px;
  color: var(--white);
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 10px; }
.sidebar-cta p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.sidebar-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-weight: 700; font-size: 1rem;
}
.sidebar-phone svg { width: 16px; height: 16px; }
.sidebar-nav {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-nav h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.sidebar-nav ul li { border-bottom: 1px solid var(--gray-lt); }
.sidebar-nav ul li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 0.875rem; font-weight: 500; color: var(--navy);
  transition: color 0.15s;
}
.sidebar-nav ul li a:hover { color: var(--gold); }
.sidebar-nav ul li a.active { color: var(--gold); font-weight: 600; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item { overflow: hidden; aspect-ratio: 4/3; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── CTA Band ── */
.cta-band {
  background: var(--gold);
  padding: 60px 0;
}
.cta-band .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band-text h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band-text p  { color: rgba(255,255,255,0.85); margin-top: 6px; font-size: 0.97rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-brand-logo { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-info { display: flex; flex-direction: column; gap: 12px; }
.f-contact { display: flex; align-items: flex-start; gap: 10px; }
.f-contact svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.f-contact a, .f-contact span { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.5; }
.f-contact a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--white); }

/* ── Fade-in animation ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s, transform 0.55s; }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-content { padding: 56px 0 40px; }
  .hero-image {
    margin-right: -24px;
    margin-left: -24px;
    min-height: 340px;
  }
  .about-strip .container { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 340px; }
  .stats-band { margin-top: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section .container { grid-template-columns: 1fr; }
  .why-worker { display: none; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .save-feats { grid-template-columns: 1fr; }
  .testimonials-section .container { grid-template-columns: 1fr; }
  .testimonial-image { max-height: 280px; }
  .testimonial-image img { height: 280px; }
  .faq-section .container { grid-template-columns: 1fr; }
  .faq-contact-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --sec: 60px; }
  .site-nav, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-cards .container { grid-template-columns: 1fr; }
  .hero-card { border-right: none; border-bottom: 1px solid var(--gray-lt); }
  .hero-card:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 18px; }
}
