:root {
  --navy: #0b2b4b;
  --navy-2: #143e63;
  --gold: #c99a3d;
  --gold-soft: #e8d4a8;
  --ink: #18212b;
  --muted: #68737d;
  --olive: #6d7459;
  --cream: #f4f1e9;
  --sand: #eae3d6;
  --paper: #fcfcfa;
  --white: #ffffff;
  --line: #e7e7e2;
  --danger: #9b3f3f;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 10px 30px rgba(18, 29, 38, 0.07);
  --shadow-lg: 0 26px 70px rgba(20, 32, 44, 0.13);
  --shell: 1420px;
  --ease: 240ms cubic-bezier(.2,.7,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
  transition: transform var(--ease), opacity var(--ease);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.announcement {
  min-height: 34px;
  padding: 7px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255,255,255,.9);
  background: var(--navy);
  font-size: .73rem;
  letter-spacing: .05em;
}

.announcement p {
  margin: 0;
}

.announcement__secondary {
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(252, 252, 250, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.scrolled {
  border-color: rgba(19, 31, 43, .08);
  box-shadow: 0 10px 30px rgba(18, 29, 38, .06);
}

.header__inner {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .32em;
  font-size: 1.02rem;
}

.brand img {
  width: 46px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 31px);
  font-size: .79rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color var(--ease);
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}

.icon-button:hover {
  color: var(--gold);
  background: var(--cream);
}

.action-count {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--gold);
  border: 2px solid var(--paper);
  border-radius: 20px;
  font-size: .58rem;
  font-weight: 800;
}

.market-select {
  height: 40px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.market-select svg {
  width: 16px;
  height: 16px;
  color: var(--olive);
}

.market-select select {
  width: 78px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-button {
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  border: 0;
  border-radius: 24px;
  background: var(--navy);
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.cart-button:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.cart-button svg {
  width: 17px;
}

.cart-count {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: white;
  border-radius: 50%;
  font-size: .66rem;
}

.mobile-menu-button {
  display: none;
}

.hero {
  position: relative;
  height: min(650px, calc(100vh - 145px));
  min-height: 550px;
  margin-top: 22px;
  overflow: hidden;
  color: white;
  background: #d8d2c4;
  border-radius: var(--radius-xl);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__media img[src=""] {
  display: none;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 24, 34, .75) 0%, rgba(11, 28, 42, .52) 38%, rgba(11, 28, 42, .06) 70%),
    linear-gradient(0deg, rgba(6, 21, 32, .22), transparent 45%);
}

.hero__content {
  width: min(650px, 58%);
  height: 100%;
  padding: clamp(62px, 7vw, 104px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  font-weight: 730;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero__content > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.75;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 28px;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

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

.button--primary:hover {
  background: var(--navy-2);
}

.button--ghost {
  color: white;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255,255,255,.18);
}

.button--full {
  width: 100%;
}

.hero__benefits {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: 38px;
  display: grid;
  gap: 12px;
}

.benefit-chip {
  width: 218px;
  min-height: 72px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(18, 29, 38, .12);
  backdrop-filter: blur(14px);
}

.benefit-chip > span {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--olive);
  background: var(--cream);
  border-radius: 12px;
}

.benefit-chip p,
.social-proof p {
  margin: 0;
  display: grid;
}

.benefit-chip strong {
  font-size: .75rem;
}

.benefit-chip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .65rem;
}

.social-proof {
  position: absolute;
  right: 38px;
  bottom: 36px;
  padding: 10px 14px 10px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border-radius: 25px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-2);
  border: 2px solid white;
  border-radius: 50%;
  font-size: .54rem;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #9d7559;
}

.avatar-stack span:last-child {
  background: var(--olive);
}

.social-proof p {
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
}

.social-proof strong {
  font-size: .77rem;
}

.social-proof .stars {
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .05em;
}

.social-proof small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .61rem;
}

.discovery {
  min-height: 82px;
  margin-top: 18px;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(290px, 1.15fr) 2fr;
  align-items: center;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(19, 30, 40, .035);
}

.search {
  height: 54px;
  padding: 0 7px 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  background: var(--cream);
  border-radius: 15px;
}

.search > svg {
  color: var(--muted);
}

.search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: .78rem;
}

.search button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border: 0;
  border-radius: 13px;
  background: var(--olive);
  cursor: pointer;
}

.category-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.category-pill {
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  font-size: .71rem;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}

.category-pill:first-child {
  border-left: 0;
}

.category-pill span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--olive);
  background: var(--cream);
  border-radius: 50%;
}

.category-pill:hover,
.category-pill.active {
  color: var(--gold);
}

.section {
  padding-top: 98px;
}

.section-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading--compact {
  margin-bottom: 25px;
}

.section-heading .eyebrow {
  margin-bottom: 7px;
}

.section-heading h2,
.club h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.text-link {
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: .73rem;
  font-weight: 800;
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease);
}

.text-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.text-link svg {
  width: 16px;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card__visual {
  position: relative;
  aspect-ratio: 1 / .88;
  overflow: hidden;
  background: #f4f3ef;
  cursor: pointer;
}

.product-card__visual-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-card__visual img {
  transform: scale(1.035);
}

.product-card__title-link {
  display: block;
}

.product-card__title-link h3 {
  transition: color var(--ease);
}

.product-card__title-link:hover h3 {
  color: var(--gold);
}

.product-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--olive);
  background: rgba(255,255,255,.88);
  border-radius: 15px;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.wishlist-toggle {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 0;
  background: rgba(255,255,255,.84);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color var(--ease), transform var(--ease);
}

.wishlist-toggle:hover {
  transform: scale(1.08);
}

.wishlist-toggle.active {
  color: var(--danger);
}

.wishlist-toggle.active svg {
  fill: currentColor;
}

.product-card__body {
  padding: 18px;
}

.product-card__category {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 42px;
  margin: 0;
  font-size: .87rem;
  line-height: 1.45;
}

.product-card__meta {
  min-height: 24px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .65rem;
}

.product-card__meta svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  fill: var(--gold);
}

.product-card__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__price {
  display: grid;
}

.product-card__price strong {
  color: var(--navy);
  font-size: .94rem;
}

.product-card__price del {
  color: #a3a7aa;
  font-size: .62rem;
}

.add-to-cart {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border: 0;
  border-radius: 13px;
  background: var(--navy);
  cursor: pointer;
  transition: transform var(--ease), background var(--ease);
}

.add-to-cart:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.empty-state {
  padding: 70px 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--sand);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.editorial-card img,
.editorial-card__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.editorial-card img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.editorial-card:hover img {
  transform: scale(1.045);
}

.editorial-card__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(13,25,34,.72), rgba(13,25,34,.1) 72%);
}

.editorial-card__content {
  width: min(72%, 410px);
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.editorial-card__content > span {
  margin-bottom: auto;
  color: rgba(255,255,255,.6);
  font-size: .68rem;
  font-weight: 700;
}

.editorial-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.editorial-card p {
  margin: 12px 0 20px;
  color: rgba(255,255,255,.75);
  font-size: .76rem;
}

.editorial-card button,
.editorial-card__content > a {
  padding: 0 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.7);
  background: transparent;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}

.difference {
  padding-bottom: 92px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.difference-grid article {
  min-height: 220px;
  padding: 24px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.difference-grid article:hover {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.difference-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--olive);
  background: var(--cream);
  border-radius: 15px;
}

.difference-grid h3 {
  margin: 28px 0 9px;
  font-size: .86rem;
}

.difference-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.7;
}

.club {
  min-height: 260px;
  padding: 36px 42px;
  display: grid;
  grid-template-columns: .8fr 1.25fr 1.35fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(115deg, #dad8cc, #f2f0e8 58%, #ebe7dc);
  border: 1px solid #e0ded5;
  border-radius: var(--radius-xl);
}

.club__visual {
  position: relative;
  min-height: 180px;
  display: grid;
  place-items: center;
}

.club__visual > img {
  position: absolute;
  width: 150px;
  opacity: .065;
}

.club-card {
  position: relative;
  width: 230px;
  height: 142px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  color: white;
  background: linear-gradient(135deg, var(--navy), #214e72);
  border-radius: 18px;
  box-shadow: 0 22px 38px rgba(11,43,75,.23);
  transform: rotate(-6deg);
}

.club-card::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  right: 22px;
  top: 22px;
  border: 1px solid rgba(215,178,98,.65);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(215,178,98,.08);
}

.club-card small,
.club-card span {
  font-size: .55rem;
  letter-spacing: .13em;
}

.club-card strong {
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 1.3rem;
  letter-spacing: .14em;
}

.club-card span {
  margin-top: auto;
  color: rgba(255,255,255,.55);
}

.club__content .eyebrow {
  margin-bottom: 6px;
}

.club__content h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
}

.club__content > p {
  max-width: 530px;
  margin: 15px 0 17px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}

.club__content ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
}

.club__content li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .67rem;
  font-weight: 700;
}

.club__content li svg {
  width: 15px;
  height: 15px;
  color: var(--olive);
}

.club__form {
  padding: 26px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 20px;
}

.club__form label {
  display: block;
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 800;
}

.club__form > div {
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
}

.club__form input {
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: .74rem;
}

.club__form .button {
  min-height: 44px;
  padding-inline: 18px;
}

.club__form > small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .56rem;
}

.assurances {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.assurances article {
  min-height: 55px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.assurances article:first-child {
  padding-left: 0;
}

.assurances article:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurances article > svg {
  width: 27px;
  height: 27px;
  color: var(--olive);
}

.assurances p {
  margin: 0;
  display: grid;
}

.assurances strong {
  font-size: .72rem;
}

.assurances small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .61rem;
}

.footer {
  padding: 68px 0 24px;
  color: rgba(255,255,255,.72);
  background: #0b1f32;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, .75fr);
  gap: 54px;
}

.brand--footer {
  color: white;
}

.brand--footer img {
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer__brand > p {
  max-width: 330px;
  margin: 24px 0;
  font-size: .72rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 800;
  transition: background var(--ease), color var(--ease);
}

.social-links a:hover {
  color: var(--navy);
  background: var(--gold-soft);
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .69rem;
}

.footer__column h3 {
  margin: 5px 0 10px;
  color: white;
  font-size: .72rem;
}

.footer__column a:hover {
  color: var(--gold-soft);
}

.footer__contact p {
  margin: 0;
}

.footer__bottom {
  margin-top: 54px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .6rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(8, 20, 31, .52);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--ease);
}

.overlay.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(10, 24, 36, .18);
  transform: translateX(105%);
  transition: transform 330ms cubic-bezier(.2,.7,.2,1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer__header {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.drawer__header .eyebrow {
  margin-bottom: 3px;
}

.drawer__header h2 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.cart-items {
  padding: 8px 0;
  overflow-y: auto;
}

.cart-item {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 82px;
  height: 92px;
  object-fit: cover;
  background: var(--cream);
  border-radius: 12px;
}

.cart-item h3 {
  margin: 3px 0 7px;
  font-size: .76rem;
}

.cart-item p {
  margin: 0;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}

.cart-item__quantity {
  width: fit-content;
  margin-top: 10px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.cart-item__quantity button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-item__quantity svg {
  width: 12px;
  height: 12px;
}

.cart-item__quantity span {
  min-width: 24px;
  text-align: center;
  font-size: .65rem;
}

.remove-item {
  align-self: start;
  padding: 4px;
  color: var(--muted);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.remove-item svg {
  width: 15px;
}

.cart-empty {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cart-empty > span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--olive);
  background: var(--cream);
  border-radius: 50%;
}

.cart-empty > span svg {
  width: 30px;
  height: 30px;
}

.cart-empty h3 {
  margin: 20px 0 6px;
}

.cart-empty p {
  max-width: 290px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .78rem;
}

.cart-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
}

.cart-summary > p {
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: .64rem;
}

.toast {
  position: fixed;
  z-index: 130;
  left: 50%;
  bottom: 26px;
  padding: 13px 19px;
  color: white;
  background: var(--navy);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  font-size: .72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity var(--ease), transform var(--ease);
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1220px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
  }

  .main-nav {
    gap: 16px;
  }

  .market-select,
  .desktop-action:nth-of-type(2) {
    display: none;
  }

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

  .club {
    grid-template-columns: .72fr 1.1fr 1.3fr;
    gap: 26px;
  }

  .club-card {
    width: 195px;
    height: 126px;
  }

  .footer__main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu-button {
    display: grid;
  }

  .brand {
    justify-self: start;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    inset: 0 auto 0 0;
    width: min(340px, 88vw);
    padding: 110px 35px 35px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
    background: var(--paper);
    box-shadow: 20px 0 60px rgba(10, 24, 36, .15);
    transform: translateX(-105%);
    transition: transform 330ms cubic-bezier(.2,.7,.2,1);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero__content {
    width: 70%;
    padding: 58px;
  }

  .hero__benefits {
    top: 24px;
    right: 22px;
  }

  .benefit-chip {
    width: auto;
    min-width: 55px;
    min-height: 55px;
    padding: 8px;
    border-radius: 15px;
  }

  .benefit-chip p {
    display: none;
  }

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

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

  .club {
    grid-template-columns: .7fr 1.3fr;
  }

  .club__form {
    grid-column: 1 / -1;
  }

  .assurances {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 22px;
  }

  .assurances article {
    min-height: 72px;
    padding: 10px 24px;
  }

  .assurances article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .announcement {
    padding-inline: 12px;
  }

  .announcement__secondary,
  .desktop-action,
  .cart-button > span:not(.cart-count) {
    display: none;
  }

  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .header__inner {
    height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 7px;
    letter-spacing: .22em;
    font-size: .86rem;
  }

  .brand img {
    width: 39px;
    height: 32px;
  }

  .cart-button {
    width: 43px;
    padding: 0;
    justify-content: center;
  }

  .cart-count {
    position: absolute;
    top: -2px;
    right: 0;
    border: 2px solid var(--paper);
  }

  .hero {
    height: 670px;
    min-height: 0;
    margin-top: 12px;
    border-radius: 24px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(8,24,37,.86) 0%, rgba(8,24,37,.52) 53%, rgba(8,24,37,.06) 90%);
  }

  .hero__content {
    width: 100%;
    height: auto;
    padding: 28px 24px 32px;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero__content > p {
    margin-top: 18px;
    font-size: .8rem;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    padding-inline: 19px;
  }

  .hero__benefits {
    top: 16px;
    right: 16px;
    display: flex;
  }

  .benefit-chip:nth-child(2) {
    display: none;
  }

  .social-proof {
    left: 16px;
    right: auto;
    top: 16px;
    bottom: auto;
  }

  .discovery {
    margin-top: 12px;
    padding: 9px;
    gap: 9px;
  }

  .category-pills {
    padding: 2px 0 1px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .category-pill {
    flex: 0 0 auto;
    padding-inline: 16px;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .club h2 {
    font-size: 2.25rem;
  }

  .text-link {
    font-size: .65rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    border-radius: 17px;
  }

  .product-card__body {
    padding: 13px;
  }

  .product-card h3 {
    min-height: 39px;
    font-size: .76rem;
  }

  .product-card__badge {
    left: 9px;
    top: 9px;
  }

  .wishlist-toggle {
    right: 8px;
    top: 8px;
    width: 34px;
    height: 34px;
  }

  .product-card__footer {
    margin-top: 10px;
  }

  .add-to-cart {
    width: 38px;
    height: 38px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 310px);
  }

  .editorial-card__content {
    width: 85%;
    padding: 26px;
  }

  .editorial-card h3 {
    font-size: 2rem;
  }

  .difference {
    padding-bottom: 72px;
  }

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

  .difference-grid article {
    min-height: 205px;
    padding: 18px;
  }

  .difference-grid h3 {
    margin-top: 21px;
  }

  .club {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .club__visual {
    min-height: 150px;
  }

  .club__content ul {
    justify-content: center;
  }

  .club__form {
    padding: 18px;
    text-align: left;
  }

  .club__form > div {
    grid-template-columns: 1fr;
    gap: 7px;
    background: transparent;
    border: 0;
  }

  .club__form input {
    min-height: 48px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 25px;
  }

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

  .assurances article,
  .assurances article:first-child,
  .assurances article:last-child {
    padding: 15px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurances article:last-child {
    border-bottom: 0;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-drawer {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .hero {
    height: 625px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .social-proof p {
    display: none;
  }

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

  .product-card__meta {
    font-size: .59rem;
  }

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

  .difference-grid article {
    min-height: 180px;
  }

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

  .footer__contact {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
