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

:root {
  /* Brand Colors – matching original Rockin' K site */
  --green:      #3D7A2E;
  --green-lt:   #52A040;
  --green-dk:   #2C5C20;
  --charcoal:   #1C1C1C;
  --charcoal2:  #2A2A2A;
  --warm-white: #F7F4EF;
  --cream:      #EDE8E0;
  --stone:      #8C8478;
  --stone-lt:   #B8B0A4;
  --text:       #1C1C1C;
  --text-muted: #6B6660;
  --white:      #FFFFFF;
  --border:     rgba(0,0,0,0.1);
  --section-pad: 96px;
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: relative;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 50;
}
.nav-logo img { height: 80px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--green-lt) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  height: 80vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(255,255,255,0.30);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 960px;
  padding: 0 24px;
  animation: heroFade 1.1s ease-out 0.3s both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-brand {
  font-family: var(--ff-body);
  font-size: clamp(48px, 9vw, 100px);
  font-weight: 800; line-height: 1.0;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.hero-brand span {
  display: block;
  font-size: clamp(40px, 7.5vw, 88px);
  font-weight: 800;
}
.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 24px auto 36px;
  max-width: 700px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 3px;
  transition: background var(--transition), transform 0.2s;
  border: 2px solid var(--green);
}
.btn-green:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  transform: translateY(-2px);
}
.btn-green-outline {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 3px;
  border: 2px solid var(--green);
  transition: background var(--transition), transform 0.2s;
}
.btn-green-outline:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  transform: translateY(-2px);
}

/* Smaller hero variant for inner pages */
.hero-inner { height: 60vh; min-height: 460px; }
.hero-inner .hero-brand {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-inner .hero-brand em {
  font-style: italic; font-weight: 300; color: var(--green);
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
  background: var(--cream);
  padding: 0 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-inner {
  display: flex; align-items: stretch;
  border-left: 1px solid rgba(0,0,0,0.07);
  border-right: 1px solid rgba(0,0,0,0.07);
}
.trust-item {
  flex: 1;
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 2px;
}
.trust-value {
  font-size: 13px; font-weight: 400;
  color: var(--text-muted);
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section { padding: var(--section-pad) 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic; font-weight: 300; color: var(--green);
}
.section-body {
  font-size: 16px; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
  max-width: 620px;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: background var(--transition), transform 0.2s;
  border: 2px solid var(--green);
}
.btn-primary:hover { background: var(--green-lt); border-color: var(--green-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 3px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--green-lt); color: var(--green-lt); }

/* ══════════════════════════════
   SERVICES GRID (homepage)
══════════════════════════════ */
.services { background: var(--warm-white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 32px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card img {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.92) 0%, rgba(10,20,10,0.35) 50%, transparent 100%);
  transition: background var(--transition);
}
.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(10,20,10,0.94) 0%, rgba(10,20,10,0.55) 60%, rgba(10,20,10,0.15) 100%);
}
.service-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.service-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-lt);
  border: 1px solid rgba(82,160,64,0.55);
  padding: 4px 10px;
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--ff-display);
  font-size: 28px; font-weight: 600;
  color: var(--white); line-height: 1.2;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.75); line-height: 1.65;
  margin-bottom: 20px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-desc { max-height: 130px; opacity: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-lt);
  transition: gap var(--transition);
}
.service-link:hover { gap: 14px; }
.service-arrow { font-size: 14px; }

/* ══════════════════════════════
   FEATURE CARDS (inner pages)
══════════════════════════════ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(61,122,46,0.10);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px;
}
.feature-body {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted); line-height: 1.7;
}

/* Two-column content block */
.content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.content-image { aspect-ratio: 4/3; overflow: hidden; }
.content-image img { transition: transform 0.6s ease; }
.content-image:hover img { transform: scale(1.04); }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9; overflow: hidden;
}
.about-img-sm { aspect-ratio: 4/3; overflow: hidden; }
.about-img-main img, .about-img-sm img { transition: transform 0.6s ease; }
.about-img-main:hover img, .about-img-sm:hover img { transform: scale(1.04); }
.about-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px; margin-top: 12px;
}
.stat-box { background: var(--green); padding: 22px; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 38px; font-weight: 600;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.about-text .section-body { margin-bottom: 20px; }
.about-list { margin: 20px 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 400;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  color: var(--green); font-size: 15px; margin-top: 1px; flex-shrink: 0;
}

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process { background: var(--warm-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 56px;
}
.process-step {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 40px 32px;
  position: relative;
  transition: background var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  background: #f0f7ee;
  box-shadow: 0 4px 20px rgba(61,122,46,0.10);
}
.step-number {
  font-family: var(--ff-display);
  font-size: 68px; font-weight: 700; line-height: 1;
  color: rgba(61,122,46,0.15);
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px;
}
.step-desc {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted); line-height: 1.7;
}
.step-connector {
  position: absolute; top: 40px; right: -1px;
  width: 2px; height: 40px;
  background: var(--green);
  opacity: 0.30;
}
.process-step:last-child .step-connector { display: none; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 56px;
}
.faq-item {
  background: var(--white);
  padding: 32px;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item:hover { background: var(--warm-white); }
.faq-q {
  font-family: var(--ff-display);
  font-size: 17px; font-weight: 600;
  color: var(--charcoal); line-height: 1.4;
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.faq-icon {
  font-size: 20px; color: var(--green);
  flex-shrink: 0; margin-top: 2px;
  transition: transform var(--transition);
}
.faq-a {
  font-size: 14px; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
}

/* ══════════════════════════════
   AREAS / CALLOUT
══════════════════════════════ */
.service-areas { background: var(--warm-white); }
.areas-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  margin-top: 48px;
}
.areas-text .section-body { margin-bottom: 32px; }
.areas-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.area-item {
  padding: 12px 0;
  font-size: 15px; font-weight: 400;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.area-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%; flex-shrink: 0;
}
.areas-callout {
  background: var(--green);
  padding: 48px;
}
.callout-title {
  font-family: var(--ff-display);
  font-size: 26px; font-weight: 600; font-style: italic;
  color: var(--white); margin-bottom: 16px; line-height: 1.3;
}
.callout-body {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 28px;
}

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  padding: var(--section-pad) 48px;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { filter: brightness(0.30); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,30,20,0.90), rgba(20,30,20,0.60));
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
  text-align: center;
}
.cta-content .section-eyebrow { color: var(--green-lt); }
.cta-content .section-title { color: var(--white); margin-bottom: 20px; }
.cta-content .section-title em { color: var(--green-lt); }
.cta-content .section-body {
  color: rgba(255,255,255,0.72);
  margin: 0 auto 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   SCHEDULE  (Calendly inline embed)
══════════════════════════════ */
.schedule-section {
  background: var(--cream);
  padding: var(--section-pad) 48px;
  border-top: 1px solid var(--border);
}
.schedule-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.schedule-inner .section-eyebrow { display: inline-block; }
.schedule-inner .section-title { margin-bottom: 16px; }
.schedule-inner .section-body { margin: 0 auto 40px; }
.schedule-meta {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 36px;
}
.schedule-meta span { display: inline-flex; align-items: center; gap: 8px; }
.schedule-meta strong { color: var(--charcoal); font-weight: 600; }
.schedule-embed-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  overflow: hidden;
  padding: 4px;
}
.schedule-embed-wrap .calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}
.schedule-alt {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.schedule-alt a {
  color: var(--green);
  font-weight: 500;
  border-bottom: 1px solid rgba(61,122,46,0.3);
  transition: border-color var(--transition);
}
.schedule-alt a:hover { border-bottom-color: var(--green); }
@media (max-width: 640px) {
  .schedule-section { padding: 64px 20px; }
  .schedule-embed-wrap .calendly-inline-widget { height: 760px; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--green-dk);
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 60px; width: auto; object-fit: contain; margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.50); line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-lt); margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-lt); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px; line-height: 1.5;
}
.footer-contact-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.30);
}
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--green-lt); color: var(--green-lt); }
.footer-social svg { width: 18px; height: 18px; }

/* ══════════════════════════════
   GREEN CALLOUT — Get in Touch / Follow Us blocks
══════════════════════════════ */
.callout-foot {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.callout-foot + .callout-foot { margin-top: 18px; padding-top: 18px; }
.callout-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.callout-link {
  display: block; margin-bottom: 4px;
  font-size: 16px; font-weight: 600; color: var(--white);
  transition: opacity var(--transition);
}
.callout-link:hover { opacity: 0.85; text-decoration: underline; }
.callout-meta {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.80); margin-top: 8px;
}
.callout-social { display: flex; flex-wrap: wrap; gap: 8px; }
.callout-social a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--white);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 3px;
  transition: background var(--transition), border-color var(--transition);
}
.callout-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  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; }

/* ══════════════════════════════
   BREADCRUMBS
══════════════════════════════ */
.breadcrumbs {
  background: var(--cream);
  padding: 16px 48px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}
.breadcrumbs li {
  display: flex; align-items: center; gap: 8px;
}
.breadcrumbs li + li::before {
  content: '/';
  color: var(--stone-lt);
}
.breadcrumbs a {
  color: var(--green);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--green-lt); }
.breadcrumbs [aria-current="page"] {
  color: var(--charcoal);
  font-weight: 500;
}

/* ══════════════════════════════
   GOOGLE REVIEWS (static, on-brand cards)
══════════════════════════════ */
.google-reviews { margin: 32px auto 0; max-width: 1200px; }
.gr-header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
  background: var(--white);
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.gr-google-logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-body); font-size: 15px; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0;
  margin-bottom: 6px;
}
.gr-google-logo svg { display: block; }
.gr-rating-big {
  display: flex; align-items: center; gap: 14px;
}
.gr-rating-num {
  font-family: var(--ff-display);
  font-size: 44px; font-weight: 600; line-height: 1;
  color: var(--charcoal);
}
.gr-stars-big {
  font-size: 22px; letter-spacing: 2px;
  color: #FBBC04;
}
.gr-meta {
  font-size: 13px; color: var(--text-muted);
  margin-top: 2px;
}
.gr-meta a { color: var(--green); font-weight: 500; }
.gr-meta a:hover { color: var(--green-lt); }
.gr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 24px;
}
.gr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 22px;
  position: relative;
  display: flex; flex-direction: column;
}
.gr-card-head {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px;
}
.gr-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.gr-meta-block { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gr-name {
  font-size: 14px; font-weight: 600;
  color: var(--charcoal); line-height: 1.2;
}
.gr-date { font-size: 12px; color: var(--text-muted); }
.gr-stars {
  color: #FBBC04; font-size: 14px; letter-spacing: 1px;
  margin-bottom: 10px;
}
.gr-body {
  font-size: 14px; font-weight: 300;
  color: var(--text); line-height: 1.7;
}
.gr-source {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--cream);
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.gr-source svg { width: 14px; height: 14px; }
.gr-cta {
  text-align: center; margin-top: 28px;
}

/* ══════════════════════════════
   TEAM (About page + homepage teaser)
══════════════════════════════ */
.team-section { background: var(--warm-white); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.team-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.team-photo {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-name {
  font-family: var(--ff-display);
  font-size: 20px; font-weight: 600;
  color: var(--charcoal);
  margin: 22px 0 4px;
}
.team-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}

.team-bios { margin-top: 80px; display: grid; gap: 56px; }
.team-bio {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: start;
  scroll-margin-top: 120px;
}
.team-bio:nth-child(even) { direction: rtl; }
.team-bio:nth-child(even) > * { direction: ltr; }
.team-bio-photo {
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream);
}
.team-bio-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.team-bio-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.team-bio-name {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.6vw, 32px); font-weight: 600;
  color: var(--charcoal); line-height: 1.2;
  margin-bottom: 20px;
}
.team-bio-text {
  font-size: 15px; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
}
.team-bio-text + .team-bio-text { margin-top: 14px; }

/* Homepage teaser strip */
.crew-teaser { background: var(--cream); }
.crew-teaser-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center;
}
.crew-teaser-text .section-eyebrow { margin-bottom: 12px; }
.crew-teaser-text .section-title { margin-bottom: 16px; }
.crew-avatars {
  display: flex; gap: 0;
}
.crew-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  margin-left: -18px;
  background: var(--warm-white);
  transition: transform var(--transition);
}
.crew-avatar:first-child { margin-left: 0; }
.crew-avatar:hover { transform: translateY(-4px); z-index: 2; }
.crew-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* ══════════════════════════════
   CONTACT FORM (shared section)
══════════════════════════════ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.contact-info .section-body { margin-bottom: 24px; }
.contact-info-list { margin-top: 24px; display: grid; gap: 14px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--text-muted);
}
.contact-info-item .icon {
  font-size: 18px; flex-shrink: 0;
}
.contact-info-item a { color: var(--green); font-weight: 500; }
.contact-info-item a:hover { color: var(--green-lt); }
.contact-form {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.contact-form .form-row { margin-bottom: 18px; }
.contact-form .form-row.two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .form-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 6px;
}
.contact-form .form-label .req { color: var(--green); margin-left: 2px; }
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--green); }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.contact-form .form-submit {
  display: inline-block;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid var(--green);
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  margin-top: 6px;
}
.contact-form .form-submit:hover { background: var(--green-lt); border-color: var(--green-lt); }
.contact-form .form-fineprint {
  font-size: 12px; color: var(--text-muted); line-height: 1.6;
  margin-top: 14px;
}
.contact-form .honeypot { position: absolute; left: -9999px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr; gap: 4px; }
  .service-card { aspect-ratio: 16/7; min-height: 420px; }
  .service-desc { max-height: none; opacity: 1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .crew-teaser-inner { grid-template-columns: 1fr; gap: 28px; }
  .gr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav { padding: 0 20px; height: 72px; }
  .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0;
    background: #FFFFFF;
    padding: 20px 20px 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .nav-links.open a { font-size: 16px; color: var(--charcoal); }
  .nav-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero-inner { min-height: 60vh; }
  .hero-brand { font-size: clamp(32px, 10vw, 52px); }
  .section { padding: var(--section-pad) 20px; }
  .trust-bar { padding: 0 20px; }
  .trust-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .breadcrumbs { padding: 12px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-section { padding: 64px 20px; }
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-bios { margin-top: 56px; gap: 40px; }
  .team-bio { grid-template-columns: 1fr; gap: 20px; }
  .team-bio:nth-child(even) { direction: ltr; }
  .team-bio-photo { max-width: 240px; }
  .contact-form .form-row.two { grid-template-columns: 1fr; }
  .crew-avatar { width: 64px; height: 64px; margin-left: -14px; border-width: 3px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-green,
  .hero-actions .btn-green-outline { text-align: center; }
  .areas-list { grid-template-columns: 1fr; }
}
