:root {
  --bg-top: #f6f0e8;
  --bg-bottom: #e8ded2;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.55);
  --text: #201b16;
  --muted: #6a6258;
  --line: rgba(32, 27, 22, 0.1);
  --accent: #9f6a42;
  --accent-strong: #74401f;
  --accent-soft: rgba(159, 106, 66, 0.14);
  --success: #1d6b4f;
  --shadow: 0 30px 70px rgba(46, 33, 20, 0.12);
  --shadow-soft: 0 16px 36px rgba(46, 33, 20, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 26%),
    radial-gradient(circle at top right, var(--accent-soft), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  line-height: 1.6;
}

body.lp-page {
  padding-bottom: 118px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  z-index: 99;
  padding: 10px 14px;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
}

body.region-ca {
  --bg-top: #f7f3eb;
  --bg-bottom: #e6ddd2;
  --accent: #9f6a42;
  --accent-strong: #6f4022;
  --accent-soft: rgba(159, 106, 66, 0.16);
}

body.region-tx {
  --bg-top: #f5eee7;
  --bg-bottom: #e5d8ca;
  --accent: #92512d;
  --accent-strong: #663114;
  --accent-soft: rgba(146, 81, 45, 0.16);
}

body.region-ny {
  --bg-top: #eff3f5;
  --bg-bottom: #dde5ea;
  --accent: #355c73;
  --accent-strong: #233847;
  --accent-soft: rgba(53, 92, 115, 0.14);
}

body.region-fl {
  --bg-top: #f7f1e7;
  --bg-bottom: #e7ded1;
  --accent: #907047;
  --accent-strong: #665031;
  --accent-soft: rgba(144, 112, 71, 0.14);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  padding-top: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.brand-logo-text {
  display: inline-block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: none;
}

.brand-logo-image {
  display: block;
  width: auto;
  height: clamp(30px, 3vw, 42px);
  object-fit: contain;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.topbar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar-slogan {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: normal;
  text-wrap: pretty;
  text-align: right;
}

.meta-pill,
.eyebrow,
.badge,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.hero {
  padding: 28px 0 56px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-layout > *,
.media-layout > *,
.member-panel > *,
.cta-offer > *,
.cta-panel > *,
.section-head > * {
  min-width: 0;
}

.hero-review-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 28px;
}

.hero-review-spacer {
  display: none;
}

.hero-main,
.hero-card,
.panel,
.image-wrap,
.quote-card,
.sticky-cta {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-main {
  padding: 42px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.cta-copy h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-title {
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero-subtitle {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.proof-card,
.stat-card,
.card,
.compare-card,
.trust-card,
.review-card,
.faq-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.mini-label,
.card-label,
.price-label,
.review-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-card strong,
.price-row strong,
.review-score,
.stat-value {
  display: block;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fffaf5;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.micro-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  overflow: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-card-media {
  position: relative;
  overflow: hidden;
}

.hero-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.hero-card-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 340px;
  object-fit: contain;
  background: #000;
}

.hero-card-media-secondary img {
  aspect-ratio: 4 / 3;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}


.hero-video-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  width: 100%;
}

.hero-video-thumb {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.hero-video-thumb video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.floating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 21, 18, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.floating-image-badge {
  padding: 0;
  overflow: hidden;
}

.floating-image-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-copy {
  display: grid;
  gap: 18px;
  padding: 22px;
  min-width: 0;
}

.hero-card-image-fill {
  padding: 0;
  overflow: hidden;
}

.hero-card-image-fill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.price-current {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.price-was {
  color: var(--muted);
  text-decoration: line-through;
}

.price-note {
  color: var(--success);
  font-weight: 700;
  font-size: 0.94rem;
}

.trust-inline,
.ship-list,
.stats-grid,
.card-grid,
.review-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.trust-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ship-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ship-list div,
.trust-inline div {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.section {
  padding: 0 0 56px;
}

.section-shell {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.64);
  overflow: hidden;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.section-copy {
  max-width: 56ch;
  color: var(--muted);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.image-wrap {
  overflow: hidden;
}

.image-wrap img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  vertical-align: middle;
}

.card h3,
.compare-card h3,
.trust-card h3,
.review-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.trust-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.trust-head h3 {
  margin: 2px 0 0;
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--accent-strong);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.card p,
.compare-card p,
.review-card p,
.trust-card p,
.faq-answer,
.legal-note {
  margin: 0;
  color: var(--muted);
}

.compare-grid,
.review-grid,
.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card,
.promo-card,
.member-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.video-thumb {
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius-md) - 2px);
  overflow: hidden;
  margin-bottom: 14px;
  background: #d9d9d9;
}

.video-thumb img {
  height: 100%;
  object-fit: cover;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.check-list,
.promo-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.promo-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li::before,
.promo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.member-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.member-card {
  display: grid;
  gap: 16px;
}

.subscribe-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.subscribe-form {
  display: grid;
  gap: 12px;
}

.subscribe-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.subscribe-message {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.subscribe-message.is-error {
  color: #c3492f;
}

.cta-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.promo-card {
  display: grid;
  gap: 14px;
}

.promo-media-stack {
  display: grid;
  gap: 12px;
}

.promo-kicker {
  color: var(--success);
  font-size: 0.88rem;
  font-weight: 700;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.scene-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.compare-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.compare-card.positive {
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.94), rgba(255, 255, 255, 0.9));
}

.compare-card.negative {
  background: linear-gradient(180deg, rgba(246, 242, 237, 0.96), rgba(255, 255, 255, 0.88));
}

.review-card {
  display: grid;
  gap: 12px;
}

.amazon-proof {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.amazon-proof-head {
  display: grid;
  gap: 6px;
}

.amazon-proof-head p {
  margin: 0;
  color: var(--muted);
}

.amazon-summary {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff8f1;
  border: 1px solid rgba(238, 179, 87, 0.28);
}

.amazon-summary-bar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
}

.amazon-summary-rating {
  display: grid;
  gap: 2px;
}

.amazon-summary-rating strong {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.amazon-summary-rating span {
  font-size: 0.86rem;
  color: var(--muted);
}

.amazon-summary-stars {
  color: #f08a24;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.amazon-summary-stat {
  justify-self: end;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: right;
}

.amazon-summary-score {
  font-size: 1rem;
  font-weight: 700;
  color: #1f1f1f;
}

.amazon-summary-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.amazon-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amazon-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amazon-shot-card {
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.amazon-shot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #ffffff;
}

.amazon-review-card {
  gap: 14px;
}

.amazon-review-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.amazon-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ececeb;
  color: #111111;
  font-weight: 700;
}

.amazon-review-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.amazon-review-stars {
  margin-top: 4px;
  color: #f08a24;
  font-weight: 700;
  font-size: 0.95rem;
}

.amazon-review-stars span {
  color: var(--text);
  margin-left: 8px;
}

.amazon-review-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.amazon-review-purchase {
  margin-top: 6px;
  color: #b56b17;
  font-size: 0.86rem;
  font-weight: 700;
}

.review-score {
  font-size: 1.25rem;
  font-weight: 800;
}

.quote-card {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.faq-item button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-answer {
  margin-top: 14px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--accent-strong);
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(245, 237, 228, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.cta-copy p {
  max-width: 56ch;
  color: var(--muted);
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-cta {
  position: sticky;
  bottom: 14px;
  z-index: 15;
  display: none;
  margin: 0 0 18px;
  padding: 14px;
}

.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.sticky-price strong {
  display: block;
  font-size: 1.2rem;
}

.region-footer {
  padding: 10px 0 52px;
}

.footer-line {
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.countdown-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0 0 max(10px, env(safe-area-inset-bottom));
  pointer-events: none;
}

.countdown-nav-inner {
  width: min(calc(100% - 20px), var(--content));
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -8px 24px rgba(18, 14, 10, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
}

.countdown-text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.countdown-btn {
  min-height: 48px;
  padding: 0 20px;
  white-space: nowrap;
}

.countdown-nav.is-expired .countdown-text {
  opacity: 0.88;
}

body.region-ca .countdown-nav-inner {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 17, 17, 0.1);
  box-shadow: 0 -8px 22px rgba(17, 17, 17, 0.08);
}

body.region-ca .countdown-text {
  color: #1f1f1f;
}

body.region-tx .countdown-nav-inner {
  background: linear-gradient(180deg, rgba(35, 40, 49, 0.98), rgba(24, 28, 35, 0.98));
  border-color: rgba(215, 169, 111, 0.36);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.34);
}

body.region-tx .countdown-text {
  color: #f4e7d5;
}

body.region-ny .countdown-nav-inner {
  border-radius: 0;
  background: rgba(12, 12, 12, 0.98);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.34);
}

body.region-ny .countdown-text {
  color: #f5f1e8;
}

body.region-ny .countdown-btn {
  border-radius: 0;
}

body.region-fl .countdown-nav-inner {
  background: linear-gradient(140deg, rgba(255, 248, 238, 0.97), rgba(244, 252, 248, 0.95));
  border-color: rgba(227, 139, 87, 0.3);
  box-shadow: 0 -8px 20px rgba(67, 105, 106, 0.16);
}

body.region-fl .countdown-text {
  color: #2f5558;
}

body.region-ca {
  background:
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f4 58%, #efeeeb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-soft: #f5f5f3;
  --text: #111111;
  --muted: #5e5e63;
  --line: rgba(17, 17, 17, 0.08);
  --accent: #111111;
  --accent-strong: #111111;
  --accent-soft: rgba(0, 0, 0, 0.06);
  --shadow: 0 18px 60px rgba(16, 16, 16, 0.06);
  --shadow-soft: 0 10px 30px rgba(16, 16, 16, 0.05);
}

body.region-ca .topbar-inner,
body.region-ca .hero-main,
body.region-ca .hero-card,
body.region-ca .section-shell,
body.region-ca .cta-panel,
body.region-ca .sticky-cta,
body.region-ca .image-wrap,
body.region-ca .quote-card {
  border-radius: 28px;
  backdrop-filter: none;
  box-shadow: none;
}

body.region-ca .topbar-inner,
body.region-ca .section-shell,
body.region-ca .sticky-cta {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(17, 17, 17, 0.06);
}

body.region-ca .brand,
body.region-ca .mini-label,
body.region-ca .card-label,
body.region-ca .price-label,
body.region-ca .review-label,
body.region-ca .eyebrow {
  letter-spacing: 0.14em;
}

body.region-ca .brand {
  gap: 0;
  letter-spacing: 0;
  text-transform: none;
}

body.region-ca .brand-logo-text {
  color: #111111;
}

body.region-ca .brand-logo-image {
  filter: none;
}

body.region-ca .topbar-slogan {
  color: #5e5e63;
}

body.region-ca .brand-mark,
body.region-ca .btn-primary {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

body.region-ca .btn-secondary,
body.region-ca .proof-card,
body.region-ca .stat-card,
body.region-ca .card,
body.region-ca .compare-card,
body.region-ca .trust-card,
body.region-ca .review-card,
body.region-ca .faq-item,
body.region-ca .price-panel,
body.region-ca .trust-inline div {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: none;
}

body.region-ca .hero-layout {
  gap: 14px;
}

body.region-ca .hero-title,
body.region-ca .section-title,
body.region-ca .cta-copy h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

body.region-ca .hero-title {
  max-width: 7.8ch;
  font-size: clamp(2.8rem, 5.6vw, 4.9rem);
  line-height: 1.02;
}

body.region-ca .section-title {
  font-size: clamp(1.68rem, 2.45vw, 2.28rem);
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
}

body.region-ca .section-head {
  display: block;
  margin-bottom: 28px;
}

body.region-ca .section-head .section-title {
  max-width: none;
}

body.region-ca .hero-subtitle,
body.region-ca .section-copy,
body.region-ca .cta-copy p {
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

body.region-ca .floating-badge {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

body.region-ca .hero-card {
  grid-template-rows: 1fr;
}

body.region-ca .hero-card-copy {
  display: grid;
  gap: 12px;
  padding: 18px 20px 20px;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

body.region-ca .hero-card-image-fill {
  padding: 0;
  background: #ffffff;
}

body.region-ca .hero-card-copy h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.region-ca .hero-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

body.region-ca .hero-video-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

body.region-ca .hero-review-row {
  justify-content: center;
}

body.region-ca .hero-video-card {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
}

body.region-ca .video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

body.region-ca .video-card {
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  align-items: stretch;
}

body.region-ca .video-thumb {
  width: 100%;
  aspect-ratio: 9 / 16;
  margin-bottom: 0;
  border-radius: 20px;
  background: #000000;
}

body.region-ca .video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.region-ca .card h3,
body.region-ca .compare-card h3,
body.region-ca .trust-card h3,
body.region-ca .review-card h3,
body.region-ca .video-card h3,
body.region-ca .member-card h3,
body.region-ca .promo-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

body.region-ca .promo-card {
  gap: 10px;
  padding: 14px;
  align-content: start;
}

body.region-ca .promo-card p {
  margin: 0;
  line-height: 1.55;
}

body.region-ca .promo-card .image-wrap {
  margin-top: 4px;
}

body.region-ca .amazon-review-card {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
}

body.region-ca .amazon-shot-card {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
}

body.region-ca .amazon-summary {
  background: #fffaf3;
  border-color: rgba(240, 138, 36, 0.16);
}

body.region-ca .trust-icon {
  background: #f7f7f5;
  border-color: rgba(17, 17, 17, 0.08);
  color: #111111;
}

body.region-ca .faq-icon {
  background: #f7f7f5;
  border-color: rgba(17, 17, 17, 0.08);
  color: #111111;
}

body.region-ca .price-row strong {
  font-size: 1.75rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

body.region-ca .cta-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f0 100%);
}

body.region-ca .compare-card.positive,
body.region-ca .compare-card.negative {
  background: #ffffff;
}

body.region-tx {
  background:
    linear-gradient(180deg, #d8cfc1 0%, #b9ad9b 14%, #20242a 14%, #111418 100%);
  font-family: "Segoe UI", "Arial", sans-serif;
  --surface: #1b1f24;
  --surface-strong: #232831;
  --surface-soft: #20242b;
  --text: #f4efe8;
  --muted: #b7b0a6;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d7a96f;
  --accent-strong: #b67a3b;
  --accent-soft: rgba(215, 169, 111, 0.14);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 16px 28px rgba(0, 0, 0, 0.22);
}

body.region-tx .topbar-inner,
body.region-tx .hero-main,
body.region-tx .hero-card,
body.region-tx .section-shell,
body.region-tx .cta-panel,
body.region-tx .sticky-cta,
body.region-tx .image-wrap,
body.region-tx .quote-card {
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(215, 169, 111, 0.18);
  box-shadow: var(--shadow);
}

body.region-tx .brand-logo-image {
  filter: brightness(0) invert(1);
}

body.region-tx .brand-mark,
body.region-tx .btn-primary {
  background: linear-gradient(135deg, #d7a96f, #9c6230);
  color: #101215;
}

body.region-tx .btn-secondary,
body.region-tx .proof-card,
body.region-tx .stat-card,
body.region-tx .card,
body.region-tx .compare-card,
body.region-tx .trust-card,
body.region-tx .review-card,
body.region-tx .faq-item,
body.region-tx .price-panel,
body.region-tx .trust-inline div {
  background: #232831;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text);
}

body.region-tx .hero-title,
body.region-tx .section-title,
body.region-tx .cta-copy h2 {
  font-family: "Arial", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

body.region-tx .hero-video-card {
  background: linear-gradient(180deg, rgba(34, 40, 49, 0.98), rgba(24, 29, 35, 0.98));
  border: 1px solid rgba(215, 169, 111, 0.24);
}

body.region-tx .hero-video-card h3 {
  margin: 0;
  color: #f2d4a8;
  font-size: clamp(1.26rem, 2.1vw, 1.64rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

body.region-tx .hero-title {
  font-size: clamp(2.6rem, 6.9vw, 5.2rem);
  max-width: 9.8ch;
}

body.region-tx .eyebrow,
body.region-tx .mini-label,
body.region-tx .card-label,
body.region-tx .price-label,
body.region-tx .review-label,
body.region-tx .meta-pill {
  background: rgba(215, 169, 111, 0.08);
  border-color: rgba(215, 169, 111, 0.24);
  color: #f0c993;
}

body.region-tx .section-shell {
  background: linear-gradient(180deg, rgba(33, 37, 44, 0.98), rgba(22, 26, 31, 0.98));
}

body.region-tx .floating-badge {
  background: #d7a96f;
  color: #111418;
  border-radius: 6px;
}

body.region-tx .compare-card.positive {
  background: linear-gradient(180deg, rgba(45, 54, 64, 0.95), rgba(29, 34, 40, 0.98));
}

body.region-tx .compare-card.negative {
  background: linear-gradient(180deg, rgba(29, 31, 36, 0.95), rgba(17, 20, 24, 0.98));
}

body.region-tx .footer-line {
  border-top-color: rgba(215, 169, 111, 0.18);
}

body.region-tx .amazon-proof {
  margin-top: 26px;
  gap: 14px;
}

body.region-tx .amazon-proof-head .review-label {
  color: #f0c993;
  letter-spacing: 0.08em;
}

body.region-tx .amazon-summary {
  background: linear-gradient(180deg, rgba(32, 37, 44, 0.98), rgba(22, 26, 31, 0.98));
  border: 1px solid rgba(215, 169, 111, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

body.region-tx .amazon-summary-rating strong {
  color: #f7e6cf;
}

body.region-tx .amazon-summary-rating span,
body.region-tx .amazon-summary-stat {
  color: #c7b79f;
}

body.region-tx .amazon-summary-stars {
  color: #f2a94a;
}

body.region-tx .amazon-review-grid {
  gap: 14px;
}

body.region-tx .amazon-review-card {
  background: linear-gradient(180deg, rgba(37, 43, 52, 0.98), rgba(26, 31, 38, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

body.region-tx .amazon-review-avatar-img {
  border-color: rgba(215, 169, 111, 0.35);
}

body.region-tx .amazon-review-top strong {
  color: #f5efe7;
}

body.region-tx .amazon-review-stars {
  color: #f2a94a;
}

body.region-tx .amazon-review-stars span {
  color: #f5efe7;
}

body.region-tx .amazon-review-meta {
  color: #b8ab97;
}

body.region-tx .amazon-review-purchase {
  color: #f0c993;
}

body.region-fl {
  background:
    radial-gradient(circle at top right, rgba(255, 221, 181, 0.5), transparent 24%),
    radial-gradient(circle at left center, rgba(165, 214, 214, 0.26), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, #f8ecd8 40%, #d8eee7 100%);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.58);
  --text: #234042;
  --muted: #557476;
  --line: rgba(35, 64, 66, 0.12);
  --accent: #e38b57;
  --accent-strong: #cf6c42;
  --accent-soft: rgba(227, 139, 87, 0.18);
  --shadow: 0 24px 60px rgba(67, 105, 106, 0.11);
}

body.region-fl .topbar-inner,
body.region-fl .hero-main,
body.region-fl .hero-card,
body.region-fl .section-shell,
body.region-fl .cta-panel,
body.region-fl .sticky-cta,
body.region-fl .image-wrap,
body.region-fl .quote-card {
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.58);
}

body.region-fl .brand-mark,
body.region-fl .btn-primary {
  background: linear-gradient(135deg, #ff9d63, #ef7f5c);
}

body.region-fl .hero-title,
body.region-fl .section-title,
body.region-fl .cta-copy h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  line-height: 0.98;
}

body.region-fl .hero-title {
  font-size: clamp(2.5rem, 6.4vw, 5.1rem);
  max-width: 10.5ch;
  line-height: 1.03;
}

body.region-fl .proof-card,
body.region-fl .stat-card,
body.region-fl .card,
body.region-fl .compare-card,
body.region-fl .trust-card,
body.region-fl .review-card,
body.region-fl .faq-item,
body.region-fl .price-panel,
body.region-fl .trust-inline div {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
}

body.region-fl .floating-badge {
  background: rgba(255, 255, 255, 0.84);
  color: #3e6668;
}

body.region-fl .hero-video-card h3 {
  margin: 0;
  color: #3e6f70;
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  line-height: 1.14;
}

body.region-fl .hero-card-media img,
body.region-fl .image-wrap img {
  filter: saturate(1.05) contrast(1.02);
}

body.region-fl #hero .hero-card {
  gap: 16px;
}

body.region-fl #hero .hero-card-media-secondary img {
  min-height: 188px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

body.region-fl .promo-media-stack {
  gap: 16px;
}

body.region-fl .promo-image-secondary img {
  min-height: 190px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

body.region-fl .cta-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 211, 0.88) 48%, rgba(218, 239, 235, 0.9));
}

body.region-fl .compare-card.positive {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.95), rgba(255, 255, 255, 0.9));
}

body.region-fl .compare-card.negative {
  background: linear-gradient(180deg, rgba(242, 252, 250, 0.9), rgba(255, 255, 255, 0.88));
}

body.region-ny {
  background:
    linear-gradient(180deg, #0a0a0a 0%, #090909 45%, #131313 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  --surface: #0e0e0e;
  --surface-strong: #131313;
  --surface-soft: #111111;
  --text: #f5f1e8;
  --muted: #a6a29d;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ffffff;
  --accent-strong: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.3);
}

body.region-ny .shell {
  width: min(calc(100% - 24px), 1280px);
}

body.region-ny .topbar-inner,
body.region-ny .hero-main,
body.region-ny .hero-card,
body.region-ny .section-shell,
body.region-ny .cta-panel,
body.region-ny .sticky-cta,
body.region-ny .image-wrap,
body.region-ny .quote-card {
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.region-ny .topbar-inner {
  border-left: 0;
  border-right: 0;
}

body.region-ny .brand-logo-image {
  filter: brightness(0) invert(1);
}

body.region-ny .hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
}

body.region-ny #hero .hero-card-media {
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  padding-top: 92px;
}

body.region-ny .hero-main,
body.region-ny .hero-card-copy,
body.region-ny .section-shell,
body.region-ny .cta-panel {
  padding: 34px;
}

body.region-ny .hero-card {
  border-left: 0;
}

body.region-ny .hero-title,
body.region-ny .section-title,
body.region-ny .cta-copy h2 {
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.88;
}

body.region-ny .hero-title {
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  max-width: 9.8ch;
  line-height: 0.93;
  overflow-wrap: anywhere;
}

body.region-ny .brand-mark {
  background: #ffffff;
  color: #0a0a0a;
  border-radius: 0;
}

body.region-ny .eyebrow,
body.region-ny .mini-label,
body.region-ny .card-label,
body.region-ny .price-label,
body.region-ny .review-label,
body.region-ny .meta-pill {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
  letter-spacing: 0.16em;
  color: #c8c3bc;
}

body.region-ny .btn-primary {
  background: #f5f1e8;
  color: #090909;
  border-radius: 0;
  box-shadow: none;
}

body.region-ny .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

body.region-ny .proof-card,
body.region-ny .stat-card,
body.region-ny .card,
body.region-ny .compare-card,
body.region-ny .trust-card,
body.region-ny .review-card,
body.region-ny .faq-item,
body.region-ny .price-panel,
body.region-ny .trust-inline div {
  background: #111111;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.08);
}

body.region-ny .hero-card-media img,
body.region-ny .image-wrap img {
  min-height: 100%;
  filter: contrast(1.06) saturate(0.92);
}

body.region-ny #hero .hero-card-media img {
  min-height: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

body.region-ny .hero-video-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.region-ny .hero-video-card h3 {
  margin: 0;
  color: #d7c3a0;
  font-size: clamp(1.24rem, 2.05vw, 1.58rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

body.region-ny .floating-badge {
  border-radius: 0;
  background: rgba(245, 241, 232, 0.94);
  color: #090909;
}

body.region-ny .compare-card.positive,
body.region-ny .compare-card.negative,
body.region-ny .cta-panel {
  background: #0f0f0f;
}

body.region-ny .footer-line {
  border-top-color: rgba(255, 255, 255, 0.1);
}

body.index-page {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(180deg, #f6f2eb 0%, #ece5db 100%);
}

body.index-page .overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.index-page .overview-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(16, 16, 16, 0.06);
}

body.index-page .overview-card h3 {
  margin: 8px 0;
  font-size: 1.2rem;
}

body.index-page .overview-card p {
  margin: 0 0 16px;
  color: #66605a;
}

@media (max-width: 760px) {
  body.index-page .overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .media-layout,
  .cta-panel,
  .feature-split,
  .member-panel,
  .cta-offer,
  .card-grid,
  .video-grid,
  .stats-grid,
  .review-grid,
  .compare-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .amazon-review-grid {
    grid-template-columns: 1fr;
  }

  .amazon-summary-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .amazon-summary-stat {
    justify-self: start;
    text-align: left;
  }

  .amazon-shot-grid {
    grid-template-columns: 1fr;
  }

  .trust-inline {
    grid-template-columns: 1fr;
  }

  body.region-ca .hero-video-card {
    max-width: none;
    width: 100%;
  }

  body.region-ca .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.region-ca .video-card {
    padding: 12px;
  }

  .hero-title {
    max-width: none;
  }

  body.region-ny .hero-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  body.lp-page {
    padding-bottom: 152px;
  }

  .shell {
    width: min(calc(100% - 20px), var(--content));
  }

  .topbar {
    top: 8px;
  }

  .topbar-inner,
  .section-shell,
  .hero-main,
  .cta-panel {
    padding: 18px;
  }

  .hero-main,
  .hero-card,
  .section-shell,
  .cta-panel {
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.03;
    max-width: none;
  }

  .section-title,
  .cta-copy h2 {
    font-size: clamp(1.55rem, 7.4vw, 2.3rem);
    line-height: 1.12;
  }

  .hero-card-media img,
  .hero-card-media video {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .floating-badge {
    display: none;
  }

  .topbar-meta {
    display: none;
  }

  .topbar-slogan {
    font-size: 0.82rem;
    text-align: left;
  }

  .hero-proof,
  .ship-list {
    grid-template-columns: 1fr;
  }

  body.region-ca .section-title {
    white-space: normal;
    line-height: 1.2;
  }

  body.region-tx .hero-title,
  body.region-fl .hero-title,
  body.region-ny .hero-title {
    max-width: none;
  }

  body.region-ny .hero-main,
  body.region-ny .hero-card-copy,
  body.region-ny .section-shell,
  body.region-ny .cta-panel {
    padding: 20px;
  }

  body.region-ny #hero .hero-card-media {
    min-height: 320px;
    padding-top: 52px;
  }

  body.region-fl #hero .hero-card {
    gap: 12px;
  }

  body.region-fl #hero .hero-card-media-secondary img {
    min-height: 142px;
    aspect-ratio: 16 / 10;
  }

  .sticky-inner {
    align-items: flex-start;
  }

  .sticky-price strong {
    font-size: 1rem;
  }

  .sticky-cta {
    display: block;
  }

  .countdown-nav-inner {
    width: min(calc(100% - 12px), var(--content));
    border-radius: 14px;
    padding: 10px 12px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .countdown-text {
    font-size: 0.86rem;
    text-align: center;
  }

  .countdown-btn {
    width: 100%;
    min-height: 44px;
  }
}
