/* Wheel & Frame N.Z. — industrial/utilitarian theme (frontend-design skill).
   Distinctive typography, dark + red accent, subtle depth. */

:root {
  --color-text: #1a1a1a;
  --color-text-muted: #444;
  --color-bg: #fafafa;
  --color-bg-alt: #eee;
  --color-border: #ddd;
  --color-primary: #1a1a1a;
  --color-primary-hover: #333;
  --color-accent: #b91c1c;
  --color-accent-hover: #991b1b;
  --container-max: 880px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .section-heading, .site-header__logo, .site-footer__brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a {
  color: var(--color-accent);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
}

/* ----- Header: glass effect (desktop) + hamburger menu (mobile) ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 var(--container-padding, 16px) var(--space-2, 16px);
  background: transparent;
  border-bottom: none;
}

/* When header is visible, reserve space so content isn't under it */
body.header-visible main {
  padding-top: 72px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  max-width: 100%;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner:hover {
  background: rgba(26, 26, 26, 0.55);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header__logo,
.site-header__links a,
.site-header__cta {
  color: #fff;
}

.site-header__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-header__cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
}

.site-header__cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Desktop: constrain pill width, hide hamburger */
@media (min-width: 768px) {
  .site-header__inner {
    max-width: min(920px, calc(100vw - 3rem));
  }

  .site-header__hamburger {
    display: none;
  }
}

/* Mobile: hide nav + CTA in pill, show hamburger */
@media (max-width: 767px) {
  .site-header__nav,
  .site-header__cta {
    display: none !important;
  }

  .site-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .site-header__hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .site-header__hamburger[aria-expanded="true"] {
    color: #fff;
  }

  .site-header__hamburger-box {
    display: block;
    width: 22px;
    height: 16px;
    position: relative;
  }

  .site-header__hamburger-inner {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-header__hamburger-inner::before,
  .site-header__hamburger-inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
  }

  .site-header__hamburger-inner::before {
    top: -6px;
  }

  .site-header__hamburger-inner::after {
    top: 6px;
  }

  .site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner {
    background: transparent;
  }

  .site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Mobile menu overlay */
  .site-header__mobile-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.35s ease, opacity 0.35s ease;
  }

  .site-header__mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-header__mobile-nav-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    padding: 5rem 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .site-header__mobile-nav.is-open .site-header__mobile-nav-inner {
    transform: translateX(0);
  }

  .site-header__mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-header__mobile-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(12px);
    transition: color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .site-header__mobile-nav.is-open .site-header__mobile-links a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-header__mobile-nav.is-open .site-header__mobile-links li:nth-child(1) a { transition-delay: 0.05s; }
  .site-header__mobile-nav.is-open .site-header__mobile-links li:nth-child(2) a { transition-delay: 0.1s; }
  .site-header__mobile-nav.is-open .site-header__mobile-links li:nth-child(3) a { transition-delay: 0.15s; }
  .site-header__mobile-nav.is-open .site-header__mobile-links li:nth-child(4) a { transition-delay: 0.2s; }
  .site-header__mobile-nav.is-open .site-header__mobile-links li:nth-child(5) a { transition-delay: 0.25s; }

  .site-header__mobile-links a:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header__mobile-cta {
    margin-top: auto;
    padding: 0.85rem 1.25rem;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  }

  .site-header__mobile-nav.is-open .site-header__mobile-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .site-header__mobile-nav {
    display: none;
  }
}

.trust-bar {
  background: #1a1a1a;
  color: #fff;
}

.trust-bar .trust-bar__text {
  color: rgba(255,255,255,0.9);
}

.cta-strip {
  background: #1a1a1a;
  color: #fff;
}

/* ----- Services: cards, red used sparingly (bottom border only) ----- */
.services-grid__banner {
  background: #1a1a1a;
}

.services-grid__inner {
  background: #e8e8e8;
}

.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card__link {
  color: var(--color-accent);
}

.service-card__link:hover {
  color: var(--color-accent-hover);
}

.contact-section {
  background: var(--color-bg-alt);
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

/* Contact: form + map side by side; contact details with icons below form */
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  /* Inner becomes grid: left column = heading, form, copy (with padding); right column = map full height, no padding */
  .contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
    padding-left: 0;
    padding-right: 0;
    max-width: none;
  }

  .contact-section__inner .section-heading {
    grid-column: 1;
    grid-row: 1;
    padding-left: 1.5rem;
  }

  .contact-section__grid {
    display: contents;
  }

  .contact-section__form-block {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-section__map-wrap {
    grid-column: 2;
    grid-row: 1 / -1;
    min-width: 0;
    min-height: 100%;
    border-radius: 0;
    margin: calc(-1 * var(--space-6)) 0;
    height: calc(100% + 2 * var(--space-6));
    align-self: stretch;
  }

  .contact-section__map-wrap iframe {
    min-height: 100%;
    height: 100%;
  }

  .contact-section__copy {
    grid-column: 1;
    grid-row: 3;
    padding-left: 1.5rem;
  }
}

.contact-form__row {
  margin: 0 0 1.25rem;
}

.contact-form__row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
  box-sizing: border-box;
}

.contact-form__input::placeholder {
  color: var(--color-text-muted);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__row--submit {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.contact-form__submit {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-details__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-details__item:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.contact-details__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-details__icon--pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-details__icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.contact-details__icon--fax {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 6h8v4H6z'/%3E%3Cpath d='M6 14h8v4H6z'/%3E%3Cpath d='M18 6h2v12h-2'/%3E%3Cpath d='M6 2v4M10 2v4M14 2v4'/%3E%3Crect x='2' y='6' width='14' height='12' rx='1'/%3E%3C/svg%3E");
}

.contact-details__icon--email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.contact-details__item:hover .contact-details__icon--pin,
.contact-details__item:hover .contact-details__icon--phone,
.contact-details__item:hover .contact-details__icon--fax,
.contact-details__item:hover .contact-details__icon--email {
  opacity: 0.85;
}

.contact-section__map-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-border);
  min-height: 280px;
}

.contact-section__map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

@media (min-width: 900px) {
  .contact-section .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

.site-footer {
  background: #1a1a1a;
  color: #fff;
}

.site-footer__links a {
  color: rgba(255,255,255,0.9);
}

.site-footer__links a:hover {
  color: #fff;
}

/* ----- Hero: single section (no slider), Pexels image + H1/support/CTA ----- */
.hero--single {
  padding: 0;
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero--single .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--single .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero--single .hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 640px;
}

.hero--single .hero__copy {
  font-family: 'Karla', system-ui, sans-serif;
  color: #fff;
}

.hero--single .hero__copy .hero__headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero--single .hero__copy .hero__support {
  font-family: 'Karla', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero--single .hero__copy .hero__cta-btn {
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.hero--single .hero__copy .hero__cta-btn:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ----- Hero cards: full width, no gap; 960/443 aspect; dark panels, white text; Our services in same section ----- */
.hero-cards {
  padding: 0;
  background: #0a0a0a;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-cards__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cards__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Varying dark shades for depth and differentiation */
.hero-card--dark-1 {
  background: #1a1a1a;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card--dark-2 {
  background: #141414;
}

.hero-card--dark-3 {
  background: #0d0d0d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card__image-wrap {
  aspect-ratio: 960 / 443;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}

/* Show left 70% of image; right 30% cut off */
.hero-card__image {
  width: 142.86%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero-card__body {
  padding: 2.25rem 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.hero-card__questions {
  font-family: 'Karla', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  flex: 1;
}

.hero-card__tagline {
  font-family: 'Karla', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.25rem;
}

.hero-card__btn {
  display: inline-block;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-card__btn:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Google reviews: star rating in title block */
.st-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--color-text-muted, #444);
}

.st-rating__value {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary, #1a1a1a);
}

.st-rating__stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
}

.st-google-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.st-google-link:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* Our services: dark section + dark cards with white text */
.hero-cards__services {
  width: 100%;
  max-width: 100%;
  padding: 3rem 0 4rem;
  background: #0a0a0a;
  overflow-x: hidden;
  box-sizing: border-box;
}

.hero-cards__services-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-cards__services-inner {
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: var(--container-max, 880px);
  min-width: 0;
  box-sizing: border-box;
}

.hero-cards__services-inner .services-grid__list {
  padding: 0;
  grid-template-columns: 1fr;
  min-width: 0;
}

@media (min-width: 480px) {
  .hero-cards__services-inner .services-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-cards__services-inner .services-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Dark service cards: dark bg, white text, red accent */
.hero-cards__services .service-card {
  min-width: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-cards__services .service-card:hover {
  background: #222;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: var(--color-accent);
}

.hero-cards__services .service-card__title {
  color: #fff;
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-cards__services .service-card__link {
  color: var(--color-accent);
}

.hero-cards__services .service-card__link:hover {
  color: #f87171;
}

/* ----- Scrolling testimonials (slow 120s) ----- */
.testimonials-section { padding: 0; overflow: hidden; }
.st-testimonials { box-sizing: border-box; width: 100%; max-width: 100vw; }
.st-testimonials .st-wrap { display: flex; flex-direction: column; min-height: 320px; width: 100%; }
.st-testimonials .st-reviews-block { padding: 24px 0; display: flex; flex-direction: column; gap: 0; justify-content: center; box-sizing: border-box; overflow: hidden; background: var(--color-bg-alt); }
@media (min-width: 768px) {
  .st-testimonials .st-wrap { flex-direction: row; min-height: 380px; }
  .st-testimonials .st-title-block { order: 2; flex: 0 0 33.333%; width: 33.333%; min-width: 0; padding: 32px 24px 40px; }
  .st-testimonials .st-reviews-block { order: 0; flex: 1 1 66.667%; min-width: 0; padding-top: 80px; padding-bottom: 80px; }
  .st-testimonials .st-heading { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
}
/* Mobile: title block (right half on desktop) first, then reviews */
.st-testimonials .st-title-block { order: -1; padding: 24px 16px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--color-bg); box-sizing: border-box; }
.st-testimonials .st-reviews-block { order: 0; }
.st-testimonials .st-sub { font-size: 0.75rem; font-weight: 500; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 8px; }
.st-testimonials .st-heading { font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 700; color: var(--color-primary); line-height: 1.2; margin: 0; }
.st-testimonials .st-marquee { width: 100%; overflow: hidden; padding: 12px 0; }
.st-testimonials .st-reviews-block:hover .st-track { animation-play-state: paused; }
.st-testimonials .st-track { display: flex; align-items: stretch; gap: 12px; width: max-content; animation-timing-function: linear; animation-iteration-count: infinite; }
.st-testimonials .st-track-left { animation: st-scroll-left 120s linear infinite; }
.st-testimonials .st-track-right { animation: st-scroll-right 120s linear infinite; }
@keyframes st-scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes st-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.st-testimonials .st-card { flex-shrink: 0; width: 300px; min-height: 140px; display: flex; flex-direction: column; background: var(--color-bg); border-radius: 6px; padding: 16px; border: 1px solid var(--color-border); box-sizing: border-box; position: relative; }
.st-testimonials .st-card p { margin: 0 0 6px; font-size: 14px; line-height: 1.5; color: var(--color-text); }
.st-testimonials .st-card .st-name { margin: 6px 0 0; font-size: 14px; font-weight: 600; color: var(--color-primary); flex-shrink: 0; }
.st-testimonials .st-google-icon { position: absolute; bottom: 12px; right: 12px; width: 22px; height: 22px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") no-repeat center/contain; }

/* ----- Aurora hero: Vanta.js NET + scroll reveal (distinct section) ----- */
/* Rest of page animates out when aurora comes into view */
.site-header,
main,
.site-footer {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

body.aurora-reveal .site-header,
body.aurora-reveal main,
body.aurora-reveal .site-footer {
  transform: translateY(-80px);
  opacity: 0;
  pointer-events: none;
}

.aurora-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0d0d;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

body.aurora-reveal .aurora-hero {
  opacity: 1;
  transform: translateY(0);
}

/* Separator line above aurora (visible when section is in view) */
.aurora-hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #b91c1c 20%, #b91c1c 80%, transparent 100%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.5s ease 0.4s;
}

body.aurora-reveal .aurora-hero::before {
  opacity: 1;
}

.aurora-hero__vanta {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0d0d0d;
}

.aurora-hero__vanta canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.aurora-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
}

.aurora-hero__heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.aurora-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.aurora-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.aurora-hero__credit {
  margin: 2rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.aurora-hero__btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.aurora-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.aurora-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
}
