/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:           #0d0d0d;
  --surface:      #161616;
  --surface-2:    #1e1e1e;
  --text:         #f0ece4;
  --muted:        #7a7570;
  --accent:       #c9a96e;
  --border:       #2a2a2a;
  --brand:        #c9a96e;
  --brand-strong: #b8965a;
  --danger:       #e05252;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.4);
  --shadow-md:    0 4px 24px rgba(0,0,0,.5);
  --radius:       4px;
  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: .7; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
  font-weight: 600;
}

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* ── Announcement Bar ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--accent);
  color: #0d0d0d;
  text-align: center;
  padding: .55rem 1rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* Ensure HTML hidden attribute always wins (prevents mixed cart states) */
[hidden] { display: none !important; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

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

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color .15s;
}

.cart-btn:hover { color: var(--accent); }

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: #000;
  font-size: .6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

/* ── Cart Drawer ──────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: .25rem;
  display: flex;
  align-items: center;
  transition: color .15s;
}

.cart-close:hover { color: var(--text); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--muted);
}

.cart-empty p { margin-bottom: 1rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cart-item-img {
  width: 90px;
  height: 110px;
  object-fit: contain;
  object-position: center top;
  object-position: center top;
  border-radius: 4px;
  background: var(--surface-2);
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.cart-item-meta {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .5rem;
}

.cart-item-price {
  font-size: .95rem;
  color: var(--accent);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .8rem;
  padding: .25rem;
  transition: color .15s;
  flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--text); }

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cart-total-price {
  color: var(--accent);
  font-size: 1.1rem;
}

.cart-footer-note {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: .75rem;
}

/* ── Newsletter ────────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}


/* Newsletter when embedded inside About section */
.newsletter-section-inline {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 1.75rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
  letter-spacing: .01em;
}

.newsletter-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: .5rem;
}

.newsletter-copy p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: .6rem;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: .75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .9rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-msg {
  font-size: .82rem;
  margin-top: .75rem;
  min-height: 1.2em;
}

.newsletter-msg[data-type="success"] { color: #6fcf97; }
.newsletter-msg[data-type="error"]   { color: #eb5757; }

.brand {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); opacity: 1; color: #0d0d0d; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface-2); opacity: 1; }

.btn-full { width: 100%; padding-block: .65rem; font-size: .74rem; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 1rem;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 5rem;
}

.hero-copy--centered {
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.hero-copy--centered .lead {
  max-width: 52ch;
}

.hero-copy--centered .hero-actions {
  justify-content: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-copy .lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}

.price-lockup {
  margin-bottom: 2.5rem;
}

.price-main {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1;
}

.price-perks {
  margin-top: .5rem;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem 0;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.trust-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.trust-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Product Section ────────────────────────────────────────────────────── */
.product-section {
  padding: 6rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.product-gallery-main img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center top;
  object-position: center top;
  display: block;
  transition: opacity .25s ease;
}

.product-gallery-main img.switching {
  opacity: 0;
}

/* Thumbnail strip */
.product-gallery-thumbs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: .25rem;
}

.product-gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 1rem;
  background: var(--surface-2);
  transition: border-color .15s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 6px;
  object-position: center top;
  display: block;
}

.gallery-thumb:hover { border-color: var(--muted); }
.gallery-thumb.active { border-color: var(--accent); }

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

.product-info .eyebrow {
  margin-bottom: .75rem;
}

.product-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 40ch;
}

.product-specs {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  gap: .65rem;
}

.spec-row {
  display: flex;
  gap: 1rem;
  font-size: .875rem;
}

.spec-label {
  font-weight: 600;
  min-width: 90px;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

.spec-value {
  color: var(--muted);
  font-size: .88rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.product-price-note {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .03em;
}

.btc-note {
  margin-top: .85rem;
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .04em;
  text-align: center;
}

/* ── About Section ──────────────────────────────────────────────────────── */
.about-section {
  background: var(--surface-2);
  padding: 5.5rem 0;
  text-align: center;
}

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

.about-section p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 54ch;
  margin-inline: auto;
}

.about-section p + p { margin-top: 1rem; }

/* ── Video Section ──────────────────────────────────────────────────────── */
.video-section {
  padding: 6rem 0;
}

.video-section-inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.video-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
}

.video-section .video-lead {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: var(--shadow-md);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Checkout Section ───────────────────────────────────────────────────── */
.checkout-section {
  background: var(--surface-2);
  padding: 6rem 0;
}

.checkout-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.checkout-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .6rem;
}

.checkout-header p {
  color: var(--muted);
  font-size: .92rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 3rem;
  align-items: start;
}

/* Order summary sidebar */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.order-summary-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--surface-2);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.order-summary h3 {
  font-size: 1.45rem;
  margin-bottom: .2rem;
}

.order-summary-sub {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.order-summary-specs {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
  display: grid;
  gap: .55rem;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: .25rem;
}

.order-total-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.order-total-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

/* Checkout form panel */
.checkout-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-section-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

.order-form {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}

.order-form input,
.order-form select {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  appearance: auto;
}

.order-form input::placeholder { color: #c5bfb7; }

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,90,.12);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-wrap {
  margin-top: .25rem;
}

.confirmation {
  margin-top: 1rem;
  font-size: .83rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.confirmation:not(:empty) { display: block; }
[data-type="error"]  { background: #2a1010; color: #f87171; border: 1px solid #7f1d1d; }
[data-type="success"]{ background: #0d2010; color: #4ade80; border: 1px solid #14532d; }
[data-type="info"]   { background: #1a1500; color: var(--accent); border: 1px solid #78350f; }

/* ── Order Status Box ───────────────────────────────────────────────────── */
.status-box {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.status-box h3 {
  font-size: 1.2rem;
  margin-bottom: .25rem;
}

.status-box-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.status-form {
  display: flex;
  gap: .75rem;
}

.status-form input {
  flex: 1;
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .875rem;
}

.status-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,150,90,.12);
}

.status-message {
  margin-top: .75rem;
  font-size: .83rem;
  min-height: 1.4em;
  color: var(--muted);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  color: rgba(240,236,228,.4);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: .75rem;
  text-decoration: none;
  display: inline-block;
}

.footer-tagline {
  font-size: .82rem;
  line-height: 1.75;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(240,236,228,.4);
  text-decoration: none;
  font-size: .84rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--text); opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-btc-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Policy Pages ───────────────────────────────────────────────────────── */
.policy-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.policy-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: .75rem;
}

.policy-hero .lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 50ch;
}

.policy-body {
  max-width: 780px;
  margin-inline: auto;
  padding-bottom: 6rem;
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.policy-card h2 {
  font-size: 1.45rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}

.policy-card p + p { margin-top: .75rem; }

.policy-card ul,
.policy-card ol {
  padding-left: 1.4rem;
  display: grid;
  gap: .4rem;
  margin-top: .5rem;
}

.policy-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Misc ───────────────────────────────────────────────────────────────── */
.instructions {
  padding-left: 1.4rem;
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font-size: .9rem;
  margin-top: .75rem;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-copy { padding: 4rem 2.5rem 4rem 0; }
  .product-grid { gap: 3rem; }
  .checkout-grid { grid-template-columns: 1fr; gap: 2rem; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-copy { padding: 3.5rem 0 3rem; }
  .hero-copy h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-copy .lead { font-size: .92rem; }
  .price-main { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }

  /* Nav */
  .nav-links { display: none; }
  .site-header .container { padding-block: .85rem; }

  /* Announcement */
  .announcement-bar { font-size: .65rem; letter-spacing: .08em; padding: .45rem .75rem; }

  /* Trust bar */
  .trust-bar { padding: 1rem 0; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-label { font-size: .62rem; }

  /* Product */
  .product-section { padding: 3.5rem 0; }
  .product-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery-main img { height: 70vw; max-height: 380px; }
  .gallery-thumb { flex: 0 0 64px; height: 64px; }
  .product-info { position: static; }
  .product-info h2 { font-size: 2rem; }

  /* About */
  .about-section { padding: 3.5rem 0; }
  .about-section h2 { font-size: 1.9rem; }

  /* Video */
  .video-section { padding: 3.5rem 0; }

  /* Checkout */
  .checkout-section { padding: 3.5rem 0; }
  .checkout-header h2 { font-size: 1.9rem; }
  .checkout-grid { gap: 1.5rem; }
  .order-summary { padding: 1.25rem; }
  .order-summary-img { height: 140px; }
  .checkout-form-panel { padding: 1.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .status-form { flex-direction: column; }

  /* Footer */
  .site-footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { width: 95%; }
  .checkout-form-panel { padding: 1rem; }
  .order-summary { padding: 1rem; }
  .policy-card { padding: 1.25rem; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
}

/* ===== DROPS SECTION ===== */
.drops-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header .eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

  line-height: 1.2;
}

/* ===== VIDEO HERO LAYOUT ===== */
.hero--video .container {
  max-width: 980px;
}

.video-hero-wrap {
  margin-top: 48px;
}

.video-wrap--hero {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.video-wrap--hero iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  text-align: center;
  font-size: .9rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
    padding: 3rem 0;
  }
  
  .drops-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .drop-image {
  padding: 1rem;
    aspect-ratio: 1 / 1;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* ===== IMPROVED DROP CARDS ===== */
.drop-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}

.drop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.drop-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}

.drop-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.drop-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 320px;
  background: var(--surface-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease;
}

.drop-card:hover .drop-image {
  background: var(--surface);
}

.drop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 1rem;
  transition: transform .3s ease;
}

.drop-card:hover .drop-image img {
  transform: scale(1.03);
}

.drop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #0d0d0d;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius);
  z-index: 3;
  pointer-events: none;
}

.drop-badge--soon {
  background: var(--muted);
  color: var(--text);
}

.drop-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.drop-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  transition: color .2s ease;
}

.drop-card:hover .drop-info h3 {
  color: var(--accent);
}

.drop-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.drop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.drop-edition {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

.drop-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.drop-cta {
  margin-top: auto;
}

.drop-cta-text {
  display: inline-block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 0;
  transition: transform .2s ease, color .2s ease;
}

.drop-card:hover .drop-cta-text {
  transform: translateX(4px);
}

.drop-note {
  font-size: .75rem;
  color: var(--muted);
  margin: 0;
}

/* Legacy support for old drop-actions class */
.drop-actions {
  margin-top: auto;
}

.drop-actions .btn {
  margin-bottom: 8px;
  position: relative;
  z-index: 3;
}

.drop-mint-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Remove nested button/link issues */
.drop-card button {
  position: relative;
  z-index: 3;
}

/* Focus visible for accessibility */
.drop-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Active state */
.drop-card:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
}

/* Card focus state for accessibility */
.drop-card:focus-within {
  box-shadow: 0 0 0 2px var(--accent);
  border-color: var(--accent);
}

/* Touch device optimizations */
@media (hover: none) {
  .drop-card:hover {
    transform: none;
  }
  
  .drop-card::before {
    display: none;
  }
  
  .drop-cta-text::after {
    content: '→';
    display: inline;
  }
}
