:root {
  --forest: #3f412e;
  --ember: #c83417;
  --cream: #faf8f6;
  --white: #ffffff;
  --ink: #202116;
  --soft-ink: rgba(32, 33, 22, 0.72);
  --soft-cream: rgba(250, 248, 246, 0.78);
  --line-light: rgba(63, 65, 46, 0.18);
  --line-dark: rgba(250, 248, 246, 0.18);
  --shadow: 0 22px 60px rgba(20, 22, 15, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--forest);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: 4.25rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  color: var(--soft-ink);
}

section {
  scroll-margin-top: 88px;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ember);
  color: var(--white);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(250, 248, 246, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: clamp(172px, 20vw, 230px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--forest);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(63, 65, 46, 0.1);
  outline: none;
}

.site-nav .nav-shop {
  background: var(--ember);
  color: var(--white);
}

.site-nav .nav-shop:hover,
.site-nav .nav-shop:focus-visible {
  background: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: clamp(46px, 7vw, 78px) 0 clamp(36px, 6vw, 70px);
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.band-dark .eyebrow,
.promo .eyebrow {
  color: var(--cream);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 6.5rem;
}

.hero h1 span {
  display: block;
  color: var(--cream);
  font-size: 3.35rem;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--soft-cream);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: var(--ember);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
  color: var(--forest);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(250, 248, 246, 0.46);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white);
  color: var(--forest);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 32px 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(250, 248, 246, 0.08);
}

.hero-facts dt {
  color: rgba(250, 248, 246, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(250, 248, 246, 0.2);
  border-radius: 8px;
  background: rgba(250, 248, 246, 0.1);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  border-radius: 6px;
  background: var(--cream);
}

.hero-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 330px;
  padding: 16px;
  border-radius: 7px;
  background: rgba(63, 65, 46, 0.9);
  color: var(--cream);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.band-light {
  background: var(--cream);
  color: var(--ink);
}

.band-dark {
  background: var(--forest);
  color: var(--white);
}

.intro {
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-label {
  position: sticky;
  top: 110px;
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 910px;
  margin-bottom: 24px;
}

.intro p {
  max-width: 960px;
  font-size: 1.16rem;
}

.categories {
  padding: clamp(64px, 9vw, 118px) 0;
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.section-heading-light p:last-child {
  color: var(--soft-cream);
}

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

.category-card {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(63, 65, 46, 0.12);
}

.category-card.tall {
  grid-row: span 2;
  min-height: 516px;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 33, 22, 0.05), rgba(32, 33, 22, 0.86));
}

.category-card span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 20px;
  color: var(--white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.12;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.08);
}

.category-card:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 4px;
}

.why {
  padding: clamp(64px, 9vw, 116px) 0;
}

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

.benefit-card {
  min-height: 312px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(250, 248, 246, 0.08);
}

.benefit-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.benefit-card h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--soft-cream);
}

.steps {
  padding: clamp(64px, 9vw, 118px) 0;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 82px);
}

.compact {
  margin-bottom: 0;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
}

.step > span {
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  margin-bottom: 18px;
}

.step a,
.text-link {
  display: inline-flex;
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.step a:hover,
.step a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--forest);
  outline: none;
}

.promo {
  padding: clamp(58px, 9vw, 110px) 0;
  background: var(--forest);
  color: var(--white);
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.promo h2 {
  max-width: 740px;
  margin-bottom: 18px;
  color: var(--white);
}

.promo p {
  max-width: 650px;
  color: var(--soft-cream);
}

.promo img {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(250, 248, 246, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.testimonials {
  padding: clamp(64px, 9vw, 118px) 0;
}

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

.testimonial-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--white);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.testimonial-card blockquote::before {
  content: "“";
  display: block;
  height: 44px;
  color: var(--ember);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.8;
}

.testimonial-card figcaption {
  margin-top: 24px;
  color: var(--forest);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.contact {
  padding: clamp(64px, 9vw, 118px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact p {
  color: var(--soft-cream);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-list a {
  color: var(--cream);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(250, 248, 246, 0.08);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  background: var(--cream);
  border-top: 1px solid var(--line-light);
}

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

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: var(--forest);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.footer-inner a:last-child {
  color: var(--ember);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

@media (max-width: 1020px) {
  h2 {
    font-size: 3.4rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero h1 span {
    font-size: 2.75rem;
  }

  .hero-grid,
  .promo-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-visual {
    max-width: 720px;
  }

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

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

  .steps-layout {
    grid-template-columns: 1fr;
  }

  .promo img {
    width: min(100%, 520px);
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line-light);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: flex-start;
    padding: 13px 14px;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero h1 span {
    font-size: 2.1rem;
  }

  .hero-facts,
  .intro-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    position: static;
  }

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

  .category-card,
  .category-card.tall {
    min-height: 220px;
    grid-row: auto;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .testimonial-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual figcaption {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 2.18rem;
  }

  h3 {
    font-size: 1.38rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero h1 span {
    font-size: 1.72rem;
  }

  .hero-lead,
  .intro p,
  .section-heading p:last-child {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card.tall {
    min-height: 230px;
  }

  .map-card,
  .map-card iframe {
    min-height: 340px;
  }
}
