/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE — Black & Gold theme
   Used by: resources/views/home.blade.php (@push('styles'))
   Body: Arial  |  Headings: Jost

   Structure:
     A. Tokens & shared bits
     B. Sections 1-12 (same order as the blade file)
     C. Responsive — ALL media queries live at the bottom,
        grouped by breakpoint. Don't scatter them above.
   Breakpoints are documented in assets/css/responsive.css.
═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   A. TOKENS & SHARED
══════════════════════════════════════════ */
:root {
  --gold: #C9920A;
  --gold-h: #A87808;
  --gold-pale: #FDF3DC;
  --gold-glow: rgba(201,146,10,0.18);
  --dark: #0F1012;
  --dark2: #181A1C;
  --dark3: #232527;
  --offwhite: #F8F7F5;
  --border: #E8E7E4;
}

.home-section    { padding: var(--sec-y) 0; }
.home-section-sm { padding: var(--sec-y-sm) 0; }

.sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6608; /* darker gold — 5:1 contrast on white for WCAG AA */
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.sec-title {
  /* !important because the global h2 rule also uses it */
  font-size: clamp(1.5rem, 3.4vw, 2.4rem) !important;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Jost', sans-serif;
}
.sec-title.light { color: #fff; }
.sec-sub {
  font-size: 15px;
  color: #595959;
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold-h); /* #A87808 — 5:1 with white text, WCAG AA */
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px; border: none;
  text-decoration: none !important;
  transition: all 0.22s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(201,146,10,0.3);
  cursor: pointer;
}
.btn-gold:hover {
  background: #8a6608;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,10,0.4);
}

.btn-dark-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none !important;
  transition: all 0.22s;
  letter-spacing: 0.3px;
}
.btn-dark-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(201,146,10,0.05);
}

.btn-dark-solid {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dark);
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px; border: none;
  text-decoration: none !important;
  transition: all 0.22s;
}
.btn-dark-solid:hover {
  background: var(--dark3);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   1. HERO
══════════════════════════════════════════ */
.home-hero {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 60%, var(--gold-glow) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 15%, rgba(201,146,10,0.09) 0%, transparent 60%);
  padding: var(--sec-y) 0;
  position: relative;
  overflow: hidden;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,146,10,0.15);
  border: 1px solid rgba(201,146,10,0.35);
  color: #F0A820;
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.3px;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-headline .gold-word { color: var(--gold); position: relative; }

.hero-subheadline {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-family: Arial, sans-serif;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 15px; border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.hero-chip i { color: var(--gold); font-size: 11px; }
.hero-chip:hover {
  background: rgba(201,146,10,0.12);
  border-color: rgba(201,146,10,0.4);
  color: #F0A820 !important;
}

/* Hero image grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 480px;
}
.hero-grid-main {
  grid-row: span 2;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.hero-grid-thumb {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.hero-grid-main img,
.hero-grid-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.hero-grid-main:hover img,
.hero-grid-thumb:hover img { transform: scale(1.04); }
.hero-grid-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 24px 14px 12px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.hero-float-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 800;
  padding: 5px 11px; border-radius: 50px;
  letter-spacing: 0.5px; text-transform: uppercase;
}

/* ══════════════════════════════════════════
   2. CATEGORY TILES
══════════════════════════════════════════ */
.cat-tiles-section {
  background: var(--offwhite);
  padding: var(--sec-y-sm) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cat-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  aspect-ratio: 3/4;
  background: var(--dark2);
}
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
  opacity: 0.82;
}
.cat-tile:hover img { transform: scale(1.06); opacity: 0.7; }
.cat-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}
.cat-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
}
.cat-tile-label {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 800;
  color: #fff; letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.cat-tile-arrow {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.cat-tile:hover .cat-tile-arrow { transform: translate(2px, -2px); }

/* ══════════════════════════════════════════
   3. TRUST BAR
══════════════════════════════════════════ */
.trust-bar { background: var(--dark2); padding: 28px 0; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 0;
}
.trust-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,146,10,0.15);
  border: 1px solid rgba(201,146,10,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 18px;
  flex-shrink: 0;
}
.trust-title {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: 0.2px;
}
.trust-sub {
  font-family: Arial, sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.78);
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════
   4. DTF HUB
══════════════════════════════════════════ */
.dtf-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  text-decoration: none !important; display: block;
  height: 100%;
  transition: all 0.25s;
}
.dtf-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201,146,10,0.14);
  transform: translateY(-4px);
}
.dtf-card-img {
  height: 178px;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dtf-card-img img {
  max-height: 158px;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.dtf-card:hover .dtf-card-img img { transform: scale(1.06); }
.dtf-card-body { padding: 18px 20px 22px; }
.dtf-card-badge {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 9px; letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge-b1 { background: var(--dark); color: var(--gold); }
.badge-b2 { background: #EFF6FF; color: #1D4ED8; }
.badge-b3 { background: #FDF3DC; color: #8a6608; }
.dtf-card-title {
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--dark); margin-bottom: 5px;
}
.dtf-card-sub {
  font-family: Arial, sans-serif;
  font-size: 13px; color: #595959; line-height: 1.55;
  margin-bottom: 14px;
}
.dtf-card-cta {
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #8a6608;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.dtf-card:hover .dtf-card-cta { gap: 9px; }

/* ══════════════════════════════════════════
   5. FEATURES ROW
══════════════════════════════════════════ */
.features-row { background: var(--dark); padding: var(--sec-y-sm) 0; }
.feature-block { text-align: center; padding: 10px 16px; }
.feature-icon-wrap {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(201,146,10,0.12);
  border: 1px solid rgba(201,146,10,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin: 0 auto 14px;
}
.feature-block-title {
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 800; color: #fff;
  margin-bottom: 4px;
}
.feature-block-sub {
  font-family: Arial, sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   6. BLANKS BANNER
══════════════════════════════════════════ */
.blanks-banner { position: relative; border-radius: 14px; overflow: hidden; }
.blanks-banner img {
  width: 100%; height: 400px; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.blanks-banner:hover img { transform: scale(1.02); }
.blanks-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blanks-banner-content { text-align: center; padding: 0 16px; }
.blanks-banner-eyebrow {
  font-family: Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.blanks-banner-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.8rem, 5vw, 4rem) !important;
  font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ══════════════════════════════════════════
   7. BEST SELLERS (markup currently disabled)
══════════════════════════════════════════ */
.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
  transition: all 0.22s;
}
.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201,146,10,0.12);
  transform: translateY(-3px);
}
.product-card-img-wrap { overflow: hidden; background: var(--offwhite); }
.product-card-img {
  width: 100%; height: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-body {
  padding: 14px 16px 18px; flex: 1;
  display: flex; flex-direction: column;
}
.product-card-name {
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
  line-height: 1.4; text-decoration: none !important;
  display: block;
}
.product-card-name:hover { color: var(--gold); }
.product-card-price {
  font-family: 'Jost', sans-serif;
  font-size: 16px; font-weight: 900;
  color: var(--gold); margin-top: auto;
}

/* ══════════════════════════════════════════
   8. PROMO BANNER (markup currently disabled)
══════════════════════════════════════════ */
.promo-banner {
  background: var(--dark2);
  border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.promo-banner-content {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.promo-banner-content::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.07);
}
.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 4px;
  margin-bottom: 18px;
}
.promo-banner-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: 12px;
}
.promo-banner-sub {
  font-family: Arial, sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 28px;
}
.promo-banner-img { position: relative; overflow: hidden; }
.promo-banner-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════════
   9. HOW IT WORKS
══════════════════════════════════════════ */
.how-wrap { position: relative; }
.how-connector {
  position: absolute; top: 30px; left: calc(50% + 60px);
  right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
}
.how-step { text-align: center; padding: 0 20px; }
.how-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 6px rgba(201,146,10,0.08);
}
.how-title {
  font-family: 'Jost', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--dark); margin-bottom: 8px;
}
.how-sub {
  font-family: Arial, sans-serif;
  font-size: 13.5px; color: #595959;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   10. DESIGN STUDIO
══════════════════════════════════════════ */
.studio-section { background: var(--dark); overflow: hidden; }
/* This .row is a direct child of the section (no .container), so Bootstrap's
   negative gutter margins would push it ~12px past the viewport. Zero them. */
.studio-section > .row { --bs-gutter-x: 0; margin-left: 0; margin-right: 0; }
.studio-content { padding: var(--sec-y) 0 var(--sec-y) 8px; }
.studio-checklist { list-style: none; padding: 0; margin: 20px 0 32px; }
.studio-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 14.5px; color: rgba(255,255,255,0.72);
  line-height: 1.55; margin-bottom: 12px;
}
.studio-checklist li .chk {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(201,146,10,0.2);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 9px;
  flex-shrink: 0; margin-top: 2px;
}
.studio-img-col {
  background: linear-gradient(135deg, #1e1400 0%, #2a1e00 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.studio-img-col::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,146,10,0.12) 0%, transparent 70%);
}
.studio-img {
  max-width: 100%; max-height: 380px;
  object-fit: contain; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   11. MEMBERSHIP TIERS
══════════════════════════════════════════ */
.tier-card { border-radius: 14px; overflow: hidden; height: 100%; }
.tier-card-inner {
  padding: 32px 26px;
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}
.tier-card.gold-tier .tier-card-inner {
  background: linear-gradient(160deg, #1C1400 0%, #2E2000 100%);
  border: 1.5px solid rgba(201,146,10,0.35);
}
.tier-card.dark-tier .tier-card-inner {
  background: var(--dark2);
  border: 1.5px solid rgba(255,255,255,0.07);
}
.tier-icon {
  font-size: 28px; margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(201,146,10,0.4));
}
.tier-name {
  font-family: 'Jost', sans-serif;
  font-size: 18px; font-weight: 900;
  color: #fff; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 2px;
}
.tier-plan-label {
  font-family: Arial, sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.78);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.tier-divider {
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px; margin: 0 auto 20px;
}
.tier-price {
  font-family: 'Jost', sans-serif;
  font-size: 38px; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.tier-price .tier-cents { font-size: 1.1rem; }
.tier-period {
  font-family: Arial, sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.78);
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   12. CTA SECTION
══════════════════════════════════════════ */
.cta-section { background: var(--gold); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.cta-inner { position: relative; z-index: 1; text-align: center; padding: var(--sec-y) 0; }
.cta-head {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 14px;
}
.cta-head-icon { font-size: 2rem; color: rgba(15,16,18,0.4); }
.cta-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem) !important;
  font-weight: 900; color: var(--dark);
  margin-bottom: 8px;
}
.cta-sub {
  font-family: Arial, sans-serif;
  font-size: 16px; color: rgba(15,16,18,0.7);
  margin-bottom: 28px;
}
.cta-phone {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900;
  color: var(--dark); margin-top: 14px;
  letter-spacing: -0.5px;
}
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--dark); color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 36px; border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-cta-dark:hover {
  background: var(--dark3);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}


/* ═══════════════════════════════════════════════════════════════
   C. RESPONSIVE
   Everything below is layout-only. Colors/typography scale via the
   clamp() values above, so these blocks stay short.
═══════════════════════════════════════════════════════════════ */

/* ── ≤ 1199px — iPad landscape / small laptop ─────────────── */
@media (max-width: 1199.98px) {
  .hero-grid { height: 420px; }
  .promo-banner-content { padding: 44px 36px; }
}

/* ── ≤ 991px — iPad portrait (hero + studio stack here) ───── */
@media (max-width: 991.98px) {
  /* Once the two-column sections stack, everything reads better centred. */
  .home-hero { text-align: center; }
  .hero-subheadline { max-width: 100%; margin: 0 auto 26px; }
  .hero-cta-row { justify-content: center; margin-bottom: 26px; }
  .hero-chips { justify-content: center; }
  .hero-grid { height: 320px; }

  /* Trust bar: 2 x 2 grid, vertical rules removed */
  .trust-divider { display: none; }

  /* Studio: text block above image, both full width and centred.
     The checklist stays left-aligned inside a centred block — centred
     bullet text is hard to read. */
  .studio-content { padding: var(--sec-y) 0; text-align: center; }
  .studio-checklist { display: inline-block; text-align: left; }
  .studio-img-col { padding: 40px 24px; }
  .studio-img { max-height: 300px; }

  /* Banners */
  .blanks-banner img { height: 320px; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner-content::after { display: none; }
  .promo-banner-img { min-height: 240px; }

  .how-step { padding: 0 8px; }
}

/* ── ≤ 767px — large phone / small tablet ──────────────────── */
@media (max-width: 767.98px) {
  .hero-grid { height: 260px; }
  .hero-chip { font-size: 12px; padding: 6px 13px; }

  .dtf-card-img { height: 150px; }
  .dtf-card-img img { max-height: 132px; }
  .dtf-card-body { padding: 16px 16px 18px; }

  .feature-block { padding: 8px 4px; }
  .feature-icon-wrap { width: 52px; height: 52px; font-size: 19px; margin-bottom: 10px; }

  .promo-banner-content { padding: 32px 24px; }
  .blanks-banner img { height: 280px; }

  /* Cards read centred once they're full-width */
  .dtf-card-body { text-align: center; }
  .dtf-card-cta { justify-content: center; }

  .tier-card-inner { padding: 24px 10px; }
  .tier-price { font-size: 28px; }
  .tier-name { font-size: 15px; letter-spacing: 0.4px; }
}

/* ── ≤ 575px — phones ──────────────────────────────────────── */
@media (max-width: 575.98px) {
  /* Hero: image grid collapses to a single 3-up strip so the
     visuals survive on mobile instead of being hidden. */
  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    height: 140px;
    gap: 8px;
  }
  .hero-grid-main { grid-row: auto; }
  /* One line only — "Print on Demand" used to wrap and swallow the tile */
  .hero-grid-label {
    font-size: 8.5px; letter-spacing: 0.2px;
    padding: 16px 6px 7px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .hero-float-badge { display: none; }

  .hero-subheadline { font-size: 15px; margin-bottom: 22px; }
  /* Full-width stacked CTAs — easier tap targets */
  .hero-cta-row { flex-direction: column; align-items: stretch; margin-bottom: 22px; }
  .hero-cta-row > a { width: 100%; justify-content: center; }

  .cat-tile-body { padding: 14px 11px; }
  .cat-tile-label { font-size: 11px; letter-spacing: 0.5px; }
  .cat-tile-arrow { width: 24px; height: 24px; font-size: 10px; }

  /* Trust items stack icon-over-text so the 2 x 2 grid stays symmetrical */
  .trust-item { flex-direction: column; text-align: center; gap: 8px; }
  .trust-icon-box { width: 38px; height: 38px; font-size: 15px; }
  .trust-title { font-size: 12px; }
  .trust-sub { font-size: 10.5px; }

  .dtf-card-img { height: 170px; }
  .dtf-card-img img { max-height: 150px; }

  .blanks-banner img { height: 240px; }
  .blanks-banner-title { margin-bottom: 16px; }

  .how-step { padding: 0; }
  .how-num { width: 48px; height: 48px; font-size: 19px; margin-bottom: 14px; }

  .studio-img-col { padding: 32px 20px; }
  .studio-img { max-height: 220px; }
  .studio-checklist li { font-size: 13.5px; }

  /* Three tiers stay on ONE row — sized down to fit rather than wrapping
     the third card onto a lonely second line. */
  .tier-card-inner { padding: 16px 5px; }
  .tier-icon { font-size: 19px; margin-bottom: 7px; }
  .tier-name { font-size: 11px; letter-spacing: 0; }
  .tier-plan-label { font-size: 8.5px; letter-spacing: 0.5px; margin-bottom: 9px; }
  .tier-divider { width: 24px; margin-bottom: 9px; }
  .tier-price { font-size: 19px; }
  .tier-price .tier-cents { font-size: 0.62rem; }
  .tier-period { font-size: 9.5px; margin-top: 2px; }

  /* CTA: drop the flanking icons, they crowd the headline */
  .cta-head { gap: 10px; }
  .cta-head-icon { display: none; }
  .cta-sub { font-size: 14px; margin-bottom: 22px; }
  .btn-cta-dark { padding: 13px 28px; font-size: 14px; }
}
