/* QUEBECTIDES — Site Stylesheet */

:root {
  --cream: #F2EAD8;
  --cream-light: #F7F1E2;
  --cream-band: #E7DCC0;
  --navy: #15243F;
  --navy-deep: #0F1B30;
  --sage: #7B9979;
  --sage-dark: #5F7A5E;
  --ochre: #C9A24B;
  --ochre-deep: #AC8438;
  --text: #28374F;
  --text-muted: #66758C;
  --border: #DCD3BA;
  --shadow-sm: 0 2px 6px rgba(15, 27, 48, 0.12);
  --shadow-md: 0 8px 24px rgba(15, 27, 48, 0.16);
  --shadow-lg: 0 18px 50px rgba(15, 27, 48, 0.26);
  --max-width: 1180px;
  --display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

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

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ochre-deep); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ─────────────────────────────────────────── AGE GATE */

.age-gate {
  position: fixed; inset: 0;
  background: rgba(20, 34, 60, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.age-gate-card {
  background: var(--cream);
  max-width: 520px; width: 100%;
  padding: 48px 40px;
  border-top: 6px solid var(--ochre);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-gate-logo { width: 80px; margin: 0 auto 20px; }
.age-gate h2 {
  font-size: 28px; font-weight: 800; color: var(--navy);
  letter-spacing: 0.18em;
}
.age-gate-tagline {
  font-style: italic; color: var(--sage-dark);
  font-size: 14px; letter-spacing: 0.1em; margin-top: 8px;
}
.age-gate-divider {
  width: 60px; height: 2px; background: var(--sage);
  margin: 24px auto;
}
.age-gate-warning {
  font-size: 14px; color: var(--text); line-height: 1.6;
  margin-bottom: 20px;
}
.age-gate-question {
  font-weight: 600; color: var(--navy); margin-bottom: 24px;
}
.age-gate-buttons {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────── BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--ochre-deep); border-color: var(--ochre-deep); color: white;
}
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn-large { padding: 18px 40px; font-size: 14px; }

/* ─────────────────────────────────────────── HEADER */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  background-color: rgba(240, 233, 216, 0.96);
}
.promo-bar {
  background: var(--navy); color: var(--cream);
  text-align: center; font-size: 12px; letter-spacing: 0.04em;
  padding: 9px 16px; font-weight: 500;
}
.promo-bar strong { color: var(--ochre); font-weight: 700; }
@media (max-width: 640px){ .promo-bar { font-size: 11px; padding: 8px 12px; } }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo { width: 32px; height: auto; }
.brand-name {
  font-weight: 800; font-size: 16px; letter-spacing: 0.15em;
  color: var(--navy);
}
.site-nav {
  display: flex; gap: 32px;
}
.site-nav a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.site-nav a:hover { color: var(--ochre-deep); }
.nav-toggle {
  display: none; font-size: 28px; color: var(--navy);
}
.lang-toggle {
  display: flex; align-items: center; gap: 8px;
  margin-left: 28px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
}
.lang-toggle .lang-active {
  color: var(--ochre-deep);
}
.lang-toggle .lang-sep { color: var(--text-muted); }
.lang-toggle a {
  color: var(--text-muted);
}
.lang-toggle a:hover { color: var(--navy); }

/* ─────────────────────────────────────────── HERO */

.hero {
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 56% 52% at 50% 44%, rgba(201,162,75,0.22), rgba(201,162,75,0) 70%),
    linear-gradient(165deg, #1C2F52 0%, #111E36 58%, #0C1729 100%);
}
.hero::after, .hero::before { display: none; }
.hero-inner {
  display: flex; align-items: center; gap: 60px;
  padding: 80px 24px 60px;
}
.hero-logo { width: 200px; flex-shrink: 0; }
.hero-text h1 {
  font-size: 76px; font-weight: 800; color: var(--navy);
  letter-spacing: 0.04em; line-height: 1;
}
.hero-divider {
  width: 64px; height: 2px; background: var(--ochre);
  margin: 24px 0 16px;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 25px; color: #E7DCC0;
  margin-bottom: 10px;
}
.hero-location {
  font-size: 14px; font-weight: 500; letter-spacing: 0.3em;
  color: var(--ochre);
}
.hero-inner.hero-centered { flex-direction: column; justify-content: center; text-align: center; gap: 0; }
.hero-crest { display: block; width: 100%; height: auto; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55)); }
.hero-centered .hero-divider { margin: 20px auto 14px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 640px){ .hero-centered::before { width: 280px; height: 280px; } }
.hero-band {
  background: var(--cream-band);
  padding: 36px 0;
}
.hero-intro {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--text);
  margin-bottom: 16px; max-width: 720px;
}
.hero-pillars {
  font-size: 13px; font-weight: 600; letter-spacing: 0.25em;
  color: var(--sage-dark);
}

/* ─────────────────────────────────────────── TRUST STRIP */

.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--ochre);
  color: var(--navy);
  border-radius: 50%;
  font-size: 14px; font-weight: 700;
}

/* ─────────────────────────────────────────── SECTION DEFAULTS */

.section {
  padding: 90px 0;
}
.section-about { background: var(--cream); }
.section-why { background: var(--cream-band); }
.section-products { background: var(--cream-light); }
.section-how-to-order { background: var(--navy-deep); color: var(--cream); }
.section-order { background: var(--navy); color: var(--cream); }
.section-faq { background: var(--cream); }
.section-contact { background: var(--cream-light); }

.section-header {
  margin-bottom: 54px;
  text-align: center;
}
.section-header-dark { color: var(--cream); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--ochre-deep); margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; width: 26px; height: 1px; background: var(--ochre); opacity: 0.55;
}
.eyebrow-gold { color: var(--ochre); }

.section-header h2 {
  font-family: var(--serif);
  font-size: 43px; font-weight: 700; color: var(--navy);
  letter-spacing: 0; line-height: 1.16;
  max-width: 720px; margin: 0 auto;
}
.section-header-dark h2 { color: var(--cream); }

.section-sub {
  margin-top: 16px; font-size: 16px; color: var(--text-muted);
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.section-header-dark .section-sub { color: rgba(240, 233, 216, 0.7); }

/* ─────────────────────────────────────────── ABOUT */

.about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--cream-light);
  padding: 32px 24px;
  border-top: 3px solid var(--ochre);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border-radius: 4px;
}
.about-icon img {
  width: 32px; height: 32px;
  filter: brightness(0) invert(1);
}
.about-card h3 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--navy); margin-bottom: 12px;
}
.about-card p {
  font-size: 14px; color: var(--text); line-height: 1.6;
}

/* ─────────────────────────────────────────── WHY QUEBECTIDES */

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream-light);
  padding: 36px 32px;
  border-left: 4px solid var(--navy);
  position: relative;
}
.why-num {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; font-weight: 400;
  color: var(--ochre);
  line-height: 1; margin-bottom: 12px;
}
.why-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 14px; line-height: 1.65;
  color: var(--text);
}
.why-card a { color: var(--ochre-deep); text-decoration: underline; }
.why-card a:hover { color: var(--navy); }

/* ─────────────────────────────────────────── PRODUCTS */

/* Compact product grid — all 10 products in one batch */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--cream);
  padding: 22px 20px;
  border-left: 3px solid var(--navy);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--ochre);
}
.product-card .product-photo {
  display: block; width: 100%; height: 200px;
  object-fit: contain; background: #fff;
  margin: -2px 0 16px; border-bottom: 1px solid var(--border);
}
.product-category {
  display: inline-block;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--ochre-deep);
  margin-bottom: 10px;
}
.product-card h4 {
  font-family: var(--serif);
  font-size: 23px; font-weight: 700; color: var(--navy);
  letter-spacing: 0; margin-bottom: 6px; line-height: 1.12;
}
.product-class {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--sage-dark); margin-bottom: 10px;
}
.product-divider {
  height: 1px; background: var(--ochre); opacity: 0.5;
  margin-bottom: 12px;
}
.product-desc {
  font-size: 13px; line-height: 1.55;
  color: var(--text); margin-bottom: 14px;
  font-style: italic;
}
.key-benefits-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ochre-deep); margin-bottom: 8px;
}
.product-card ul {
  list-style: none; margin-bottom: 16px;
  flex-grow: 1;
}
.product-card ul li {
  position: relative; padding-left: 14px;
  font-size: 12px; line-height: 1.55; color: var(--text);
  margin-bottom: 2px;
}
.product-card ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; background: var(--navy);
}
.product-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}
.product-size {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--text-muted);
}
.product-price {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700; color: var(--ochre-deep);
}
.btn-add {
  display: block; width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: inherit;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add:hover {
  background: var(--navy); color: var(--cream);
}
.btn-add.added {
  background: var(--ochre); border-color: var(--ochre); color: var(--navy);
}

/* Flash highlight when item added from product card */
@keyframes flash-row {
  0%   { background: var(--ochre); }
  100% { background: transparent; }
}
.line-item.flash {
  animation: flash-row 1.2s ease-out;
}

.research-disclaimer {
  margin-top: 60px; text-align: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ─────────────────────────────────────────── ORDER FORM */

.order-form {
  background: var(--cream);
  color: var(--text);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-section { margin-bottom: 36px; }
.form-section-title {
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--sage);
}
.form-help {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px; font-style: italic;
}

.product-line-items {
  border: 1px solid var(--border);
}
.line-item {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 16px; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.line-item:last-child { border-bottom: 0; }
.line-item:nth-child(even) { background: var(--cream-light); }
.line-item-header {
  background: var(--navy) !important; color: var(--cream);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
}
.li-name { font-weight: 600; color: var(--navy); }
.li-size { font-size: 13px; color: var(--text-muted); }
.li-price { font-size: 14px; color: var(--text); }
.li-qty {
  width: 70px; padding: 6px 8px;
  border: 1px solid var(--border); background: var(--cream);
  font-family: inherit; font-size: 14px; text-align: center;
}
.li-qty:focus { outline: none; border-color: var(--ochre); }
.li-subtotal { font-weight: 700; color: var(--navy); }

.totals {
  margin-top: 24px;
  padding: 20px;
  background: var(--cream-light);
  border-left: 4px solid var(--ochre);
}
.totals-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
}
.totals-row-final {
  border-top: 2px solid var(--navy);
  margin-top: 8px; padding-top: 14px;
  font-size: 20px; font-weight: 700; color: var(--navy);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-row:has(label:only-child) { grid-template-columns: 1fr; }
.form-row > label:only-child { grid-column: 1 / -1; }

.order-form label {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  font-family: inherit; font-size: 15px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  color: var(--text);
  text-transform: none; letter-spacing: 0;
  font-weight: 400;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none; border-color: var(--ochre);
  background: white;
}
.order-form textarea { resize: vertical; min-height: 80px; }

.form-row:has(label:nth-child(3)) { grid-template-columns: 2fr 1fr 1fr; }

.consent-section {
  background: var(--cream-light);
  padding: 24px;
  border-left: 4px solid var(--ochre);
}
.consent-row {
  display: flex !important; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; cursor: pointer;
  font-size: 13px !important; font-weight: 400 !important;
  letter-spacing: 0 !important; text-transform: none !important;
  color: var(--text) !important;
}
.consent-row:last-child { margin-bottom: 0; }
.consent-row input { margin-top: 3px; flex-shrink: 0; }
.consent-row span { line-height: 1.5; }

.form-after {
  margin-top: 16px; font-size: 13px; color: var(--text-muted);
  font-style: italic;
}

/* ─── INVOICE ─── */
.invoice {
  background: var(--cream);
  color: var(--text);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-lg);
  font-family: var(--display);
}
.invoice-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 24px; margin-bottom: 32px;
  border-bottom: 2px solid var(--navy);
}
.invoice-brand-block {
  display: flex; align-items: center; gap: 16px;
}
.invoice-logo { width: 64px; height: auto; }
.invoice-brand-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: 0.16em; color: var(--navy);
}
.invoice-brand-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--sage-dark);
  margin-top: 2px;
}
.invoice-brand-loc {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-muted); margin-top: 4px;
}
.invoice-meta { text-align: right; }
.invoice-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em;
  color: var(--ochre-deep); margin-bottom: 6px;
}
.invoice-number-display {
  font-size: 20px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.04em;
  font-feature-settings: 'tnum';
}
.invoice-date {
  font-size: 12px; color: var(--text-muted);
  margin-top: 4px;
}

.invoice-bill-to {
  margin-bottom: 28px;
}
.invoice-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--ochre-deep);
  margin-bottom: 8px;
}
.invoice-bill-name { font-weight: 700; color: var(--navy); font-size: 16px; }
.invoice-bill-email { font-size: 14px; color: var(--text); }
.invoice-bill-address { font-size: 14px; color: var(--text); margin-top: 4px; line-height: 1.5; }

.invoice-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 32px;
}
.invoice-table th, .invoice-table td {
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.invoice-table th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--cream); background: var(--navy);
  border-bottom: 0;
}
.invoice-table td.num, .invoice-table th.num {
  text-align: right;
  font-feature-settings: 'tnum';
}
.invoice-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.invoice-table tfoot td {
  border-bottom: 0;
  padding-top: 8px; padding-bottom: 8px;
}
.invoice-foot-label {
  text-align: right !important; font-size: 13px; color: var(--text);
}
.invoice-total-row td {
  font-size: 16px !important; font-weight: 700;
  color: var(--navy);
  border-top: 2px solid var(--navy) !important;
  padding-top: 12px !important;
}

.invoice-payment {
  background: var(--cream-light);
  border-left: 4px solid var(--ochre);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.invoice-payment p { font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.invoice-payment p:last-child { margin-bottom: 0; }
.invoice-etransfer {
  font-family: var(--serif); font-size: 22px !important;
  color: var(--navy) !important; font-weight: 600;
  margin: 8px 0 12px !important;
  letter-spacing: 0.005em;
}
.invoice-note {
  font-size: 13px !important; color: var(--text-muted); font-style: italic;
}

.invoice-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.invoice-thanks {
  font-size: 13px; color: var(--text-muted);
  font-style: italic; text-align: center;
  padding-top: 20px; border-top: 1px solid var(--border);
}

/* ─── PRINT ─── */
@media print {
  body * { visibility: hidden; }
  .invoice, .invoice * { visibility: visible; }
  .invoice {
    position: absolute; left: 0; top: 0; right: 0;
    box-shadow: none; padding: 24px 32px;
    background: white;
  }
  .invoice-actions, .nav-toggle, .lang-toggle, .site-header { display: none !important; }
  .invoice-payment {
    background: #faf6e9; border-left: 4px solid #C09F5F;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
  .invoice-table th {
    background: #1A2B4A !important; color: white !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact;
  }
}

/* ─────────────────────────────────────────── HOW TO ORDER */

.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-card {
  background: rgba(240, 233, 216, 0.05);
  border: 1px solid rgba(192, 159, 95, 0.3);
  padding: 32px 24px;
  text-align: center;
}
.how-num {
  width: 48px; height: 48px;
  background: var(--ochre);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.how-num-icon { font-size: 24px; }
.how-card h3 {
  font-size: 14px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--ochre); margin-bottom: 12px;
}
.how-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(240, 233, 216, 0.85);
}
.how-card-shipping {
  background: rgba(192, 159, 95, 0.08);
  border-color: rgba(192, 159, 95, 0.4);
}
.how-card a { color: var(--ochre); }
.how-card a:hover { color: var(--cream); }

/* ─────────────────────────────────────────── FAQ */

.faq-list {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  background: var(--cream-light);
  border-left: 3px solid var(--ochre);
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px; font-weight: 300;
  color: var(--ochre-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--ochre-deep); }
.faq-body {
  padding: 0 24px 24px;
  font-size: 14px; line-height: 1.7;
  color: var(--text);
}
.faq-body a { color: var(--ochre-deep); text-decoration: underline; }
.faq-body a:hover { color: var(--navy); }

/* ─────────────────────────────────────────── CONTACT */

.contact-inner { text-align: center; }
.contact-email {
  font-family: var(--serif); font-size: 32px;
  margin: 24px 0;
}
.contact-email a { color: var(--navy); }
.contact-email a:hover { color: var(--ochre-deep); }
.contact-location {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────── FOOTER */

.site-footer {
  background: var(--navy-deep);
  color: rgba(240, 233, 216, 0.7);
  padding: 40px 0;
  border-top: 4px solid var(--ochre);
}
.footer-inner { text-align: center; }
.footer-brand {
  font-size: 13px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--cream); margin-bottom: 12px;
}
.footer-disclaimer {
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--ochre); margin-bottom: 16px;
}
.footer-copy { font-size: 12px; }

/* ─────────────────────────────────────────── RESPONSIVE */

@media (max-width: 960px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { justify-content: center; }
  .trust-item { font-size: 11px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 56px; }
  .hero::after, .hero::before { display: none; }
  .section { padding: 70px 0; }
  .section-header h2 { font-size: 32px; }
  .order-form { padding: 28px 20px; }
  .invoice { padding: 32px 20px; }
  .invoice-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .invoice-meta { text-align: left; }
  .invoice-table th, .invoice-table td { padding: 8px 6px; font-size: 12px; }
  .invoice-etransfer { font-size: 18px !important; }
  .line-item, .line-item-header {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-areas:
      "name name price"
      "size qty subtotal";
    gap: 8px 12px;
  }
  .line-item-header { display: none; }
  .li-name { grid-area: name; }
  .li-size { grid-area: size; }
  .li-price { grid-area: price; text-align: right; }
  .li-qty { grid-area: qty; justify-self: start; }
  .li-soldout { grid-area: qty; justify-self: start; }
  .li-subtotal { grid-area: subtotal; text-align: right; }
  .form-row { grid-template-columns: 1fr; }
  .form-row:has(label:nth-child(3)) { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: var(--cream); padding: 20px 24px;
    box-shadow: var(--shadow-md); gap: 16px;
  }
  .lang-toggle { margin-left: auto; margin-right: 12px; }
}

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 42px; }
  .hero-logo { width: 140px; }
  .section-header h2 { font-size: 26px; }
  .age-gate-card { padding: 32px 24px; }
  .header-inner { padding: 12px 16px; }
  .brand-name { font-size: 14px; letter-spacing: 0.12em; }
  .brand-logo { width: 28px; }
  .lang-toggle { font-size: 11px; gap: 6px; }
  .hero { padding-top: 56px; }
  .hero-inner { padding: 50px 16px 36px; gap: 28px; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-products { padding: 56px 0; }
  .trust-strip { padding: 14px 0; }
  .trust-item { font-size: 10.5px; gap: 8px; }
  .trust-icon { width: 22px; height: 22px; font-size: 12px; }
  .product-card { padding: 14px 16px; }
  .product-card h4 { font-size: 18px; margin-bottom: 4px; }
  .product-card .key-benefits-label,
  .product-card ul { display: none; }
  .product-card .product-desc { font-size: 12px; margin-bottom: 10px; }
  .product-class { font-size: 9.5px; margin-bottom: 8px; }
  .product-category { font-size: 9px; margin-bottom: 8px; }
  .product-meta { border-top: 0; padding-top: 6px; margin-bottom: 10px; }
  .product-price { font-size: 17px; }
  .btn-add { padding: 8px 12px; font-size: 10px; letter-spacing: 0.14em; }
  .invoice-etransfer { font-size: 17px !important; }
  .invoice-payment { padding: 18px 20px; }
}

/* ─────────────────────────────────────────── PRODUCT DETAIL PAGES */
.pdp { padding: 56px 0 80px; }
.pdp-breadcrumb { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.pdp-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--navy); }
.pdp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.pdp-visual { background: #fff; border-left: 3px solid var(--navy); padding: 36px 30px; text-align: center; box-shadow: var(--shadow-sm); }
.pdp-visual img { width: 240px; max-width: 100%; height: auto; }
.pdp-visual .product-category { display: block; margin-top: 20px; }
.pdp-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--ochre-deep); text-transform: uppercase; }
.pdp h1 { font-size: 42px; color: var(--navy); margin: 10px 0 4px; line-height: 1.05; letter-spacing: 0.01em; }
.pdp-class { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: var(--sage-dark); text-transform: uppercase; margin-bottom: 18px; }
.pdp-price { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.pdp-price span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.pdp-purity { font-size: 13px; color: var(--sage-dark); margin: -10px 0 18px; font-weight: 600; letter-spacing: 0.02em; }
.pdp-purity strong { color: var(--navy); }
.pdp-desc { font-size: 15px; line-height: 1.6; font-style: italic; color: var(--text); margin-bottom: 22px; }
.pdp-focus-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--ochre-deep); text-transform: uppercase; margin-bottom: 10px; }
.pdp ul { list-style: none; margin-bottom: 26px; }
.pdp ul li { position: relative; padding-left: 16px; font-size: 13.5px; line-height: 1.6; color: var(--text); margin-bottom: 4px; }
.pdp ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; background: var(--navy); }
.pdp-cta { display: inline-block; background: var(--navy); color: var(--cream); padding: 14px 30px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; text-decoration: none; transition: background 0.2s; }
.pdp-cta:hover { background: var(--navy-deep); }
.pdp-back { display: inline-block; margin-left: 18px; color: var(--navy); font-size: 13px; text-decoration: none; }
.pdp-back:hover { color: var(--ochre-deep); }
.pdp-disclaimer { margin-top: 28px; padding: 16px 18px; border: 1px solid var(--border); font-size: 12px; line-height: 1.5; color: var(--text-muted); font-style: italic; }
.footer-products { margin: 8px 0; font-size: 12px; color: var(--text-muted); line-height: 1.9; }
.footer-products a { color: var(--text-muted); text-decoration: none; }
.footer-products a:hover { color: var(--cream); }
@media (max-width: 768px){ .pdp-grid { grid-template-columns: 1fr; gap: 28px; } .pdp h1 { font-size: 32px; } .pdp-back { display: block; margin: 14px 0 0; } }

/* ─────────────────────────────────────────── LEARN / ARTICLES */
.article { padding: 48px 0 72px; max-width: 760px; margin: 0 auto; }
.article h1 { font-size: 36px; color: var(--navy); line-height: 1.1; margin-bottom: 10px; }
.article-dek { font-size: 17px; font-style: italic; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }
.article-meta { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.article h2 { font-size: 22px; color: var(--navy); margin: 30px 0 10px; }
.article p { font-size: 15.5px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.article ul { margin: 0 0 16px 0; list-style: none; }
.article ul li { position: relative; padding-left: 16px; font-size: 15px; line-height: 1.7; margin-bottom: 6px; color: var(--text); }
.article ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--navy); }
.article a { color: var(--ochre-deep); }
.article-disclaimer { margin-top: 32px; padding: 16px 18px; border: 1px solid var(--border); font-size: 12px; line-height: 1.5; color: var(--text-muted); font-style: italic; }
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.learn-card { background: var(--cream); border-left: 3px solid var(--navy); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.learn-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.learn-card p { font-size: 13.5px; color: var(--text); line-height: 1.55; flex-grow: 1; margin-bottom: 14px; }
.learn-card a.learn-read { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); text-decoration: none; }
.learn-card a.learn-read:hover { color: var(--ochre-deep); }
@media (max-width: 768px){ .learn-grid { grid-template-columns: 1fr; } .article h1 { font-size: 28px; } }

/* ─────────────────────────────────────────── INVENTORY / OUT OF STOCK */

/* Catalogue card: badge in the corner, everything else greyed back. */
.product-card.out-of-stock { position: relative; }
.product-card.out-of-stock > *:not(.stock-badge) { opacity: 0.42; }
.product-card .stock-badge {
  position: absolute; top: 0; right: 0;
  background: var(--navy); color: var(--cream);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 6px 10px;
  z-index: 2;
}
.btn-add.btn-soldout,
.btn-add.btn-soldout:hover {
  cursor: not-allowed;
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}

/* Order-form row: hide the qty box, show a Sold-out tag in its place. */
.line-item.out-of-stock > *:not(.li-soldout) { opacity: 0.42; }
.line-item.out-of-stock .li-qty { display: none; }
.li-soldout {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ochre-deep);
  white-space: nowrap;
}

/* ─────────────────────────────────────────── DRAMATIC DARK SECTIONS */
.section-products {
  background: linear-gradient(180deg, #13233E 0%, #0E1B30 100%);
}
.section-products .section-header h2 { color: var(--cream); }
.section-products .section-sub { color: #AEBACB; }
.section-products .research-disclaimer { color: #7E8CA4; border-color: rgba(255,255,255,0.12); }
.section-products .product-card {
  background: #1A2C4C; border-left: 3px solid var(--ochre);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.section-products .product-card:hover {
  border-left-color: var(--cream);
  box-shadow: 0 18px 46px rgba(0,0,0,0.5);
}
.section-products .product-category { color: var(--ochre); }
.section-products .product-card h4 { color: var(--cream); }
.section-products .product-class { color: #9FB0C7; }
.section-products .product-divider { background: var(--ochre); opacity: 0.4; }
.section-products .product-desc { color: #C7D0DD; }
.section-products .key-benefits-label { color: var(--ochre); }
.section-products .product-card ul li { color: #C7D0DD; }
.section-products .product-card ul li::before { background: var(--ochre); }
.section-products .product-meta { border-top-color: rgba(255,255,255,0.14); }
.section-products .product-size { color: #9FB0C7; }
.section-products .product-price { color: var(--ochre); }
.section-products .product-photo {
  background: #fff; border-bottom: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}
.section-products .btn-add { border-color: var(--ochre); color: var(--ochre); }
.section-products .btn-add:hover { background: var(--ochre); border-color: var(--ochre); color: var(--navy-deep); }
.section-products .stock-badge { background: var(--ochre); color: var(--navy-deep); }
.section-how-to-order { background: linear-gradient(180deg, #0F1B30 0%, #0B1526 100%); }
.section-order { background: linear-gradient(180deg, #162643 0%, #0F1B30 100%); }

/* Vial photo frame + hover zoom */
.product-photo-frame { display: block; width: 100%; height: 200px; background: #fff; overflow: hidden; margin: -2px 0 16px; border-bottom: 1px solid var(--border); }
.product-photo-frame .product-photo { width: 100%; height: 100%; object-fit: contain; display: block; margin: 0; border-bottom: none; transition: transform 0.45s ease; }
.product-card:hover .product-photo-frame .product-photo { transform: scale(1.06); }
.section-products .product-photo-frame { border-bottom: none; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #1B2D4E 0%, #0C1729 100%);
  text-align: center; padding: 72px 0;
  border-top: 1px solid rgba(201,162,75,0.3);
  border-bottom: 1px solid rgba(201,162,75,0.3);
}
.cta-band h2 { font-family: var(--serif); font-size: 38px; color: var(--cream); margin-bottom: 12px; line-height: 1.15; }
.cta-band p { color: #B3BECD; max-width: 560px; margin: 0 auto 26px; font-size: 15px; line-height: 1.6; }
.btn-cta { background: var(--ochre); color: var(--navy-deep); border-color: var(--ochre); }
.btn-cta:hover { background: transparent; color: var(--ochre); border-color: var(--ochre); }

/* Section card depth on hover */
.about-card, .why-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.about-card:hover, .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ─────────────────────────────────────────── MOTION / LIVELINESS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@keyframes crestFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-crest { animation: crestFloat 6.5s ease-in-out infinite; }

.hero-inner.hero-centered { position: relative; }
.hero-centered > * { position: relative; z-index: 1; }
.hero-centered::before {
  content: ''; position: absolute; top: 40%; left: 50%;
  width: 460px; height: 460px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(201,162,75,0.16), rgba(201,162,75,0) 68%);
  z-index: 0; pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
}

.site-nav a { position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--ochre); transition: width 0.25s ease;
}
.site-nav a:hover::after { width: 100%; }

.btn:hover { transform: translateY(-2px); }
.pdp-cta:hover, .learn-card a.learn-read:hover { transform: translateY(-2px); }
.pdp-cta { transition: transform 0.2s ease, background 0.2s ease; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--ochre); z-index: 200; will-change: width; }
.header-inner { transition: padding 0.28s ease; }
.brand-logo { transition: width 0.28s ease; }
.site-header.scrolled .header-inner { padding-top: 9px; padding-bottom: 9px; }
.site-header.scrolled .brand-logo { width: 26px; }
.hero-crest-wrap { display: block; width: 370px; max-width: 84%; margin: 0 auto; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-crest, .hero-centered::before { animation: none !important; }
  .scroll-progress { display: none; }
}
