/* Double TV Stand, LLC  |  site.css */

:root {
  --cream: #faf7f2;
  --paper: #ffffff;
  --sand: #f1eae0;
  --ink: #1f1a17;
  --ink-2: #4a3f38;
  --muted: #8b7d72;
  --line: #e6dfd4;
  --cherry: #4b9cd3;        /* Carolina blue: buttons, dots, chips   */
  --cherry-dark: #2f7db3;   /* hover                                 */
  --accent-text: #2f7db3;   /* links, eyebrows, small accent text     */
  --walnut: #13294b;        /* navy band (retail section)            */
  --gold: #4b9cd3;          /* step numbers, stars                   */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(31, 26, 23, 0.10);
  --shadow-sm: 0 4px 14px rgba(31, 26, 23, 0.08);
  --max: 1120px;
  --gutter: 16px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-text); text-decoration: none; }
a:hover { color: var(--cherry-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.15rem; color: var(--ink-2); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 64px 0; }
.section.alt { background: var(--sand); }
.section.paper { background: var(--paper); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cherry); color: #fff; }
.btn-primary:hover { background: var(--cherry-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--sand); color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 40px; height: 40px; flex: none; border-radius: 8px; }
.nav { display: none; align-items: center; gap: 28px; }
.nav a { color: var(--ink-2); font-weight: 500; font-size: 0.98rem; }
.nav a:hover, .nav a.active { color: var(--accent-text); }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 10px 0 18px;
}
.mobile-nav a { display: block; padding: 12px var(--gutter); font-weight: 500; color: var(--ink); font-size: 1.05rem; }
.mobile-nav .btn { margin: 10px var(--gutter) 0; display: flex; }
.site-header.open .mobile-nav { display: block; }
@media (min-width: 900px) {
  .nav, .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* Hero */
.hero { padding: 40px 0 56px; }
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy { order: 2; }
.hero-media { order: 1; position: relative; }
/* Hero renders at the photo true shape so nothing is cut off */
.hero-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: auto; object-fit: contain; height: auto; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,0.95); color: var(--ink);
  border-radius: 999px; padding: 8px 14px; font-size: 0.85rem; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.hero h1 { margin-bottom: 0.4em; }
.hero .lead { max-width: 520px; }
.price-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; margin: 18px 0 22px; }
.price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink); }
.price-note { color: var(--ink-2); font-size: 0.98rem; max-width: 420px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 599px) { .hero-actions .btn { flex: 1 1 100%; } }
@media (min-width: 900px) {
  .hero { padding: 64px 0 72px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
}

/* Benefit strip */
.benefits { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 26px 0; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit svg { width: 28px; height: 28px; flex: none; color: var(--accent-text); }
.benefit strong { display: block; font-size: 0.95rem; }
.benefit span { font-size: 0.86rem; color: var(--muted); line-height: 1.4; }
@media (min-width: 900px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* Video */
.video-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; aspect-ratio: 16 / 9; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption { margin-top: 12px; font-size: 0.92rem; color: var(--muted); }

/* How it works callouts */
.how-grid { display: grid; gap: 36px; align-items: center; margin-top: 48px; }
.callout-figure { position: relative; background: var(--paper); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.callout-figure .fig { position: relative; max-width: 420px; margin: 0 auto; }
.callout-figure img { width: 100%; }
.dot {
  position: absolute; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cherry); color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(122,59,34,0.18);
}
.callouts { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.callouts li { display: flex; gap: 14px; }
.callouts .num { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cherry); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.callouts strong { display: block; margin-bottom: 2px; }
.callouts p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }
@media (min-width: 900px) { .how-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.steps { display: grid; gap: 22px; margin-top: 48px; }
.step { background: var(--paper); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.step .step-n { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* Cards */
.card-grid { display: grid; gap: 22px; }
.card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
/* Cards keep a shared frame for alignment, but contain so no photo is cut off */
.card img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; object-position: center; background: var(--paper); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { margin-bottom: 6px; }
.card-body p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }
@media (min-width: 720px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

/* Options / compare */
.options-grid { display: grid; gap: 32px; align-items: start; }
.swatches { display: flex; gap: 18px; flex-wrap: wrap; }
.swatch { text-align: center; }
.swatch img { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.swatch span { display: block; margin-top: 8px; font-weight: 600; font-size: 0.95rem; }
.compare { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.97rem; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { background: var(--sand); font-weight: 700; }
.compare tr:last-child td { border-bottom: 0; }
.compare td:first-child { color: var(--muted); width: 34%; }
@media (min-width: 900px) { .options-grid { grid-template-columns: 1fr 1.3fr; gap: 56px; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.3s ease; }
.gallery a:hover img { transform: scale(1.03); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } .gallery a.tall { grid-row: span 2; } .gallery a.tall img { aspect-ratio: auto; height: 100%; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,15,12,0.92); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox button { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; font-size: 22px; cursor: pointer; }

/* Reviews */
.reviews-grid { display: grid; gap: 20px; }
.review { background: var(--paper); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.review p { margin: 0 0 12px; color: var(--ink-2); }
.review cite { font-style: normal; font-weight: 600; font-size: 0.92rem; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* Retail / Fitzgerald */
.retail { background: var(--walnut); color: #fff; }
.retail h2, .retail .eyebrow { color: #fff; }
.retail .eyebrow { color: var(--gold); }
.retail p { color: rgba(255,255,255,0.85); }
.retail-inner { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .retail-inner { grid-template-columns: 1.2fr 1fr; gap: 56px; } }

/* Founder teaser */
.founder { display: grid; gap: 28px; align-items: center; }
.founder img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.founder blockquote { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--ink); }
@media (min-width: 900px) { .founder { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 18px 52px 18px 20px; font-weight: 600; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent-text); }
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 20px 20px; color: var(--ink-2); font-size: 0.98rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* Contact band */
.contact-band { background: var(--paper); border-top: 1px solid var(--line); }
.contact-band .inner { display: grid; gap: 16px; align-items: center; padding: 48px 0; }
@media (min-width: 900px) { .contact-band .inner { grid-template-columns: 1fr auto; } }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.8); padding: 48px 0 28px; font-size: 0.93rem; }
.footer-grid { display: grid; gap: 28px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-brand { font-family: var(--font-display); color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.social { display: flex; gap: 14px; margin-top: 12px; }
.social a { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); align-items: center; justify-content: center; }
.social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

/* Sticky buy bar (phones) */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(110%); transition: transform 0.25s ease;
  box-shadow: 0 -6px 20px rgba(31,26,23,0.08);
}
.buybar.show { transform: translateY(0); }
.buybar .price { font-size: 1.3rem; }
.buybar small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.2; }
@media (min-width: 900px) { .buybar { display: none; } }
body.has-buybar { padding-bottom: 76px; }
@media (min-width: 900px) { body.has-buybar { padding-bottom: 0; } }

/* Page hero (inner pages) */
.page-hero { padding: 48px 0 24px; }
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero .lead { max-width: 640px; }

/* Purchase page */
.products { display: grid; gap: 22px; margin-top: 8px; }
.product { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; }
.product-media { position: relative; background: #fff; padding: 18px 18px 0; }
.product-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: contain; }
.chip { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 6px 12px 6px 6px; font-size: 0.82rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.chip img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; aspect-ratio: 1; }
.product-body { padding: 18px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { margin: 0; }
.product-body .sub { color: var(--muted); font-size: 0.92rem; margin: 0; }
.product-body .price { font-size: 1.6rem; }
.product-body .btn { margin-top: auto; width: 100%; }
.product-body .incl { font-size: 0.86rem; color: var(--muted); margin: 0; }
@media (min-width: 720px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .products { grid-template-columns: repeat(4, 1fr); } }

/* Two-up purchase cards: photos carry the layout, swatches carry the finish */
.products.two-up { max-width: 860px; }
@media (min-width: 720px) { .products.two-up { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .products.two-up { grid-template-columns: repeat(2, 1fr); } }
.finish-buys { margin-top: auto; padding-top: 4px; }
.finish-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.finish-btn { display: flex; align-items: center; gap: 10px; width: 100%; margin-bottom: 10px; padding-left: 8px; text-align: left; }
.finish-btn img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 2px rgba(255,255,255,0.65); }
.finish-btn span { flex: 1; }
.finish-note { font-size: 0.9rem; color: var(--muted); max-width: 560px; margin-top: 14px; }

.specs { display: grid; gap: 28px; }
.spec-card { background: var(--paper); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.spec-card h3 { margin-bottom: 12px; }
.spec-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 0.97rem; }
.spec-card dt { color: var(--muted); }
.spec-card dd { margin: 0; }
.notice { background: var(--sand); border-left: 4px solid var(--cherry); padding: 16px 18px; border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--ink-2); }
@media (min-width: 900px) { .specs { grid-template-columns: repeat(3, 1fr); } }

/* About page */
.story { max-width: 720px; }
.story p { font-size: 1.08rem; color: var(--ink-2); }
.story .kicker { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--ink); line-height: 1.35; }
.patent-box { display: flex; gap: 16px; align-items: center; background: var(--paper); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); margin-top: 32px; }
.patent-box svg { width: 40px; height: 40px; color: var(--accent-text); flex: none; }
.about-grid { display: grid; gap: 40px; align-items: start; }
.about-photos { display: grid; gap: 12px; }
.about-photos img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; object-fit: cover; object-position: center 60%; }
/* Tall living-room shots show in full: no forced ratio, no crop */
.about-photos img.portrait { aspect-ratio: auto; object-fit: contain; object-position: center; height: auto; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }

/* Contact page */
.contact-grid { display: grid; gap: 36px; }
.form { background: var(--paper); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: var(--cream); color: var(--ink); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--cherry); outline-offset: 1px; border-color: transparent; }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 12px; }
.contact-aside .card { padding: 24px; }
.contact-aside h3 { margin-bottom: 8px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; } }

/* Hidden-by-flag sections */
[data-flag] { display: none; }
[data-flag].on { display: block; }

/* Utilities */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; }
.stack > * + * { margin-top: 12px; }


/* Up / down comparison */
.updown { display: grid; gap: 18px; margin-top: 48px; }
.updown-panel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--paper); }
.updown-panel img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.updown-label { position: absolute; left: 14px; bottom: 14px; right: 14px; background: rgba(255,255,255,0.95); border-radius: var(--radius-sm); padding: 10px 14px; box-shadow: var(--shadow-sm); }
.updown-label strong { display: block; }
.updown-label span { font-size: 0.9rem; color: var(--ink-2); }
.todo-panel { aspect-ratio: 4 / 5; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px 32px 90px; background: repeating-linear-gradient(45deg, #fff, #fff 12px, #fdf0f0 12px, #fdf0f0 24px); border: 2px dashed #d33; }
.todo-panel p { max-width: 320px; color: var(--ink-2); margin: 14px 0 0; }
@media (min-width: 720px) { .updown { grid-template-columns: 1fr 1fr; gap: 24px; } }

/* Promise */
.promise-grid { display: grid; gap: 32px; }
.promise-list { display: grid; gap: 18px; }
.promise-item { background: var(--cream); border-radius: var(--radius); padding: 22px 24px; }
.promise-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.promise-item p { margin: 0; color: var(--ink-2); font-size: 0.97rem; }
@media (min-width: 900px) { .promise-grid { grid-template-columns: 1fr 1.3fr; gap: 56px; } }

/* Partner page */
.bs-hero { background: var(--ink); color: #fff; padding: 64px 0; }
.bs-hero h1, .bs-hero h2 { color: #fff; }
.bs-hero .eyebrow { color: var(--cherry); }
.bs-hero p { color: rgba(255,255,255,0.85); }
.bs-code { display: inline-block; background: var(--cherry); color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; padding: 10px 20px; border-radius: 10px; letter-spacing: 0.06em; }
.bs-grid { display: grid; gap: 22px; }
@media (min-width: 720px) { .bs-grid { grid-template-columns: repeat(3, 1fr); } }

/* Items that need Randy's input before the site goes live. Search the HTML for class="todo". */
.todo { background: #d33; color: #fff; padding: 1px 6px; border-radius: 4px; font-weight: 600; font-size: 0.9em; }
