/* =========================================================
   BE TOO HAPPY TO BE TRIGGERED — Stylesheet
   Refined UI/UX pass
   ========================================================= */

:root {
  --black: #111111;
  --ink: #1a1a1a;
  --charcoal: #2a2a2a;
  --muted: #6b6b6b;
  --line: rgba(17, 17, 17, 0.1);
  --line-soft: rgba(17, 17, 17, 0.06);
  --olive: #55613d;
  --olive-deep: #424c2f;
  --gold: #c79a43;
  --gold-soft: rgba(199, 154, 67, 0.4);
  --cream: #f6f3ec;
  --cream-2: #efeae0;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-soft: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-hover: 0 14px 30px rgba(17, 17, 17, 0.14);

  --nav-height: 68px;

  --section-py: clamp(3rem, 7vw, 5.5rem);
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -100px;
  background: var(--black);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  z-index: 3000;
}

.skip-link:focus-visible {
  top: 10px;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  background: var(--cream);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(17, 17, 17, 0.06);
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.06);
}

.navbar-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.logo-badge {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.04;
}

.logo-main,
.logo-sub {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}

.logo-main {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.logo-sub {
  font-size: 0.58rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-menu {
  position: absolute;
  top: calc(var(--nav-height) - 2px);
  left: 4vw;
  right: 4vw;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  padding: 0.4rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(17, 17, 17, 0.05);
  outline: none;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--olive) !important;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(86vh - var(--nav-height));
  background-image:
    linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.78) 0%,
      rgba(20, 20, 20, 0.55) 38%,
      rgba(20, 20, 20, 0.2) 62%,
      rgba(20, 20, 20, 0) 90%
    ),
    url("../assets/images/hero-lifestyle.png?v=2");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-content {
  padding-block: clamp(3rem, 9vw, 5.5rem);
}

.hero-content > * {
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--olive);
}

.hero .eyebrow {
  color: #efbb56;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0 0 1.05rem;
  color: #fff;
  text-transform: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.accent-happy {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.hero .accent-happy {
  color: #efbb56;
}

.hero-subheadline {
  margin: 0 0 1.6rem;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

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

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--olive);
  box-shadow: 0 8px 18px rgba(85, 97, 61, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--ink);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0.82rem 0.6rem;
  border-radius: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--olive);
  border-bottom-color: var(--olive);
  transform: none;
}

.hero .btn-ghost {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  color: #efbb56;
  border-bottom-color: #efbb56;
}

.hero .btn-primary {
  background: #efbb56;
  color: #1a1a1a;
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #f4c870;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   SECTION BASE
   ========================================================= */

.section {
  padding: var(--section-py) 0;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: 0.005em;
  margin: 0 0 0.9rem;
  color: var(--ink);
  text-transform: none;
}

.section-copy {
  margin: 0 0 1.8rem;
  max-width: 60ch;
  color: #424242;
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================
   MISSION (foundation strip)
   ========================================================= */

.mission {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.mission-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.3rem);
  margin: 0 0 1.6rem;
  font-size: clamp(0.98rem, 1.7vw, 1.18rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.mission-title-line {
  width: clamp(2.4rem, 8vw, 5rem);
  height: 1px;
  background: var(--gold-soft);
}

.foundation-strip {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.foundation-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.2rem 0.4rem;
  border-top: 1px solid var(--line-soft);
}

.foundation-item:first-child {
  border-top: none;
}

.foundation-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.foundation-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-copy h3 {
  margin: 0 0 0.3rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.foundation-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #3c3c3c;
}

/* =========================================================
   MERCH — feature + secondary grid
   ========================================================= */

.merch {
  background: var(--cream);
}

.merch-feature {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Hero product card */
.product-feature {
  position: relative;
  display: grid;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-feature-media {
  background: linear-gradient(160deg, #f0ebde 0%, #e6dfcc 100%);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  aspect-ratio: 4 / 3;
}

.product-feature-media img {
  max-width: 78%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.16));
}

.product-feature-copy h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  margin: 0.2rem 0 0.5rem;
}

.product-feature-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.product-feature-copy p {
  color: #3a3a3a;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 0.95rem;
  max-width: 50ch;
}

.product-feature-list {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.3rem;
}

.product-feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #2c2c2c;
}

.product-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}

/* Secondary product grid */
.product-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.6rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(160deg, #f3eee0, #ece5d1);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
}

.product-card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.product-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.coming-soon {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
}

.centered-action {
  margin-top: 1.8rem;
  text-align: center;
}

/* =========================================================
   COMMUNITY — Join the Community
   ========================================================= */

.community {
  background: var(--white);
}

.community .eyebrow,
.community .section-title,
.community .section-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.community .section-copy {
  margin-bottom: 1.6rem;
}

.community-join-wrap {
  position: relative;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding-block: 1rem;
}

.community-join-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  align-items: start;
  padding: 0.9rem 0.2rem;
  border-top: 1px solid var(--line-soft);
}

.community-join-card:first-child {
  border-top: none;
}

.community-badge {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.community-badge svg {
  width: 1.85rem;
  height: 1.85rem;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-join-card h3 {
  grid-column: 2;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.community-join-card ul {
  grid-column: 2;
  margin: 0;
  padding-left: 1.05rem;
  line-height: 1.5;
  font-size: 0.94rem;
  color: #333;
  list-style: disc;
}

.community-join-card p {
  grid-column: 2;
  margin: 0;
  line-height: 1.5;
  font-size: 0.94rem;
  color: #333;
}

.community-join-card li + li {
  margin-top: 0.14rem;
}

/* legacy hidden */
.community-grid,
.community-card,
.community-mantra,
.community-mantra-icon {
  display: none !important;
}

/* =========================================================
   PREORDER FORM
   ========================================================= */

.preorder {
  background: var(--cream);
}

.preorder-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 4vw, 2.4rem);
  max-width: 760px;
  margin: 0 auto;
}

.preorder-wrap .eyebrow,
.preorder-wrap .section-title,
.preorder-wrap .section-copy {
  text-align: left;
}

.preorder-wrap .section-copy {
  margin-bottom: 1.4rem;
}

.preorder-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.form-field span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0.78rem 0.85rem;
  background: var(--white);
  color: var(--charcoal);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(17, 17, 17, 0.32);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(85, 97, 61, 0.18);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  margin: 0.15rem 0 0;
  font-weight: 600;
  color: var(--olive);
  min-height: 1.4em;
}

/* generic focus visible */
.nav-toggle:focus-visible,
.modal-close:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(199, 154, 67, 0.7);
  outline-offset: 2px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #131313;
  color: var(--cream);
  padding: 2.4rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.1rem;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-text {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.footer-brand-text span {
  color: rgba(248, 246, 241, 0.65);
  font-size: 0.7rem;
  display: block;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: rgba(248, 246, 241, 0.82);
  font-size: 0.92rem;
  transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.copyright {
  margin: 0;
  color: rgba(248, 246, 241, 0.55);
  font-size: 0.82rem;
}

/* =========================================================
   MODAL
   ========================================================= */

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 2400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
}

.modal-dialog {
  position: relative;
  width: min(620px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  padding: 1.4rem;
  z-index: 1;
}

.modal-dialog h2 {
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
}

.modal-dialog p {
  margin: 0 0 1rem;
  color: #444;
}

.modal-close {
  position: absolute;
  right: 0.55rem;
  top: 0.5rem;
  border: none;
  background: transparent;
  color: var(--charcoal);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

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

  .foundation-item {
    padding: 1.2rem 0.85rem;
    border-top: 1px solid var(--line-soft);
  }

  .foundation-item:nth-child(2) {
    border-top: none;
  }

  .foundation-item:nth-child(2n) {
    border-left: 1px solid var(--line-soft);
  }

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

  .community-join-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1.1rem;
    padding-block: 1.4rem;
  }

  .community-join-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 1.2rem;
    bottom: 1.2rem;
    width: 1px;
    background: var(--gold-soft);
    transform: translateX(-50%);
  }

  .community-join-wrap::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    top: 50%;
    height: 1px;
    background: var(--gold-soft);
    transform: translateY(-50%);
  }

  .community-join-card {
    border-top: none;
    padding: 0.5rem 0.2rem;
  }

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

@media (min-width: 960px) {
  :root {
    --nav-height: 72px;
  }

  .navbar-inner {
    gap: 1.6rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
  }

  .nav-menu a {
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
    color: #1a1a1a;
    font-weight: 500;
  }

  .nav-menu a:hover {
    background: transparent;
    color: var(--olive);
  }

  .nav-menu .nav-cta {
    margin-left: 0.5rem;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
  }

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

  .hero-content > * {
    max-width: 34rem;
  }

  .foundation-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .foundation-item {
    padding: 1.35rem 1.05rem;
    border-top: none;
  }

  .foundation-item + .foundation-item {
    border-left: 1px solid var(--line-soft);
  }

  .merch-feature {
    gap: 2rem;
  }

  .product-feature {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }

  .product-feature-media {
    aspect-ratio: 1 / 1;
  }

  .community-join-card h3 {
    font-size: 1.18rem;
  }

  .community-join-card ul,
  .community-join-card p {
    font-size: 0.96rem;
  }

  .community-join-wrap {
    column-gap: 2.4rem;
    padding-block: 1.6rem;
  }
}
