:root {
  --ink: #0c0b08;
  --ink-soft: #211e16;
  --gold-deep: #a47b00;
  --gold-black: #211a07;
  --accent: #f2c313;
  --accent-soft: #ffdf59;
  --cream: #fff7d9;
  --paper: #f7f5ed;
  --muted: #625e52;
  --line: #ddd6c1;
  --success: #367644;
  --danger: #a33a3a;
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Arial Black", Impact, "Arial Narrow", system-ui, sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --shadow: 0 18px 50px rgba(12, 11, 8, 0.16);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 20px;
  color: #f9f5ee;
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.announcement p {
  margin: 0;
}

.announcement span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: white;
  background: rgba(12, 11, 8, 0.98);
  border-bottom: 1px solid rgba(242, 195, 19, 0.3);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--container);
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 30px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: var(--ink);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 0.9;
}

.brand-name small {
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.main-nav a,
.nav-info {
  position: relative;
  padding: 9px 0;
  background: none;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.icon-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
}

.icon-button {
  width: 44px;
  height: 44px;
}

.icon-button svg,
.cart-button svg {
  width: 22px;
  height: 22px;
}

.cart-button {
  position: relative;
  min-height: 44px;
  gap: 8px;
  padding: 0 4px 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-count {
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.72rem;
}

.menu-button {
  display: none;
}

.header-search {
  width: var(--container);
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  transition: max-height 240ms ease, opacity 200ms ease, padding 240ms ease;
}

.header-search.is-open {
  max-height: 120px;
  padding: 3px 0 20px;
  opacity: 1;
}

.header-search > label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.search-field {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--ink);
}

.search-field svg {
  width: 21px;
}

.search-field input {
  min-width: 0;
  padding: 8px 0 12px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1.05rem;
}

.search-field button {
  padding: 9px 0;
  color: var(--gold-deep);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - 110px), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  animation: heroReveal 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(12, 11, 8, 0.96) 0%, rgba(12, 11, 8, 0.77) 34%, rgba(12, 11, 8, 0.2) 68%, rgba(12, 11, 8, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 74px 0 110px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow,
.collection-state .eyebrow,
.drawer-header .eyebrow,
.checkout-top .eyebrow {
  color: var(--accent-soft);
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.65rem, 7.1vw, 7rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-content > p:not(.eyebrow) {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

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

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-gold {
  color: var(--ink);
  background: var(--accent);
}

.button-gold:hover {
  background: var(--accent-soft);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: white;
}

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

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

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

.button-full {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 3.4vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 20px;
  animation: nudge 1.6s ease-in-out infinite;
}

.benefits {
  width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 clamp(16px, 3vw, 45px);
  border-right: 1px solid var(--line);
}

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

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

.benefits svg {
  width: 30px;
  min-width: 30px;
  color: var(--gold-deep);
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.benefits span {
  color: var(--muted);
  font-size: 0.78rem;
}

.catalog-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) 0 96px;
}

.section-heading {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.catalog-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 9px 15px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.sort-label select {
  padding: 8px 28px 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.results-count {
  min-height: 20px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.product-grid[hidden],
.collection-state[hidden] {
  display: none;
}

.product-card {
  min-width: 0;
}

.product-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e3dfd9;
}

.product-visual .product-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 180ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.025);
  filter: contrast(1.02);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: white;
  background: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-button {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 44px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(17, 16, 16, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .quick-button,
.quick-button:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-button:hover {
  background: white;
}

.product-info {
  position: relative;
  padding-top: 16px;
}

.product-category {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-price {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
  border: 1px solid var(--line);
}

.empty-state span {
  font-family: var(--font-display);
  font-size: 2rem;
}

.empty-state p {
  margin: 8px 0 24px;
  color: var(--muted);
}

.collection-state {
  position: relative;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 32px;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  color: white;
  background: #11100c;
  border: 1px solid var(--accent);
}

.collection-state > div {
  max-width: 620px;
}

.collection-state h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.collection-state > div > p:last-child {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.collection-state > .button {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding: 74px max(24px, calc((100% - 1240px) / 2)) 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.brand-light {
  color: white;
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 19px;
  color: white;
  font-size: 0.88rem;
}

.footer-column button {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  font-size: 0.84rem;
}

.footer-column button:hover {
  color: var(--accent-soft);
}


.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
}

.page-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(17, 16, 16, 0.58);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.page-overlay.is-visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--paper);
  box-shadow: -18px 0 55px rgba(17, 16, 16, 0.18);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 300ms;
}

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

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

.drawer-header .eyebrow {
  color: var(--gold-deep);
  margin-bottom: 3px;
}

.drawer-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.cart-items {
  min-height: 0;
  overflow-y: auto;
}

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

.cart-item-image {
  position: relative;
  width: 92px;
  height: 92px;
  overflow: hidden;
  background: #e3dfd9;
}

.cart-item-image img,
.quick-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item h4 {
  margin: 2px 0 3px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.cart-item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.cart-item-price {
  margin: 9px 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.quantity-control {
  width: max-content;
  display: grid;
  grid-template-columns: 30px 30px 30px;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-control button {
  height: 30px;
  background: transparent;
}

.quantity-control span {
  text-align: center;
  font-size: 0.78rem;
}

.remove-item {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
}

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

.cart-empty {
  flex: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 50px 20px;
  text-align: center;
}

.cart-empty > svg {
  width: 44px;
  color: var(--gold-deep);
}

.cart-empty h3 {
  margin: 18px 0 5px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.cart-empty p {
  margin: 0 0 22px;
  color: var(--muted);
}

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

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.total-line {
  margin: 4px 0 12px;
  padding-top: 12px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.modal {
  position: fixed;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(17, 16, 16, 0.67);
  backdrop-filter: blur(3px);
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(17, 16, 16, 0.1);
}

.quick-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e3dfd9;
}

.quick-details {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 72px);
}

.quick-details .eyebrow {
  margin-bottom: 8px;
}

.quick-details h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
}

.quick-details .quick-price {
  margin: 18px 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
}

.quick-description {
  color: var(--muted);
}

.quick-description {
  margin: 22px 0;
  line-height: 1.65;
}

.size-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 0.8rem;
  font-weight: 700;
}

.size-heading button {
  padding: 0;
  color: var(--gold-deep);
  background: transparent;
  font-size: 0.77rem;
  font-weight: 700;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-bottom: 9px;
}

.size-option {
  min-height: 43px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  font-weight: 700;
}

.size-option:hover,
.size-option.is-selected {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.size-feedback {
  min-height: 19px;
  margin: 0 0 10px;
  color: var(--danger);
  font-size: 0.75rem;
}

.quick-features {
  display: grid;
  gap: 5px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.info-modal {
  width: min(680px, calc(100% - 32px));
}

.info-modal article {
  padding: clamp(42px, 7vw, 76px);
}

.info-modal h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1;
}

.info-modal h3 {
  margin: 25px 0 8px;
  font-size: 1rem;
}

.info-modal p,
.info-modal li {
  color: var(--muted);
  line-height: 1.7;
}

.size-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.size-table th,
.size-table td {
  padding: 11px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.size-table th {
  color: var(--gold-deep);
}

.checkout-modal {
  width: min(940px, calc(100% - 32px));
}

.checkout-shell {
  min-height: 640px;
  padding: clamp(32px, 5vw, 62px);
}

.checkout-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.checkout-top .eyebrow {
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.checkout-top h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.checkout-steps {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.checkout-steps span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.checkout-steps li.is-active {
  color: var(--ink);
}

.checkout-steps li.is-active span {
  color: white;
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.checkout-step {
  display: none;
}

.checkout-step.is-active {
  display: block;
  animation: fadeUp 280ms ease both;
}

.checkout-step h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.field input {
  width: 100%;
  min-height: 45px;
  padding: 9px 11px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(215, 170, 98, 0.18);
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.payment-options label {
  position: relative;
  cursor: pointer;
}

.payment-options input {
  position: absolute;
  opacity: 0;
}

.payment-options label > span {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
}

.payment-options label > span::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-bottom: 7px;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.payment-options input:checked + span {
  border-color: var(--gold-deep);
  box-shadow: inset 0 0 0 1px var(--gold-deep);
}

.payment-options input:checked + span::before {
  background: var(--gold-deep);
  box-shadow: 0 0 0 1px var(--gold-deep);
}

.payment-options small {
  color: var(--muted);
}

.demo-payment-note {
  margin-top: 18px;
  padding: 13px 16px;
  color: #674f22;
  background: #f7edd8;
  font-size: 0.8rem;
}

.checkout-review {
  padding: 20px;
  background: #f7f3ec;
}

.review-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.review-line.review-total {
  margin-top: 8px;
  padding-top: 16px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.8rem;
}

.terms-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-deep);
}

.order-success {
  max-width: 580px;
  margin: 60px auto;
  text-align: center;
}

.success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: white;
  background: var(--success);
  border-radius: 50%;
  font-size: 1.8rem;
}

.order-success .eyebrow {
  color: var(--success);
  margin-bottom: 7px;
}

.order-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.1rem;
}

.order-success p:not(.eyebrow) {
  margin: 19px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 18px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

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

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  :root { --container: min(calc(100% - 36px), 1240px); }

  .header-inner {
    grid-template-columns: 52px 1fr auto;
  }

  .menu-button { display: inline-flex; }

  .header-inner > .brand { justify-self: center; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px 22px 22px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(17, 16, 16, 0.1);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition: 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a,
  .nav-info {
    width: 100%;
    padding: 13px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading { gap: 30px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-button { opacity: 1; transform: none; }

  .collection-state {
    grid-template-columns: 92px 1fr;
  }

  .collection-state > .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .quick-image { min-height: 0; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 28px); }

  .announcement {
    min-height: 31px;
    font-size: 0.7rem;
  }

  .announcement p:last-child,
  .announcement span { display: none; }

  .header-inner { height: 66px; gap: 6px; }
  .main-nav { top: 66px; }
  .brand { gap: 7px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-name { font-size: 1.05rem; }
  .brand-name small { font-size: 0.5rem; }
  .cart-label { display: none; }

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(11, 10, 10, 0.98) 0%, rgba(11, 10, 10, 0.68) 48%, rgba(11, 10, 10, 0.12) 85%); }
  .hero-content { padding: 260px 0 72px; }
  .hero h1 { max-width: 420px; font-size: clamp(3.4rem, 16vw, 5.4rem); }
  .hero-content > p:not(.eyebrow) { max-width: 360px; }
  .hero-actions .button { flex: 1; min-width: 160px; }
  .hero-scroll { display: none; }

  .benefits {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }

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

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

  .catalog-section { padding-top: 76px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .catalog-tools {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }

  .filter-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .filter-pill { white-space: nowrap; }

  .collection-state {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
    padding: 30px 24px;
  }

  .collection-state > .button {
    grid-column: 1;
    justify-self: start;
    white-space: normal;
  }

  .product-grid { gap: 31px 10px; }
  .product-visual { aspect-ratio: 1; }
  .product-badge { top: 8px; left: 8px; font-size: 0.59rem; }
  .quick-button { right: 7px; bottom: 7px; left: 7px; min-height: 39px; font-size: 0.72rem; }
  .product-info { padding-top: 11px; }
  .product-category { font-size: 0.64rem; }
  .product-name { font-size: 1rem; }
  .product-price { margin-top: 6px; font-size: 0.85rem; }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
    padding: 60px 22px 24px;
  }

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

  .cart-drawer { padding: 20px 17px; }

  .quick-view { grid-template-columns: 1fr; }
  .quick-image { min-height: 0; }
  .quick-details { padding: 34px 24px; }

  .checkout-shell { padding: 54px 20px 28px; }
  .checkout-top { display: block; margin-bottom: 30px; }
  .checkout-steps { gap: 8px; justify-content: space-between; margin-top: 22px; }
  .checkout-steps li { gap: 4px; font-size: 0.67rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .payment-options { grid-template-columns: 1fr; }
  .payment-options label > span { min-height: 80px; grid-template-columns: auto 1fr; align-items: center; }
  .payment-options label > span::before { grid-row: 1 / 3; margin: 0 10px 0 0; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
}

@media (max-width: 390px) {
  .brand-name { display: none; }
  .header-inner > .brand { justify-self: start; }
  .header-inner { grid-template-columns: 48px 1fr auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
