:root {
  --brand-coral: #f4a882;
  --brand-cream: #fff4ec;
  --brand-sand: #eadccb;
  --brand-taupe: #c6b8a6;
  --brand-sage: #a8bfa7;
  --white: #ffffff;
  --paper: #f7f5f2;
  --mist: #e6e2dd;
  --stone: #b7b1a9;
  --ink: #2d2b28;
  --muted: #6e6b66;
  --shadow: 0 22px 60px rgba(45, 43, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 244, 236, 0.9);
  border-bottom: 1px solid rgba(198, 184, 166, 0.45);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--white);
  color: var(--ink);
  outline: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(70vh - 76px);
  margin: 0;
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(54px, 7vw, 82px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background: url("assets/hero-support-bg.png") center 48% / cover no-repeat;
  filter: blur(6px) brightness(0.72) saturate(0.92);
  opacity: 1;
  transform: scale(1.04);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(45, 43, 40, 0.76) 0%, rgba(45, 43, 40, 0.54) 45%, rgba(45, 43, 40, 0.16) 100%),
    linear-gradient(180deg, rgba(45, 43, 40, 0.34) 0%, rgba(45, 43, 40, 0.5) 100%);
}

.hero-copy {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero .eyebrow {
  color: var(--brand-coral);
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  text-wrap: balance;
}

.hero .hero-text {
  max-width: 560px;
  color: rgba(255, 244, 236, 0.9);
}

.hero .button.secondary {
  background: rgba(255, 244, 236, 0.12);
  border-color: rgba(255, 244, 236, 0.46);
  color: var(--white);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  background: rgba(255, 244, 236, 0.22);
}

.eyebrow {
  margin: 0 0 12px;
  color: #8d765f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-text {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--brand-coral);
  color: #231d17;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #ee9367;
}

.button.secondary {
  background: var(--white);
  border-color: rgba(198, 184, 166, 0.8);
  color: var(--ink);
}

.support-note {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px) 28px;
}

.support-note p {
  margin: 0;
  padding: 18px 22px;
  background: var(--brand-cream);
  border: 1px solid rgba(198, 184, 166, 0.55);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 650;
}

.support-note a {
  color: #8c5b38;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-section,
.video-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 4vw, 36px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(183, 177, 169, 0.5);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(45, 43, 40, 0.08);
}

.product-image {
  background: var(--brand-sand);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.product-image-contain {
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
}

.product-image-contain img {
  object-fit: contain;
  background: var(--white);
}

.product-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
}

.product-kicker {
  margin: 0 0 10px;
  color: #846c55;
  font-size: 0.8rem;
  font-weight: 850;
}

.product-copy {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 14px 16px;
  background: var(--brand-cream);
  border: 1px solid rgba(198, 184, 166, 0.48);
  border-radius: 8px;
  transition: background 160ms ease, border-color 160ms ease;
}

.resource-link:hover,
.resource-link:focus-visible {
  background: #fff0e5;
  border-color: var(--brand-coral);
  outline: none;
}

.resource-link span {
  font-weight: 800;
}

.resource-link strong {
  flex: 0 0 auto;
  color: #6e5a45;
  font-size: 0.82rem;
}

.video-section {
  padding-top: 26px;
}

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

.video-card {
  padding: 14px;
  background: #efe8df;
  border: 1px solid rgba(183, 177, 169, 0.48);
  border-radius: 8px;
}

.video-card h3 {
  padding: 16px 4px 4px;
  font-size: 1.08rem;
  line-height: 1.25;
}

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

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
  background: linear-gradient(135deg, var(--brand-sage), #dfe8d9);
  border-radius: 8px;
}

.contact-section p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #44443f;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 56px);
  background: #6e6b66;
  color: var(--brand-cream);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 840px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .section-heading,
  .contact-section,
  .site-footer {
    display: block;
  }

  .product-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .contact-section .button {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.65rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .resource-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
