/* ==========================================================================
   Sleeping Tapes — Premium Cassette Sleep Audio Catalog
   Luxury Dark theme. Inquiry-based cart. No payment is processed anywhere.
   ========================================================================== */

:root {
  --bg:            #0B0B0C;
  --bg-2:          #111114;
  --bg-3:          #16161A;
  --surface:       #161618;
  --surface-alt:   #222225;
  --panel:         rgba(255,255,255,0.02);
  --text:          #F4ECDC;
  --text-muted:    #B8B0A3;
  --text-soft:     #8A8275;
  --gold:          #C8A24A;
  --gold-2:        #D4AF37;
  --gold-dark:     #8E6F1F;
  --gold-soft:     rgba(212,175,55,0.12);
  --line:          #2A2A2E;
  --line-soft:     rgba(212,175,55,0.18);
  --danger:        #D0855A;
  --success:       #7FA46A;
  --shadow-1:      0 4px 24px rgba(0,0,0,0.35);
  --shadow-2:      0 18px 60px rgba(0,0,0,0.55);
  --radius:        6px;
  --radius-lg:     12px;
  --serif:         "Cormorant Garamond", "Cormorant", "Playfair Display", "Times New Roman", serif;
  --sans:          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0 0 0.6em;
  color: var(--text);
  line-height: 1.18;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 28px;
  margin: 0 auto;
}

/* ========= Header ========= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-logo .mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-dark) 70%);
  position: relative;
  flex: 0 0 36px;
}
.brand-logo .mark::after {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.brand-logo b { font-weight: 600; }
.brand-logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-2);
}

.cart-btn {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: background .2s, border-color .2s, color .2s;
}
.cart-btn:hover { background: var(--gold-soft); color: var(--gold); }
.cart-btn .count {
  background: var(--gold-2); color: var(--bg);
  font-weight: 700; font-size: 0.74rem;
  padding: 2px 7px; border-radius: 99px;
  min-width: 20px; text-align: center;
}
.cart-btn .count[data-empty="true"] { background: transparent; color: var(--gold-dark); border: 1px solid var(--gold-dark); }

.menu-btn {
  display: none;
  background: transparent; border: 1px solid var(--line); color: var(--text);
  padding: 8px 10px; border-radius: var(--radius);
  cursor: pointer; font-family: var(--sans);
}

/* ========= Hero ========= */
.hero {
  position: relative;
  padding: 92px 0 110px;
  background:
    radial-gradient(1100px 600px at 80% 0%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(118,82,32,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("../images/hero.png") right center / cover no-repeat;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 60%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 60%, #000 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  max-width: 640px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold-dark);
  background: rgba(212,175,55,0.07);
  color: var(--gold-2);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-pill .dot { width: 6px; height: 6px; background: var(--gold-2); border-radius: 50%; }

.hero h1 { color: var(--text); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  margin: 36px 0;
  padding: 22px 26px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  max-width: 580px;
}
.hero-stat .v {
  font-family: var(--serif);
  font-size: 1.7rem; color: var(--gold-2);
}
.hero-stat .l {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--gold-2);
  color: var(--bg);
  border-color: var(--gold-2);
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold-dark); color: var(--gold-2); }

.trust-row {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-row > div { display: flex; align-items: center; gap: 8px; }
.trust-row .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ========= Section ticker ========= */
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.section-head h2 em { font-style: italic; color: var(--gold-2); }
.section-head p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.section { padding: 88px 0; position: relative; }
.section.alt { background: var(--bg-2); }
.section.dark { background: linear-gradient(180deg, var(--bg) 0%, #060607 100%); }

/* ========= Category filter pills ========= */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-pill {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all .18s ease;
  font-family: var(--sans);
}
.filter-pill:hover { color: var(--gold-2); border-color: var(--gold-dark); }
.filter-pill.active {
  background: var(--gold-2);
  color: var(--bg);
  border-color: var(--gold-2);
  font-weight: 600;
}

/* ========= Product Grid ========= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-2);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11,11,12,0.82);
  color: var(--gold-2);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}
.product-card .num-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11,11,12,0.7);
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.82rem;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}
.product-card .body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
}
.product-card .meta {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.product-card .desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-card .stars { color: var(--gold-2); letter-spacing: 0.05em; font-size: 0.9rem; }
.product-card .price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-card .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
}
.product-card .price small { color: var(--text-soft); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 2px; font-family: var(--sans); }
.add-btn {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold-2);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .18s ease;
}
.add-btn:hover { background: var(--gold-2); color: var(--bg); }
.add-btn.added {
  background: var(--gold-soft); color: var(--gold);
  border-color: var(--gold);
}

.empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  grid-column: 1 / -1;
}

/* ========= Editorial / Buying-guide section ========= */
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.editorial-feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.editorial-feature .ph {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.editorial-feature .body { padding: 26px 30px 30px; }
.editorial-feature .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.editorial-feature h3 { font-family: var(--serif); font-size: 1.6rem; }
.editorial-feature p { color: var(--text-muted); margin: 12px 0 18px; }
.article-list {
  display: flex; flex-direction: column; gap: 16px;
}
.article-mini {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .18s;
}
.article-mini:hover { border-color: var(--gold-dark); }
.article-mini .tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); }
.article-mini h4 { font-family: var(--serif); margin: 0; font-size: 1.1rem; font-weight: 500; color: var(--text); }
.article-mini .meta { font-size: 0.74rem; color: var(--text-soft); }

/* ========= Trust strip ========= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.trust-card {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.trust-card .icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-2);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  margin-bottom: 14px;
}
.trust-card h4 { font-family: var(--serif); font-size: 1.1rem; margin: 0 0 6px; }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ========= FAQ ========= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-q .plus {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  position: relative;
  color: var(--gold-2);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold-2);
}
.faq-q .plus::before { left: 4px; right: 4px; top: 11px; height: 1.5px; }
.faq-q .plus::after  { top: 4px; bottom: 4px; left: 11px; width: 1.5px; transition: opacity .25s; }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 24px;
}

/* ========= Newsletter ========= */
.newsletter {
  text-align: center;
  background:
    radial-gradient(800px 320px at 50% 0%, rgba(212,175,55,0.14), transparent 70%),
    var(--bg-2);
  padding: 80px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter h2 { color: var(--text); margin-bottom: 8px; }
.newsletter p { color: var(--text-muted); max-width: 540px; margin: 0 auto 26px; }
.newsletter form {
  display: flex; gap: 10px;
  max-width: 480px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.newsletter input[type="email"] {
  flex: 1 1 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.94rem;
}
.newsletter input[type="email"]:focus { outline: 2px solid var(--gold-dark); outline-offset: 1px; }
.newsletter button {
  background: var(--gold-2);
  color: var(--bg);
  border: none;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600;
  cursor: pointer;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
}
.newsletter .note {
  font-size: 0.78rem; color: var(--text-soft);
  margin-top: 14px;
}

/* ========= Footer ========= */
.site-footer {
  background: #060607;
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-grid h5 {
  font-family: var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer-grid ul a:hover { color: var(--gold-2); }
.footer-disclaimer {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 18px;
  letter-spacing: 0.06em;
}

/* ========= Cart drawer ========= */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--gold-dark);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-family: var(--serif); margin: 0; font-size: 1.3rem; }
.cart-header .close {
  background: transparent; border: 1px solid var(--line);
  color: var(--text); padding: 6px 10px; border-radius: var(--radius);
  cursor: pointer; font-family: var(--sans); font-size: 0.86rem;
}
.cart-header .close:hover { color: var(--gold-2); border-color: var(--gold-dark); }
.cart-body {
  flex: 1; overflow-y: auto; padding: 18px 26px;
}
.cart-empty {
  text-align: center; padding: 60px 16px;
  color: var(--text-muted);
}
.cart-empty p { font-size: 0.94rem; }
.cart-item {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item .thumb {
  width: 70px; height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  flex: 0 0 70px;
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item .info { flex: 1; }
.cart-item h4 { font-family: var(--serif); margin: 0 0 4px; font-size: 1.04rem; font-weight: 500; }
.cart-item .cat { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }
.cart-item .price { font-family: var(--serif); font-size: 1.1rem; color: var(--text); margin-top: 8px; }
.cart-item .remove {
  background: transparent; border: none; color: var(--text-soft);
  cursor: pointer; font-size: 0.78rem;
  padding: 0; margin-top: 8px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cart-item .remove:hover { color: var(--danger); }

.cart-summary {
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
.cart-summary .row {
  display: flex; justify-content: space-between;
  margin-bottom: 10px; font-size: 0.94rem;
  color: var(--text-muted);
}
.cart-summary .total { color: var(--text); font-weight: 600; }
.cart-summary .total span { font-family: var(--serif); font-size: 1.3rem; }
.cart-summary .note {
  font-size: 0.78rem; color: var(--text-soft); margin: 8px 0 16px;
  font-style: italic;
}
.cart-summary .checkout-btn {
  width: 100%;
  background: var(--gold-2);
  color: var(--bg);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.cart-summary .checkout-btn:disabled {
  background: var(--line); color: var(--text-soft); cursor: not-allowed;
}
.cart-summary .checkout-btn:hover:not(:disabled) { background: var(--gold); }

/* ========= Inquiry modal ========= */
.modal {
  position: fixed; inset: 0; z-index: 110;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6,6,7,0.78);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  padding: 36px 38px 32px;
  box-shadow: var(--shadow-2);
}
.modal-panel .close-x {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--line);
  color: var(--text); padding: 4px 10px; border-radius: var(--radius);
  cursor: pointer; font-family: var(--sans); font-size: 0.84rem;
}
.modal-panel h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 4px; }
.modal-panel .lede { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-soft);
}
.field input, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.94rem;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold-dark);
  outline-offset: 1px;
  border-color: var(--gold-dark);
}
.field textarea { min-height: 90px; resize: vertical; }
.field.full { grid-column: 1 / -1; }
.field .err {
  color: var(--danger); font-size: 0.78rem; display: none;
}
.field.has-error .err { display: block; }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 18px 0 22px;
  font-size: 0.86rem; color: var(--text-muted);
  line-height: 1.55;
}
.consent input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--gold-2); }
.consent a { color: var(--gold-2); }

.submit-btn {
  background: var(--gold-2);
  color: var(--bg);
  border: none;
  padding: 16px 22px;
  border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: 0.94rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  width: 100%;
}
.submit-btn:disabled { background: var(--line); color: var(--text-soft); }
.submit-btn:hover:not(:disabled) { background: var(--gold); }
.disclosure {
  margin-top: 12px; font-size: 0.78rem; color: var(--text-soft);
  text-align: center; line-height: 1.6;
}

.receipt {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.receipt.open { display: block; }
.receipt .glyph {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.8rem;
}
.receipt h3 { color: var(--text); margin-bottom: 6px; font-family: var(--serif); }
.receipt .reqid {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-2);
  letter-spacing: 0.06em;
  margin: 14px 0;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  display: inline-block;
}
.receipt .note {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 480px; margin: 12px auto 22px;
}
.receipt .actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ========= Mobile ========= */
@media (max-width: 880px) {
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(11,11,12,0.98);
    padding: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .menu-btn { display: inline-flex; }
  .hero { padding: 60px 0 70px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .field-row { grid-template-columns: 1fr; }
  .modal-panel { padding: 28px 22px; }
  .hero-stats { gap: 18px; padding: 16px 18px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .cart-drawer { width: 100vw; }
}

/* ========= Reveal animation ========= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
