:root {
  --navy: #0b1f36;
  --cream: #f2e6c8;
  --red: #8e2c24;
  --gold: #b78a3b;
  --white: #f8f4e8;
  --olive: #657047;
  --charcoal: #171717;
  --ink: #211f1b;
  --muted: #6e675b;
  --line: rgba(11, 31, 54, 0.16);
  --line-light: rgba(248, 244, 232, 0.2);
  --shadow: 0 24px 60px rgba(11, 31, 54, 0.15);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Brush Script MT", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(242, 230, 200, 0.92), rgba(248, 244, 232, 0.96)),
    repeating-linear-gradient(90deg, rgba(11, 31, 54, 0.025) 0 1px, transparent 1px 7px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--red);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.announcement {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 244, 232, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
  color: var(--navy);
  line-height: 1;
  text-transform: uppercase;
}

.brand-main {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0.09em;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.brand-sub {
  align-self: flex-end;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.section {
  padding: clamp(3.75rem, 7vw, 6.75rem) 0;
}

.section-navy {
  background:
    linear-gradient(135deg, rgba(11, 31, 54, 0.96), rgba(11, 31, 54, 0.9)),
    repeating-linear-gradient(0deg, rgba(248, 244, 232, 0.06) 0 1px, transparent 1px 9px);
  color: var(--white);
}

.section-cream {
  background:
    linear-gradient(rgba(242, 230, 200, 0.88), rgba(242, 230, 200, 0.88)),
    repeating-linear-gradient(45deg, rgba(183, 138, 59, 0.06) 0 1px, transparent 1px 10px);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(115deg, rgba(11, 31, 54, 0.98) 0%, rgba(11, 31, 54, 0.86) 57%, rgba(142, 44, 36, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(248, 244, 232, 0.08) 0 1px, transparent 1px 12px);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(183, 138, 59, 0.14) 46% 48%, transparent 48% 100%),
    radial-gradient(circle at 16% 20%, rgba(183, 138, 59, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.product-info h1,
.policy h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.35rem);
}

.hero-copy {
  max-width: 630px;
  margin: 1.25rem 0 0;
  color: rgba(248, 244, 232, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  border-top: 1px solid rgba(183, 138, 59, 0.58);
  padding-top: 0.8rem;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 0.25rem;
  color: rgba(248, 244, 232, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-actions,
.cta-row,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: #c99b49;
  color: var(--navy);
}

.button-secondary {
  border-color: rgba(248, 244, 232, 0.55);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.mockup-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.mockup-stage::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8%;
  border: 1px solid rgba(248, 244, 232, 0.22);
  background: rgba(248, 244, 232, 0.06);
  box-shadow: var(--shadow);
}

.patch-mockup,
.image-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 138, 59, 0.55);
  background:
    linear-gradient(135deg, rgba(11, 31, 54, 0.94), rgba(11, 31, 54, 0.82)),
    repeating-linear-gradient(45deg, rgba(248, 244, 232, 0.08) 0 1px, transparent 1px 10px);
  color: var(--white);
}

.patch-mockup {
  width: min(365px, 92%);
  aspect-ratio: 4.5 / 3;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 48px;
  outline: 8px solid rgba(183, 138, 59, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.patch-mockup::before,
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(183, 138, 59, 0.7);
  pointer-events: none;
}

.patch-mockup::after,
.image-placeholder::after {
  content: "★";
  position: absolute;
  top: 15px;
  right: 20px;
  color: rgba(183, 138, 59, 0.68);
  font-size: 1.1rem;
}

.patch-inner {
  display: grid;
  gap: 0.55rem;
  max-width: 260px;
}

.patch-monogram {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(183, 138, 59, 0.72);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.patch-kicker {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.patch-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.patch-note {
  color: rgba(248, 244, 232, 0.8);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ribbon-rule {
  height: 10px;
  background:
    linear-gradient(90deg, var(--red) 0 33%, var(--cream) 33% 66%, var(--gold) 66% 100%);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 1.35rem 0;
}

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

.proof-grid div {
  display: grid;
  gap: 0.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.proof-grid span,
.drop-ledger span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid strong,
.drop-ledger strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.15;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.page-hero h1,
.product-info h1,
.policy h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

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

.section-heading p,
.split-copy p,
.page-hero p,
.product-info p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-navy .section-heading p {
  color: rgba(248, 244, 232, 0.78);
}

.pillar-grid,
.category-grid,
.product-grid,
.related-grid,
.policy-grid {
  display: grid;
  gap: 1rem;
}

.pillar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card,
.category-card,
.product-card,
.info-panel,
.faq-item,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 232, 0.72);
}

.pillar-card,
.category-card,
.policy-card {
  padding: 1.2rem;
}

.pillar-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-index,
.card-icon {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pillar-card h3,
.category-card h3,
.product-card h3,
.info-panel h3,
.faq-item summary,
.policy-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.15;
}

.pillar-card h3 {
  font-size: 1.65rem;
}

.pillar-card p,
.category-card p,
.product-card p,
.info-panel p,
.policy-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.featured-drop,
.split-layout,
.product-detail-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.75rem);
}

.featured-visual,
.product-gallery {
  display: grid;
  gap: 1rem;
}

.image-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.image-placeholder.large {
  min-height: 520px;
}

.image-placeholder.small {
  min-height: 180px;
}

.image-placeholder .patch-inner {
  max-width: 340px;
}

.spec-list,
.check-list,
.footer-links,
.social-links,
.mini-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.spec-list li {
  display: flex;
  gap: 0.65rem;
  color: var(--ink);
}

.spec-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.drop-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.drop-ledger div,
.commerce-note,
.launch-card,
.creator-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 244, 232, 0.72);
}

.drop-ledger div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
}

.commerce-note {
  margin-top: 1.35rem;
  padding: 1rem;
  border-color: rgba(183, 138, 59, 0.45);
}

.commerce-note strong,
.launch-card h3,
.creator-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.15;
}

.commerce-note p,
.launch-card p,
.creator-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

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

.category-card {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(248, 244, 232, 0.92), rgba(242, 230, 200, 0.74));
}

.category-card h3 {
  margin-top: 1.9rem;
  font-size: 1.25rem;
}

.creator-band {
  position: relative;
  overflow: hidden;
}

.creator-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(183, 138, 59, 0.16), transparent),
    repeating-linear-gradient(90deg, rgba(248, 244, 232, 0.07) 0 1px, transparent 1px 12px);
  pointer-events: none;
}

.creator-band .section-inner {
  position: relative;
}

.creator-card {
  align-self: center;
  justify-self: end;
  max-width: 430px;
  padding: 1.25rem;
  background: rgba(248, 244, 232, 0.08);
  border-color: rgba(248, 244, 232, 0.24);
}

.creator-card p {
  color: rgba(248, 244, 232, 0.78);
}

.creator-card .button {
  margin-top: 1.15rem;
}

.signup-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.form-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 54, 0.22);
  border-radius: var(--radius);
  background: #fffdf6;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(183, 138, 59, 0.5);
  outline-offset: 3px;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--red);
  font-weight: 800;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(rgba(11, 31, 54, 0.94), rgba(11, 31, 54, 0.9)),
    repeating-linear-gradient(90deg, rgba(248, 244, 232, 0.08) 0 1px, transparent 1px 12px);
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 720px;
  color: rgba(248, 244, 232, 0.82);
}

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

.shop-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.25rem;
}

.shop-intro-grid .section-heading {
  margin-bottom: 0;
}

.launch-card {
  padding: 1.2rem;
  background: linear-gradient(180deg, var(--white), rgba(242, 230, 200, 0.7));
}

.launch-card h3 {
  margin: 0.75rem 0 0;
}

.product-card {
  overflow: hidden;
  background: var(--white);
}

.featured-product {
  border-color: rgba(183, 138, 59, 0.62);
  box-shadow: 0 18px 48px rgba(11, 31, 54, 0.1);
}

.product-card-body {
  padding: 1.15rem;
}

.product-card h3 {
  font-size: 1.25rem;
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.mini-specs li {
  border: 1px solid rgba(11, 31, 54, 0.16);
  border-radius: 999px;
  background: rgba(242, 230, 200, 0.5);
  color: var(--navy);
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-meta,
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-meta {
  margin-top: 1rem;
}

.product-card-footer {
  margin-top: 1.1rem;
}

.price {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(183, 138, 59, 0.55);
  border-radius: 999px;
  background: rgba(183, 138, 59, 0.1);
  color: var(--red);
  padding: 0.22rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-detail-layout {
  align-items: start;
}

.product-info {
  position: sticky;
  top: 110px;
}

.product-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.1rem 0;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-panel {
  padding: 1rem;
}

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

.contact-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.contact-item h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
}

.contact-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.policy {
  max-width: 850px;
}

.policy h2 {
  margin: 2rem 0 0.5rem;
  color: var(--navy);
  font-family: var(--serif);
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.site-footer .brand-sub {
  color: var(--gold);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 0.75rem 0 0;
  color: rgba(248, 244, 232, 0.72);
}

.footer-links,
.social-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.social-links a,
.mini-links a {
  color: rgba(248, 244, 232, 0.75);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(248, 244, 232, 0.14);
  padding-top: 1.25rem;
  color: rgba(248, 244, 232, 0.6);
  font-size: 0.9rem;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-inner,
  .featured-drop,
  .split-layout,
  .product-detail-layout,
  .contact-layout,
  .signup-panel,
  .shop-intro-grid {
    grid-template-columns: 1fr;
  }

  .mockup-stage {
    min-height: 380px;
  }

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

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

  .related-grid,
  .meaning-grid {
    grid-template-columns: 1fr;
  }

  .product-info {
    position: static;
  }

  .creator-card {
    justify-self: stretch;
    max-width: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

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

  .site-nav {
    position: fixed;
    top: var(--mobile-nav-top, 88px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.5rem;
    max-height: calc(100vh - var(--mobile-nav-top, 88px) - 1rem);
    overflow: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 0.75rem 0.25rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .pillar-grid,
  .category-grid,
  .product-grid,
  .form-grid,
  .drop-ledger,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .image-placeholder.large {
    min-height: 380px;
  }

  .product-meta,
  .product-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mini-links {
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
