:root {
  --rp-sand: #dfdad4;
  --rp-cream: #f3f0e9;
  --rp-ink: #1e2a3a;
  --rp-earth: #9d5c31;
  --rp-earth-dark: #6e3e1d;
  --rp-navy: #121821;
  --rp-black: #0b0e12;
  --rp-border: rgba(30, 42, 58, 0.14);
  --rp-shadow: 0 18px 40px rgba(14, 21, 30, 0.08);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "futura-pt-condensed", sans-serif;
  background-color: var(--rp-sand);
  color: var(--rp-ink);
  overflow-x: hidden;
}

p,
li,
label,
input,
textarea,
select,
option,
.font-body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: "futura-pt-condensed", sans-serif;
}

a {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.bg-custom-brown {
  background-color: var(--rp-earth);
}

.section-shell {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-shell--wide {
  max-width: 1600px;
}

@media (min-width: 768px) {
  .section-shell {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "futura-pt-condensed", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.display-title {
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

.lead-copy {
  max-width: 46rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: rgba(30, 42, 58, 0.84);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(243, 240, 233, 0.96), rgba(235, 226, 216, 0.92));
  box-shadow: var(--rp-shadow);
}

.page-hero--dark {
  color: var(--rp-cream);
  background:
    radial-gradient(circle at top right, rgba(157, 92, 49, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(18, 24, 33, 0.97), rgba(30, 42, 58, 0.96));
}

.page-hero--dark .lead-copy {
  color: rgba(243, 240, 233, 0.82);
}

.hero-badges {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  overflow: hidden;
}

.hero-badge {
  min-width: 0;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-badge strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-badge span {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  color: rgba(243, 240, 233, 0.72);
}

@media (min-width: 1100px) {
  .hero-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.info-card {
  border-radius: 1.75rem;
  border: 1px solid var(--rp-border);
  background: rgba(243, 240, 233, 0.78);
  box-shadow: var(--rp-shadow);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.info-card--dark {
  background: rgba(18, 24, 33, 0.95);
  color: var(--rp-cream);
  border-color: rgba(255, 255, 255, 0.08);
}

.info-card--dark p,
.info-card--dark li {
  color: rgba(243, 240, 233, 0.8);
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  overflow: hidden;
}

.kpi-item {
  background: rgba(18, 24, 33, 0.9);
  color: var(--rp-cream);
  padding: 1rem 1.1rem;
}

.kpi-item strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.kpi-item span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 240, 233, 0.72);
}

.site-nav-link {
  position: relative;
}

.site-nav-link.is-active {
  color: var(--rp-cream);
}

.site-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: rgba(243, 240, 233, 0.9);
}

#mobile-menu .site-nav-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(243, 240, 233, 0.28);
}

#mobile-menu .site-nav-link.is-active::after {
  display: none;
}

.footer-heading {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--rp-cream);
}

.footer-link-list {
  display: grid;
  gap: 0.8rem;
}

.footer-link-list a {
  color: rgba(243, 240, 233, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.footer-link-list a:hover {
  color: var(--rp-cream);
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(243, 240, 233, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.social-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.page-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .page-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.shop-product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .shop-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.shop-product-card {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  background: linear-gradient(180deg, rgba(243, 240, 233, 0.9), rgba(232, 224, 213, 0.95));
  box-shadow: var(--rp-shadow);
}

.shop-product-card__swatch {
  height: 0.85rem;
}

.shop-product-card__body {
  padding: 1.5rem;
}

.shop-product-card__image {
  height: 220px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.16));
}

.storefront-note {
  border-radius: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.2rem;
}

.content-prose {
  display: grid;
  gap: 1rem;
}

.content-prose p,
.content-prose li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.inline-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "futura-pt-condensed", sans-serif;
  padding: 0.5rem 0.95rem;
  border-radius: 9999px;
  background: rgba(18, 24, 33, 0.08);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.inline-stat--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--rp-cream);
}

.page-divider {
  height: 1px;
  background: rgba(30, 42, 58, 0.14);
}

@media (max-width: 639px) {
  .page-hero {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }

  .display-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
  }

  .lead-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .hero-badge {
    padding: 0.95rem 0.85rem;
  }

  .hero-badge strong {
    font-size: 1.35rem;
    line-height: 0.92;
  }

  .hero-badge span {
    margin-top: 0.3rem;
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }
}
