:root {
  color-scheme: light;
  --ink: #191512;
  --muted: #6f655e;
  --line: rgba(28, 21, 16, 0.14);
  --paper: #fbf8f2;
  --cream: #efe4d5;
  --bone: #fffdf8;
  --cognac: #b56a24;
  --honey: #e0a33a;
  --butter: #f0db9b;
  --green: #586a4d;
  --graphite: #252527;
  --shadow: 0 24px 70px rgba(64, 43, 24, 0.16);
  --radius: 8px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.announcement-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 24;
  display: flex;
  gap: 42px;
  align-items: center;
  min-height: 38px;
  padding: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  white-space: nowrap;
  color: var(--bone);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-bar span {
  position: relative;
  flex: 0 0 auto;
}

.announcement-bar span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--honey);
  transform: translateY(-50%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 242, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.shop-home .site-header {
  inset: 38px 0 auto;
}

.site-header.scrolled {
  background: rgba(251, 248, 242, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  width: 22px;
  height: 30px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 247, 194, 0.95) 0 8%, transparent 11%),
    radial-gradient(circle at 63% 67%, rgba(103, 52, 13, 0.32) 0 10%, transparent 12%),
    linear-gradient(135deg, #f0c15d, #a8581e 48%, #f4d981);
  box-shadow: inset -6px -8px 12px rgba(84, 35, 8, 0.22), 0 8px 18px rgba(139, 77, 24, 0.25);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--bone);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 auto;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 8px 18px 22px;
  background: rgba(251, 248, 242, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shop-home .mobile-menu {
  inset: 114px 0 auto;
}

.mobile-menu a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 92px clamp(18px, 5vw, 76px) 68px;
  overflow: hidden;
  background: var(--cream);
}

.shop-home .hero {
  min-height: 88svh;
  padding-top: 136px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.96) 0%, rgba(251, 248, 242, 0.86) 36%, rgba(251, 248, 242, 0.22) 64%, rgba(251, 248, 242, 0.02) 100%),
    linear-gradient(0deg, rgba(251, 248, 242, 0.55) 0%, rgba(251, 248, 242, 0) 34%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  min-width: 0;
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cognac);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 5vw, 4.9rem);
  max-width: 690px;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.5vw, 5.25rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--bone);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(25, 21, 18, 0.2);
}

.button.primary:hover {
  background: #3a2920;
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.button.secondary:hover {
  border-color: rgba(25, 21, 18, 0.4);
  background: var(--bone);
}

.button.light {
  background: rgba(255, 253, 248, 0.1);
  color: var(--bone);
  border-color: rgba(255, 253, 248, 0.34);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 0;
  box-shadow: none;
}

.partner-page {
  background: var(--bone);
}

.partner-hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  padding: 132px clamp(18px, 5vw, 76px) 70px;
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(25, 21, 18, 0.88), rgba(25, 21, 18, 0.62) 46%, rgba(25, 21, 18, 0.24)),
    url("assets/amber-hero.png") center / cover;
}

.partner-hero-copy {
  max-width: 860px;
}

.partner-hero h1 {
  max-width: 850px;
}

.partner-hero p {
  max-width: 690px;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.partner-brief {
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(16px);
}

.partner-brief span,
.partner-stat-grid span,
.role-list span,
.economics-table span {
  color: #efc872;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-brief strong {
  display: block;
  margin: 18px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.02;
}

.partner-brief p {
  margin: 0;
  font-size: 0.98rem;
}

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

.partner-stat-grid article,
.role-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.74);
}

.partner-stat-grid strong {
  display: block;
  margin: 42px 0 10px;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1;
}

.partner-stat-grid p,
.role-list p,
.next-list {
  color: var(--muted);
}

.partner-role {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 92px);
  background: var(--paper);
}

.partner-role-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.role-list {
  display: grid;
  gap: 14px;
}

.role-list h3 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.partner-economics {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  color: var(--bone);
  background: #2a2622;
}

.economics-table {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.06);
}

.economics-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
}

.economics-table div:last-child {
  border-bottom: 0;
}

.economics-table strong {
  font-size: 1.15rem;
}

.partner-risk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  background: var(--bone);
}

.partner-next {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  background: var(--paper);
}

.next-list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  counter-reset: steps;
}

.next-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.ticker {
  display: flex;
  gap: 34px;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px clamp(18px, 5vw, 76px);
  border-block: 1px solid var(--line);
  color: var(--muted);
  background: var(--bone);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker span {
  position: relative;
  min-width: max-content;
  flex: 0 0 auto;
}

.ticker span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
  transform: translateY(-50%);
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 76px);
}

.intro-section {
  background: var(--bone);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: end;
}

.intro-grid p,
.section-heading > p,
.material-panel > div:first-child p,
.preorder-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.collection {
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0) 0, rgba(255, 253, 248, 0.72) 100%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.shop-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.shop-title-row h2 {
  font-size: clamp(2.7rem, 4.6vw, 5.4rem);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 620px;
}

.filter-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.filter-chips a:hover {
  color: var(--ink);
  border-color: rgba(25, 21, 18, 0.34);
  background: var(--bone);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 48px rgba(64, 43, 24, 0.07);
}

.shop-home .collection {
  background: var(--bone);
}

.shop-home .product-grid {
  gap: 28px 16px;
}

.shop-home .product-card {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shop-home .product-card p {
  display: none;
}

.shop-home .product-card:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.featured-product {
  grid-column: span 2;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(37, 37, 39, 0.92), rgba(78, 50, 29, 0.86)),
    var(--graphite);
}

.product-art {
  position: relative;
  min-height: 172px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 245, 187, 0.74), transparent 9%),
    radial-gradient(circle at 68% 76%, rgba(79, 45, 18, 0.26), transparent 14%),
    linear-gradient(135deg, rgba(224, 163, 58, 0.22), rgba(88, 106, 77, 0.12));
}

.shop-home .product-art {
  min-height: clamp(230px, 26vw, 420px);
  margin-bottom: 16px;
  border: 1px solid rgba(28, 21, 16, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 245, 187, 0.66), transparent 8%),
    radial-gradient(circle at 68% 76%, rgba(79, 45, 18, 0.2), transparent 13%),
    linear-gradient(135deg, #f6efe4, #dfd0be);
}

.quick-view {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(25, 21, 18, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  background:
    radial-gradient(circle at 36% 22%, rgba(255, 252, 209, 0.9) 0 7%, transparent 10%),
    linear-gradient(145deg, var(--butter), var(--honey) 34%, var(--cognac) 72%, #753a16);
  box-shadow: inset -16px -18px 24px rgba(81, 36, 12, 0.24), 0 18px 32px rgba(112, 63, 25, 0.22);
}

.amber-palm::before {
  width: 58%;
  height: 62%;
  left: 19%;
  top: 22%;
  border-radius: 52% 48% 42% 58%;
  transform: rotate(-12deg);
}

.amber-palm::after {
  width: 22%;
  height: 58%;
  right: 16%;
  top: 20%;
  border-radius: 999px;
  background: linear-gradient(145deg, #f4dfa6, #b56a24);
  transform: rotate(18deg);
}

.amber-slim::before,
.amber-original::before,
.amber-curve::before {
  width: 22%;
  height: 78%;
  left: 40%;
  top: 11%;
  border-radius: 999px;
  transform: rotate(38deg);
}

.amber-original::before {
  width: 26%;
}

.amber-curve::before {
  width: 28%;
  border-radius: 999px 999px 48% 48%;
  transform: rotate(28deg);
}

.amber-curve::after {
  width: 40%;
  height: 34%;
  right: 18%;
  top: 20%;
  border-radius: 50%;
  opacity: 0.86;
}

.amber-eggs::before {
  width: 30%;
  height: 54%;
  left: 24%;
  top: 24%;
  border-radius: 50% 50% 46% 46%;
  transform: rotate(-16deg);
}

.amber-eggs::after {
  width: 34%;
  height: 60%;
  right: 22%;
  top: 18%;
  border-radius: 50% 50% 46% 46%;
  transform: rotate(14deg);
}

.amber-vesper::before {
  width: 17%;
  height: 62%;
  left: 45%;
  top: 24%;
  border-radius: 999px;
}

.amber-vesper::after {
  width: 78px;
  height: 78px;
  left: calc(50% - 39px);
  top: 8px;
  border: 2px solid rgba(25, 21, 18, 0.55);
  border-bottom-color: transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.care-kit::before {
  width: 28%;
  height: 54%;
  left: 24%;
  top: 25%;
  border-radius: 8px;
  transform: rotate(-8deg);
}

.care-kit::after {
  width: 34%;
  height: 42%;
  right: 20%;
  top: 32%;
  border-radius: 50%;
  opacity: 0.72;
}

.product-meta {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.product-meta span,
.product-footer span,
.proof-card span,
.timeline span {
  color: var(--cognac);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-product .product-meta span,
.featured-product .product-footer span {
  color: #efc872;
}

.product-meta strong {
  font-size: 1.42rem;
  line-height: 1.15;
}

.shop-home .product-meta {
  margin-bottom: 8px;
}

.shop-home .product-meta span {
  color: var(--muted);
  font-size: 0.68rem;
}

.shop-home .product-meta strong {
  font-size: 1rem;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.featured-product p {
  color: rgba(255, 253, 248, 0.72);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.shop-home .product-footer {
  justify-content: flex-start;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.shop-home .product-footer span {
  display: none;
}

.shop-home .product-footer b {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-home .product-footer b::after {
  content: " /";
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 600px;
}

.lookbook-panel {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 600px;
  padding: clamp(28px, 5vw, 76px);
  overflow: hidden;
  color: var(--bone);
  background: var(--graphite);
}

.lookbook-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 420ms ease;
}

.lookbook-panel:hover::before {
  transform: scale(1.035);
}

.lookbook-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(25, 21, 18, 0.68), rgba(25, 21, 18, 0.08) 62%);
}

.lookbook-panel > div {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.lookbook-panel span {
  display: block;
  margin-bottom: 14px;
  color: #efc872;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lookbook-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.8vw, 5.6rem);
}

.lookbook-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.lookbook-warmth::before {
  background:
    linear-gradient(90deg, rgba(25, 21, 18, 0.1), rgba(25, 21, 18, 0.16)),
    url("assets/amber-hero.png") 62% center / cover;
}

.lookbook-ritual::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(239, 200, 114, 0.24), transparent 24%),
    radial-gradient(circle at 26% 70%, rgba(181, 106, 36, 0.35), transparent 28%),
    linear-gradient(135deg, #2a2622, #69482f 52%, #b56a24);
}

.category-showcase {
  background: var(--paper);
}

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

.category-card {
  display: block;
  color: var(--ink);
}

.category-card .product-art {
  min-height: 280px;
  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 1.15rem;
}

.category-card p {
  color: var(--muted);
}

.testimonial-section {
  background: var(--bone);
}

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

.testimonial-grid figure {
  min-height: 260px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.testimonial-grid blockquote {
  margin: 0 0 34px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.testimonial-grid figcaption {
  color: var(--cognac);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-product .product-footer {
  border-color: rgba(255, 253, 248, 0.2);
}

.product-footer b {
  flex: 0 0 auto;
  font-size: 1.18rem;
}

.material {
  background: #2a2622;
  color: var(--bone);
}

.material-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}

.material-panel > div:first-child {
  position: sticky;
  top: 112px;
}

.material-panel > div:first-child p {
  color: rgba(255, 253, 248, 0.7);
  max-width: 620px;
  margin-top: 26px;
}

.material-list {
  display: grid;
  gap: 14px;
}

.material-list div {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.02)),
    rgba(255, 253, 248, 0.04);
}

.material-list span {
  display: block;
  margin-bottom: 24px;
  color: #efc872;
  font-weight: 800;
}

.material-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.material-list p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.68);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  background: var(--bone);
}

.proof-card {
  min-height: 370px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(224, 163, 58, 0.13), rgba(88, 106, 77, 0.07)),
    var(--paper);
}

.proof-card.dark {
  color: var(--bone);
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 163, 58, 0.22), transparent 36%),
    linear-gradient(135deg, #252527, #4c3528);
}

.proof-card h3 {
  max-width: 640px;
  margin-top: 70px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
}

.proof-card p {
  max-width: 680px;
  color: var(--muted);
}

.proof-card.dark p {
  color: rgba(255, 253, 248, 0.72);
}

.roadmap {
  background: var(--paper);
}

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

.timeline article {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.timeline article::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 27%, rgba(255, 247, 194, 0.95), transparent 24%),
    linear-gradient(135deg, var(--honey), var(--cognac));
}

.timeline h3 {
  font-size: 1.45rem;
}

.timeline p {
  color: var(--muted);
}

.preorder {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(26px, 6vw, 98px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(37, 37, 39, 0.94), rgba(70, 48, 37, 0.92)),
    var(--graphite);
  color: var(--bone);
}

.preorder-copy p {
  color: rgba(255, 253, 248, 0.72);
  max-width: 660px;
  margin-top: 24px;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-form input,
.signup-form select {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: #efc872;
  box-shadow: 0 0 0 3px rgba(239, 200, 114, 0.22);
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.9rem;
}

.stockists {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 5vw, 76px);
  color: var(--bone);
  background: var(--green);
}

.stockists h2 {
  max-width: 960px;
  font-size: clamp(2.15rem, 4vw, 4.3rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--bone);
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 88svh;
    padding-bottom: 54px;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .shop-home .mobile-menu {
    inset-block-start: 108px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    inset-block-start: 70px;
  }

  .hero {
    padding-top: 96px;
  }

  .shop-home .hero {
    min-height: 84svh;
    padding-top: 128px;
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 4.1rem);
  }

  .hero-metrics,
  .intro-grid,
  .section-heading,
  .shop-title-row,
  .material-panel,
  .proof,
  .timeline,
  .preorder,
  .stockists,
  .partner-hero,
  .partner-role,
  .partner-economics,
  .partner-risk,
  .partner-next,
  .lookbook-grid,
  .category-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .material-panel > div:first-child,
  .partner-role-copy {
    position: static;
  }

  .stockists .button {
    justify-self: start;
  }
}

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

  .site-header {
    padding-inline: 16px;
  }

  .hero,
  .partner-hero,
  .section,
  .stockists,
  .site-footer {
    padding-inline: 16px;
  }

  .announcement-bar {
    min-height: 38px;
    padding-inline: 16px;
  }

  .partner-hero {
    min-height: 78svh;
    padding-top: 110px;
    padding-bottom: 38px;
    background:
      linear-gradient(90deg, rgba(25, 21, 18, 0.9), rgba(25, 21, 18, 0.66) 62%, rgba(25, 21, 18, 0.28)),
      url("assets/amber-hero.png") 64% center / cover;
  }

  .partner-brief {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

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

  .quick-view {
    opacity: 1;
    transform: none;
  }

  .partner-stat-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-grid,
  .lookbook-panel {
    min-height: 520px;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.7rem);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(251, 248, 242, 0.96) 0%, rgba(251, 248, 242, 0.82) 58%, rgba(251, 248, 242, 0.36) 100%),
      linear-gradient(0deg, rgba(251, 248, 242, 0.55) 0%, rgba(251, 248, 242, 0) 42%);
  }

  .hero-visual img {
    object-position: 67% center;
  }

  .ticker {
    flex-wrap: wrap;
    gap: 8px;
    white-space: normal;
    padding-block: 14px;
  }

  .ticker span {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251, 248, 242, 0.78);
    font-size: 0.7rem;
  }

  .ticker span::after {
    content: none;
  }

  .featured-product {
    grid-column: span 1;
  }

  .product-card,
  .proof-card,
  .timeline article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
