/* ==========================================================================
   Green Tech Home Inspections | GreenTechHomeInspections.com
   Brand colors are locked. Do not change without client approval.
   ========================================================================== */

:root {
  --green: #589830;        /* brand primary green: buttons, accents */
  --deep-green: #3F6F22;   /* brand deep green: hovers, links */
  --green-soft: #6CB83D;   /* brand green tint for text on dark slate */
  --slate: #2E3A3F;        /* dark slate: hero and CTA surfaces */
  --slate-deep: #263034;   /* slate gradient end */
  --shield-gray: #989898;
  --light: #F5F6F5;
  --ink: #1C2427;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 10px 40px rgba(17, 17, 17, 0.14);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--deep-green);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  margin: 0.75rem auto 0;
  color: #444;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--deep-green);
  border-color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* Outline buttons sitting on dark slate surfaces */
.hero .btn-outline,
.cta-band .btn-outline,
.book-hero .btn-outline {
  color: var(--white);
  border-color: var(--green-soft);
}

.hero .btn-outline:hover,
.cta-band .btn-outline:hover,
.book-hero .btn-outline:hover {
  background: var(--green);
  border-color: var(--green);
}

.btn-white {
  background: var(--white);
  color: var(--deep-green);
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.15;
}

.logo-text span {
  color: var(--green);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

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

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(150deg, var(--slate) 0%, var(--slate-deep) 100%);
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero h1 {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--green-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 span {
  color: var(--green-soft);
}

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.25rem 0 2rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2.25rem;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #DCE4E0;
}

.hero-badges .badge svg {
  flex-shrink: 0;
}

/* Headshot placeholder: swap the inner block for Erin's photo */
.headshot-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #435259 0%, var(--slate-deep) 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.headshot-frame img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.headshot-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
}

.headshot-caption strong {
  display: block;
  font-size: 0.95rem;
}

.headshot-caption small {
  color: var(--deep-green);
  font-weight: 500;
}

/* ---------- Sections ---------- */

section {
  padding: 72px 0;
}

section.alt {
  background: var(--light);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #444;
  font-size: 0.95rem;
  flex-grow: 1;
}

.card .card-link {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--light);
  color: var(--ink);
  padding: 40px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.trust-item strong {
  color: var(--deep-green);
}

.trust-item span {
  color: #4A5559;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.trust-item span {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ---------- Steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

.quote-card .stars {
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.quote-card blockquote {
  font-size: 1rem;
  color: #333;
  font-style: italic;
}

.quote-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--deep-green);
}

.quote-card.placeholder {
  border-top-color: var(--shield-gray);
  background: var(--light);
  box-shadow: none;
  border: 2px dashed var(--shield-gray);
  border-top: 4px solid var(--shield-gray);
}

.quote-card.placeholder blockquote {
  color: var(--shield-gray);
}

/* ---------- Discount band ---------- */

.discount-band {
  background: var(--green);
  color: var(--white);
  padding: 26px 0;
  text-align: center;
}

.discount-band .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.discount-band strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.discount-band span {
  font-size: 0.98rem;
  opacity: 0.95;
}

.discount-band .pct {
  background: var(--white);
  color: var(--deep-green);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ---------- Video ---------- */

.video-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Erin's intro video is shot vertical (9:16), not landscape */
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 16;
  background: var(--ink);
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-copy h2 {
  margin-bottom: 14px;
}

.video-copy p {
  color: #444;
  margin-bottom: 1rem;
}

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .video-copy {
    text-align: center;
  }
}

/* ---------- Reviews: trust bar + cards ---------- */

.review-trust {
  text-align: center;
  padding: 8px 0 40px;
}

.review-stars {
  color: #E8B008;
  font-size: 1.9rem;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 12px;
}

.review-stat {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.review-stat span {
  color: var(--green);
}

.review-legacy {
  max-width: 560px;
  margin: 18px auto 0;
  padding: 14px 20px;
  border-left: 3px solid var(--green);
  background: var(--light);
  border-radius: 6px;
  font-size: 0.94rem;
  color: #444;
  text-align: left;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.review-card {
  position: relative;
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

/* Alternating rhythm: light fill and white */
.review-card:nth-child(odd) {
  background: var(--white);
}

.review-card:nth-child(even) {
  background: #F0F0F0;
}

.review-card .quote-glyph {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.2rem;
  line-height: 1;
  color: #989898;
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}

.review-card blockquote {
  position: relative;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #2b2b2b;
  padding-left: 26px;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  padding-left: 26px;
  font-style: italic;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-green);
  text-align: right;
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ---------- Review source links ---------- */

.review-sources {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid #DCDCDC;
  border-radius: 50px;
  padding: 9px 18px 9px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.source-link:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.source-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}

.source-mark.redfin { background: #C82021; }
.source-mark.yelp   { background: #D32323; }

.source-link small {
  display: block;
  font-weight: 500;
  font-size: 0.76rem;
  color: #666;
}

/* ---------- Homepage condensed review strip ---------- */

.review-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-strip .review-card {
  padding: 26px 24px 22px;
}

.review-strip blockquote {
  font-size: 0.96rem;
}

@media (min-width: 760px) {
  .review-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 560px;
  margin: 1rem auto 2rem;
  opacity: 0.95;
}

.cta-band .phone-line {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-band .phone-line a {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  background: linear-gradient(150deg, var(--slate) 0%, var(--slate-deep) 100%);
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--green-soft);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero p {
  max-width: 620px;
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Service detail rows ---------- */

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.service-row .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row h3 {
  margin-bottom: 8px;
}

.service-row p {
  color: #444;
  font-size: 0.95rem;
}

.service-row ul {
  margin: 10px 0 0 18px;
  color: #444;
  font-size: 0.92rem;
}

.service-row ul li {
  margin-bottom: 4px;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #435259 0%, var(--slate-deep) 70%);
  position: sticky;
  top: 100px;
}

.about-body p {
  margin-bottom: 1.1rem;
  color: #333;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info-card ul {
  list-style: none;
  margin-top: 20px;
}

.contact-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-card li .icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card li strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--shield-gray);
}

.contact-info-card li a,
.contact-info-card li span.value {
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid #D5D5D5;
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* Checkbox groups on the inspection request form */

.check-group {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

.check-group legend {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  padding: 0;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
  padding: 5px 0;
}

.check-list input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--green);
  margin: 0;
}

.form-note {
  background: var(--light);
  border-left: 3px solid var(--green);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.87rem;
  color: #444;
  margin-bottom: 18px;
}

@media (max-width: 520px) {
  .check-list {
    grid-template-columns: 1fr;
  }
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- Book Now ---------- */

.book-hero {
  background: linear-gradient(150deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.book-hero h1 {
  color: var(--white);
}

.book-hero p {
  max-width: 580px;
  margin: 1rem auto 2rem;
  opacity: 0.95;
  font-size: 1.1rem;
}

.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.book-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.book-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.book-card p {
  color: #444;
  font-size: 0.92rem;
  margin: 8px 0 20px;
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '\2013';
}

.faq-item .faq-body {
  padding: 0 24px 20px;
  color: #444;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
}

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

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
  opacity: 0.8;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--green);
}

.footer-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white) !important;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  .card-grid,
  .steps-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-options {
    grid-template-columns: 1fr;
  }

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

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    max-width: 420px;
  }

  .hero-grid .headshot-frame {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 640px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 8px;
    font-size: 1.05rem;
  }

  .nav-cta {
    margin: 12px 0 0;
  }

  .nav-cta .btn {
    display: block;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .card-grid,
  .steps-grid,
  .values-grid,
  .card-grid.two-col,
  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
