/*
 * Texas Bullion Depository — CMS stylesheet (tbd.css)
 * Standalone, Bulma-free design system for the "Texas Gold" CMS pages.
 * Loaded ONLY by templates/base_texas.html — never alongside Bulma's style.css.
 *
 * Scope of this file: design tokens, reset, typography, buttons, and the shared
 * page chrome (top bar, main nav + mega menus, mobile menu, footer). Individual
 * page body layout lives in each page template's own scoped <style> block.
 *
 * Fonts (Crimson Text / Jost / Archivo) are loaded via <link> in base_texas.html.
 * Self-hosted woff2 copies are available under static/img/tbd/ for future
 * optimization if external font loading is undesirable.
 */

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

/* ── TOKENS ── */
:root {
  --black:      rgb(12,11,8);
  --gold:       rgb(232,201,106);
  --gold-dark:  rgb(139,105,20);
  --white:      rgb(255,255,255);
  --off-white:  rgb(249,247,246);
  --light-gray: rgb(237,235,232);
  --navy:       #061421;
  --red-accent: #AD400C;
  --red-bright: #E75F1F;
  --silver:     #8CBEC8;
  --silver-dark:#3C6A74;
  --nav-height:    75px;
  --topbar-height: 36px;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  /* Always reserve the scrollbar's space so locking page scroll for the mobile
     menu doesn't widen the viewport (which shifted the header/logo). */
  scrollbar-gutter: stable;
  /* Prevent iOS Safari from auto-inflating text in "main content" blocks,
     which enlarges paragraphs on a real device (not in Chrome dev tools)
     and clips them on the right. Pinch-zoom + user font settings still work. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Archivo', sans-serif;
  background: var(--off-white);
  color: var(--black);
}
img { max-width: 100%; }
p {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5em;
  color: var(--black);
}

/* ── BULMA-MATCHED CONTAINER ── */
.site-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (min-width: 1024px) { .site-container { max-width: 960px; } }
@media screen and (min-width: 1216px) { .site-container { max-width: 1152px; } }
@media screen and (min-width: 1408px) { .site-container { max-width: 1344px; } }

/* ── HEADINGS ── */
h1 { font-family: 'Crimson Text', serif; font-size: clamp(36px, 3.6vw, 54px); font-weight: 600; line-height: 1.08; text-wrap: pretty; }
h2 { font-family: 'Crimson Text', serif; font-size: clamp(28px, 3vw, 46px); font-weight: 600; line-height: 1.1; text-wrap: pretty; }
h3 { font-family: 'Crimson Text', serif; font-size: 22px; font-weight: 600; line-height: 1.15; }

/* ── EYEBROWS ── */
.eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.eyebrow-section { font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; display: block; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 48px; padding: 0 24px; border-radius: 6px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.btn-gold          { background: var(--gold); color: var(--black); }
.btn-gold:hover    { background: var(--gold-dark); color: var(--white); }
.btn-outline       { background: transparent; border: 1.5px solid var(--gold-dark); color: var(--gold-dark); }
.btn-outline:hover { background: var(--gold-dark); color: var(--white); }
.btn-dark          { background: var(--black); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-dark:hover    { background: var(--gold-dark); color: var(--white); }
.btn-outline-light       { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline-light:hover { background: var(--gold); color: var(--black); }
.btn-full { width: 100%; }

/* ── SHARED UTILITIES ── */
.section-divider { border: none; border-top: 1px solid #8B6914; margin: 0; }

/* ════════════════════════════════════════════════
   TOP BAR (live metal prices fed by spotprice.min.js)
   ════════════════════════════════════════════════ */
/* Whole header (black top bar + nav) sticks as one unit while scrolling.
   z-index sits above the mobile menu so the bar/logo/hamburger stay on top and
   the menu opens beneath it. */
.tbd-header { position: sticky; top: 0; z-index: 400; }
.tbd-topbar { background: var(--black); height: var(--topbar-height); position: relative; z-index: 2; }
.tbd-topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tbd-topbar-left { display: flex; align-items: center; gap: 24px; }
.tbd-topbar-link { display: flex; align-items: center; gap: 6px; color: var(--white); text-decoration: none; font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 500; white-space: nowrap; }
.tbd-topbar-link img { width: 15px; height: 15px; }
.tbd-topbar-prices { display: flex; align-items: center; }
.tbd-topbar-prices table { border-collapse: collapse; }
.tbd-topbar-prices td { padding: 0 14px; border-left: 1px solid rgba(255,255,255,0.12); }
.tbd-topbar-prices td.last { padding-right: 0; }
.tbd-topbar-prices td:first-child { border-left: none; }
.price-metal-title { display: inline-block; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-right: 6px; }
.price-metal-data { display: inline-flex; align-items: center; gap: 5px; font-family: 'Archivo', sans-serif; font-size: 12.5px; }
.metal-ask { color: var(--white); font-weight: 500; }
.price-metal-arrow { width: 0; height: 0; display: inline-block; }
.price-metal-arrow.uparrow { border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 6px solid #6fcf97; }
.price-metal-arrow.downarrow { border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid #eb5757; }
.price4 { font-size: 11px; }
.price4.up { color: #6fcf97; }
.price4.down { color: #eb5757; }

/* ════════════════════════════════════════════════
   MAIN NAV
   ════════════════════════════════════════════════ */
.tbd-nav { background: var(--white); height: var(--nav-height); box-shadow: 0 4px 18px rgba(0,0,0,0.18); position: relative; z-index: 1; }
.tbd-nav-inner { height: 100%; display: flex; align-items: center; }
.tbd-nav-logo { display: flex; align-items: center; text-decoration: none; flex: 1 1 0; min-width: 0; }
.tbd-nav-logo img { height: 50px; width: auto; }
.tbd-nav-links { display: flex; align-self: stretch; align-items: center; gap: 40px; list-style: none; margin: 0; flex-shrink: 0; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link { font-family: 'Archivo', sans-serif; font-weight: 500; font-size: 15px; color: var(--black); text-decoration: none; white-space: nowrap; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-link:hover { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }
.nav-item.open > .nav-link { color: var(--gold-dark); border-bottom-color: transparent; }
.nav-item.open::after { content: ''; position: absolute; bottom: 0; left: -8px; right: -8px; height: 5px; background: var(--gold-dark); }
.nav-link .chevron { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-item.open > .nav-link .chevron { transform: rotate(180deg); }

/* ── NAV ACTIONS ── */
.tbd-nav-actions { display: flex; align-items: center; gap: 12px; flex: 1 1 0; min-width: 0; justify-content: flex-end; }
.btn-create-account { height: 36px; padding: 0 16px; border-radius: 8px; border: 1px solid var(--black); background: transparent; font-family: 'Archivo', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--black); cursor: pointer; white-space: nowrap; text-decoration: none; display: flex; align-items: center; transition: background 0.2s, color 0.2s; }
.btn-create-account:hover { background: var(--black); color: var(--white); }
.btn-sign-in { height: 36px; padding: 0 20px; border-radius: 8px; border: none; background: var(--gold); font-family: 'Archivo', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--black); cursor: pointer; white-space: nowrap; text-decoration: none; display: flex; align-items: center; transition: background 0.2s; }
.btn-sign-in:hover { background: var(--gold-dark); color: var(--white); }

/* ── DESKTOP DROPDOWNS ── */
.nav-dropdown { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--off-white); box-shadow: 0 14px 24px rgba(0,0,0,0.25); border-top: 1px solid var(--gold-dark); min-width: 260px; padding: 20px 28px 24px; z-index: 200; border-radius: 0 0 8px 8px; }
.nav-item.open > .nav-dropdown { display: block; }
.dropdown-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dropdown-list a { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 500; color: var(--black); text-decoration: none; transition: color 0.15s; }
.dropdown-list a:hover { color: var(--gold-dark); }

/* ── MEGA MENUS ── */
.nav-dropdown-wide { display: none; position: fixed; top: var(--mega-top, calc(var(--topbar-height) + var(--nav-height))); left: 0; width: 100%; background: var(--off-white); box-shadow: 0 14px 24px rgba(0,0,0,0.25); border-top: 1px solid var(--gold-dark); z-index: 200; padding: 36px 0 48px; }
.nav-item.open > .nav-dropdown-wide { display: block; }
.dropdown-wide-grid { display: grid; gap: 0 60px; }
.dropdown-wide-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.dropdown-wide-grid.cols-coins { grid-template-columns: 0.85fr 2.8fr; }
.coins-cards-wrapper { display: flex; gap: 20px; align-items: flex-start; }
.coins-cards-wrapper .dropdown-card:first-child { flex: 1.1; }
.coins-cards-wrapper .dropdown-card:last-child  { flex: 1.5; }
.dropdown-card { background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 24px 24px 28px; }
.dropdown-col-title { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 12px; }
.dropdown-col-title-red { color: rgb(175,75,35); }
.dropdown-col-divider { height: 1px; background: var(--gold-dark); margin-bottom: 16px; opacity: 0.5; }
.dropdown-col-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.dropdown-col-links a { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 500; color: var(--black); text-decoration: none; transition: color 0.15s; }
.dropdown-col-links a:hover { color: var(--gold-dark); }
.dropdown-intro-title { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 12px; line-height: 1.3; }
.dropdown-intro-title-coins { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 700; color: var(--gold-dark); margin-bottom: 14px; line-height: 1.35; }
.dropdown-intro-body { font-family: 'Archivo', sans-serif; font-weight: 400; font-size: 15px; color: #4B4A4A; line-height: 1.6; margin-bottom: 18px; }
.dropdown-cols-with-imgs { display: flex; gap: 20px; align-items: flex-start; }
.dropdown-coin-imgs { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.dropdown-coin-imgs img { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; }
.dropdown-coin-imgs img:last-child { margin-top: -20px; }
.dropdown-redback-imgs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.dropdown-redback-imgs img { width: 190px; height: 85px; object-fit: cover; border-radius: 4px; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
/* Opens BELOW the sticky header (which keeps the black bar + logo + hamburger
   persistent), so opening/closing never re-renders or shifts the top chrome.
   Always rendered so open/close cross-fades instead of a hard display swap. */
.mobile-menu { display: flex; position: fixed; top: var(--mega-top, calc(var(--topbar-height) + var(--nav-height))); left: 0; right: 0; bottom: 0; z-index: 390; flex-direction: column; background: #fff; opacity: 0; visibility: hidden; transition: opacity 0.22s ease, visibility 0s linear 0.22s; }
.mobile-menu.open { opacity: 1; visibility: visible; transition: opacity 0.22s ease; }
.mob-nav-panel { background: #fff; flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding-bottom: 136px; }
.m-item { border-bottom: 1px solid #e5e3e0; }
.m-trigger { width: 100%; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 500; color: var(--black); text-align: left; }
.m-chevron { color: var(--gold-dark); font-size: 22px; line-height: 1; transition: transform 0.22s; display: inline-block; }
.m-item.open .m-chevron { transform: rotate(90deg); }
.m-sub { display: none; padding: 4px 24px 24px; }
.m-item.open .m-sub { display: block; }
.m-section { margin-bottom: 20px; }
.m-stitle { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-dark); text-transform: uppercase; padding-top: 8px; margin-bottom: 8px; }
.m-sdivider { height: 1px; background: var(--gold-dark); opacity: 0.35; margin-bottom: 12px; }
.m-sub a { display: block; padding: 7px 0; font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 500; color: var(--black); text-decoration: none; }
.m-sub a:active { color: var(--gold-dark); }
.mob-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--black); padding: 14px 20px 20px; display: flex; flex-direction: column; gap: 10px; z-index: 410; }
.mob-cta-btn { display: flex; align-items: center; justify-content: center; height: 52px; border-radius: 6px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.mob-cta-btn.outline { border: 1.5px solid rgba(255,255,255,0.55); background: transparent; color: #fff; }
.mob-cta-btn.gold { background: var(--gold); border: none; color: var(--black); }

/* ════════════════════════════════════════════════
   FOOTER (legal)
   ════════════════════════════════════════════════ */
.legal-footer { background: var(--navy); padding: 32px 0 40px; }
.legal-footer .site-container { padding-top: 32px; }
.legal-footer p { font-family: 'Archivo', sans-serif; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ── NAV RESPONSIVE ── */
@media (max-width: 1216px) {
  .tbd-topbar-prices { display: none; }
  .tbd-nav-links { display: none; }
  .tbd-nav-actions { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .tbd-nav { height: 66px; }
  .tbd-nav-logo img { height: 42px; }
  :root { --nav-height: 66px; --topbar-height: 32px; }
  .tbd-topbar { height: 32px; }
}

/* ════════════════════════════════════════════════
   SHARED PARTIALS
   Rendered by templates/site/partials/where-to-buy.html and
   additional-outlets.html, included from the product, redback and where-to-buy
   pages. Class names are bespoke (tbd.css only loads on Texas pages) so these
   stay unscoped and serve every including page from a single definition.
   ════════════════════════════════════════════════ */
.where-to-buy { background: var(--off-white); padding: 72px 0; }
.where-to-buy h2 { font-family: 'Crimson Text', serif; font-size: clamp(32px,3vw,46px); font-weight: 600; margin-bottom: 10px; }
.where-to-buy .section-sub { font-size: 19px; color: #555; margin-bottom: 40px; }
.retailers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.retailer-card { background: var(--white); border: 1px solid #AAA9A9; border-radius: 10px; padding: 32px; display: flex; flex-direction: column; }
.retailer-logo { margin-bottom: 20px; }
.retailer-logo img { height: 44px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; display: block; }
.retailer-card address { font-style: normal; font-family: 'Archivo', sans-serif; font-size: 14px; line-height: 1.7; color: #555; margin-bottom: 20px; flex: 1; }
.additional-outlets { background: var(--off-white); padding: 0 0 72px; border-top: 1px solid rgba(0,0,0,0.08); }
.additional-outlets > .site-container { padding-top: 24px; }
.outlets-text { font-size: 16px; color: #555; margin-bottom: 16px; }
.outlets-links { display: flex; gap: 24px; flex-wrap: wrap; }
.outlets-links span { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 700; color: #555; }
.retailer-card address a { color: var(--gold-dark); }
@media (max-width: 1024px) { .retailers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .retailers-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }

/* ════════════════════════════════════════════════
   TEXAS LONE STAR PRODUCT PAGES
   Shared body layout for the redesigned commemorative-coin pages
   (lone-star-gold-1oz, lone-star-gold-half-oz, lone-star-gold-1oz-certilock,
   lone-star-silver-1oz). Everything is namespaced under .ls-product so it can
   never leak into the Bulma-based CMS pages that reuse generic class names like
   .hero or .coin-card. background-image url()s are relative to this file's
   location (static/css/) and therefore point at ../img/tbd/.
   ════════════════════════════════════════════════ */

/* ── COIN CARDS ── */
.ls-product .coin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ls-product .coin-card { background: var(--white); border: 1px solid #AAA9A9; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; padding: 20px; }
.ls-product .coin-card-eyebrow { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; display: block; }
.ls-product .coin-card-img { width: 80%; margin: 0 auto; aspect-ratio: 1; object-fit: contain; display: block; }
.ls-product .coin-card-body { padding: 20px 0 0; flex: 1; border-top: 1px solid #8B6914; margin-top: 22px; }
.ls-product .coin-card-body h3 { font-family: 'Crimson Text', serif; font-size: 22px; font-weight: 600; line-height: 1.15; }
.ls-product .coin-card-btn { padding: 16px 0 0; }
.ls-product .coin-card-btn .btn { width: 100%; border-radius: 8px; }

/* ── BUY CARD ── */
.ls-product .buy-section { background: var(--off-white); padding: 48px 0 72px; }
.ls-product .buy-card { background: var(--light-gray); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 7fr 5fr; }
.ls-product .buy-card-text { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.ls-product .buy-card-text h2 { font-family: 'Crimson Text', serif; font-size: clamp(32px,3vw,44px); font-weight: 600; line-height: 1.1; margin-bottom: 18px; }
.ls-product .buy-card-text .btn { margin-top: 28px; align-self: flex-start; }
.ls-product .buy-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* WHERE TO BUY + ADDITIONAL OUTLETS: see the shared SHARED PARTIALS block above. */

/* ── UTILITIES ── */
.ls-product .hero-pkg-img { width: 100%; max-width: 400px; display: block; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.7)); }

/* ── 1. HERO ── */
.ls-product .hero {
  position: relative;
  min-height: clamp(520px, 46vw, 680px);
  display: flex;
  align-items: center;
  background: url("../img/tbd/lone-star-gold-1oz-bg-2.webp") center 40% / cover no-repeat;
}
.ls-product .hero-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
/* SPINNING COIN */
.ls-product .coin-wrap {
  width: min(380px, 40vw);
  aspect-ratio: 1;
  animation: coinFloat 7s ease-in-out infinite;
  perspective: 1400px;
  filter: drop-shadow(0 28px 60px rgba(201,168,76,0.28)) drop-shadow(0 6px 20px rgba(0,0,0,0.72));
}
.ls-product .coin-spinner { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; animation: coinSpin 9s linear infinite; }
.ls-product .coin-face { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; box-shadow: inset 0 0 0 2px rgba(200,165,55,0.30); }
.ls-product .coin-face img { width: 100%; height: 100%; position: absolute; top: 0; left: 0; object-fit: cover; display: block; }
.ls-product .coin-face-back { transform: rotateY(180deg); }
.ls-product .coin-edge-seg { position: absolute; }
/* Half-ounce coin's source crop needs a slight scale to fill the circle */
.ls-product .coin-wrap.coin-fit .coin-face-front img { transform: scale(1.08); }
.ls-product .coin-wrap.coin-fit .coin-face-back img { transform: scale(1.0); }
@keyframes coinSpin { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0.3deg); }
  40%       { transform: translateY(-16px) rotate(-0.4deg); }
  70%       { transform: translateY(-7px) rotate(0.2deg); }
}
/* Reduced motion: stop animation, show front face only */
@media (prefers-reduced-motion: reduce) {
  .ls-product .coin-spinner { animation: none; }
  .ls-product .coin-wrap { animation: none; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5)); }
  .ls-product .coin-face-back { display: none; }
}
.ls-product .hero-coin { display: flex; align-items: center; justify-content: center; }
.ls-product .hero-text { max-width: 640px; }
.ls-product .hero-text .eyebrow { color: var(--gold); }
.ls-product .hero-text h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.ls-product .hero-text h1 .gold { color: var(--gold); }
.ls-product .hero-desc {
  font-family: 'Crimson Text', serif;
  font-size: 19px;
  color: #D3D3D3;
  line-height: 1.45;
  margin-bottom: 24px;
  max-width: 560px;
}
.ls-product .hero-specs {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.ls-product .hero-spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 28px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  flex: none;
}
.ls-product .hero-spec-item:last-child { border-right: none; padding-right: 0; }
.ls-product .hero-spec-item:not(:first-child) { padding-left: 28px; }
.ls-product .hero-spec-label { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.ls-product .hero-spec-value { font-family: 'Crimson Text', serif; font-size: 22px; font-weight: 600; color: var(--white); }
.ls-product .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 2. PRODUCT DETAIL ── */
.ls-product .product-detail { background: var(--off-white); padding: 72px 0; }
.ls-product .detail-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-product .detail-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 40px;
}
.ls-product .detail-lead .highlight { color: var(--gold-dark); }
.ls-product .coin-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.ls-product .coin-row-text .eyebrow-section { margin-bottom: 12px; }
.ls-product .coin-row-text p { font-size: 16px; line-height: 1.65; color: #444; }
.ls-product .coin-row-img { display: flex; align-items: center; justify-content: center; }
.ls-product .coin-row-img img { width: 220px; max-width: 100%; display: block; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15)); }
.ls-product .specs-table { margin-bottom: 32px; }
.ls-product .spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139,105,20,0.3);
  align-items: start;
}
.ls-product .spec-label { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); padding-top: 2px; }
.ls-product .spec-value { font-family: 'Crimson Text', serif; font-size: 18px; font-weight: 400; color: var(--black); line-height: 1.4; }

/* ── 3. SYMBOLISM ── */
.ls-product .symbolism-section { background: var(--off-white); padding: 0 0 72px; }
.ls-product .symbolism-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 4fr;
  align-items: stretch;
}
.ls-product .symbolism-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-product .symbolism-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 20px;
}
.ls-product .symbolism-text h2 .highlight { color: var(--gold-dark); }
.ls-product .symbolism-text p { font-size: 17px; line-height: 1.65; color: #444; margin-bottom: 24px; }
.ls-product .symbolism-text .btn { align-self: flex-start; }
.ls-product .symbolism-img { overflow: hidden; position: relative; }
.ls-product .symbolism-img img { position: absolute; height: 140%; width: auto; max-width: none; top: 50%; left: 5%; transform: translateY(-50%); display: block; }

/* ── 4–6. DARK FEATURES WRAPPER ── */
.ls-product .dark-features {
  background: url("../img/tbd/lone-star-gold-1oz-bg.webp") center center / cover no-repeat;
  padding: 96px 0;
}
.ls-product .dark-block { padding: 0 0 96px; }
.ls-product .dark-block:last-child { padding-bottom: 0; }

/* ── 4. PURITY ── */
.ls-product .purity-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.ls-product .purity-coin img { width: 100%; display: block; filter: drop-shadow(0 8px 40px rgba(0,0,0,0.7)); }
.ls-product .purity-text .eyebrow-section { color: var(--gold); letter-spacing: 0.18em; }
.ls-product .purity-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.ls-product .purity-rule { border: none; border-top: 1px solid rgba(232,201,106,0.35); margin: 0 0 20px; width: fit-content; min-width: 200px; }
.ls-product .purity-number {
  font-family: 'Crimson Text', serif;
  font-size: clamp(72px, 8vw, 110px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.ls-product .purity-text p {
  font-family: 'Crimson Text', serif;
  color: #D3D3D3;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.ls-product .purity-text p .highlight { color: var(--gold); }

/* ── 5. CERTILOCK ── */
.ls-product .certilock-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.ls-product .certilock-text .eyebrow-section { color: var(--gold); }
.ls-product .certilock-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.ls-product .certilock-rule { border: none; border-top: 1px solid rgba(232,201,106,0.35); margin: 0 0 24px; width: fit-content; min-width: 200px; }
.ls-product .certilock-text p { margin-bottom: 16px; font-family: 'Crimson Text', serif; color: #D3D3D3; font-size: 19px; line-height: 1.55; }
.ls-product .certilock-text p .highlight { color: var(--gold); }
.ls-product .certilock-text a.learn-more {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.2s;
}
.ls-product .certilock-img img { width: 100%; display: block; }

/* ── 6. MEET THE DESIGNER ── */
.ls-product .designer-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
}
.ls-product .designer-img { overflow: hidden; }
.ls-product .designer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ls-product .designer-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-product .designer-text h3 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.1;
}
.ls-product .designer-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}
.ls-product .designer-text p { margin-bottom: 14px; font-size: 17px; color: #444; }
.ls-product .designer-text a.learn-more {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 8px;
}

/* ── 7. SERIES ── */
.ls-product .series-section {
  position: relative;
  background: url("../img/tbd/lone-star-gold-1oz-bg-2.webp") center center / cover no-repeat;
  padding: 80px 0 96px;
}
.ls-product .series-inner { position: relative; z-index: 1; }
.ls-product .series-header { text-align: center; margin-bottom: 88px; }
.ls-product .series-header .eyebrow-section { color: var(--gold); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.ls-product .series-header h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.ls-product .series-header p {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #D3D3D3;
  max-width: 700px;
  margin: 0 auto 0;
  line-height: 1.55;
  text-align: center;
}
.ls-product .series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ls-product .series-grid .coin-card-img { width: 80%; aspect-ratio: 1; object-fit: contain; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ls-product .hero-inner, .ls-product .purity-grid, .ls-product .certilock-grid, .ls-product .designer-card, .ls-product .buy-card { grid-template-columns: 1fr; gap: 40px; }
  .ls-product .detail-grid, .ls-product .coin-row { grid-template-columns: 1fr; gap: 24px; }
  .ls-product .coin-row-img { max-width: 280px; margin: 0 auto; }
  .ls-product .hero-coin { display: none; }
  .ls-product .coin-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-product .designer-img { min-height: 300px; }
}
@media (max-width: 640px) {
  .ls-product .hero-btns { flex-direction: column; align-items: stretch; }
  .ls-product .symbolism-card { grid-template-columns: 1fr; }
  .ls-product .symbolism-text { order: 1; padding: 32px 28px 24px; }
  .ls-product .symbolism-img { order: 2; min-height: 300px; }
  .ls-product .symbolism-img img { object-fit: contain; object-position: center; background: var(--light-gray); top: 80%; }
  .ls-product .hero-specs { flex-wrap: nowrap; overflow-x: auto; }
  .ls-product .hero-spec-item.hero-spec-year { display: none; }
  .ls-product .hero-spec-item:nth-last-child(2) { border-right: none; padding-right: 0; }
  .ls-product .hero-spec-item { flex-shrink: 0; padding: 12px 18px 12px 0; }
  .ls-product .hero-spec-item:not(:first-child) { padding-left: 18px; }
  .ls-product .hero-spec-value { font-size: 18px; }
  .ls-product .hero-desc { font-size: 17px; }
  .ls-product .coin-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .ls-product .series-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; gap: 16px; }
  .ls-product .purity-number { font-size: clamp(60px, 16vw, 90px); }
  .ls-product .designer-text { padding: 32px 24px 40px; }
  .ls-product .buy-card-text { padding: 32px 24px; }
  .ls-product .certilock-grid { display: flex; flex-direction: column; }
  .ls-product .certilock-img { order: -1; margin-bottom: 24px; }
  .ls-product .certilock-img img { max-width: 340px; margin: 0 auto; display: block; }
  .ls-product .designer-card { display: flex; flex-direction: column; }
  .ls-product .designer-img { order: -1; min-height: 280px; }
}

/* ════ SILVER COIN ACCENT OVERRIDES (lone-star-silver-1oz) ════
   Applied when the page wrapper also carries .theme-silver. */
.ls-product.theme-silver .hero .eyebrow { color: var(--silver); }
.ls-product.theme-silver .hero h1 .gold { color: var(--silver); }
.ls-product.theme-silver .hero-spec-label { color: var(--silver); }
.ls-product.theme-silver .product-detail .eyebrow-section,
.ls-product.theme-silver .detail-right .eyebrow-section { color: var(--silver-dark); }
.ls-product.theme-silver .detail-lead .highlight { color: var(--silver-dark); }
.ls-product.theme-silver .coin-row-text .eyebrow-section { color: var(--silver-dark); }
.ls-product.theme-silver .spec-label { color: var(--silver-dark); }
.ls-product.theme-silver .spec-row { border-bottom-color: rgba(60,106,116,0.3); }
.ls-product.theme-silver .symbolism-text .eyebrow-section { color: var(--silver-dark); }
.ls-product.theme-silver .symbolism-text h2 .highlight { color: var(--silver-dark); }
.ls-product.theme-silver .purity-text .eyebrow-section { color: var(--silver); }
.ls-product.theme-silver .purity-number { color: var(--silver); }
.ls-product.theme-silver .purity-rule { border-top-color: rgba(140,190,200,0.35); }
.ls-product.theme-silver .purity-text p .highlight { color: var(--silver); }
/* Silver coin: tint the spinning coin's edge ring and float glow silver */
.ls-product.theme-silver .coin-face { box-shadow: inset 0 0 0 2px rgba(140,190,200,0.40); }
.ls-product.theme-silver .coin-wrap { filter: drop-shadow(0 28px 60px rgba(140,190,200,0.30)) drop-shadow(0 6px 20px rgba(0,0,0,0.72)); }
@media (prefers-reduced-motion: reduce) {
  .ls-product.theme-silver .coin-wrap { filter: drop-shadow(0 12px 32px rgba(0,0,0,0.5)); }
}
/* Buy CTAs inside the product/feature sections turn silver; retailer + footer
   sections keep their gold-dark accents. */
.ls-product.theme-silver .hero .btn-gold,
.ls-product.theme-silver .product-detail .btn-gold,
.ls-product.theme-silver .symbolism-section .btn-gold,
.ls-product.theme-silver .dark-features .btn-gold { background: var(--silver); color: var(--black); }
.ls-product.theme-silver .hero .btn-gold:hover,
.ls-product.theme-silver .product-detail .btn-gold:hover,
.ls-product.theme-silver .symbolism-section .btn-gold:hover,
.ls-product.theme-silver .dark-features .btn-gold:hover { background: var(--silver-dark); color: var(--white); }
.ls-product.theme-silver .hero .btn-outline-light { border-color: var(--silver); color: var(--silver); }
.ls-product.theme-silver .hero .btn-outline-light:hover { background: var(--silver); color: var(--black); }
.ls-product.theme-silver .series-header .eyebrow-section { color: var(--gold-dark); }
.ls-product.theme-silver .dark-features .designer-subtitle { color: var(--silver-dark); }
.ls-product.theme-silver .dark-features .designer-text .eyebrow-section { color: var(--silver-dark); }
.ls-product.theme-silver .dark-features .designer-text a.learn-more { color: var(--silver-dark); }

/* ════════════════════════════════════════════════
   LS-SERIES  (texas-official-gold-silver-products.html)
   ════════════════════════════════════════════════ */
.ls-series .series-hero {
  position: relative;
  min-height: clamp(500px, 52vw, 700px);
  display: flex;
  align-items: center;
  background: url(../img/tbd/about-the-series-bg.webp) center 30% / cover no-repeat;
}
.ls-series .series-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 72px 0;
}
.ls-series .series-hero h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(33px, 3.6vw, 54px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.ls-series .series-hero p {
  font-family: 'Crimson Text', serif;
  font-size: 25px;
  color: #D3D3D3;
  line-height: 1.35;
  margin-bottom: 32px;
  max-width: 720px;
}
.ls-series .series-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-series .about-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-series .about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: stretch;
}
.ls-series .about-left h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ls-series .about-left p { margin-bottom: 14px; }
.ls-series .about-quote {
  background: #EDEBE8;
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-series .about-quote p.quote-text {
  font-family: 'Crimson Text', serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}
.ls-series .about-quote p.quote-text .quote-gold { color: var(--gold-dark); }
.ls-series .about-quote p.quote-sub {
  font-size: 19px;
  color: #555;
  font-family: 'Archivo', sans-serif;
  line-height: 1.5em;
}
.ls-series .product-series {
  background: var(--off-white);
  padding: 72px 0;
  text-align: center;
}
.ls-series .product-series h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 10px;
}
.ls-series .product-series-sub {
  font-family: 'Crimson Text', serif;
  font-size: 24px;
  color: #555;
  margin-bottom: 48px;
}
.ls-series .product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}
.ls-series .product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.ls-series .product-card-img {
  padding: 24px 24px 0;
  background: var(--white);
}
.ls-series .product-card-img img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: var(--white);
}
.ls-series .product-card-body { padding: 20px 32px 32px; }
.ls-series .product-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ls-series .product-card-body p {
  font-size: 19px;
  color: #333;
}
.ls-series .product-disclaimer {
  margin-top: 28px;
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin-left: 10%;
  margin-right: 10%;
}
.ls-series .timeline-section {
  background: var(--off-white);
  padding: 72px 0;
}
.ls-series .timeline-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.ls-series .timeline-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ls-series .timeline-text p { margin-bottom: 14px; }
.ls-series .timeline-text .btn { margin-top: 20px; }
.ls-series .timeline-img { max-width: 517px; }
.ls-series .timeline-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.ls-series .timeline-img img + img { margin-top: 16px; }
.ls-series .redbacks-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-series .redbacks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ls-series .redbacks-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.ls-series .redbacks-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}
.ls-series .redbacks-text p { margin-bottom: 14px; }
.ls-series .redbacks-text .btn { margin-top: 20px; }
.ls-series .design-section {
  background: var(--off-white);
  padding: 72px 0;
}
.ls-series .design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ls-series .design-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ls-series .design-text p { margin-bottom: 14px; }
.ls-series .design-text .btn { margin-top: 20px; }
.ls-series .design-img img {
  width: 100%;
  border-radius: 6px;
  display: block;
}
.ls-series .coin-grid-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-series .coin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-series .coin-card {
  background: var(--white);
  border: 1px solid #AAA9A9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ls-series .coin-card-top { margin-bottom: 4px; }
.ls-series .coin-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.ls-series .coin-card-img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: var(--white);
}
.ls-series .coin-card-body {
  padding: 20px 20px 0;
  flex: 1;
  border-top: 1px solid #8B6914;
  margin-top: 22px;
}
.ls-series .coin-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}
.ls-series .coin-card-btn { padding: 16px 0 0; }
.ls-series .coin-card-btn .btn {
  width: 100%;
  border-radius: 8px;
}
.ls-series .closing-section {
  background: var(--off-white);
  padding: 72px 0 0;
}
.ls-series .closing-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: stretch;
  padding-bottom: 72px;
}
.ls-series .closing-quote-box {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
}
.ls-series .closing-quote-box p {
  font-family: 'Crimson Text', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
.ls-series .closing-quote-box p .highlight { color: var(--gold-dark); }
.ls-series .looking-ahead-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
}
.ls-series .looking-ahead p { margin-bottom: 14px; }
.ls-series .looking-ahead .btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.ls-series .closing-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 0;
}
.ls-series .buy-section {
  background: var(--off-white);
  padding: 48px 0 72px;
}
.ls-series .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-series .buy-card-text {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-series .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-series .buy-card-text p { margin-bottom: 0; }
.ls-series .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-series .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .ls-series .about-grid, .ls-series .product-cards, .ls-series .redbacks-grid, .ls-series .design-grid, .ls-series .closing-grid, .ls-series .buy-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-series .redbacks-img { order: 2; }
  .ls-series .timeline-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-series .coin-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
  }
  .ls-series .timeline-img { max-width: 100%; }
  .ls-series .coin-card { padding: 16px; }
}
@media (max-width: 768px) {
  .ls-series .coin-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
  .ls-series .buy-card-img { min-height: 260px; }
}
@media (max-width: 640px) {
  .ls-series .series-hero-content {
    max-width: 100%;
    padding: 56px 0;
  }
  .ls-series .series-hero p { line-height: 1.2em; }
  .ls-series .series-hero-btns { flex-direction: column; }
  .ls-series .product-series .eyebrow-section {
    max-width: 72%;
    margin-left: auto;
    margin-right: auto;
  }
  .ls-series .product-series h2, .ls-series .about-left h2, .ls-series .timeline-text h2, .ls-series .redbacks-text h2, .ls-series .design-text h2, .ls-series .buy-card-text h2 { text-wrap: balance; }
  .ls-series .product-card-body { padding: 16px 24px 24px; }
}

/* ════════════════════════════════════════════════
   LS-REDBACK  (100-centigram-modern-redback.html)
   ════════════════════════════════════════════════ */
.ls-redback .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 14px;
  display: block;
}
.ls-redback .eyebrow-section {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 16px;
  display: block;
}
.ls-redback .eyebrow-sm {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 10px;
  display: block;
}
.ls-redback .coin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-redback .coin-card {
  background: var(--white);
  border: 1px solid #AAA9A9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ls-redback .coin-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 12px;
  display: block;
}
.ls-redback .coin-card-img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1.75;
  object-fit: contain;
  display: block;
}
.ls-redback .coin-card-body {
  padding: 20px 0 0;
  flex: 1;
  border-top: 1px solid #8B6914;
  margin-top: 22px;
}
.ls-redback .coin-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}
.ls-redback .coin-card-btn { padding: 16px 0 0; }
.ls-redback .coin-card-btn .btn {
  width: 100%;
  border-radius: 8px;
}
.ls-redback .buy-section {
  background: #F9F7F6;
  padding: 48px 0 72px;
}
.ls-redback .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-redback .buy-card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-redback .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px,3vw,44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-redback .buy-card-text .eyebrow-section { color: var(--gold-dark); }
.ls-redback .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-redback .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-redback .hero {
  position: relative;
  min-height: clamp(520px, 46vw, 680px);
  display: flex;
  align-items: center;
  background: url(../img/tbd/redback-100cg-bg.webp) center 40% / cover no-repeat;
}
/* Per-coin hero background (default above = 100cg) */
.ls-redback.bg-20cg .hero { background-image: url(../img/tbd/redback-20cg-bg.webp); }
.ls-redback.bg-5cg .hero { background-image: url(../img/tbd/redback-5cg-bg.webp); min-height: clamp(480px, 42vw, 620px); }
.ls-redback .hero-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.ls-redback .hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 12px;
  display: block;
}
.ls-redback .hero-denomination { display: none; }
.ls-redback .hero h1 .gold { color: var(--gold); }
.ls-redback .hero h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.ls-redback .hero-desc {
  font-family: 'Crimson Text', serif;
  font-size: 19px;
  color: #D3D3D3;
  line-height: 1.45;
  margin-bottom: 24px;
  max-width: 540px;
}
.ls-redback .hero-specs {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.ls-redback .hero-spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 28px 16px 0;
  border-right: 1px solid rgba(255,255,255,0.18);
  flex: none;
}
.ls-redback .hero-spec-item:last-child {
  border-right: none;
  padding-right: 0;
}
.ls-redback .hero-spec-item:not(:first-child) { padding-left: 28px; }
.ls-redback .hero-spec-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.ls-redback .hero-spec-value {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}
.ls-redback .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-redback .hero-bills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.ls-redback .hero-bills img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}
.ls-redback .hero-bill-mobile { display: none; }
.ls-redback .hero-bill-mobile img {
  width: 80%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.7));
}
.ls-redback .product-detail {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-redback .detail-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-redback .detail-left .lead-quote {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 20px;
}
.ls-redback .detail-left .lead-quote .highlight { color: #8B6914; }
.ls-redback .detail-left p {
  margin-bottom: 16px;
  font-size: 17px;
}
.ls-redback .detail-left .bill-label {
  margin-top: 32px;
  margin-bottom: 14px;
}
.ls-redback .detail-left .bill-img {
  width: 100%;
  display: block;
  border-radius: 6px;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
  margin-top: 20px;
}
.ls-redback .detail-left .bill-img:not(:last-of-type) { margin-bottom: 32px; }
.ls-redback .specs-table { margin-bottom: 72px; }
.ls-redback .specs-table .eyebrow-sm {
  color: var(--red-accent);
  margin-bottom: 16px;
}
.ls-redback .spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(139,105,20,0.3);
  align-items: center;
}
.ls-redback .spec-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-accent);
}
.ls-redback .spec-value {
  font-family: 'Crimson Text', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}
.ls-redback .legacy-box {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 40px 44px;
}
.ls-redback .legacy-box .box-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 14px;
  display: block;
}
.ls-redback .legacy-box .box-quote {
  font-family: 'Crimson Text', serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 16px;
}
.ls-redback .legacy-box p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 16px;
}
.ls-redback .legacy-box .btn { margin-top: 4px; }
.ls-redback .series-section {
  position: relative;
  background: url(../img/tbd/redback-100cg-bg-2.webp) center center / cover no-repeat;
  padding: 72px 0;
}
.ls-redback .series-inner {
  position: relative;
  z-index: 1;
}
.ls-redback .series-header {
  text-align: center;
  margin-bottom: 48px;
}
.ls-redback .series-header .eyebrow { color: var(--red-bright); }
.ls-redback .series-header h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--white);
}
.ls-redback .series-section .coin-card-eyebrow { color: var(--red-accent); }
@media (max-width: 1024px) {
  .ls-redback .hero-inner, .ls-redback .detail-grid, .ls-redback .buy-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-redback .hero-bills { display: none; }
  .ls-redback .hero-bill-mobile { display: none; }
  .ls-redback .coin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ls-redback .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .ls-redback .hero-btns .btn-outline-light {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
  }
  .ls-redback .hero-spec-item { padding: 12px 18px 12px 0; }
  .ls-redback .hero-spec-item:not(:first-child) { padding-left: 18px; }
  .ls-redback .hero-spec-value { font-size: 18px; }
  .ls-redback .coin-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════════════
   LS-COLLECTION  (2026-collection.html)
   ════════════════════════════════════════════════ */
.ls-collection .coin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ls-collection .coin-card {
  background: var(--white);
  border: 1px solid #AAA9A9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ls-collection .coin-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.ls-collection .coin-card-img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}
.ls-collection .coin-card-body {
  padding: 20px 0 0;
  flex: 1;
  border-top: 1px solid #8B6914;
  margin-top: 22px;
}
.ls-collection .coin-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.ls-collection .coin-card-btn { padding: 16px 0 0; }
.ls-collection .coin-card-btn .btn {
  width: 100%;
  border-radius: 8px;
}
.ls-collection .buy-section {
  background: var(--off-white);
  padding: 48px 0 72px;
}
.ls-collection .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-collection .buy-card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-collection .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px,3vw,44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-collection .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-collection .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-collection .hero {
  position: relative;
  min-height: clamp(480px, 42vw, 620px);
  display: flex;
  align-items: center;
  background: url(../img/tbd/about-the-collection-bg-2.webp) center 30% / cover no-repeat;
}
.ls-collection .hero-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}
.ls-collection .hero-text .eyebrow { color: var(--gold); }
.ls-collection .hero-text h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-wrap: pretty;
}
.ls-collection .hero-text p {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #D3D3D3;
  line-height: 1.45;
  margin-bottom: 32px;
  max-width: 540px;
}
.ls-collection .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-collection .hero-coins img {
  width: 100%;
  display: block;
}
.ls-collection .about-coins {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-collection .about-coins-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-collection .about-coins-left h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}
.ls-collection .about-coins-left h2 .gold {
  font-style: normal;
  color: var(--gold-dark);
}
.ls-collection .about-coins-left p { margin-bottom: 16px; }
.ls-collection .about-coins-left h3 {
  font-family: 'Crimson Text', serif;
  font-size: 25px;
  font-weight: 600;
  margin: 24px 0 12px;
}
.ls-collection .editions-box { padding: 0; }
.ls-collection .editions-box .editions-title {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: block;
}
.ls-collection .editions-box .editions-intro {
  font-size: 19px;
  margin-bottom: 0;
}
.ls-collection .editions-divider {
  border: none;
  border-top: 1px solid rgba(139,105,20,0.3);
  margin: 20px 0;
}
.ls-collection .editions-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}
.ls-collection .edition-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-top: 3px;
  display: block;
}
.ls-collection .editions-box .edition-desc {
  font-size: 19px;
  margin-bottom: 0;
}
.ls-collection .editions-box .editions-closing {
  font-size: 19px;
  margin-bottom: 20px;
}
.ls-collection .editions-box .btn { margin-top: 4px; }
.ls-collection .collection-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-collection .collection-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.ls-collection .collection-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}
.ls-collection .collection-text h2 .gold {
  font-style: normal;
  color: var(--gold-dark);
}
.ls-collection .collection-text p { margin-bottom: 16px; }
.ls-collection .collection-text .btn { margin-top: 12px; }
.ls-collection .collection-img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.ls-collection .designer-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-collection .designer-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
}
.ls-collection .designer-img { overflow: hidden; }
.ls-collection .designer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-collection .designer-text {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-collection .designer-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  margin-bottom: 6px;
}
.ls-collection .designer-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}
.ls-collection .designer-text p { margin-bottom: 14px; }
.ls-collection .designer-text a.learn-more {
  font-family: 'Archivo', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 8px;
  transition: color 0.2s;
}
.ls-collection .offerings-section {
  position: relative;
  background: url(../img/tbd/about-the-collection-bg.webp) center center / cover no-repeat;
  padding: 72px 0;
}
.ls-collection .offerings-inner {
  position: relative;
  z-index: 1;
}
.ls-collection .offerings-header {
  text-align: center;
  margin-bottom: 48px;
}
.ls-collection .offerings-header h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.ls-collection .offerings-header p {
  font-family: 'Crimson Text', serif;
  font-size: 24px;
  line-height: 1.45;
  color: #EDEBE8;
  max-width: 90%;
  margin: 0 auto;
}
.ls-collection .where-to-buy h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  margin-bottom: 10px;
}
.ls-collection .retailer-logo {
  margin-bottom: 20px;
  line-height: 1;
}
.ls-collection .outlets-text {
  margin-bottom: 16px;
  font-size: 16px;
  color: #555;
}
@media (max-width: 1024px) {
  .ls-collection .hero-inner, .ls-collection .about-coins-grid, .ls-collection .collection-grid, .ls-collection .designer-card, .ls-collection .buy-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-collection .editions-row { grid-template-columns: 120px 1fr; }
  .ls-collection .coin-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ls-collection .hero-coins { display: none; }
  .ls-collection .hero-text p { max-width: 100%; }
  .ls-collection .hero-btns { flex-direction: column; }
  .ls-collection .coin-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .ls-collection .buy-card { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   LS-COLLECTION-2025  (2025-collection.html)
   ════════════════════════════════════════════════ */
.ls-collection-2025 .hero {
  position: relative;
  min-height: clamp(400px, 38vw, 560px);
  display: flex;
  align-items: flex-end;
  background: url("../img/tbd/about-the-collection-2025-bg.webp") center center / cover no-repeat;
  padding-bottom: 64px;
}
.ls-collection-2025 .hero .eyebrow { color: var(--gold); }
.ls-collection-2025 .hero h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: 20px;
}
.ls-collection-2025 .hero p {
  font-family: 'Crimson Text', serif;
  font-size: 25px;
  color: #D3D3D3;
  line-height: 1.35;
  margin-bottom: 32px;
  max-width: 720px;
}
.ls-collection-2025 .about-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-collection-2025 .about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-collection-2025 .about-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ls-collection-2025 .about-lead .highlight { color: var(--gold-dark); }
.ls-collection-2025 .about-left p {
  margin-bottom: 18px;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
.ls-collection-2025 .about-left p:last-child { margin-bottom: 0; }
.ls-collection-2025 .about-quote {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.ls-collection-2025 .about-quote p.quote-text {
  font-family: 'Crimson Text', serif;
  font-style: normal;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
}
.ls-collection-2025 .about-quote p.quote-text .quote-gold { color: var(--gold-dark); }
.ls-collection-2025 .depository-section {
  background: #F9F7F6;
  padding: 0 0 72px;
}
.ls-collection-2025 .depository-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}
.ls-collection-2025 .depository-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.ls-collection-2025 .depository-text .eyebrow-section {
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: normal;
  letter-spacing: 0.12em;
}
.ls-collection-2025 .depository-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.ls-collection-2025 .depository-text p {
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
.ls-collection-2025 .depository-text .btn { margin-top: 8px; }
.ls-collection-2025 .design-section {
  background: #F9F7F6;
  padding: 0 0 72px;
}
.ls-collection-2025 .design-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 40px;
  max-width: 820px;
}
.ls-collection-2025 .design-lead .highlight { color: var(--gold-dark); }
.ls-collection-2025 .design-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: center;
}
.ls-collection-2025 .design-left .eyebrow-section { margin-bottom: 10px; }
.ls-collection-2025 .design-left h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 28px;
}
.ls-collection-2025 .design-left p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ls-collection-2025 .design-right img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.2));
}
.ls-collection-2025 .legacy-section {
  background: #F9F7F6;
  padding: 0 0 72px;
}
.ls-collection-2025 .legacy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: stretch;
}
.ls-collection-2025 .legacy-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-collection-2025 .legacy-text .legacy-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 20px;
}
.ls-collection-2025 .legacy-text .legacy-lead .highlight { color: var(--gold-dark); }
.ls-collection-2025 .legacy-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ls-collection-2025 .legacy-text p:last-child { margin-bottom: 0; }
.ls-collection-2025 .legacy-img {
  overflow: hidden;
  position: relative;
}
.ls-collection-2025 .legacy-img img {
  position: absolute;
  height: 140%;
  width: auto;
  max-width: none;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  display: block;
}
.ls-collection-2025 .buy-section {
  background: #F9F7F6;
  padding: 0 0 72px;
}
.ls-collection-2025 .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-collection-2025 .buy-card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-collection-2025 .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px,3vw,44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-collection-2025 .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-collection-2025 .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .ls-collection-2025 .about-grid, .ls-collection-2025 .depository-grid, .ls-collection-2025 .design-grid, .ls-collection-2025 .buy-card, .ls-collection-2025 .legacy-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-collection-2025 .about-quote { height: auto; }
  .ls-collection-2025 .legacy-img { min-height: 280px; }
}
@media (max-width: 640px) {
  .ls-collection-2025 .buy-card-text, .ls-collection-2025 .legacy-text { padding: 32px 24px; }
  .ls-collection-2025 .legacy-img img { top: 70%; }
  .ls-collection-2025 .hero {
    padding-top: 56px;
    padding-bottom: 56px;
    min-height: unset;
  }
}

/* ════════════════════════════════════════════════
   LS-REDBACK-ABOUT  (modern-redback-gold-bills.html)
   ════════════════════════════════════════════════ */
.ls-redback-about .coin-grid-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-redback-about .coin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-redback-about .coin-card {
  background: var(--white);
  border: 1px solid #AAA9A9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ls-redback-about .coin-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AD400C;
  margin-bottom: 12px;
  display: block;
}
.ls-redback-about .coin-card-img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1.6;
  object-fit: contain;
  display: block;
}
.ls-redback-about .coin-card-body {
  padding: 20px 0 0;
  flex: 1;
  border-top: 1px solid #8B6914;
  margin-top: 22px;
}
.ls-redback-about .coin-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}
.ls-redback-about .coin-card-btn { padding: 16px 0 0; }
.ls-redback-about .coin-card-btn .btn {
  width: 100%;
  border-radius: 8px;
}
.ls-redback-about .buy-section {
  background: var(--off-white);
  padding: 48px 0 72px;
}
.ls-redback-about .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-redback-about .buy-card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-redback-about .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px,3vw,44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-redback-about .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-redback-about .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-redback-about .hero {
  position: relative;
  min-height: clamp(480px, 42vw, 620px);
  display: flex;
  align-items: center;
  background: url(../img/tbd/about-the-modern-redback-bg-2.webp) center 40% / cover no-repeat;
}
.ls-redback-about .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}
.ls-redback-about .hero-text .eyebrow { color: var(--gold); }
.ls-redback-about .hero-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 30px;
  color: #D3D3D3;
  line-height: 1.35;
  margin-bottom: 5px;
  display: block;
}
.ls-redback-about .hero-text h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.ls-redback-about .hero-text p {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #D3D3D3;
  line-height: 1.45;
  margin-bottom: 32px;
  max-width: 540px;
}
.ls-redback-about .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ls-redback-about .hero-bills img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}
.ls-redback-about .about-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-redback-about .about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-redback-about .about-left h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 18px;
}
.ls-redback-about .about-left h3 {
  font-family: 'Crimson Text', serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 12px;
  line-height: 1.2;
}
.ls-redback-about .about-left p { margin-bottom: 22px; }
.ls-redback-about .about-left .section-break { margin-top: 8px; }
.ls-redback-about .about-quote {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.ls-redback-about .about-quote p.quote-text {
  font-family: 'Crimson Text', serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
.ls-redback-about .about-quote p.quote-text .quote-gold { color: var(--gold-dark); }
.ls-redback-about .imagery-section {
  background: #F9F7F6;
  padding: 72px 0;
}
.ls-redback-about .imagery-lead {
  margin-bottom: 40px;
  max-width: 65%;
}
.ls-redback-about .imagery-lead h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.ls-redback-about .imagery-lead p { color: #555; }
.ls-redback-about .bills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ls-redback-about .bills-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.ls-redback-about .offerings-section {
  position: relative;
  background: url(../img/tbd/about-the-modern-redback-bg.webp) center center / cover no-repeat;
  padding: 96px 0;
}
.ls-redback-about .offerings-inner {
  position: relative;
  z-index: 1;
}
.ls-redback-about .offerings-header {
  text-align: center;
  margin-bottom: 48px;
}
.ls-redback-about .offerings-header .eyebrow { color: var(--gold); }
.ls-redback-about .offerings-header h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}
.ls-redback-about .offerings-section .coin-grid { gap: 24px; }
.ls-redback-about .offerings-section .coin-card { background: rgba(255,255,255,0.97); }
@media (max-width: 1024px) {
  .ls-redback-about .hero-inner, .ls-redback-about .about-grid, .ls-redback-about .buy-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-redback-about .hero-bills { display: none; }
  .ls-redback-about .bills-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-redback-about .coin-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-redback-about .imagery-lead { max-width: 100%; }
}
@media (max-width: 640px) {
  .ls-redback-about .hero-text p { max-width: 100%; }
  .ls-redback-about .hero-subtitle { font-size: 23px; }
  .ls-redback-about .hero-text h1 { font-size: 49px; }
  .ls-redback-about .hero-btns { flex-direction: column; }
  .ls-redback-about .coin-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .ls-redback-about .bills-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════════════
   LS-DESIGNER  (designer-joel-iskowitz.html)
   ════════════════════════════════════════════════ */
.ls-designer .coin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ls-designer .coin-card {
  background: var(--white);
  border: 1px solid #AAA9A9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.ls-designer .coin-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.ls-designer .coin-card-img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}
.ls-designer .coin-card-body {
  padding: 20px 0 0;
  flex: 1;
  border-top: 1px solid #8B6914;
  margin-top: 22px;
}
.ls-designer .coin-card-body h3 {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}
.ls-designer .coin-card-btn { padding: 16px 0 0; }
.ls-designer .coin-card-btn .btn {
  width: 100%;
  border-radius: 8px;
}
.ls-designer .hero {
  position: relative;
  overflow: visible;
  z-index: 2;
  min-height: clamp(280px, 24vw, 340px);
  background: url("../img/tbd/meet-the-designer-bg.webp") center center / cover no-repeat;
  padding-top: 56px;
}
.ls-designer .hero-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: flex-start;
}
.ls-designer .hero-text { padding-bottom: 56px; }
.ls-designer .hero-text h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 18px;
}
.ls-designer .hero-dates {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(211,211,211,0.7);
  margin-bottom: 20px;
  display: block;
}
.ls-designer .hero-text p {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #D3D3D3;
  line-height: 1.45;
  max-width: 520px;
}
.ls-designer .hero-text p .highlight { color: var(--gold); }
.ls-designer .hero-photo {
  position: relative;
  z-index: 10;
  margin-bottom: -220px;
}
.ls-designer .hero-photo img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.ls-designer .bio-section {
  position: relative;
  z-index: 1;
  background: #F9F7F6;
  padding: 56px 0 72px;
}
.ls-designer .bio-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: start;
}
.ls-designer .bio-lead {
  font-family: 'Crimson Text', serif;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 28px;
}
.ls-designer .bio-lead .highlight { color: var(--gold-dark); }
.ls-designer .bio-left p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
.ls-designer .bio-left p:last-child { margin-bottom: 0; }
.ls-designer .bio-right { padding-top: 240px; }
.ls-designer .bio-pullquote {
  font-family: 'Crimson Text', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--gold-dark);
}
.ls-designer .series-section {
  position: relative;
  background: url("../img/tbd/about-the-modern-redback-bg.webp") center center / cover no-repeat;
  padding: 80px 0 96px;
}
.ls-designer .series-inner {
  position: relative;
  z-index: 1;
}
.ls-designer .series-header {
  text-align: center;
  margin-bottom: 48px;
}
.ls-designer .series-header .eyebrow-section {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.ls-designer .series-header h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.ls-designer .series-header p {
  font-family: 'Crimson Text', serif;
  font-size: 20px;
  color: #D3D3D3;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .ls-designer .hero-inner { grid-template-columns: 1fr; }
  .ls-designer .hero-photo {
    margin-bottom: 0;
    order: -1;
    max-width: 320px;
  }
  .ls-designer .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ls-designer .bio-right { padding-top: 0; }
  .ls-designer .coin-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .ls-designer .coin-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .ls-designer .hero-photo { max-width: 240px; }
}

/* ════════════════════════════════════════════════
   HOMEPAGE (home-texas.html)
   Bespoke hero + product-intro band. tx- prefixed so it never collides with the
   CMS-driven sections below it on the same page.
   ════════════════════════════════════════════════ */
.tx-hero { position: relative; min-height: clamp(340px, 47vw, 620px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tx-hero-bg { position: absolute; inset: 0; background: url(../img/tbd/home-texas-bg.webp) center center / cover no-repeat; }
.tx-hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 60px 32px; }
.tx-hero-title { font-family: 'Crimson Text', serif; font-size: clamp(40px, 4.5vw, 66px); font-weight: 400; color: var(--white); line-height: 1.04; margin-bottom: 20px; text-wrap: pretty; }
.tx-hero-sub { font-family: 'Crimson Text', serif; font-size: clamp(18px, 2vw, 26px); color: #D3D3D3; margin-bottom: 36px; line-height: 1.3; }
.tx-hero-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.tx-products { background: var(--light-gray); padding: clamp(72px, 8vw, 112px) 0; }
.tx-products-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tx-products-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.tx-products-title { font-family: 'Crimson Text', serif; font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; color: var(--black); line-height: 1.1; margin-bottom: 16px; }
.tx-products-desc { font-family: 'Crimson Text', serif; font-weight: 400; font-size: 21px; color: var(--black); line-height: 1.25; margin-bottom: 36px; }
.tx-products-imagery { display: flex; align-items: center; justify-content: center; }
.tx-products-img { width: 100%; max-width: 560px; height: auto; object-fit: contain; display: block; }
@media (max-width: 1024px) {
  .tx-products-inner { grid-template-columns: 1fr; gap: 40px; }
  .tx-products-img { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .tx-hero-content { padding: 60px 20px; }
  .tx-hero-actions { flex-direction: column; gap: 14px; }
}

/* ════════════════════════════════════════════════
   LS-WHERE-TO-BUY  (where-to-buy.html)
   ════════════════════════════════════════════════ */
.ls-where-to-buy .hero {
  position: relative;
  min-height: clamp(220px, 20vw, 300px);
  display: flex;
  align-items: flex-end;
  background: url("../img/tbd/where-to-buy-bg.webp") center 40% / cover no-repeat;
  padding-bottom: 48px;
}
.ls-where-to-buy .hero .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}
.ls-where-to-buy .hero h1 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
}
.ls-where-to-buy .intro-section {
  background: #F9F7F6;
  padding: 56px 0 48px;
}
.ls-where-to-buy .intro-section p {
  max-width: 100%;
  color: #444;
}
.ls-where-to-buy .where-to-buy {
  background: #F9F7F6;
  padding: 0 0 56px;
}
.ls-where-to-buy .additional-outlets {
  background: #F9F7F6;
  padding: 0 0 56px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ls-where-to-buy .outlets-text {
  font-size: 17px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}
.ls-where-to-buy .outlets-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
}
.ls-where-to-buy .outlets-links span {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.ls-where-to-buy .outlets-links .sep {
  color: #AAA;
  margin: 0 12px;
  font-weight: 400;
}
.ls-where-to-buy .wholesale-section {
  background: #F9F7F6;
  padding: 0 0 72px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ls-where-to-buy .wholesale-section > .site-container { padding-top: 48px; }
.ls-where-to-buy .wholesale-section p { max-width: 820px; }
.ls-where-to-buy .wholesale-section a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ls-where-to-buy .buy-section {
  background: #F9F7F6;
  padding: 0 0 48px;
}
.ls-where-to-buy .buy-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7fr 5fr;
}
.ls-where-to-buy .buy-card-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-where-to-buy .buy-card-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px,3vw,44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ls-where-to-buy .buy-card-text .btn {
  margin-top: 28px;
  align-self: flex-start;
}
.ls-where-to-buy .buy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ls-where-to-buy .questions-section {
  background: #F9F7F6;
  padding: 0 0 72px;
}
.ls-where-to-buy .questions-card {
  background: var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
}
.ls-where-to-buy .questions-img { overflow: hidden; }
.ls-where-to-buy .questions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ls-where-to-buy .questions-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-where-to-buy .questions-text h2 {
  font-family: 'Crimson Text', serif;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}
.ls-where-to-buy .questions-text p {
  font-size: 19px;
  color: #444;
  margin-bottom: 28px;
  max-width: 480px;
}
.ls-where-to-buy .questions-text .btn { align-self: flex-start; }
@media (max-width: 1024px) {
  .ls-where-to-buy .buy-card, .ls-where-to-buy .questions-card { grid-template-columns: 1fr; }
  .ls-where-to-buy .questions-img { min-height: 260px; }
}
@media (max-width: 640px) {
  .ls-where-to-buy .buy-card-text, .ls-where-to-buy .questions-text { padding: 32px 24px; }
  .ls-where-to-buy .outlets-links { gap: 8px; }
}

/* ════════════════════════════════════════════════
   PAGE ACCENTS (replacing former inline styles)
   ════════════════════════════════════════════════ */
/* modern-redback-gold-bills: red-accent eyebrows (hero/imagery/offerings only;
   the where-to-buy + buy-card eyebrows stay the default gold-dark) */
.ls-redback-about .hero .eyebrow { color: var(--red-bright); }
.ls-redback-about .imagery-lead .eyebrow-section,
.ls-redback-about .offerings-header .eyebrow-section { color: var(--red-accent); }
/* 2026-collection: gold word in the hero headline */
.ls-collection h1 .gold { color: var(--gold); }
/* 2025-collection: spacing above the second "Reverse" label */
.ls-collection-2025 .reverse-label { margin-top: 28px; }
/* Shared-partial eyebrows must stay gold-dark even inside the red-accented
   redback pages (defined last so it wins over .ls-redback .eyebrow-section). */
.where-to-buy .eyebrow-section,
.additional-outlets .eyebrow-section { color: var(--gold-dark); }
