:root {
  --k-charcoal: #0f1011;
  --k-ink: #08090b;
  --k-navy: #0b1c2a;
  --k-bone: #f2efea;
  --k-sand: #c8bba8;
  --k-silver: #fafafa;
  --k-silver-fg: #121212;
  --k-gold: #c6a66a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--k-charcoal);
  color: rgba(242, 239, 234, 0.9);
  font-family: "DM Sans", "Helvetica Neue", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--k-bone);
  margin: 0;
}

p {
  margin: 0;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(200, 187, 168, 0.12);
  background: rgba(15, 16, 17, 0.84);
  backdrop-filter: blur(12px);
}

.shop-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  min-height: 4rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-logo img {
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.16));
}

@media (min-width: 768px) {
  .shop-logo img {
    height: 3.5rem;
  }
}

.shop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.shop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(200, 187, 168, 0.7);
}

.shop-nav a:hover {
  color: var(--k-bone);
}

.shop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-header-consult {
  display: none;
}

.shop-menu-btn {
  display: inline-flex;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(200, 187, 168, 0.18);
  background: rgba(15, 16, 17, 0.35);
  color: var(--k-bone);
  font-size: 1.25rem;
}

.shop-mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}

.shop-mobile-menu.is-open {
  display: grid;
  gap: 0.5rem;
}

.shop-mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  color: rgba(200, 187, 168, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.shop-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--k-bone);
}

@media (min-width: 768px) {
  .shop-nav,
  .shop-header-consult {
    display: flex;
  }

  .shop-menu-btn,
  .shop-mobile-menu,
  .shop-mobile-menu.is-open {
    display: none;
  }
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--k-silver);
  color: var(--k-silver-fg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: rgba(250, 250, 250, 0.92);
}

.btn-secondary {
  border: 1px solid rgba(242, 239, 234, 0.24);
  background: rgba(0, 0, 0, 0.16);
  color: var(--k-bone);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  min-height: min(78vh, 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  background: var(--k-charcoal);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.48) 40%,
    rgba(0, 0, 0, 0.48) 80%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.68);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lede {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.4vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.78);
}

.section {
  padding: 4rem 1rem;
  border-top: 1px solid rgba(200, 187, 168, 0.1);
}

.section-ink {
  background: var(--k-ink);
}

.container {
  max-width: 72rem;
  margin: 0 auto;
}

.narrow {
  max-width: 48rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

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

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

.section p,
.prose p {
  color: rgba(200, 187, 168, 0.78);
}

.prose p + p,
.prose ul {
  margin-top: 1.1rem;
}

.prose ul {
  padding-left: 1.2rem;
  color: rgba(200, 187, 168, 0.78);
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3rem;
  }
}

.photo-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(250, 250, 250, 0.12);
  min-height: 18rem;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 900px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(250, 250, 250, 0.1);
  background: rgba(15, 16, 17, 0.52);
}

.proof-card img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.proof-card figcaption {
  padding: 0.85rem 0.9rem 1rem;
}

.proof-card strong {
  display: block;
  color: var(--k-bone);
  font-size: 0.95rem;
}

.proof-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.68);
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: 8px;
  border: 1px solid rgba(250, 250, 250, 0.16);
  background: rgba(15, 16, 17, 0.52);
  padding: 1.5rem;
}

.card .num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.7rem;
}

.card p {
  margin-top: 0.85rem;
  color: rgba(200, 187, 168, 0.76);
}

.quote {
  border-left: 1px solid rgba(198, 166, 106, 0.55);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.75rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--k-bone);
}

.quote span {
  display: block;
  margin-top: 0.6rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.48);
}

.faq details {
  border-bottom: 1px solid rgba(200, 187, 168, 0.14);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--k-bone);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  padding-bottom: 1.25rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1rem;
  text-align: center;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 11, 14, 0.9) 0%, rgba(12, 18, 26, 0.78) 45%, rgba(12, 18, 26, 0.9) 100%);
}

.cta-band-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-band h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band .note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(200, 187, 168, 0.6);
}

.shop-footer {
  border-top: 1px solid rgba(200, 187, 168, 0.1);
  padding: 3rem 1rem 4rem;
}

.shop-footer .chicago-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.shop-footer .chicago-column-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.68);
  margin: 0 0 0.75rem;
}

.shop-footer .chicago-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.shop-footer nav[aria-label="Footer"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.shop-footer a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(200, 187, 168, 0.65);
}

.shop-footer a:hover {
  color: var(--k-bone);
}

.shop-footer p {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(200, 187, 168, 0.48);
}

.legal {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 187, 168, 0.08);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(200, 187, 168, 0.45);
}

.hero.aeo {
  min-height: min(70vh, 38rem);
}

.hero.aeo h1 {
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

.facts-wrap {
  overflow-x: auto;
  border: 1px solid rgba(250, 250, 250, 0.16);
  border-radius: 8px;
  background: rgba(15, 16, 17, 0.52);
}

.facts {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
}

.facts th,
.facts td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(200, 187, 168, 0.12);
}

.facts tr:last-child th,
.facts tr:last-child td {
  border-bottom: 0;
}

.facts th {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 187, 168, 0.7);
  background: rgba(8, 9, 11, 0.45);
}

.facts td {
  color: rgba(200, 187, 168, 0.82);
  font-size: 0.95rem;
}

.facts th:first-child,
.facts td:first-child {
  color: var(--k-bone);
  font-weight: 500;
  white-space: nowrap;
}

.verdict {
  border-left: 1px solid rgba(198, 166, 106, 0.55);
  padding: 0.15rem 0 0.15rem 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.35;
  color: var(--k-bone);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
}

.cluster a {
  color: var(--k-bone);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.stack-lg {
  margin-top: 1.5rem;
}

.stack-md {
  margin-top: 1.25rem;
}

.facts-note {
  max-width: 48rem;
}

@media (min-width: 768px) {
  .cards.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
