
:root {
  --bg: #19110c;
  --bg-soft: #241711;
  --ink: #211610;
  --muted: #6e615a;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(33,22,16,.12);
  --paper: #fff8f3;
  --paper-2: #f9efe7;
  --white: #ffffff;
  --accent: #ff8a3d;
  --accent-dark: #d95f12;
  --accent-soft: #ffe3cf;
  --shadow: 0 28px 70px rgba(32,21,15,.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: 16px; transform: translateY(-140%);
  background: var(--accent); color: #1e130d; padding: 10px 14px; border-radius: 999px; z-index: 100;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(25,17,12,.84); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line); color: var(--white);
}
.header-inner {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, #ffb07a, var(--accent)); color: #1e130d;
  font-family: "Space Grotesk", sans-serif; font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255,255,255,.66); font-size: 12px; }
.desktop-nav {
  display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.78); font-size: 14px;
}
.desktop-nav a, .phone-link { text-decoration: none; }
.desktop-nav a:hover, .phone-link:hover { color: #ffc89e; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { font-weight: 700; color: #ffc89e; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px;
  background: transparent; color: white; padding: 10px;
}
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 5px 0; }
.mobile-nav { display: none; padding: 0 18px 18px; }
.mobile-nav a {
  display: block; padding: 12px 0; color: rgba(255,255,255,.78); text-decoration: none; border-top: 1px solid var(--line);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden;
}

.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(255,138,61,.28), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(255,214,178,.14), transparent 30%),
    linear-gradient(135deg, #1b120d, #2f1d14 52%, #140d09);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent 72%); pointer-events: none;
}
.hero-grid {
  position: relative; min-height: 740px; padding: 96px 0 88px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center;
}
.eyebrow {
  margin: 0 0 14px; color: var(--accent-dark); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
}
.hero .eyebrow, .process .eyebrow, .service-area .eyebrow { color: #ffc89e; }
h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif; line-height: 1; letter-spacing: -.04em; margin: 0;
}
h1 { font-size: clamp(48px, 7vw, 84px); max-width: 680px; }
h2 { font-size: clamp(34px, 5vw, 56px); }
h3 { font-size: 24px; line-height: 1.08; }
.hero-lede {
  color: rgba(255,255,255,.76); font-size: clamp(18px, 2vw, 22px); max-width: 630px; margin: 24px 0 32px;
}
.hero-actions, .header-actions { flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 20px;
  border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #1e130d; box-shadow: 0 16px 38px rgba(255,138,61,.24); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.intro-band .btn-secondary, .process .btn-secondary { color: var(--ink); border-color: var(--line-dark); background: white; }
.hero-actions { display: flex; gap: 12px; }
.trust-strip {
  margin: 42px 0 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px;
}
.trust-strip div {
  padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.07);
}
.trust-strip dt { font-size: 24px; font-weight: 800; color: #ffbf90; }
.trust-strip dd { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: 13px; }

.hero-visual { position: relative; min-height: 560px; }
.hero-photo {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; min-height: 560px; object-fit: cover; object-position: center; }
.floating-card {
  position: absolute; background: rgba(34,21,14,.92); border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
  box-shadow: 0 26px 60px rgba(0,0,0,.25); padding: 18px 20px; max-width: 290px;
}
.install-card { left: -18px; bottom: 36px; }
.stat-card { right: -16px; top: 36px; }
.card-label {
  display: inline-block; margin-bottom: 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: #ffbf90;
}
.floating-card p, .floating-card li { color: rgba(255,255,255,.76); margin: 0; }
.floating-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.floating-card strong { color: white; }

.section { padding: 96px 0; }
.intro-band { background: var(--white); }
.intro-grid, .section-heading.split, .process-grid, .contact-grid, .review-layout, .area-card {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start;
}
.intro-grid p:last-child, .section-heading p, .process-copy p, .contact-copy p, .area-card p {
  color: var(--muted); font-size: 18px; margin: 0;
}
.section-heading { margin-bottom: 34px; max-width: 840px; }
.section-heading.split { max-width: none; align-items: end; }

.planner-section { background: var(--paper-2); }
.planner-shell { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; align-items: stretch; }
.planner, .estimate-panel, .comparison-card, .timeline article, .cards-3 article, .price-table, .review-wall blockquote, .area-card, .contact-form {
  border: 1px solid var(--line-dark); background: rgba(255,255,255,.78); box-shadow: var(--shadow); border-radius: var(--radius-lg);
}
.planner { padding: 28px; display: grid; gap: 24px; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-weight: 800; margin-bottom: 12px; }
.choice-grid, .toggle-list { display: grid; gap: 10px; }
.choice-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.choice-grid label, .toggle-list label, select, input, textarea { border: 1px solid var(--line-dark); border-radius: 16px; background: white; }
.choice-grid label, .toggle-list label { padding: 14px; cursor: pointer; }
input[type="radio"], input[type="checkbox"] { accent-color: var(--accent-dark); margin-right: 8px; }
input[type="range"] { width: 100%; accent-color: var(--accent-dark); }
.range-meta { display: flex; align-items: center; justify-content: space-between; color: var(--muted); }
.range-meta strong { color: var(--ink); font-size: 20px; }
select, input, textarea { width: 100%; padding: 14px 16px; color: var(--ink); }
textarea { resize: vertical; }
.estimate-panel {
  padding: 28px; display: flex; flex-direction: column; gap: 18px; background: #241711; color: white;
}
.panel-label { color: #ffbf90; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.estimate-panel strong { font-family: "Space Grotesk", sans-serif; font-size: clamp(36px, 4vw, 54px); line-height: 1; }
.estimate-panel p, .estimate-panel small { color: rgba(255,255,255,.7); }
.full { width: 100%; }

.comparison { background: var(--white); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-card {
  padding: 32px; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative;
}
.comparison-card::before {
  content: ""; position: absolute; right: -70px; bottom: -70px; width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,.25), transparent 68%);
}
.work-card::before { background: radial-gradient(circle, rgba(255,194,150,.25), transparent 68%); }
.card-kicker { color: var(--accent-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.comparison-card ul, .area-list { margin: 24px 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.comparison-card li { padding-left: 26px; position: relative; color: var(--muted); }
.comparison-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 800; }
.text-button {
  align-self: flex-start; border: 0; padding: 0; background: transparent; color: var(--accent-dark); font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 5px;
}

.process { background: #241711; color: white; }
.process-grid { align-items: center; }
.process-copy { position: sticky; top: 116px; }
.process-copy p { color: rgba(255,255,255,.72); margin: 22px 0; }
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.timeline article {
  background: rgba(255,255,255,.07); color: white; border-color: var(--line); padding: 24px; display: grid; grid-template-columns: 64px 1fr; gap: 16px; min-height: 200px;
}
.timeline span {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,138,61,.14); color: #ffbf90; font-weight: 800;
}
.timeline p { color: rgba(255,255,255,.68); margin: 8px 0 0; }

.charger-cards { background: var(--paper); }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.cards-3 article { padding: 28px; }
.cards-3 p { color: var(--muted); }
.cards-3 span {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-weight: 800; font-size: 13px;
}

.pricing { background: white; }
.price-table { overflow: hidden; }
.price-row {
  display: grid; grid-template-columns: .9fr .55fr 1.3fr; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line-dark); align-items: center;
}
.price-row:last-child { border-bottom: 0; }
.price-row.header { background: #241711; color: white; font-weight: 800; }
.price-row strong { color: var(--accent-dark); font-size: 20px; }
.pricing-note { color: var(--muted); margin: 20px 0 0; }

.projects { background: var(--paper-2); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-buttons button {
  border: 1px solid var(--line-dark); background: white; padding: 10px 14px; border-radius: 999px; cursor: pointer; font-weight: 800;
}
.filter-buttons button.is-active { background: var(--ink); color: white; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.project-grid article {
  position: relative; min-height: 360px; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); color: white;
}
.project-grid img {
  width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; opacity: .92; transition: transform .35s ease, opacity .35s ease;
}
.project-grid article:hover img { transform: scale(1.04); opacity: .82; }
.project-grid article div {
  position: absolute; inset: auto 18px 18px 18px; padding: 18px; border-radius: 20px; background: rgba(27,18,13,.84); backdrop-filter: blur(14px);
}
.project-grid strong, .project-grid span { display: block; }
.project-grid span { margin-top: 4px; color: rgba(255,255,255,.76); }

.reviews { background: white; }
.review-wall { columns: 2; column-gap: 16px; }
.review-wall blockquote { break-inside: avoid; margin: 0 0 16px; padding: 22px; }
.review-wall p { margin: 0 0 12px; }
.review-wall cite { color: var(--muted); font-style: normal; font-weight: 700; }

.service-area { background: #241711; color: white; }
.area-card {
  background: rgba(255,255,255,.08); border-color: var(--line); padding: 34px; align-items: center;
}
.area-list { grid-template-columns: repeat(2, minmax(0,1fr)); margin: 0; }
.area-list li {
  background: rgba(255,255,255,.08); border: 1px solid var(--line); padding: 14px 16px; border-radius: 16px; font-weight: 800;
}

.contact-section { background: var(--paper); }
.contact-copy { position: sticky; top: 116px; }
.contact-points { display: grid; gap: 10px; margin-top: 26px; }
.contact-points a { color: var(--accent-dark); font-weight: 800; }
.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

.site-footer { background: #140d09; color: rgba(255,255,255,.72); padding: 42px 0 96px; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.footer-grid strong { color: white; }
.footer-grid div:last-child { display: grid; gap: 8px; text-align: right; }
.mobile-call-bar { display: none; }

@media (max-width: 980px) {
  .desktop-nav, .phone-link { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.is-open { display: block; }
  .hero-grid, .intro-grid, .section-heading.split, .planner-shell, .comparison-grid, .process-grid, .contact-grid, .review-layout, .area-card {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; padding: 76px 0 72px; }
  .hero-visual { min-height: 0; }
  .hero-photo img { min-height: 360px; }
  .floating-card { position: static; max-width: none; margin-top: 14px; }
  .trust-strip, .choice-grid, .cards-3, .timeline, .project-grid { grid-template-columns: 1fr; }
  .process-copy, .contact-copy { position: static; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .review-wall { columns: 1; }
  .footer-grid { display: grid; }
  .footer-grid div:last-child { text-align: left; }
  .mobile-call-bar {
    position: fixed; z-index: 60; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; background: #140d09; border-top: 1px solid var(--line);
  }
  .mobile-call-bar a { color: white; text-align: center; padding: 14px 10px; font-weight: 800; text-decoration: none; }
  .mobile-call-bar a:first-child { background: var(--accent); color: #140d09; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 68px; }
  .brand small { display: none; }
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .section { padding: 68px 0; }
  .hero-photo img { min-height: 300px; }
  .planner, .estimate-panel, .comparison-card, .area-card, .contact-form, .hero-photo { border-radius: 24px; }
  .trust-strip div, .contact-form, .planner, .estimate-panel, .comparison-card, .cards-3 article, .review-wall blockquote, .area-card { padding: 20px; }
  .timeline article { grid-template-columns: 1fr; min-height: 0; }
  .area-list { grid-template-columns: 1fr; }
}


/* Added image, review, footer, cookie and policy enhancements */
.visual-proof { background: var(--paper); }
.image-feature-grid { display: grid; grid-template-columns: 1.3fr .85fr; grid-template-rows: 260px 260px; gap: 18px; }
.feature-photo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow); min-height: 260px; }
.feature-photo.large { grid-row: span 2; }
.feature-photo img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; opacity: .92; transition: transform .35s ease, opacity .35s ease; }
.feature-photo:hover img { transform: scale(1.04); opacity: .84; }
.feature-photo div { position: absolute; inset: auto 18px 18px 18px; padding: 18px; border-radius: 20px; color: white; background: rgba(27,18,13,.84); backdrop-filter: blur(14px); }
.feature-photo strong, .feature-photo span { display: block; }
.feature-photo span { margin-top: 4px; color: rgba(255,255,255,.74); }
.comparison-img { width: 100%; height: 180px; object-fit: cover; border-radius: 20px; margin-bottom: 22px; }
.image-cards article { padding: 0; overflow: hidden; }
.image-cards img { width: 100%; height: 190px; object-fit: cover; }
.image-cards article > div { padding: 24px; }
.project-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.google-review-panel { margin-bottom: 24px; padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line-dark); box-shadow: var(--shadow); }
.google-summary { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); margin-bottom: 20px; }
.google-logo { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: white; background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4); font-weight: 900; font-size: 26px; }
.google-summary strong { display: block; font-size: 22px; }
.stars { color: #f6a400; letter-spacing: .08em; font-weight: 900; }
.google-summary p { margin: 2px 0 0; color: var(--muted); }
.google-review-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.google-review-grid article { padding: 18px; border: 1px solid var(--line-dark); border-radius: 20px; background: var(--paper); }
.google-review-grid p { margin: 8px 0 12px; color: var(--ink); }
.google-review-grid strong, .google-review-grid small { display: block; }
.google-review-grid small { color: var(--muted); }
.site-footer { padding: 74px 0 112px; }
.footer-main { display: grid; grid-template-columns: 1.35fr .75fr .75fr .9fr; gap: 34px; align-items: start; }
.footer-brand-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); }
.footer-brand { margin-bottom: 18px; }
.footer-brand-panel p { margin: 18px 0; color: rgba(255,255,255,.72); }
.footer-rating { display: grid; gap: 3px; padding-top: 16px; border-top: 1px solid var(--line); }
.footer-rating strong { color: white; }
.footer-rating small { color: rgba(255,255,255,.58); }
.footer-column { display: grid; gap: 10px; }
.footer-column h3 { color: white; font-size: 18px; letter-spacing: -.02em; margin-bottom: 6px; }
.footer-column a, .footer-column span { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-column a:hover { color: #ffc89e; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-top: 28px; margin-top: 34px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-legal { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-legal button, .text-cookie { border: 1px solid var(--line); background: rgba(255,255,255,.08); color: white; border-radius: 999px; padding: 10px 13px; cursor: pointer; font-weight: 800; }
.cookie-consent { position: fixed; right: 18px; bottom: 86px; z-index: 90; width: min(420px, calc(100% - 36px)); padding: 18px; display: flex; gap: 16px; align-items: center; border-radius: 24px; background: rgba(25,17,12,.96); color: white; box-shadow: 0 24px 70px rgba(0,0,0,.28); border: 1px solid var(--line); }
.cookie-consent.is-hidden { display: none; }
.cookie-consent p { margin: 4px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }
.cookie-actions { display: grid; gap: 8px; flex-shrink: 0; }
.text-cookie { padding: 9px 12px; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20,13,9,.72); backdrop-filter: blur(8px); }
.modal-panel { position: relative; z-index: 1; width: min(720px, 100%); max-height: min(760px, 90vh); overflow: auto; padding: 34px; border-radius: 28px; background: var(--paper); box-shadow: 0 34px 90px rgba(0,0,0,.34); }
.modal-panel h2 { margin-bottom: 18px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 50%; background: white; cursor: pointer; font-size: 26px; line-height: 1; }
.policy-copy { display: grid; gap: 14px; color: var(--muted); }
.policy-copy h3 { font-size: 20px; color: var(--ink); margin-top: 4px; }
.policy-copy p { margin: 0; }
@media (max-width: 980px) {
  .image-feature-grid, .google-review-grid, .footer-main { grid-template-columns: 1fr; }
  .image-feature-grid { grid-template-rows: none; }
  .feature-photo.large { grid-row: auto; }
  .feature-photo { min-height: 320px; }
  .footer-bottom { display: grid; }
  .cookie-consent { left: 14px; right: 14px; bottom: 74px; width: auto; }
}
@media (max-width: 560px) {
  .google-summary, .cookie-consent { align-items: flex-start; }
  .cookie-consent { display: grid; }
  .cookie-actions { grid-template-columns: 1fr 1fr; }
  .modal-panel { padding: 24px; border-radius: 22px; }
}


/* Revision v5 improvements */
.visual-proof { background: #fff; }
.image-feature-grid { grid-template-columns: 1.1fr .9fr; grid-template-rows: 240px 240px; }
.feature-photo.large { min-height: 100%; }
.feature-photo img { object-position: center; }
.comparison-img { height: 150px; object-fit: cover; border-radius: 18px; margin-bottom: 18px; }
.image-cards img { height: 170px; object-position: center; }
.project-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.project-grid article { min-height: 265px; }
.project-grid article div { inset: auto 14px 14px 14px; padding: 14px; }
.project-grid strong { font-size: 16px; }
.review-heading { margin-bottom: 26px; }
.review-layout { display: block; }
.google-review-panel.large-panel { padding: 26px; }
.google-review-grid.google-review-grid-15 { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.google-review-grid.google-review-grid-15 article { min-height: 180px; display: flex; flex-direction: column; }
.google-review-grid.google-review-grid-15 p { flex: 1; line-height: 1.5; font-size: 14px; }
.google-review-grid.google-review-grid-15 strong { margin-top: 8px; }
.stars { color: var(--accent-dark); letter-spacing: 0.08em; }
@media (max-width: 980px) {
  .google-review-grid.google-review-grid-15 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .google-review-grid.google-review-grid-15 { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .image-feature-grid { grid-template-columns: 1fr; grid-template-rows: none; }
}
