:root {
  --bg: #ece9e4;
  --surface: #ffffff;
  --surface-alt: #f5f2ed;
  --surface-dark: #2f3337;
  --surface-black: #16181b;
  --text: #17181a;
  --muted: #5f646a;
  --line: rgba(23, 24, 26, 0.12);
  --line-strong: rgba(23, 24, 26, 0.22);
  --accent: #d91921;
  --accent-deep: #aa1117;
  --accent-soft: #f4d9db;
  --sand: #d8d1c5;
  --shadow-soft: 0 18px 40px rgba(11, 14, 18, 0.08);
  --shadow-strong: 0 22px 56px rgba(11, 14, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #f1ede8 0%, #e7e1d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 25, 33, 0.14), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(15, 18, 21, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0 48px;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 16px 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(88, 88, 88, 0.98), rgba(64, 64, 64, 0.96)),
    var(--surface-dark);
  box-shadow: var(--shadow-soft);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(217, 25, 33, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%);
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: block;
  width: 205px;
  min-height: 72px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(8, 10, 12, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-stack {
  display: grid;
  gap: 4px;
}

.brand-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-name {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.topnav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.topnav a,
.topbar-caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav a:hover {
  color: #fff;
}

.topbar-side {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 0;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topbar-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 10px;
  width: 100%;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar-links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.topbar-links .icon-badge {
  width: 30px;
  height: 30px;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.topbar-links .icon-badge svg {
  width: 20px;
  height: 20px;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  flex: 0 0 auto;
}

.icon-badge svg {
  width: 12px;
  height: 12px;
  display: block;
}

.icon-badge-light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.icon-badge-soft {
  border-color: rgba(217, 25, 33, 0.12);
  background: rgba(217, 25, 33, 0.08);
  color: var(--accent-deep);
}

.hero,
.signal-strip,
.offers-stage,
.section,
.cta-block {
  opacity: 0;
  animation: rise-in 0.82s ease forwards;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-copy,
.offers-stage,
.section,
.cta-block {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-copy {
  padding: 34px 32px 30px;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), #7c1116);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -6% -24% auto;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle, rgba(217, 25, 33, 0.16), rgba(217, 25, 33, 0.04) 42%, transparent 68%);
  pointer-events: none;
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(217, 25, 33, 0.18);
  background: rgba(217, 25, 33, 0.08);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 10.4em;
  margin-top: 22px;
  font-size: clamp(3.1rem, 4.9vw, 5.5rem);
}

.hero-lead,
.section-copy,
.offer-copy p,
.product-copy p,
.process-card p,
.location-card p,
.cta-copy p,
.hero-main-copy p,
.hero-side-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 42rem;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-urgency {
  max-width: 34rem;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid rgba(217, 25, 33, 0.36);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(245, 242, 237, 0.72));
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
}

.hero-main-card,
.hero-side-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-main-card {
  min-height: 560px;
  background: var(--surface-black);
}

.hero-main-image {
  position: absolute;
  inset: 0;
}

.hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 16, 19, 0), rgba(14, 16, 19, 0.62));
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  height: 100%;
  padding: 26px;
  color: #fff;
}

.promo-chip,
.offer-kicker,
.side-label,
.location-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-chip {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.hero-main-copy h2 {
  margin: 0;
  max-width: 9.4em;
  font-family: "Prata", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-main-copy p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-main-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-main-meta strong {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  letter-spacing: -0.06em;
}

.hero-main-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: #fff;
  color: var(--surface-black);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-side-cards {
  display: grid;
  gap: 14px;
}

.hero-side-card {
  min-height: 273px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-side-card-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(217, 25, 33, 0.92), rgba(115, 12, 17, 0.99)),
    var(--accent);
  color: #fff;
}

.hero-side-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.hero-side-card-dark strong {
  display: block;
  margin-top: 18px;
  font-family: "Prata", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.hero-side-card-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 238, 231, 0.96));
  border: 1px solid rgba(23, 24, 26, 0.12);
}

.side-label {
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid rgba(23, 24, 26, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  animation-delay: 120ms;
}

.signal-strip article {
  padding: 20px 18px;
  border-right: 1px solid rgba(23, 24, 26, 0.1);
}

.signal-strip article:last-child {
  border-right: 0;
}

.signal-strip span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.signal-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.signal-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.offers-stage,
.section,
.cta-block {
  padding: 30px;
  margin-bottom: 14px;
}

.offers-stage {
  animation-delay: 180ms;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading-compact {
  max-width: 62rem;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2.15rem, 4.1vw, 4rem);
}

.section-copy {
  max-width: 44rem;
  margin: 16px 0 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.offer-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--surface-black);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-featured .offer-overlay,
.offer-card .offer-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(14, 16, 19, 0.02), rgba(14, 16, 19, 0.92));
}

.offer-card h3 {
  margin: 12px 0 10px;
  font-family: "Prata", serif;
  font-size: 1.7rem;
  line-height: 1.06;
}

.offer-card p {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.74);
}

.offer-kicker {
  background: rgba(255, 255, 255, 0.14);
}

.offer-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.offer-footer strong {
  font-size: 1.65rem;
  letter-spacing: -0.05em;
}

.offer-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: #fff;
  color: var(--surface-black);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-dark-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 239, 0.94)),
    var(--surface);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--surface-black);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.product-card:hover,
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 18, 0), rgba(13, 15, 18, 0.7));
}

.category-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #fff;
}

.category-overlay span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-overlay strong {
  font-size: 1.36rem;
  line-height: 1.08;
}

.section-products {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 239, 232, 0.96)),
    var(--surface-alt);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  display: grid;
  grid-template-rows: 236px auto auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 24, 26, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  background: #dfd9cf;
}

.product-copy,
.product-meta,
.process-card,
.location-card {
  padding: 20px;
}

.product-type,
.location-badge {
  background: rgba(217, 25, 33, 0.08);
  color: var(--accent-deep);
}

.product-copy h3,
.process-card h3,
.location-card h3 {
  margin: 14px 0 8px;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-meta strong {
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.product-meta a,
.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-weight: 800;
}

.location-card-contact {
  display: flex;
  flex-direction: column;
}

.contact-link-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.contact-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(243, 239, 232, 0.92));
}

.process-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

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

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

.process-card,
.location-card {
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid var(--accent);
  box-shadow: none;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(20, 22, 25, 0.98), rgba(58, 62, 67, 0.95)),
    var(--surface-dark);
  color: #fff;
  animation-delay: 420ms;
}

.cta-copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cta-block .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
}

.mobile-cta-bar {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signal-strip { animation-delay: 100ms; }
.offers-stage { animation-delay: 160ms; }
.section:nth-of-type(4) { animation-delay: 220ms; }
.section:nth-of-type(5) { animation-delay: 280ms; }
.section:nth-of-type(6) { animation-delay: 340ms; }

@media (max-width: 1180px) {
  .hero,
  .offers-grid,
  .product-grid,
  .signal-strip,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-showcase,
  .offer-card-featured {
    grid-column: span 2;
  }

  .hero-main-card {
    min-height: 460px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 14px, 1360px);
    padding-top: 8px;
    padding-bottom: 92px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
    padding: 14px;
  }

  .topnav {
    display: none;
  }

  .topbar-side {
    justify-items: stretch;
  }

  .topbar-cta {
    width: 100%;
  }

  .topbar-links {
    justify-content: stretch;
    gap: 8px;
  }

  .hero,
  .hero-showcase,
  .signal-strip,
  .offers-grid,
  .category-grid,
  .product-grid,
  .process-grid,
  .location-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .offers-stage,
  .section,
  .cta-block {
    padding: 18px 16px;
  }

  .hero-showcase,
  .offer-card-featured {
    grid-column: auto;
  }

  .hero {
    gap: 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.4rem, 9vw, 3.9rem);
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-urgency {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .button,
  .hero-main-meta a,
  .offer-footer a {
    width: 100%;
  }

  .hero-main-card {
    min-height: 370px;
  }

  .hero-main-copy,
  .hero-side-card,
  .offer-card-featured .offer-overlay,
  .offer-card .offer-copy,
  .product-copy,
  .product-meta,
  .process-card,
  .location-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-main-copy h2 {
    font-size: clamp(1.85rem, 7vw, 2.8rem);
  }

  .hero-main-meta {
    align-items: stretch;
  }

  .signal-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 24, 26, 0.1);
  }

  .signal-strip article:last-child {
    border-bottom: 0;
  }

  .offer-card,
  .category-card {
    min-height: 280px;
  }

  .product-card {
    grid-template-rows: 200px auto auto;
  }

  .product-card img {
    height: 200px;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(19, 21, 23, 0.92);
    box-shadow: 0 -12px 32px rgba(13, 15, 18, 0.22);
    backdrop-filter: blur(10px);
  }

  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 12px;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .mobile-cta-call {
    background: #fff;
    color: var(--surface-black);
  }

  .mobile-cta-lead {
    background: var(--accent);
    color: #fff;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 10px);
  }

  .brand-mark {
    width: 156px;
    min-height: 0;
  }

  .brand-kicker {
    font-size: 0.58rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-main-card {
    min-height: 320px;
  }

  .hero-main-meta strong,
  .offer-footer strong {
    font-size: 1.45rem;
  }

  .hero-side-card {
    min-height: 210px;
  }

  .offer-card,
  .category-card {
    min-height: 240px;
  }

  .product-card {
    grid-template-rows: 176px auto auto;
  }

  .product-card img {
    height: 176px;
  }
}
