@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-sky: #7EB8DA;
  --color-stone: #F0F2F4;
  --color-slate: #1E2D36;
  --color-orange: #E8954F;
  --color-pine: #2D6B5C;
  --color-yellow: #E8D88C;
  --color-charcoal: #252B31;
  --color-gray: #5C6570;
  --color-white: #fff;
  --color-mint: #B8D4C8;
  --color-ink: #0F1419;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-pill: 2rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3rem;
  --shadow-sm: 0 0.125rem 0.375rem rgba(30, 45, 54, 0.06);
  --shadow-md: 0 0.25rem 0.875rem rgba(30, 45, 54, 0.1);
  --shadow-lg: 0 0.5rem 1.5rem rgba(30, 45, 54, 0.12);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: 0.25s ease;
  --header-h: 3.25rem;
  --max-w: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-charcoal);
  background: var(--color-stone);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-pine);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-slate);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 var(--space-md);
  color: var(--color-slate);
}

h1 { font-size: clamp(1.15rem, 3.5vw, 1.6rem); }
h2 { font-size: clamp(1rem, 2.8vw, 1.3rem); }
h3 { font-size: clamp(0.95rem, 2.2vw, 1.1rem); }
h4, h5, h6 { font-size: clamp(0.9rem, 1.8vw, 1rem); }

p {
  margin: 0 0 var(--space-md);
  color: var(--color-charcoal);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-xs) var(--space-md);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(240, 242, 244, 0.97);
  backdrop-filter: blur(0.5rem);
  box-shadow: 0 0.0625rem 0 0 rgba(30, 45, 54, 0.06);
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
}

.logo-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  color: var(--color-slate);
  letter-spacing: 0.03em;
}

.logo-link:hover {
  color: var(--color-pine);
}

.nav-menu {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-list a:hover {
  color: var(--color-pine);
  background: rgba(255, 255, 255, 0.85);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: var(--color-slate);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 102;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--color-pine);
}

.menu-toggle[aria-expanded="true"],
.menu-open .menu-toggle {
  display: none;
}

.menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: var(--color-slate);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 102;
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
}

.menu-open .menu-close {
  display: flex;
}

.menu-close:hover {
  background: var(--color-pine);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 18rem;
  height: 100vh;
  background: var(--color-stone);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  transform: translateY(-100%);
  transition: transform var(--transition);
  z-index: 101;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  visibility: visible;
  opacity: 1;
}

.mobile-menu .nav-list a {
  font-size: 0.95rem;
  color: var(--color-slate);
  font-weight: 600;
  padding: var(--space-xs) 0;
}

.mobile-menu .nav-list a:hover {
  color: var(--color-pine);
}

@media (min-width: 48rem) {
  .nav-menu {
    display: block;
  }

  .menu-toggle,
  .menu-close {
    display: none !important;
  }

  .mobile-menu {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  background-image: url('../gallery/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30, 45, 54, 0.72) 0%, rgba(45, 107, 92, 0.5) 50%, rgba(30, 45, 54, 0.4) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 36rem;
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  margin-bottom: var(--space-sm);
}

.hero .subhead {
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.hero-figure {
  position: absolute;
  bottom: var(--space-lg);
  right: 12%;
  width: 4.5rem;
  height: 4.5rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2.2s ease-in-out infinite;
}

.hero-figure::before {
  content: '';
  position: absolute;
  inset: -0.35rem;
  border: 0.15rem solid rgba(232, 149, 79, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2.2s ease-in-out infinite 0.4s;
}

.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0.55rem;
  background: var(--color-orange);
  border-radius: 50%;
  opacity: 0.95;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.65; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (max-width: 30rem) {
  .hero-figure {
    width: 3.25rem;
    height: 3.25rem;
    right: 6%;
  }

  .hero-figure::after {
    inset: 0.4rem;
  }

  .hero-figure::before {
    inset: -0.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: var(--space-sm);
}

.btn-primary {
  background: var(--color-pine);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-slate);
  color: var(--color-yellow);
}

.btn-secondary {
  background: var(--color-sky);
  color: var(--color-slate);
}

.btn-secondary:hover {
  background: var(--color-slate);
  color: var(--color-sky);
}

.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-slate);
}

.btn-light:hover {
  background: var(--color-white);
  color: var(--color-pine);
}

.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  margin-bottom: var(--space-xs);
}

.card-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sky);
  color: var(--color-slate);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-icon-wrap i {
  font-size: 1.35rem;
}

.split-section .icon-wrap {
  width: 100%;
  max-width: 12rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-stone);
  color: var(--color-slate);
  border-radius: var(--radius-lg);
}

.split-section .icon-wrap i {
  font-size: 3rem;
}

.tip-box {
  background: linear-gradient(135deg, var(--color-yellow) 0%, rgba(244, 228, 156, 0.6) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 0.25rem solid var(--color-orange);
}

.tip-box h3 {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.content-block {
  max-width: 45rem;
  margin: 0 auto var(--space-lg);
}

.content-block h2 {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  margin-bottom: var(--space-sm);
}

.checklist-plain {
  list-style: none;
  padding-left: 0;
}

.split-section {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 48rem) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.split-section img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-wrap {
  max-width: 32rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 0.0625rem solid var(--color-sky);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-pine);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.8125rem;
  color: var(--color-gray);
}

.form-check a {
  text-decoration: underline;
}

.site-footer {
  background: var(--color-slate);
  color: var(--color-stone);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-2xl);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--color-mint);
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 0.0625rem solid rgba(184, 212, 200, 0.2);
}

.footer-bottom {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  color: var(--color-mint);
  margin: 0;
  padding-top: var(--space-sm);
}

.page-sticky-footer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-sticky-footer main {
  flex: 1;
}

@media (min-width: 36rem) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-info p {
  margin: 0 0 var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-stone);
}

.footer-info a {
  color: var(--color-sky);
}

.footer-info a:hover {
  color: var(--color-yellow);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--color-stone);
}

.footer-nav a:hover {
  color: var(--color-sky);
}

.legal-page {
  padding: var(--space-2xl) 0;
  min-height: 60vh;
}

.legal-page .container {
  max-width: 50rem;
}

.legal-page h1 {
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 0.125rem solid var(--color-sky);
}

.legal-page h2 {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-page h3 {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.legal-page ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  border: 0.0625rem solid var(--color-sky);
}

.legal-page table {
  width: 100%;
  min-width: 20rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-page th,
.legal-page td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 0.0625rem solid var(--color-stone);
}

.legal-page th {
  background: var(--color-sky);
  color: var(--color-slate);
  font-weight: 600;
}

.legal-page tr:hover td {
  background: rgba(168, 207, 229, 0.15);
}

.home-button {
  display: inline-block;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-pine);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.home-button:hover {
  background: var(--color-slate);
  color: var(--color-yellow);
}

.centered-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.centered-page h1 {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  margin-bottom: var(--space-md);
}

.centered-page p {
  max-width: none;
  margin-bottom: var(--space-md);
}

.centered-page .btn {
  margin-top: var(--space-md);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
}

@media (min-width: 36rem) {
  .map-wrap iframe {
    height: 20rem;
  }
}

.product-list {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card-icon {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-stone);
  color: var(--color-slate);
}

.product-card-icon i {
  font-size: 2.5rem;
}

.product-card .product-body {
  padding: var(--space-lg);
}

.product-card h3 {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  margin-bottom: var(--space-xs);
}

.product-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-pine);
  margin: var(--space-sm) 0;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 58, 68, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 28rem;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition);
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.popup-box h3 {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: var(--space-md);
}

.popup-box p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.popup-box .btn {
  margin-top: var(--space-sm);
}

.error-code {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--color-sky);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.page-hero {
  padding: calc(var(--header-h) + var(--space-xl)) var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-stone) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  margin: 0;
  font-size: 0.9375rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 30rem) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-item span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-pine);
}

.stat-item small {
  font-size: 0.75rem;
  color: var(--color-gray);
}

.decibel-visual {
  width: 100%;
  max-width: 16rem;
  height: 4rem;
  margin: var(--space-md) auto;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  justify-content: center;
}

.decibel-bar {
  width: 1rem;
  background: var(--color-sky);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  animation: bar-height 2s ease-in-out infinite;
}

.decibel-bar:nth-child(1) { height: 1.5rem; animation-delay: 0s; }
.decibel-bar:nth-child(2) { height: 2rem; animation-delay: 0.1s; }
.decibel-bar:nth-child(3) { height: 2.5rem; animation-delay: 0.2s; }
.decibel-bar:nth-child(4) { height: 1.8rem; animation-delay: 0.3s; }
.decibel-bar:nth-child(5) { height: 2.8rem; animation-delay: 0.4s; }
.decibel-bar:nth-child(6) { height: 2.2rem; animation-delay: 0.5s; }
.decibel-bar:nth-child(7) { height: 2.6rem; animation-delay: 0.6s; }

@keyframes bar-height {
  0%, 100% { transform: scaleY(0.8); }
  50% { transform: scaleY(1); }
}

.contact-intro {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro h2 {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  margin-bottom: var(--space-sm);
}

.contact-details {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-details p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
}

.contact-details a[href^="tel"] {
  color: var(--color-pine);
  font-weight: 600;
}

.sound-bites {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .sound-bites {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 56rem) {
  .sound-bites {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sound-bite {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-top: 0.2rem solid var(--color-mint);
  box-shadow: var(--shadow-sm);
}

.sound-bite blockquote {
  margin: 0 0 var(--space-sm);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.5;
}

.sound-bite cite {
  font-size: 0.8rem;
  color: var(--color-gray);
  font-style: normal;
}

.sound-bites-heading {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.sound-bites-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.bent-section {
  position: relative;
  padding: var(--space-xl) 0;
}

.bent-section .container {
  position: relative;
  z-index: 1;
}

.zigzag-row {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .zigzag-row {
    grid-template-columns: 1fr 1fr;
  }

  .zigzag-row .block-b:first-child {
    order: 2;
  }
}

.zigzag-row .block-b {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.zigzag-row .block-b h3 {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }

  .container {
    padding: 0 var(--space-sm);
  }
}
