:root {
  --brand-primary: #bde9c9;
  --brand-secondary: #0033a0;
  --brand-text: #262626;
  --brand-accent: #c4603d;
  --brand-star: #fdff00;
  --bg-soft: #ddf4e4;
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --highlight: #e8a44a;
  --ink-soft: #5e666f;
  --border-soft: rgba(0, 51, 160, 0.1);
  --shadow-soft: 0 22px 55px rgba(0, 51, 160, 0.1);
  --shadow-card: 0 14px 36px rgba(0, 51, 160, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --container: 1220px;
  --font-body: "Albert Sans", system-ui, sans-serif;
  --font-heading: "Albert Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--brand-text);
  background:
    radial-gradient(circle at top left, rgba(189, 233, 201, 0.95), rgba(189, 233, 201, 0) 40%),
    radial-gradient(circle at top right, rgba(232, 164, 74, 0.14), rgba(232, 164, 74, 0) 25%),
    linear-gradient(180deg, #d7f4e3 0%, #effaf2 18%, #faf8f5 52%, #f7fbf7 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--brand-secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.95rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  text-align: center;
}

h3 {
  font-size: clamp(1.28rem, 1.75vw, 1.8rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 1.2rem auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  color: var(--brand-secondary);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 0.95;
  max-width: 160px;
}

.brand--logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: none;
}

.brand__mark {
  width: 92px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 51, 160, 0.12));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--brand-text);
  font-size: 0.96rem;
  font-weight: 600;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--brand-secondary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--bg-white);
  background: var(--brand-accent);
  box-shadow: 0 10px 24px rgba(196, 96, 61, 0.28);
}

.button--secondary {
  color: var(--brand-secondary);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 51, 160, 0.14);
}

.hero {
  padding: 2rem 0 3.2rem;
}

.home-hero {
  padding: 2.65rem 0 2.15rem;
}

.hero__grid,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.split--hero {
  align-items: stretch;
}

.home-hero__grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 1.75rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-hero__copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.hero-aside {
  display: grid;
  gap: 1.2rem;
  align-content: space-between;
  min-height: 100%;
}

.home-hero__aside {
  display: grid;
  gap: 1rem;
}

.home-hero__visual {
  position: relative;
  min-height: 100%;
  padding: 1rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(189, 233, 201, 0.48), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.95));
  border: 1px solid rgba(0, 51, 160, 0.1);
  box-shadow: 0 26px 52px rgba(0, 51, 160, 0.08);
  overflow: hidden;
}

.home-hero__blob {
  min-height: 430px;
}

.home-hero__visual-note {
  position: relative;
  z-index: 2;
  width: min(100%, 22rem);
  margin: -2.35rem 0 0 auto;
  padding: 1.1rem 1.15rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: 0 18px 34px rgba(0, 51, 160, 0.08);
}

.home-hero__visual-kicker {
  margin-bottom: 0.35rem;
  color: rgba(0, 51, 160, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-hero__visual-note h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 1.9vw, 1.8rem);
  line-height: 1.02;
  text-align: left;
}

.home-hero__visual-note p {
  color: rgba(38, 38, 38, 0.82);
  line-height: 1.6;
}

.hero-panel {
  min-height: 100%;
}

.hero-panel--feature {
  padding: 1.9rem 1.7rem;
}

.hero-note {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(253, 255, 0, 0.22), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-note h3 {
  margin-bottom: 0.55rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

.home-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: -0.25rem 0 0.25rem;
}

.home-hero__signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.78rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 51, 160, 0.08);
  color: rgba(0, 51, 160, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 18px rgba(0, 51, 160, 0.05);
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1.6rem;
  align-items: stretch;
}

.local-hero__content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.local-hero__title {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.75vw, 4rem);
  line-height: 0.94;
  max-width: 12ch;
}

.local-hero__title span {
  display: block;
}

.local-hero__intro {
  max-width: 42rem;
}

.local-hero__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.local-hero__panel {
  min-height: 100%;
}

.local-hero__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.local-hero__mini {
  padding: 1.25rem 1.15rem;
}

.local-hero__mini h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  margin-bottom: 0.55rem;
}

.local-hero__mini p {
  font-size: 0.98rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(189, 233, 201, 0.55);
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead {
  max-width: 38rem;
  font-size: 1.16rem;
}

.home-hero__copy h1 {
  margin-bottom: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-hero__copy .lead {
  max-width: 40rem;
}

.hero__actions,
.stack,
.muted-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__actions,
.stack {
  margin-top: 1.6rem;
}

.home-hero__microproof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.home-hero__microproof-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: 0 14px 24px rgba(0, 51, 160, 0.06);
}

.home-hero__microproof-item strong {
  color: var(--brand-secondary);
  font-size: 0.96rem;
  font-weight: 800;
}

.home-hero__microproof-item span {
  color: rgba(38, 38, 38, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-blob,
.photo-blob {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero-blob::before,
.hero-blob::after,
.photo-blob::before,
.photo-blob::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(189, 233, 201, 0.55);
  filter: blur(0.2px);
}

.hero-blob::before,
.photo-blob::before {
  inset: 30px 70px 70px 20px;
  border-radius: 42% 58% 54% 46% / 44% 46% 54% 56%;
}

.hero-blob::after,
.photo-blob::after {
  width: 180px;
  height: 180px;
  right: 18px;
  top: 34px;
  opacity: 0.55;
}

.hero-blob img,
.photo-blob img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 44% 56% 48% 52% / 45% 38% 62% 55%;
  box-shadow: var(--shadow-soft);
}

.photo-blob__image--legacy {
  object-position: 50% 36%;
}

.home-hero__image--legacy {
  width: min(100%, 540px);
  aspect-ratio: 4 / 3;
  object-position: 50% 50%;
}

.section {
  padding: 3.4rem 0;
}

.section-title {
  margin-bottom: 2rem;
}

.home-paths {
  padding-top: 0.3rem;
}

.home-paths__intro {
  display: grid;
  gap: 0.75rem;
  max-width: 43rem;
}

.home-paths__intro .eyebrow {
  margin-bottom: 0;
}

.home-paths__grid {
  align-items: stretch;
}

.home-path-card {
  display: grid;
  gap: 0.6rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
}

.home-path-card__eyebrow {
  color: rgba(0, 51, 160, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-path-card h3 {
  margin-bottom: 0.1rem;
  font-size: clamp(1.25rem, 1.85vw, 1.55rem);
}

.home-path-card p {
  max-width: 28ch;
}

.media-story {
  display: grid;
  gap: 1.35rem;
}

.media-story--two {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.media-story--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-slot {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 160, 0.1);
  border-radius: 34px;
  box-shadow:
    0 22px 46px rgba(0, 51, 160, 0.08),
    0 10px 24px rgba(196, 96, 61, 0.08);
}

.media-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.55) 70%, rgba(255, 255, 255, 0.92));
  z-index: 0;
}

.media-slot::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(0, 51, 160, 0.14);
  border-radius: 26px;
  z-index: 0;
}

.media-slot > * {
  position: relative;
  z-index: 1;
}

.media-slot--mint {
  background:
    radial-gradient(circle at top left, rgba(189, 233, 201, 0.96), rgba(189, 233, 201, 0.2) 42%, transparent 60%),
    linear-gradient(135deg, rgba(221, 244, 228, 0.94), rgba(255, 255, 255, 0.96));
}

.media-slot--cream {
  background:
    radial-gradient(circle at top right, rgba(232, 164, 74, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(250, 248, 245, 0.98), rgba(255, 255, 255, 0.98));
}

.media-slot--soft {
  background:
    radial-gradient(circle at bottom right, rgba(189, 233, 201, 0.7), transparent 34%),
    linear-gradient(135deg, rgba(239, 250, 242, 0.98), rgba(255, 255, 255, 0.98));
}

.media-slot--wide {
  min-height: 21rem;
}

.media-slot--tall {
  min-height: 25rem;
}

.media-slot--compact {
  min-height: 16rem;
}

.media-slot__eyebrow {
  color: rgba(0, 51, 160, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-slot h3 {
  margin-bottom: 0;
  max-width: 12ch;
  text-align: left;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.media-slot p {
  max-width: 30ch;
  color: rgba(38, 38, 38, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.card {
  position: relative;
  padding: 1.7rem 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card,
.feature-card {
  border-radius: 38% 31% 34% 30% / 14% 17% 16% 18%;
}

.card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
  z-index: 0;
}

.card--mint::before,
.feature-card--mint::before {
  background: linear-gradient(135deg, rgba(189, 233, 201, 0.75), rgba(255, 255, 255, 0.9));
}

.card--cream::before,
.feature-card--cream::before {
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.92), rgba(255, 255, 255, 0.95));
}

.card--soft::before,
.feature-card--soft::before {
  background: linear-gradient(135deg, rgba(221, 244, 228, 0.82), rgba(248, 252, 249, 0.94));
}

.card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.card p,
.list,
.site-footer p {
  color: var(--brand-text);
}

.card h3,
.feature-card h3 {
  margin-bottom: 0.75rem;
}

.card h3,
.card .section-title,
.feature-card h3,
.feature-card .section-title {
  line-height: 1.05;
  text-wrap: balance;
}

.card h3:first-child,
.card .section-title:first-child,
.feature-card h3:first-child,
.feature-card .section-title:first-child {
  padding-top: 0.08em;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.feature-band {
  margin-top: 1rem;
}

.card-stack {
  display: grid;
  gap: 1.35rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(189, 233, 201, 0.42);
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 51, 160, 0.96), rgba(1, 64, 180, 0.92));
  box-shadow: var(--shadow-soft);
}

.cta-panel h2,
.cta-panel p {
  color: var(--bg-white);
  text-align: left;
}

a.card,
.link-card {
  display: block;
  position: relative;
  border: 1px solid rgba(0, 51, 160, 0.09);
  box-shadow: 0 16px 34px rgba(0, 51, 160, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

a.card h3,
a.card p,
.link-card h3,
.link-card p {
  transition: transform 0.2s ease;
}

a.card:hover,
a.card:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(232, 164, 74, 0.72);
  box-shadow:
    0 28px 54px rgba(0, 51, 160, 0.14),
    0 18px 30px rgba(196, 96, 61, 0.12),
    0 0 0 4px rgba(232, 164, 74, 0.16);
}

a.card:focus-visible,
.link-card:focus-visible {
  outline: none;
}

a.card:hover h3,
a.card:hover p,
a.card:focus-visible h3,
a.card:focus-visible p,
.link-card:hover h3,
.link-card:hover p,
.link-card:focus-visible h3,
.link-card:focus-visible p {
  transform: translateY(-1px);
}

.dotted-line {
  width: 100%;
  margin: 1rem 0 0;
  text-align: center;
  color: rgba(0, 51, 160, 0.42);
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
}

.quote {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.95), rgba(221, 244, 228, 0.7));
  border: 1px solid rgba(0, 51, 160, 0.08);
  color: var(--brand-secondary);
  font-weight: 700;
}

.faq-group {
  display: grid;
  gap: 0.9rem;
}

.faq-section-title {
  margin: 0 0 1rem;
  text-align: left;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  color: var(--brand-secondary);
  font-weight: 800;
}

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

.faq-item[open] summary {
  background: rgba(189, 233, 201, 0.28);
}

.faq-item__answer {
  padding: 0 1.15rem 1.15rem;
}

.faq-item__answer p + p,
.faq-item__answer p + ul,
.faq-item__answer ul + p {
  margin-top: 0.8rem;
}

.callout {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(253, 255, 0, 0.26);
  border: 1px dashed rgba(0, 51, 160, 0.14);
  color: var(--brand-text);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
}

.testimonial-card p {
  font-size: 1rem;
}

.testimonial-meta {
  margin-top: 1rem;
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.review-list {
  display: grid;
  gap: 1rem;
}

.review-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.review-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
}

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

.review-item[open] summary {
  background: rgba(189, 233, 201, 0.22);
}

.review-preview {
  color: var(--brand-text);
  font-size: 1rem;
  font-weight: 700;
}

.review-name {
  margin-top: 0.6rem;
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 800;
}

.review-toggle {
  margin-top: 0.55rem;
  color: var(--brand-accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-item__body {
  padding: 0 1.2rem 1.2rem;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.google-review-carousel {
  position: relative;
}

.google-review-carousel__viewport {
  overflow: hidden;
}

.google-review-carousel__track {
  display: flex;
  transition: transform 500ms ease;
  will-change: transform;
}

.google-review-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.google-review-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.google-review-carousel__buttons {
  display: inline-flex;
  gap: 0.75rem;
}

.google-review-carousel__button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(196, 96, 61, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-secondary);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.google-review-carousel__button:hover {
  background: rgba(189, 233, 201, 0.3);
}

.google-review-carousel__status {
  color: rgba(38, 38, 38, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.google-review-card {
  border-radius: 28px;
  border: 1px solid rgba(196, 96, 61, 0.35);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.google-review-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem;
}

.google-review-card summary::-webkit-details-marker {
  display: none;
}

.google-review-card[open] {
  border-color: rgba(0, 51, 160, 0.25);
}

.google-review-card[open] summary {
  background: rgba(189, 233, 201, 0.18);
}

.google-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.google-review-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.google-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-secondary);
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.15rem;
}

.google-review-card__meta {
  display: grid;
  gap: 0.15rem;
}

.google-review-card__name {
  color: var(--brand-text);
  font-size: 1.02rem;
  font-weight: 800;
}

.google-review-card__time {
  color: rgba(38, 38, 38, 0.7);
  font-size: 0.92rem;
}

.google-review-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.9);
  border: 1px solid rgba(196, 96, 61, 0.22);
  color: var(--brand-secondary);
  font-size: 1.1rem;
  font-weight: 900;
}

.google-review-card__stars {
  margin-top: 1rem;
  color: var(--brand-highlight);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.google-review-card__preview {
  margin-top: 0.8rem;
  color: var(--brand-text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.google-review-card__toggle {
  margin-top: 1rem;
  color: var(--brand-accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.google-review-card__body {
  padding: 0 1.2rem 1.2rem;
}

.google-review-card__body p {
  margin: 0;
}

.reviews-marquee-section {
  position: relative;
  overflow: hidden;
}

.reviews-marquee-section::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(189, 233, 201, 0.45), transparent 42%),
    radial-gradient(circle at bottom right, rgba(232, 164, 74, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.82);
  z-index: 0;
}

.reviews-marquee-section > .container,
.reviews-marquee {
  position: relative;
  z-index: 1;
}

.reviews-marquee__header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.reviews-marquee__title {
  margin: 0;
  color: var(--brand-secondary);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.02;
  text-align: left;
}

.reviews-marquee__metric {
  display: grid;
  gap: 0.3rem;
}

.reviews-marquee__metric-number {
  color: var(--brand-secondary);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.reviews-marquee__metric-copy {
  color: rgba(38, 38, 38, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.reviews-marquee__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 800;
}

.platform-pill--google {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 51, 160, 0.16);
  color: var(--brand-secondary);
}

.platform-pill--facebook {
  background: rgba(0, 51, 160, 0.08);
  border: 1px solid rgba(0, 51, 160, 0.14);
  color: var(--brand-secondary);
}

.reviews-marquee {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
  margin-bottom: 1.5rem;
}

.reviews-marquee__lane {
  overflow: hidden;
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
}

.reviews-marquee__track--left {
  animation: reviews-marquee-left 88s linear infinite;
}

.reviews-marquee__track--right {
  animation: reviews-marquee-right 72s linear infinite;
}

.reviews-marquee__lane:hover .reviews-marquee__track {
  animation-play-state: paused;
}

.review-wall-card {
  width: min(292px, 78vw);
  min-height: 206px;
  padding: 1.15rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(196, 96, 61, 0.26);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.95rem;
}

.review-wall-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-wall-card__author {
  color: var(--brand-text);
  font-size: 1rem;
  font-weight: 800;
}

.review-wall-card__platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-wall-card__platform--google {
  background: rgba(250, 248, 245, 0.96);
  color: #185abc;
  border: 1px solid rgba(24, 90, 188, 0.15);
}

.review-wall-card__platform--facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.14);
}

.review-wall-card__stars {
  color: var(--brand-highlight);
  font-size: 0;
  letter-spacing: 0.12em;
}

.review-wall-card__stars::before {
  content: "★★★★★";
  font-size: 1.05rem;
}

.review-wall-card__quote {
  color: var(--brand-text);
  font-size: 1rem;
  line-height: 1.6;
}

.review-wall-card__context {
  color: rgba(38, 38, 38, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.reviews-marquee__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.review-fader-section {
  position: relative;
}

.review-duo {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1.4rem;
  align-items: start;
}

.home-page .review-duo {
  gap: 1.8rem;
}

.review-duo__intro {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  max-width: 21.5rem;
  padding-top: 1rem;
}

.home-page .review-duo__intro {
  max-width: 23.5rem;
  padding-top: 0.45rem;
}

.review-duo__intro .eyebrow {
  margin-bottom: 0;
}

.review-duo__intro .review-fader__title {
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

.review-duo__intro .review-fader__intro {
  max-width: 21.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-duo__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-duo__intro .reviews-marquee__legend {
  display: none;
}

.review-duo__intro .platform-pill {
  font-size: 0.78rem;
  padding: 0.42rem 0.7rem;
}

.review-duo__intro .social-link {
  padding: 0.64rem 0.9rem;
  font-size: 0.88rem;
}

.review-fader__header {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.review-fader__title {
  margin: 0;
  color: var(--brand-secondary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  text-align: left;
}

.review-fader__intro {
  max-width: 48rem;
}

.review-fader {
  display: grid;
  gap: 1rem;
}

.review-fader__stage {
  position: relative;
  min-height: 24rem;
  transition: height 420ms ease;
}

.review-fader--compact {
  gap: 0;
}

.review-fader__stage--compact {
  min-height: 18.5rem;
}

.review-fader__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(189, 233, 201, 0.45), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 245, 0.95));
  border: 1px solid rgba(196, 96, 61, 0.2);
  box-shadow: 0 24px 48px rgba(0, 51, 160, 0.08);
  overflow: hidden;
}

.review-fader__slide--compact {
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(0, 51, 160, 0.08);
}

.review-fader__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.review-fader__slide summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem;
}

.review-fader__slide--compact summary {
  padding: 1.2rem 1.2rem 0.9rem;
}

.review-fader__slide--compact .review-fader__author {
  font-size: 1rem;
}

.review-fader__slide summary::-webkit-details-marker {
  display: none;
}

.review-fader__slide[open] summary {
  background: rgba(189, 233, 201, 0.12);
}

.review-fader__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.review-fader__author {
  color: var(--brand-text);
  font-size: 1.1rem;
  font-weight: 800;
}

.review-fader__meta {
  margin-top: 0.25rem;
  color: rgba(38, 38, 38, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
}

.review-fader__slide--compact .review-fader__meta {
  font-size: 0.82rem;
}

.review-fader__platform {
  flex-shrink: 0;
}

.review-fader__stars {
  margin-top: 1.1rem;
  color: var(--brand-highlight);
  font-size: 0;
}

.review-fader__stars::before {
  content: "★★★★★";
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.review-fader__preview {
  margin-top: 1rem;
  color: var(--brand-text);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 42rem;
}

.review-fader__preview--compact {
  margin-top: 0.85rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.5;
  max-width: none;
}

.review-fader__toggle {
  margin-top: 1.15rem;
  color: var(--brand-accent);
  font-size: 0.95rem;
  font-weight: 800;
}

.review-fader__slide--compact .review-fader__toggle {
  margin-top: 0.9rem;
  font-size: 0.88rem;
}

.review-fader__body {
  padding: 0 1.6rem 1.6rem;
}

.review-fader__slide--compact .review-fader__body {
  padding: 0 1.2rem 1.2rem;
}

.review-fader__body p + p {
  margin-top: 0.9rem;
}

.review-wall-card__stars::before,
.review-fader__stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.review-fader__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-fader__dots {
  display: inline-flex;
  gap: 0.55rem;
}

.review-fader__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 51, 160, 0.18);
  cursor: pointer;
}

.review-fader__dot.is-active {
  background: var(--brand-accent);
  transform: scale(1.1);
}

.review-fader__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hubspot-form-card {
  display: grid;
  gap: 1rem;
}

.contact-intro {
  display: grid;
  gap: 1rem;
}

.contact-intro__copy {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 0;
  align-content: start;
  gap: 0.95rem;
}

.contact-intro__copy h1 {
  max-width: 13ch;
}

.contact-intro__supporting {
  max-width: 44rem;
}

.contact-intro__actions {
  margin-top: 2rem;
  justify-content: center;
}

.contact-quick-card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.contact-quick-card .section-title {
  margin-bottom: 0.75rem;
}

.contact-quick-card a {
  color: var(--brand-secondary);
  text-decoration: none;
}

.contact-quick-card a:hover,
.contact-quick-card a:focus-visible {
  text-decoration: underline;
}

.hubspot-form-shell {
  display: grid;
  gap: 1.4rem;
}

.hubspot-form-shell__intro {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.hubspot-form-card {
  padding: 1.2rem;
}

.hubspot-form-card--square {
  border-radius: 24px;
}

.hubspot-form-card .hs-form-frame {
  min-height: 28rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hubspot-form-shell .hubspot-form-card {
  max-width: 72rem;
  margin: 0 auto;
  width: 100%;
}

.legal-page .section-title,
.legal-page .cta-panel h2 {
  text-align: left;
}

.legal-hero {
  display: grid;
  gap: 0.9rem;
  max-width: 58rem;
}

.legal-hero .eyebrow {
  margin-bottom: 0;
}

.legal-meta {
  color: rgba(0, 51, 160, 0.68);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-stack {
  display: grid;
  gap: 1.35rem;
}

.legal-grid {
  align-items: stretch;
}

.legal-card {
  display: grid;
  gap: 0.8rem;
  padding-top: 2rem;
  border-radius: 30px;
}

.legal-card .section-title {
  margin-bottom: 0.2rem;
  line-height: 1.08;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 0.6rem;
}

.legal-overview .card {
  min-height: 100%;
  border-radius: 30px;
}

.legal-overview .card h3 {
  line-height: 1.08;
}

.floating-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.72rem 0.9rem 0.72rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(37, 211, 102, 0.26);
  box-shadow:
    0 18px 34px rgba(0, 51, 160, 0.14),
    0 10px 20px rgba(37, 211, 102, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    bottom 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow:
    0 22px 42px rgba(0, 51, 160, 0.17),
    0 12px 24px rgba(37, 211, 102, 0.18);
  outline: none;
}

.floating-whatsapp__icon {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fa855);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.floating-whatsapp__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.floating-whatsapp__label {
  color: var(--brand-text);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.has-cookie-banner .floating-whatsapp {
  bottom: 108px;
}

.has-cookie-banner-expanded .floating-whatsapp {
  bottom: 290px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}

.cookie-banner__panel {
  width: min(76rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(189, 233, 201, 0.4), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 248, 245, 0.97));
  border: 1px solid rgba(0, 51, 160, 0.1);
  box-shadow:
    0 28px 60px rgba(0, 51, 160, 0.2),
    0 10px 20px rgba(196, 96, 61, 0.08);
}

.cookie-banner__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__copy {
  display: grid;
  gap: 0.28rem;
  flex: 1;
}

.cookie-banner__copy h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.1;
}

.cookie-banner__copy p {
  max-width: 52rem;
  font-size: 0.9rem;
  color: rgba(38, 38, 38, 0.8);
}

.cookie-banner__eyebrow {
  color: rgba(0, 51, 160, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__actions .button {
  padding: 0.8rem 1.2rem;
  font-size: 0.92rem;
}

.cookie-banner__preferences {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(0, 51, 160, 0.08);
}

.cookie-banner[data-expanded="false"] .cookie-banner__preferences {
  display: none !important;
}

.cookie-banner[data-expanded="true"] .cookie-banner__preferences {
  display: grid !important;
}

.cookie-banner__preferences-intro {
  font-size: 0.88rem;
  color: rgba(38, 38, 38, 0.78);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 51, 160, 0.08);
}

.cookie-toggle span {
  display: grid;
  gap: 0.2rem;
}

.cookie-toggle strong {
  color: var(--brand-secondary);
  font-size: 0.98rem;
}

.cookie-toggle small {
  color: rgba(38, 38, 38, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-toggle input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--brand-secondary);
  flex-shrink: 0;
}

.cookie-banner__preferences-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.cookie-banner__text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-secondary);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-settings-button {
  position: fixed;
  left: 15px;
  bottom: 18px;
  z-index: 39;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(0, 51, 160, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-secondary);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 51, 160, 0.12);
  cursor: pointer;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.thank-you-main {
  position: relative;
  isolation: isolate;
}

.thank-you-main > section {
  position: relative;
  z-index: 1;
}

.thank-you-hero {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  max-width: 58rem;
}

.thank-you-hero .lead {
  max-width: 48rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.thank-you-note__card {
  padding: 1.8rem;
}

.thank-you-footer-card {
  display: grid;
  gap: 1.35rem;
  padding: 1.8rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(189, 233, 201, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 248, 245, 0.96));
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: var(--shadow-soft);
}

.thank-you-confetti {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  left: var(--sx, 50%);
  top: var(--sy, clamp(9rem, 20vh, 12.5rem));
  border-radius: 999px;
  opacity: 0;
  filter: drop-shadow(0 12px 18px rgba(0, 51, 160, 0.14));
  transform-origin: center;
  will-change: transform, opacity;
  animation-name: confetti-burst;
  animation-timing-function: cubic-bezier(0.18, 0.82, 0.24, 1);
  animation-iteration-count: infinite;
}

@keyframes confetti-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4) rotate(var(--r0, 0deg));
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 0.98;
    transform: translate3d(var(--dx, 0vw), var(--dy, -30vh), 0) scale(1) rotate(var(--r1, 180deg));
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--dx, 0vw) + var(--drift, 0vw)), calc(var(--dy, -30vh) + 6vh), 0) scale(0.92) rotate(calc(var(--r1, 180deg) + 80deg));
  }
}

@keyframes reviews-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes reviews-marquee-right {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }
  to {
    transform: translateX(0);
  }
}

.site-footer {
  margin-top: 1rem;
  background: linear-gradient(180deg, #0e3cae, #002f95);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer .brand {
  color: var(--bg-white);
}

.muted-links a:hover {
  color: var(--brand-star);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.site-footer__inner--full {
  align-items: flex-start;
}

.site-footer__content {
  display: grid;
  flex: 1;
  gap: 0.9rem;
}

.site-footer__content .muted-links {
  gap: 0.75rem 1rem;
}

.footer-towns {
  max-width: 50rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--brand-secondary);
  font-size: 0.94rem;
  font-weight: 800;
}

.social-link--light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
  .hero__grid,
  .split,
  .grid-3,
  .grid-2,
  .media-story--two,
  .media-story--three,
  .testimonial-grid,
  .google-review-grid,
  .review-duo,
  .review-duo__grid {
    grid-template-columns: 1fr;
  }

  .local-hero,
  .local-hero__tiles {
    grid-template-columns: 1fr;
  }

  .home-hero__grid,
  .home-hero__microproof {
    grid-template-columns: 1fr;
  }

  .home-hero__visual-note {
    width: auto;
    margin: -1.1rem 0 0;
  }

  .thank-you-note__card,
  .thank-you-footer-card {
    padding: 1.35rem;
  }

  .review-fader__top,
  .review-fader__controls {
    align-items: start;
    flex-direction: column;
  }

  .local-hero__title {
    max-width: none;
  }

  .review-duo__intro {
    max-width: none;
    padding-top: 0;
  }

  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
  }

  .cookie-banner__actions,
  .cookie-banner__preferences-actions {
    justify-content: flex-start;
  }

  .cookie-banner__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    max-width: none;
    text-align: center;
  }

  .brand__mark {
    width: 80px;
  }

  .hero-blob,
  .photo-blob {
    min-height: 360px;
  }

  .media-slot,
  .media-slot--wide,
  .media-slot--tall {
    min-height: 17rem;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(var(--container), calc(100% - 0.8rem));
    margin: 0.4rem auto;
    border-radius: 24px;
  }

  .brand__mark {
    width: 72px;
  }

  .home-hero__image--legacy {
    width: min(100%, 460px);
    aspect-ratio: 1 / 1;
    object-position: 56% 48%;
  }

  .photo-blob__image--legacy {
    object-position: 54% 34%;
  }

  .container {
    width: min(1120px, calc(100% - 1.2rem));
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .home-hero__copy h1 {
    max-width: 10ch;
  }

  .nav {
    gap: 0.9rem;
  }

  .review-wall-card {
    width: min(270px, 82vw);
  }

  .review-fader__stage {
    min-height: 28rem;
  }

  .review-fader__stage--compact {
    min-height: 21.5rem;
  }

  .review-fader__slide summary,
  .review-fader__body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 0.7rem;
  }

  .floating-whatsapp__label {
    display: none;
  }

  .has-cookie-banner .floating-whatsapp {
    bottom: 96px;
  }

  .has-cookie-banner-expanded .floating-whatsapp {
    bottom: 246px;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }

  .cookie-banner__panel {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .cookie-banner__actions {
    align-items: stretch;
  }

  .cookie-banner__actions .button {
    width: auto;
  }

  .cookie-toggle {
    align-items: start;
  }

  .cookie-settings-button {
    left: 12px;
    bottom: 12px;
    padding: 0.68rem 0.9rem;
    font-size: 0.86rem;
  }

  .media-slot {
    padding: 1.2rem;
    border-radius: 26px;
  }

  .media-slot::after {
    inset: 12px;
    border-radius: 20px;
  }
}
