/* ============================================================
   Goldfields Garden Services — design system
   Matched to the Framer source site (spec-driven), with
   quality improvements noted inline.
   ============================================================ */
:root {
  /* AGC demo theme: orange primary, charcoal dark, Montserrat/Inter */
  --gold: #f97316;
  --gold-dark: #ea580c;
  --green: #262626;
  --ink: #000;
  --body: #555;
  --line: #ddd;
  --paper: #fff;
  --mist: #f7f7f7;
  --radius-card: 15px;
  --radius-btn: 10px;
  --container: 1200px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --shadow-card: 0 2px 14px rgba(0, 0, 0, .06);
}

*, *::before, *::after { box-sizing: border-box; }

::selection { background: rgba(249, 115, 22, .3); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Figtree', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.02em; font-family: 'Montserrat', 'Inter', system-ui, sans-serif; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 30px;
}

/* ---------- Type scale (desktop / tablet / phone via clamp) ---------- */
.h1-hero { font-size: clamp(32px, 4.6vw, 65px); line-height: 1.15; }
.h2-section { font-size: clamp(26px, 3.2vw, 45px); line-height: 1.2; }
.h2-small { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.4; letter-spacing: -0.01em; }
.p-lead { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.9; color: var(--body); font-weight: 400; }
.p-body { font-size: clamp(15px, 1.15vw, 16px); line-height: 1.9; color: var(--body); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.9;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease-out), background-color .25s, box-shadow .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 24px rgba(249, 115, 22, .35); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-outline:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .85); }

/* Giant hero CTA */
.btn-hero {
  padding: 0;
  width: 467px;
  max-width: 100%;
  height: 144px;
  border-radius: 10px;
  font-size: clamp(22px, 3vw, 43px);
}

/* ---------- Header (absolute over hero, scrolls away) ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 25px 30px 0;
  display: flex;
  justify-content: center;
}
.site-nav {
  position: relative;
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .15);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  animation: nav-fade .8s var(--ease-out) both;
}
@keyframes nav-fade { from { opacity: 0; } to { opacity: 1; } }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--line);
}
.nav-brand img { width: 76px; height: 76px; }

.nav-menu { display: flex; align-items: center; gap: 40px; margin-left: 30px; }
.nav-menu a:not(.btn) {
  font-size: 16px;
  color: #fff;
  opacity: .95;
  transition: opacity .2s, color .2s;
}
.nav-menu a:not(.btn):hover { opacity: 1; }
.nav-menu a:not(.btn)[aria-current="page"] { color: var(--gold); opacity: 1; }

/* ---------- Tap-to-call in the header (2026-08-28) ----------
   Deliberately a sibling of .nav-menu, not a child of it: on a phone the menu
   collapses behind the hamburger, and the number is the one thing that must
   never be a tap away. `margin-left:auto` is what pulls it (and the menu after
   it) to the right of the brand under the nav's space-between. */
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s var(--ease-out);
}
.nav-call:hover { background: rgba(255, 255, 255, .24); border-color: #fff; }
.nav-call:active { transform: scale(.97); }
.nav-call svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-call-label { font-size: 15px; opacity: .85; }
.nav-call-number { font-size: 16.5px; font-weight: 700; letter-spacing: .01em; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 10s var(--ease-out) both;
}
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .7));
}
.hero > .container { position: relative; z-index: 2; }

.hero-home { padding: 300px 0 200px; }
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-texts { flex: 1; max-width: 600px; }
.hero-home h1 { color: #fff; }
.hero-home .hero-sub { margin-top: 16px; font-size: 16px; line-height: 1.9; color: var(--line); }

.hero-page {
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 180px 0 110px;
}
.hero-page h1 { font-size: clamp(40px, 5vw, 64px); }
.hero-page .hero-sub {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .85);
}

.trust-row { display: flex; align-items: center; gap: 15px; margin-bottom: 26px; }
.trust-avatars { position: relative; display: flex; }
.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}
.trust-avatars img + img { margin-left: -12px; }
.trust-meta h6 { font-size: 16px; letter-spacing: -0.01em; color: var(--line); font-weight: 600; }
.trust-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 3px; }
.trust-stars svg { width: 15px; height: 15px; }

/* ---------- Sections ---------- */
.section-services { padding: 130px 0 150px; }
.section-faq { background: var(--mist); padding: 150px 0; }
.section-head { text-align: center; max-width: 650px; margin: 0 auto 75px; }
.section-head p { margin-top: 20px; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 30px;
}
/* Eight services on the home page — two rows of four on a full-width screen.
   Below 1200px the shared .card-grid rules below take over (2-up, then 1-up). */
@media (min-width: 1200px) {
  .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .card-grid-4 .service-card { height: 360px; padding: 28px; }
  .card-grid-4 .service-card-label { font-size: clamp(17px, 1.35vw, 20px); }
  .card-grid-4 .service-card-label svg { width: 22px; height: 22px; }
  .card-grid-4 .service-card-desc { font-size: 14.5px; }
  /* Five audiences since homeowners were added (2026-08-26). One row of five
     rather than four-and-an-orphan; below 1200px the shared .card-grid rules
     take over exactly as they do for the eight service cards. */
  .card-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
  .card-grid-5 .service-card { height: 340px; padding: 24px; }
  .card-grid-5 .service-card-label { font-size: clamp(15px, 1.15vw, 17px); }
  .card-grid-5 .service-card-label svg { width: 19px; height: 19px; }
  .card-grid-5 .service-card-desc { font-size: 13.5px; }
}
.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .23), rgba(0, 0, 0, .71));
}
.service-card:hover > img { transform: scale(1.06); }
.service-card-desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height .45s var(--ease-out), opacity .45s, transform .45s var(--ease-out);
  margin-bottom: 0;
}
.service-card:hover .service-card-desc {
  max-height: 120px;
  opacity: 1;
  transform: none;
  margin-bottom: 16px;
}
.service-card-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.service-card-label svg {
  width: 26px;
  height: 26px;
  flex: none;
  transition: transform .3s var(--ease-out);
}
.service-card:hover .service-card-label svg { transform: translateX(6px); }

/* ---------- Photo CTA band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; }
.cta-band .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cta-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes cta-drift {
  from { transform: scale(1.02); }
  to { transform: scale(1.14) translate(-1.5%, 2%); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band .cta-bg img { animation: none; }
}
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .5); }
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 75px;
}
.cta-band h2 { max-width: 400px; }

.cta-gold { background: var(--gold); color: #fff; }
.cta-gold .cta-band-inner { padding-block: 100px; }
.cta-gold h2 { max-width: none; }

/* ---------- FAQ ---------- */
.faq-layout {
  display: flex;
  gap: 75px;
  align-items: stretch;
}
.faq-media { flex: 1; }
.faq-media img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.faq-list { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--gold);
  border-top-width: 3px;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background: none;
  border: 0;
  font: inherit;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex: none;
  transition: transform .35s var(--ease-out);
}
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-answer p {
  padding: 0 30px 30px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
}

/* ---------- Benefits (key points) ---------- */
.benefits h2 { margin-bottom: 40px; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 10px;
}
.benefit { display: flex; flex-direction: column; gap: 12px; }
.benefit-head { display: flex; align-items: center; gap: 10px; }
.benefit-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit h3 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.01em; line-height: 1.4; }
.benefit p { font-size: 16px; color: var(--ink); line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { padding: 100px 0; background: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(50px, 1fr));
  gap: 40px;
}
.footer-brand { grid-column: span 3; }
.footer-brand img { width: 78px; height: 73px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { color: var(--body); font-size: 16px; line-height: 1.9; max-width: 240px; }
.footer-social { display: inline-flex; gap: 10px; margin-top: 22px; color: var(--gold); }
.footer-social a { display: inline-flex; transition: opacity .2s; }
.footer-social a:hover { opacity: .7; }
.footer-social svg { width: 20px; height: 20px; }
.footer-spacer { grid-column: span 1; }
.footer-col { grid-column: span 2; }
.footer-col h4 { font-size: clamp(16px, 1.4vw, 20px); letter-spacing: -0.01em; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.footer-col a { color: var(--body); font-size: 16px; line-height: 1.9; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--body);
  font-size: 14px;
}
.footer-phones { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-phones a { font-weight: 600; transition: color .2s; }
.footer-phones a:hover { color: var(--gold-dark); }
.footer-phones .dot { color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-contacts .footer-phones { justify-content: flex-end; }

/* ---------- Service detail pages ---------- */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { opacity: .5; }
.breadcrumb .current { color: rgba(255, 255, 255, .95); }

.hero-service { padding: 275px 0 150px; text-align: center; }
.hero-service .hero-bg::after { background: rgba(0, 0, 0, .73); }
.hero-service .hero-inner {
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.hero-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon svg { width: 28px; height: 28px; color: #fff; }

.section-intro { padding: 100px 0; }
.btn-quote {
  width: 100%;
  height: 148px;
  border-radius: 10px;
  font-size: clamp(20px, 4vw, 58px);
  font-weight: 600;
}
.intro-photos { display: flex; gap: 10px; margin-top: 40px; }
.intro-photos .photo {
  flex: 1;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
.intro-photos .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.contact-points { display: flex; gap: 10px; margin-top: 21px; }
.contact-point { flex: 1; text-align: center; }
/* Single contact: centre it rather than letting one block span the column.
   Below 810px .contact-points stacks, where full width is already correct. */
@media (min-width: 810px) {
  .contact-points-solo { justify-content: center; }
  .contact-points-solo .contact-point { flex: 0 1 480px; }
}
.contact-point h2 { font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.01em; line-height: 1.4; }
.contact-point a {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color .2s;
}
.contact-point a:hover { color: var(--gold-dark); }
.contact-point .email {
  display: block;
  margin-top: 2px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: var(--body);
  overflow-wrap: anywhere;
}
.content-main .intro-photos .photo { height: 400px; }
.content-main .contact-points { margin-bottom: 60px; }

.section-content { padding: 50px 0 150px; }
.content-layout { display: flex; align-items: flex-start; gap: 75px; }
.content-main { flex: 1; min-width: 0; }
.content-main h3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin-bottom: 14px;
}
.content-main h3 + p, .content-main ul { margin-bottom: 40px; }
.content-main p { font-size: 16px; line-height: 1.9; color: var(--body); }
.content-main ul { margin-top: 0; padding-left: 22px; color: var(--body); }
.content-main li { font-size: 16px; line-height: 1.9; }
.sidebar {
  flex: 0 0 350px;
  position: sticky;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-label { font-size: 14px; color: #7a7a7a; line-height: 1.9; }
.sidebar-cards { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-top-width: 3px;
  border-radius: 10px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.sidebar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.sidebar-card img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; flex: none; }
.sidebar-card h5 { flex: 1; font-size: clamp(16px, 1.3vw, 18px); letter-spacing: -0.01em; line-height: 1.6; }
.sidebar-card svg { width: 20px; height: 20px; flex: none; transition: transform .3s var(--ease-out); }
.sidebar-card:hover svg { transform: translateX(4px); }

@media (max-width: 1199.98px) {
  .hero-service { padding: 200px 0 100px; }
  .section-intro { padding: 100px 0; }
  .btn-quote { height: 123px; }
  .intro-photos .photo { height: 400px; }
  .content-layout { gap: 50px; }
  .sidebar { flex-basis: 250px; }
  .sidebar-card img { display: none; }
  .section-content { padding-bottom: 100px; }
}
@media (max-width: 809.98px) {
  .hero-service { padding: 150px 0 75px; }
  .section-intro { padding: 50px 0; }
  .btn-quote { height: 57px; }
  .intro-photos { flex-direction: column; }
  .intro-photos .photo { height: 300px; }
  .contact-points { flex-direction: column; gap: 30px; }
  .content-layout { flex-direction: column; }
  .sidebar { position: static; flex-basis: auto; width: 100%; }
  .sidebar-card img { display: block; }
  .section-content { padding: 40px 0 75px; }
}

/* ---------- Reviews ---------- */
.review-stats {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}
.review-score { text-align: center; }
.review-score .big {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.review-score .review-stars { justify-content: center; margin-top: 10px; }
.review-score .sub { margin-top: 8px; color: var(--body); font-size: 15px; }
.review-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; min-width: 320px; }
.review-bar { min-width: 220px; }
.review-bar .label {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.review-bar .label b { font-weight: 700; }
.review-bar .track {
  height: 8px;
  border-radius: 999px;
  background: #ececec;
  overflow: hidden;
}
.review-bar .fill {
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
}
.review-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #6b5628;
  background: rgba(249, 115, 22, .08);
}
.review-chip svg { width: 16px; height: 16px; color: var(--gold-dark); }

.review-stars { display: flex; gap: 2px; color: var(--gold); }
.review-stars svg { width: 16px; height: 16px; }
.review-stars .off { opacity: .22; }

.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.review-avatar-letter {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  flex: none;
}
.review-head .who { font-weight: 700; font-size: 15px; line-height: 1.4; }
.review-head .what { font-size: 13px; color: #7a7a7a; line-height: 1.45; margin-top: 1px; }

.review-card {
  background: var(--paper);
  border: 1px solid var(--gold);
  border-top-width: 3px;
  border-radius: 12px;
  padding: 26px;
  break-inside: avoid;
  margin-bottom: 24px;
}
.review-card .review-text { margin-top: 14px; font-size: 15.5px; line-height: 1.8; color: #333; }
.review-card .review-meta { margin-top: 16px; }
.review-card .review-meta .who { font-weight: 700; font-size: 15px; }
.review-card .review-meta .what { margin-top: 3px; font-size: 13.5px; color: #7a7a7a; line-height: 1.5; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-grid .review-card { margin-bottom: 0; }
.review-masonry { columns: 3 320px; column-gap: 24px; }
.service-reviews { columns: 2 300px; column-gap: 20px; }
.service-reviews .review-card { margin-bottom: 20px; }

/* White so it alternates against the mist FAQ section directly above it. */
.reviews-home { padding: 130px 0; }
.reviews-home .review-cta { text-align: center; margin-top: 48px; }
.reviews-source { text-align: center; color: #7a7a7a; font-size: 14px; margin-top: 40px; }
.reviews-source a { color: var(--gold-dark); font-weight: 600; }

@media (max-width: 1199.98px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
  .reviews-home { padding: 100px 0; }
}
@media (max-width: 809.98px) {
  .review-stats { gap: 32px; }
  .review-grid { grid-template-columns: 1fr; }
  .reviews-home { padding: 75px 0; }
  .review-score .big { font-size: 56px; }
}

/* ---------- Reveal animations (Framer-style fade-up 50px) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(50px); }
[data-reveal="right"] { transform: translateX(-50px); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .container { max-width: 850px; }
  .hero-home { padding: 200px 0 100px; }
  .section-services { padding: 90px 0 100px; }
  .section-faq { padding: 100px 0; }
  .site-footer { padding: 75px 0; }
  .btn-hero { width: 350px; height: 109px; }
  .nav-menu { gap: 30px; margin-left: 22px; }
  .nav-call { padding: 9px 15px; }
  .nav-call-label { display: none; }   /* the number says it well enough */
  .nav-brand img { width: 60px; height: 60px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { flex-direction: column; gap: 50px; }
  .faq-media img { height: 500px; min-height: 0; }
}

@media (max-width: 809.98px) {
  .container { max-width: 400px; padding-inline: 20px; }
  .site-header { padding: 20px; }
  .hero-home { padding: 150px 0 75px; }
  .hero-home .hero-split { flex-direction: column; align-items: stretch; text-align: center; gap: 30px; }
  .hero-texts { max-width: none; }
  .trust-row { flex-direction: column; gap: 8px; }
  .btn-hero { width: 100%; height: 73px; }
  .section-services { padding: 75px 0; }
  .section-faq { padding: 75px 0; }
  .site-footer { padding: 50px 0; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-contacts { align-items: center; }
  .footer-contacts .footer-phones { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  /* Touch devices get the card descriptions without needing hover */
  .service-card-desc {
    max-height: none;
    opacity: 1;
    transform: none;
    margin-bottom: 12px;
    font-size: 14px;
  }
  .faq-media img { height: 300px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 30px; }
  .cta-gold .cta-band-inner { align-items: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand, .footer-col { grid-column: span 1; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-spacer { display: none; }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: rgba(20, 20, 20, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 15px;
    padding: 30px;
    gap: 15px;
    display: none;
  }
  body.menu-open .nav-menu { display: flex; }
  .nav-menu { margin-left: 0; }
  .nav-toggle { display: block; }
  .nav-brand img { width: 56px; height: 56px; }
  .nav-brand span { font-size: 16px; }
  .nav-call { padding: 9px 14px; gap: 7px; }
  .nav-call-number { font-size: 15.5px; }
}

@media (max-width: 479.98px) {
  /* On a small phone the brand name is the thing that gives way — the logo
     still says who we are, and the number is why the bar exists. */
  .nav-brand span { display: none; }
  .nav-call { padding: 9px 13px; }
}

/* ---------- AGC demo overrides ---------- */
/* The AGC logo is a wide white wordmark, not a square badge. */
.nav-brand img { width: auto; height: 46px; }
@media (max-width: 809.98px) { .nav-brand img { height: 36px; } }
/* Dark footer so the white logo reads. */
.site-footer { background: var(--green); color: #c9c9c9; }
.site-footer h4 { color: #fff; }
.site-footer a { color: #e5e5e5; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #3a3a3a; color: #a3a3a3; }
.footer-brand p { color: #c9c9c9; }
/* Script accent for the "Awesome" voice, as on their site. */
.script-accent { font-family: 'Pacifico', cursive; color: var(--gold); font-weight: 400; }
