:root {
  --black: #101010;
  --black-soft: #1a1716;
  --cream: #f5eddf;
  --cream-light: #fffaf2;
  --red: #8f1d14;
  --red-dark: #5d100b;
  --orange: #f15a24;
  --orange-light: #ff8a3d;
  --white: #ffffff;
  --muted: #c9c0b7;
  --ink: #211b18;
  --border: rgba(33, 27, 24, 0.14);
  --shadow: 0 24px 80px rgba(31, 17, 10, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-dark,
.section-black {
  color: var(--white);
  background: var(--black);
}

.section-black {
  background: #0d0d0d;
}

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

.section-red {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(241, 90, 36, 0.28), transparent 34%),
    linear-gradient(135deg, var(--red-dark), var(--red));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(16, 16, 16, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 34px;
  color: var(--orange);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  color: #ddd5cd;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 86px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0,0,0,0.2), transparent 60%),
    var(--black);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 78px;
  align-items: center;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.wofs-copy h2,
.shop-copy h2,
.signup-copy h2,
.social-wrap h2 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 6.7vw, 6.7rem);
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #ddd4cb;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--red);
}

.eyebrow.light {
  color: #ffb185;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 15px 35px rgba(241, 90, 36, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(241, 90, 36, 0.32);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255,255,255,0.1);
}

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

.button-dark {
  color: var(--white);
  background: var(--black);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof span,
.pill {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #d7cec5;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-photo-placeholder {
  width: 86%;
  height: 620px;
  margin-left: auto;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(241,90,36,0.22), rgba(143,29,20,0.18)),
    repeating-linear-gradient(45deg, #24201e 0 12px, #1b1817 12px 24px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.placeholder-content {
  max-width: 250px;
  padding: 24px;
  text-align: center;
  color: #efe5da;
}

.placeholder-content strong,
.placeholder-content small {
  display: block;
}

.placeholder-content strong {
  margin-top: 13px;
  font-size: 1rem;
}

.placeholder-content small {
  margin-top: 7px;
  color: #cfc4b9;
  font-size: 0.78rem;
}

.placeholder-content.dark-text {
  color: var(--ink);
}

.placeholder-content.dark-text small {
  color: #6f635d;
}

.placeholder-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quote-card {
  left: 0;
  bottom: 48px;
  width: 265px;
  padding: 24px;
  background: rgba(143,29,20,0.92);
}

.quote-card p {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.08;
}

.quote-mark {
  color: #ffc09d;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 0.7;
}

.age-card {
  top: 48px;
  right: -18px;
  width: 150px;
  padding: 18px;
  color: var(--black);
  background: var(--cream-light);
}

.age-card strong,
.age-card span {
  display: block;
}

.age-card strong {
  color: var(--red);
  font-family: "League Spartan", sans-serif;
  font-size: 2.2rem;
  line-height: 0.85;
}

.age-card span {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.6;
}

.hero-glow-one {
  width: 530px;
  height: 530px;
  right: -160px;
  top: -190px;
  background: radial-gradient(circle, rgba(241,90,36,0.42), transparent 67%);
}

.hero-glow-two {
  width: 410px;
  height: 410px;
  left: -210px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(143,29,20,0.36), transparent 70%);
}

.flame-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--red), var(--orange), var(--red), transparent);
  opacity: 0.85;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 92px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 570px;
}

.about-photo-placeholder {
  height: 540px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(241,90,36,0.18), rgba(143,29,20,0.08)),
    repeating-linear-gradient(135deg, #efe3d3 0 14px, #f8f0e5 14px 28px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mini-statement {
  position: absolute;
  right: -34px;
  bottom: -20px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--black);
  border-radius: 18px;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.section-copy h2,
.section-heading h2,
.wofs-copy h2,
.shop-copy h2,
.signup-copy h2,
.social-wrap h2 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
}

.section-copy > p:not(.eyebrow),
.wofs-copy > p:not(.eyebrow),
.shop-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #51463f;
  font-size: 1.04rem;
}

.signature-line {
  padding-left: 20px;
  border-left: 3px solid var(--orange);
  font-weight: 700;
}

.text-link,
.content-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
}

.text-link span,
.content-card-body a span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.content-card-body a:hover span {
  transform: translateX(4px);
}

.wofs-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 88px;
  align-items: center;
}

.wofs-copy > p:not(.eyebrow) {
  color: #f3ddd2;
}

.wofs-copy .button {
  margin-top: 32px;
}

.wofs-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px rgba(33,0,0,0.24);
  backdrop-filter: blur(14px);
}

.wofs-logo-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 24px;
  background: rgba(0,0,0,0.1);
}

.wofs-logo-placeholder span {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
}

.wofs-logo-placeholder small {
  color: #f1cfc3;
}

.wofs-logo-frame {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream-light);
}

.wofs-logo-frame img {
  width: min(100%, 330px);
  aspect-ratio: 1;
  object-fit: contain;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffece5;
}

.check-list li span {
  flex: 0 0 auto;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--red-dark);
  background: #ffb185;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 74px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading > p {
  margin: 0;
  color: #bdb2a9;
}

.dark-heading > p {
  color: #665b54;
}

.music-feature {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(241,90,36,0.17), transparent 40%),
    #151312;
}

.album-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(143,29,20,0.5), rgba(241,90,36,0.15)),
    #231b18;
}

.album-placeholder strong,
.album-placeholder small {
  display: block;
}

.album-placeholder strong {
  margin-top: 12px;
}

.album-placeholder small {
  margin-top: 4px;
  color: #c8bbb3;
}

.music-details h3 {
  margin: 20px 0 0;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.music-details > p {
  margin: 18px 0 0;
  color: #c9beb6;
}

.music-cta {
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  color: #ffd5bc;
  border-color: rgba(241,90,36,0.5);
  background: rgba(241,90,36,0.12);
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.streaming-links a {
  padding: 9px 13px;
  color: #e8ddd5;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.streaming-links a:hover {
  border-color: var(--orange);
  color: var(--white);
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.song-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: #151312;
}

.song-art-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #c6bbb4;
  background: linear-gradient(135deg, #5f120d, #2c2623);
  font-size: 0.7rem;
  font-weight: 700;
}

.song-card span {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-card h3 {
  margin: 4px 0 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.18rem;
}

.song-card p {
  margin: 6px 0 0;
  color: #bcb1aa;
  font-size: 0.83rem;
  line-height: 1.45;
}

.song-card .song-listen {
  display: inline-flex;
  gap: 6px;
  margin-top: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.song-card .song-listen span {
  color: var(--orange-light);
  font-size: inherit;
  letter-spacing: 0;
}

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

.content-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(44,24,12,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(44,24,12,0.13);
}

.video-placeholder {
  aspect-ratio: 9/12;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, #1f1b19, #4a241d);
}

.video-placeholder.orange {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, #6f2415, #e05422);
}

.video-placeholder.red {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, #48100c, #8f1d14);
}

.play-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  padding-left: 4px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(0,0,0,0.16);
}

.video-placeholder small {
  margin-top: 13px;
  color: #f1e9e2;
  font-weight: 700;
}

.content-card-body {
  padding: 24px;
}

.content-tag {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card-body h3 {
  margin: 10px 0 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.content-card-body a {
  margin-top: 18px;
  font-size: 0.86rem;
}

.shop-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(241,90,36,0.22), transparent 32%),
    #efe0cc;
}

.shop-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.shop-copy .button {
  margin-top: 30px;
}

.shop-copy .affiliate-note {
  max-width: 38rem;
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(33, 27, 24, 0.78);
}

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

.product-main {
  grid-column: 1 / -1;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(33,27,24,0.12);
  border-radius: var(--radius-md);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.product-link {
  display: block;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(33, 27, 24, 0.22);
}

.product-image {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  background: #ead7c0;
}

.product-small .product-image {
  min-height: 320px;
  height: 320px;
}

.product-image-tank {
  object-fit: contain;
  padding: 10px;
  background: #eee1d0;
}

.product-image-hoodie {
  object-fit: contain;
  padding: 10px;
  background: #eee1d0;
}

.product-image-boomer {
  object-fit: contain;
  padding: 18px;
  background: #eee1d0;
}

.product-image-mockup {
  object-fit: contain;
  padding: 18px;
  background: #eee1d0;
}

.product-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 40%, rgba(241,90,36,0.18), transparent 28%),
    repeating-linear-gradient(45deg, #ead7c0 0 14px, #f4e7d6 14px 28px);
}

.product-placeholder.warm {
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 40%, rgba(143,29,20,0.18), transparent 28%),
    repeating-linear-gradient(135deg, #d9b89a 0 14px, #ead2b9 14px 28px);
}

.product-placeholder strong {
  display: block;
  margin-top: 12px;
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 0.88rem;
}

.product-info strong {
  color: var(--red);
}

.signup-section {
  padding: 94px 0;
  color: var(--white);
  background: var(--black);
}

.signup-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 74px;
  align-items: center;
  padding: 56px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 0%, rgba(241,90,36,0.3), transparent 38%),
    linear-gradient(135deg, var(--red-dark), #280b08);
  box-shadow: 0 34px 80px rgba(0,0,0,0.34);
}

.signup-copy p:last-child {
  margin: 18px 0 0;
  color: #f1d8ce;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  gap: 12px;
  align-items: end;
}

.signup-form label span {
  display: block;
  margin: 0 0 7px 4px;
  color: #f9e7df;
  font-size: 0.75rem;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(255,255,255,0.08);
}

.signup-form input::placeholder {
  color: #c8aba1;
}

.signup-form input:focus {
  border-color: #ffbb95;
  box-shadow: 0 0 0 3px rgba(255,187,149,0.14);
}

.form-note,
.form-message {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: #d9bcb1;
  font-size: 0.74rem;
}

.form-message {
  min-height: 20px;
  color: #ffe8d9;
  font-weight: 700;
}

.social-section {
  padding: 78px 0;
  background: var(--cream-light);
}

.social-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.social-wrap h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.social-links a {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 7px 22px rgba(44,24,12,0.06);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--red);
  border-color: rgba(143,29,20,0.45);
}

.site-footer {
  padding: 64px 0 34px;
  color: #bfb5ae;
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 18px 0 0;
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .wofs-grid,
  .shop-grid {
    gap: 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo-placeholder {
    width: 100%;
    height: 540px;
  }

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

  .song-card {
    grid-template-columns: 76px 1fr;
  }

  .signup-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 15px;
    right: 15px;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: rgba(16,16,16,0.98);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

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

  .hero-grid,
  .split-grid,
  .wofs-grid,
  .section-heading,
  .music-feature,
  .shop-grid,
  .social-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 12vw, 5.8rem);
  }

  .hero-visual {
    min-height: 590px;
  }

  .hero-photo-placeholder {
    width: calc(100% - 30px);
    margin-left: auto;
  }

  .age-card {
    right: 0;
  }

  .split-grid {
    gap: 70px;
  }

  .image-stack {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .section-heading {
    gap: 24px;
  }

  .music-feature {
    gap: 34px;
  }

  .album-placeholder {
    max-width: 420px;
  }

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

  .content-card {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
  }

  .video-placeholder {
    aspect-ratio: auto;
    min-height: 330px;
  }

  .product-grid {
    max-width: 680px;
  }

  .signup-form {
    grid-template-columns: 1fr 1fr;
  }

  .signup-form .button {
    grid-column: 1 / -1;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    left: 12px;
    right: 12px;
  }

  .brand-mark {
    width: 30px;
  }

  .hero {
    padding: 54px 0 86px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .hero-visual {
    min-height: 505px;
  }

  .hero-photo-placeholder {
    width: calc(100% - 18px);
    height: 470px;
  }

  .quote-card {
    bottom: 0;
    width: 225px;
    padding: 19px;
  }

  .quote-card p {
    font-size: 1.08rem;
  }

  .age-card {
    top: 24px;
    width: 126px;
    padding: 15px;
  }

  .image-stack {
    min-height: 490px;
  }

  .about-photo-placeholder {
    height: 470px;
  }

  .mini-statement {
    right: 12px;
  }

  .section-copy h2,
  .section-heading h2,
  .wofs-copy h2,
  .shop-copy h2,
  .signup-copy h2,
  .social-wrap h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .wofs-card,
  .music-feature,
  .signup-card {
    padding: 24px;
  }

  .wofs-logo-placeholder {
    min-height: 180px;
  }

  .content-card {
    display: block;
  }

  .video-placeholder {
    min-height: 380px;
  }

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

  .product-placeholder,
  .product-placeholder.warm {
    min-height: 360px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form .button,
  .form-note,
  .form-message {
    grid-column: 1;
  }

  .social-links a {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }
}


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