:root {
  --red: #c81e2a;
  --red-dark: #8d111a;
  --ink: #151515;
  --charcoal: #252525;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --gold: #d7aa3d;
  --muted: #686868;
  --line: #e5e0d8;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
}

.topbar-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner {
  padding: 7px 0;
}

.topbar a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.nav-shell {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.site-nav a,
.nav-group > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group:hover > button {
  color: var(--red);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  width: 100%;
  justify-content: flex-start;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--paper) !important;
  border-radius: 4px;
  margin-left: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--paper);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero {
  min-height: 650px;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-outline {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--red-dark);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.footer-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split p,
.info-block p,
.article-body p {
  color: var(--charcoal);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list div,
.benefit-grid article,
.contact-card,
.sidebar-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  font-weight: 800;
}

.feature-list span,
.benefit-grid span {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 30, 42, 0.12);
}

.trial-band {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
}

.trial-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: 28px;
  align-items: center;
}

.trial-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.trial-band p {
  margin: 10px 0 0;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 10px;
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 700;
}

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

.content-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.card-media img,
.media-image,
.strip-image,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media img {
  transition: transform 220ms ease;
}

.content-card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.card-meta {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.card-body h3 a {
  text-decoration: none;
}

.card-body p {
  color: var(--muted);
}

.card-body .text-link {
  margin-top: auto;
}

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

.info-block {
  min-width: 0;
}

.info-block h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.media-panel {
  min-height: 360px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.media-image {
  min-height: 360px;
}

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

.benefit-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 20px;
}

.benefit-grid h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strip-image {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

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

.contact-card {
  padding: 24px;
}

.contact-card h2 {
  margin: 0 0 10px;
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  text-align: right;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 18px;
  background: var(--paper);
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: var(--cream);
  cursor: pointer;
}

.gallery-item img {
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

.article-body {
  max-width: 780px;
}

.article-body h2,
.article-body h3 {
  margin: 36px 0 12px;
  line-height: 1.15;
}

.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.article-meta {
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 800;
}

.review-body blockquote {
  margin: 0 0 24px;
  padding: 28px;
  border-left: 6px solid var(--red);
  background: var(--cream);
  border-radius: 6px;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.sidebar-panel {
  padding: 22px;
}

.sidebar-panel h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.sidebar-panel a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  text-decoration: none;
}

.video-frame {
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.narrow {
  max-width: 860px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-cta {
  background: var(--red);
  padding: 42px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta p {
  margin: 10px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--paper);
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-visible {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 6px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-group > button {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    padding: 0 0 0 14px;
  }

  .nav-cta {
    margin: 8px 0 0;
    justify-content: center !important;
  }

  .hero,
  .home-hero {
    min-height: 560px;
  }

  .split,
  .split-reverse,
  .trial-inner,
  .article-layout,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    display: grid;
  }

  .card-grid,
  .text-grid,
  .benefit-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .brand-logo {
    width: 134px;
  }

  .hero,
  .home-hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 68px 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .form-row,
  .card-grid,
  .text-grid,
  .benefit-grid,
  .contact-grid,
  .footer-grid,
  .feature-list,
  .image-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .media-panel,
  .media-image {
    min-height: 260px;
  }
}
