/* Cardinal Point Building Services — Propeller demo build */
:root {
  --primary: #1F3A5F;
  --primary-dark: #142A47;
  --primary-warm: #A87A3F;
  --dark-bg: #0E1B25;
  --ink: #0E1B25;
  --ink-2: #2C3E50;
  --muted: #5A6C7A;
  --line: #E2E8EC;
  --bg: #ffffff;
  --bg-soft: #F6F9FB;
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* === Glass-pill nav (G20 v0.7.20) === */
.site-header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  pointer-events: none;
  display: flex; justify-content: center;
  padding: 0 18px;
}
.nav-pill {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 32px;
  width: fit-content;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 8px 30px rgba(14,27,37,0.10);
  border-radius: 999px;
  padding: 8px 12px 8px 22px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 22px;
  margin: 0; padding: 0; list-style: none;
  font-weight: 600; font-size: 0.95rem;
}
.nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--primary-dark); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--primary);
  color: white;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }

/* Mobile menu toggle (G17 — base rule MUST come before @media override) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle svg { width: 24px; height: 24px; color: var(--ink); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(14,27,37,.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 24px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white; font-size: 1.6rem; font-weight: 700;
  padding: 14px 0; text-decoration: none; letter-spacing: -0.01em;
}
.mobile-nav a:hover { color: var(--primary-warm); }
.mobile-nav .mobile-phone {
  margin-top: 24px;
  background: var(--primary); color: white;
  padding: 14px 32px; border-radius: 999px; font-size: 1.1rem;
}
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; border: 0; cursor: pointer; padding: 8px;
}
.mobile-nav-close svg { width: 28px; height: 28px; color: white; }

/* === Hero (full-bleed-photo composition per ref tradie4) === */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 0 140px;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-media img,
.hero-media picture {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,27,37,0.78) 0%, rgba(14,27,37,0.45) 60%, rgba(14,27,37,0.20) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  color: white;
}
.hero-eyebrow {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px; opacity: 0.92;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--primary-warm);
}
.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 560px;
  opacity: 0.92;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--primary); color: white; border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: white; transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: white; color: var(--ink); border-color: white; }

/* Hero feature row */
.hero-features {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(14,27,37,0.92) 0%, rgba(14,27,37,0.7) 100%);
  padding: 28px 0;
}
.hero-features-grid {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  color: white;
}
.hero-feature { display: flex; align-items: center; gap: 14px; }
.hero-feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-warm); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feature-icon svg { width: 22px; height: 22px; }
.hero-feature-text { font-size: 0.95rem; opacity: 0.95; }
.hero-feature-text strong { display: block; font-size: 1.05rem; opacity: 1; margin-bottom: 2px; }

/* === Sections === */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--primary); margin-bottom: 16px;
}
.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 56px; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }

/* Services grid */
.services-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.services-grid { display: grid; gap: 18px; }
.service-card {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 18px;
  display: flex; align-items: flex-start; gap: 18px;
  text-decoration: none; color: var(--ink);
  border: 1px solid transparent;
  transition: all .2s;
}
.service-card:hover {
  background: white; border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(14,27,37,.08);
  color: var(--ink);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--primary-warm);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card .service-body { flex: 1; }
.service-card h3 { margin: 4px 0 8px; font-size: 1.2rem; }
.service-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.service-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; align-self: center;
  color: var(--ink); transition: all .2s;
}
.service-card:hover .service-arrow { background: var(--primary); color: white; border-color: var(--primary); }
.service-arrow svg { width: 16px; height: 16px; }

/* Project cards (portfolio) */
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.project-card {
  text-decoration: none; color: var(--ink);
  border-radius: 18px; overflow: hidden;
  background: var(--bg-soft);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(14,27,37,.12); color: var(--ink); }
.project-card .project-image {
  aspect-ratio: 4 / 3; overflow: hidden;
}
.project-card .project-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.project-card:hover .project-image img { transform: scale(1.04); }
.project-card .project-body { padding: 24px; }
.project-card .project-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary-warm); margin-bottom: 8px;
}
.project-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.project-card p { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.55; }

/* About / owner */
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.owner-photo img { width: 100%; border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; }
.owner-body h2 { margin-bottom: 20px; }
.owner-body p { font-size: 1.05rem; color: var(--muted); }
.owner-body .signature {
  font-style: italic; color: var(--ink-2);
  margin-top: 24px;
  padding-left: 16px; border-left: 3px solid var(--primary-warm);
}

/* Stats / experience — dark section */
.stats-section { background: var(--dark-bg); color: white; padding: 96px 0; }
.stats-section h2 { color: white; }
.stats-section .eyebrow { color: var(--primary-warm); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.stat-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 32px 24px;
}
.stat-num { font-size: 3rem; font-weight: 800; color: var(--primary-warm); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* Service area chips */
.areas-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.area-chip {
  padding: 10px 18px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
}

/* CTA banner */
.cta-banner {
  position: relative; padding: 96px 0; text-align: center;
  background: var(--ink); color: white; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(168,122,63,0.18) 0%, transparent 60%);
}
.cta-banner h2 { color: white; max-width: 720px; margin: 0 auto 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; max-width: 540px; margin: 0 auto 32px; opacity: 0.85; position: relative; }
.cta-banner .btn-primary { position: relative; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-grid.full { grid-template-columns: 1fr; }
input, textarea, select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink);
  background: white;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary);
}
label {
  display: block; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 6px; color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white; border: 0;
  padding: 16px 36px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: background .15s, transform .15s;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-info { background: var(--bg-soft); padding: 36px; border-radius: 18px; }
.contact-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-info .info-row { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .info-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: white; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info .info-icon svg { width: 18px; height: 18px; }
.contact-info .info-body { font-size: 0.95rem; color: var(--ink-2); line-height: 1.55; }
.contact-info .info-body strong { display: block; color: var(--ink); }

/* FAQ details */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 22px 0;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  font-weight: 700; font-size: 1.1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-right: 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; line-height: 1; color: var(--primary);
  font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer {
  margin-top: 14px; color: var(--muted);
  font-size: 1rem; line-height: 1.7;
}

/* Page hero (smaller, used on inner pages) */
.page-hero {
  background: var(--ink);
  color: white;
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(168,122,63,0.18) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: white; max-width: 800px; }
.page-hero p.lead { color: rgba(255,255,255,0.85); max-width: 600px; font-size: 1.15rem; }
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.65); }
.breadcrumbs a:hover { color: var(--primary-warm); }
.breadcrumbs .sep { opacity: 0.4; }

/* Service-detail / project-detail page */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.service-content { font-size: 1.05rem; line-height: 1.75; color: var(--ink-2); }
.service-content p { margin-bottom: 1.2em; }
.service-content h2 { margin-top: 1.5em; font-size: 1.65rem; }
.service-content h3 { margin-top: 1.5em; }
.service-sidebar {
  position: sticky; top: 100px;
  background: var(--bg-soft); border-radius: 18px; padding: 32px;
}
.service-sidebar h3 { font-size: 1.1rem; margin-bottom: 16px; }
.service-sidebar ul { list-style: none; padding: 0; margin: 0 0 24px; }
.service-sidebar li {
  padding: 8px 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink-2);
}
.service-sidebar li::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.service-sidebar li:last-child { border-bottom: 0; }

/* Gallery image strip */
.image-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 32px; }
.image-strip img { aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; width: 100%; }
.image-strip-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.image-strip-2col img { aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; width: 100%; }

/* === Footer === */
.site-footer {
  background: var(--dark-bg); color: white;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: white; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--primary-warm); }
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
}
.footer-credit a { color: var(--primary-warm); }

/* === Sticky mobile CTA (G8) === */
.sticky-mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  background: var(--ink);
}
.sticky-mobile-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 16px 12px;
  font-weight: 700; font-size: 1rem;
  color: white; text-decoration: none;
}
.sticky-mobile-cta .scta-call { background: var(--primary); }
.sticky-mobile-cta .scta-msg { background: #0a0a0a; }
.sticky-mobile-cta svg { width: 18px; height: 18px; }

/* === NAP block === */
.nap-block {
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.nap-block strong { color: white; }
.nap-block a { color: rgba(255,255,255,0.85); }

/* === Trust strip === */
.trust-strip { background: var(--bg-soft); padding: 32px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.trust-item strong { display: block; font-weight: 700; font-size: 0.95rem; }
.trust-item span { color: var(--muted); font-size: 0.85rem; }

/* === Mobile breakpoints (G17, G21) === */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-pill { padding: 8px 12px; }
  .hero { min-height: 600px; padding: 120px 0 200px; }
  .hero-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-features { padding: 22px 0; }
  .services-split { grid-template-columns: 1fr; gap: 32px; }
  .owner-grid { grid-template-columns: 1fr; gap: 36px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  body { padding-bottom: 64px; }
  .sticky-mobile-cta { display: flex; }
}
@media (min-width: 1024px) {
  /* G17: hamburger MUST be hidden on desktop */
  .mobile-menu-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* Google Reviews — aggregate summary (template1 .gr-summary alignment) */
.reviews-aggregate { padding: 72px 0; background: var(--bg-soft, #F6F9FB); }
.reviews-aggregate .section-head { margin-bottom: 28px; }
.reviews-aggregate .section-head .eyebrow {
  font-family: var(--f-mono, ui-monospace, monospace);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted, #5A6C7A); margin-bottom: 10px;
}
.reviews-aggregate .section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 10px;
  color: var(--ink, #0E1B25);
}
.reviews-aggregate .section-head h2 .thin { font-weight: 300; color: var(--muted, #5A6C7A); }
.reviews-aggregate .section-head p {
  font-size: 15px; color: var(--muted, #5A6C7A); line-height: 1.55; margin: 0; max-width: 620px;
}
.gr-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 24px 28px;
  background: #fff; border: 1px solid var(--line, #E2E8EC);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(14,27,37,.05);
  flex-wrap: wrap;
}
.gr-sum-left { display: flex; align-items: center; gap: 20px; }
.gr-logo {
  width: 48px; height: 48px; border-radius: 999px;
  background: #f8f9fa; border: 1px solid var(--line, #E2E8EC);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gr-summary .gr-meta { display: flex; flex-direction: column; gap: 2px; }
.gr-meta-top { display: flex; align-items: baseline; gap: 10px; }
.gr-score {
  font-size: 28px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--ink, #0E1B25); line-height: 1;
}
.gr-summary .gr-stars {
  display: inline-flex; gap: 1px; color: #fbbc05;
  font-size: 17px; letter-spacing: -1px;
}
.gr-sub { font-size: 13px; color: var(--muted, #5A6C7A); margin-top: 2px; }
.gr-sub strong { color: var(--ink, #0E1B25); font-weight: 600; }
.gr-summary .gr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink, #0E1B25);
  border: 1px solid var(--line, #E2E8EC); background: #fff;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, border-color 0.25s, color 0.25s;
  letter-spacing: -0.005em;
}
.gr-summary .gr-cta:hover {
  background: var(--ink, #0E1B25); color: #fff;
  border-color: var(--ink, #0E1B25); transform: translateY(-1px);
}
.gr-summary .gr-cta svg { width: 12px; height: 12px; }
@media (max-width: 640px) {
  .gr-summary { padding: 18px 20px; gap: 18px; }
  .gr-score { font-size: 24px; }
  .gr-summary .gr-cta { width: 100%; justify-content: center; }
}
