/* Public marketing site — refitrigs.com look, owned by us */

.site {
  background: #fff;
  color: #141414;
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

.site a { color: #e10600; }
.site a:hover { text-decoration: underline; }

/* Top nav */
.site-top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 3px solid #e10600;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.site-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-brand { display: flex; align-items: center; text-decoration: none; }
.site-logo { height: 48px; width: auto; display: block; }
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}
.site-nav a {
  color: #1f1f1f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
}
.site-nav a:hover,
.site-nav a.on { color: #e10600; text-decoration: none; }
.site-nav-cta {
  background: #e10600 !important;
  color: #fff !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 8px;
  box-shadow: 0 2px 0 #b80500;
}
.site-nav-cta:hover { filter: brightness(1.05); text-decoration: none; }
.site-nav-muted { color: #666 !important; font-weight: 600 !important; }
.site-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
}

/* ========== Full-bleed hero ========== */
.site-hero-bleed {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 4rem 1.25rem 6.5rem;
}
.site-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.site-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.55) 100%);
}
.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.site-hero-content h1 {
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.site-hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.92);
  line-height: 1.5;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.site-btn-hero {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #e10600 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 4px !important;
  padding: 0.85rem 1.6rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: filter .15s ease, transform .1s ease;
}
.site-btn-hero:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}

/* Availability bar overlaid on hero bottom */
.site-hero-avail {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1.25rem 1.25rem;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.site-hero-avail-label {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.9);
  text-align: left;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.site-avail-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #e10600;
  color: #fff;
  text-decoration: none !important;
  padding: 0.95rem 1.15rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: filter .15s ease;
}
.site-avail-bar:hover {
  filter: brightness(1.05);
  color: #fff;
  text-decoration: none !important;
}
.site-avail-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.site-avail-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  flex: 1;
  text-align: left;
}
.site-avail-text strong {
  font-size: 1rem;
  font-weight: 700;
}
.site-avail-text span {
  font-size: 0.85rem;
  opacity: 0.9;
}
.site-avail-chevron {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.95;
}

/* Legacy side-by-side hero (unused on home, keep for safety) */
.site-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.site-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e10600;
  margin: 0 0 0.5rem;
}
.site-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #0a0a0a;
}
.site-hero h1 .accent { color: #e10600; }
.site-lede {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 0 1.25rem;
}
.site-lede-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 42rem;
}
.site-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-btn-lg {
  padding: 0.85rem 1.25rem !important;
  font-size: 0.9rem !important;
}
.site-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border: 1px solid #e6e6e6;
  display: block;
  object-fit: cover;
  max-height: 380px;
}

/* Sections */
.site-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.site-section-white {
  background: #fff;
  max-width: none;
  padding: 3.25rem 1.25rem;
}
.site-section-alt {
  background: #f7f7f8;
  max-width: none;
  padding: 2.75rem 1.25rem;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.site-section-alt > *,
.site-section-white > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.site-section-head { margin-bottom: 1.75rem; }
.site-section-head-center { text-align: center; }
.site-section-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}
.site-page-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0.5rem;
}
.site-page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

/* Product grid */
.site-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.site-product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  border-top: 4px solid #e10600;
}
.site-product-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #eee;
}
.site-product-body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-product-body h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}
.site-product-body p { margin: 0; color: #444; font-size: 0.95rem; line-height: 1.45; }
.site-price { margin-top: auto !important; padding-top: 0.5rem; }
.site-price strong { font-size: 1.25rem; color: #0a0a0a; }
.site-price span { color: #666; font-weight: 600; }

/* How it works — vertical list like original */
.site-how-inner {
  max-width: 820px;
  margin: 0 auto;
}
.site-how-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}
.site-how-intro {
  color: #5a6270;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 34rem;
}
.site-how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.site-how-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.site-how-n {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 0.1rem;
}
.site-how-item h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.site-how-item p {
  margin: 0;
  color: #5a6270;
  line-height: 1.55;
  font-size: 1rem;
}

/* Legacy steps (how-it-works page) */
.site-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.site-steps-wide { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.site-step {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1.25rem;
}
.site-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #e10600;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.site-step h3 { margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 800; }
.site-step p { margin: 0; color: #444; line-height: 1.5; }

/* ========== Red FAQ band ========== */
.site-faq-band {
  background: #e10600;
  color: #fff;
  padding: 3.5rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}
.site-faq-band-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.site-faq-intro {
  position: relative;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.site-faq-intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.site-faq-intro p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
}
.site-faq-watermark {
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  color: rgba(255,255,255,.12);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.site-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 640px;
  margin: 0 auto;
}
.site-faq-row {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px;
  background: transparent;
  color: #fff;
}
.site-faq-row summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.75rem 1rem 1.15rem;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  color: #fff;
}
.site-faq-row summary::-webkit-details-marker { display: none; }
.site-faq-row summary::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.9;
}
.site-faq-row[open] summary::after {
  content: "▴";
}
.site-faq-body {
  padding: 0 1.15rem 1.15rem;
}
.site-faq-body p {
  margin: 0 0 0.65rem;
  color: rgba(255,255,255,.95);
  line-height: 1.55;
  font-size: 0.98rem;
}
.site-faq-body p:last-child { margin-bottom: 0; }
.site-faq-body a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* Standalone FAQ page still works */
.site-faq { max-width: 720px; }
.site-faq-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.65rem;
}
.site-faq-item summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.site-faq-item summary::-webkit-details-marker { display: none; }
.site-faq-item p { margin: 0.65rem 0 0; color: #444; line-height: 1.5; }

/* ========== Where we deliver ========== */
.site-deliver-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.site-deliver-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 1.25rem;
  color: #0a0a0a;
}
.site-deliver-lede {
  color: #5a6270;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
}
.site-deliver-zones {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.site-deliver-zones li {
  color: #5a6270;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
}
.site-deliver-zones strong { color: #1e293b; }
.site-deliver-fee { font-weight: 700; color: #1e293b; }
.site-deliver-note {
  color: #5a6270;
  line-height: 1.55;
  margin: 0 0 1rem;
  font-size: 1.02rem;
}
.site-deliver-counties {
  color: #7a8494;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

/* Zones cards (zones page) */
.site-zones-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.site-zone {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
}
.site-zone span { color: #e10600; font-weight: 800; float: right; }
.site-zone-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.site-zone-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-top: 4px solid #e10600;
  border-radius: 12px;
  padding: 1.25rem;
}
.site-zone-card h3 { margin: 0 0 0.35rem; }
.site-zone-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #e10600;
  margin: 0 0 0.5rem;
}

/* ========== Testimonial ========== */
.site-testimonial {
  background: #fff;
  padding: 0 0 0;
}
.site-testimonial-head {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.25rem 1.75rem;
  text-align: center;
}
.site-testimonial-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0a0a0a;
}
.site-testimonial-band {
  background: #e10600;
  color: #fff;
  padding: 2.75rem 1.25rem 3rem;
}
.site-testimonial-inner {
  max-width: 820px;
  margin: 0 auto;
}
.site-testimonial-inner h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}
.site-stars {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: #fff;
}
.site-testimonial-inner blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}
.site-testimonial-inner blockquote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.97);
}
.site-testimonial-author {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  color: #fff;
}
.site-testimonial-role {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
}

.site-center { text-align: center; margin-top: 1.5rem; }

.site-cta-band {
  background: #0a0a0a;
  color: #f0f0f0;
  text-align: center;
  padding: 2.75rem 1.25rem;
}
.site-cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.site-cta-band p { color: #bbb; margin: 0 0 1.25rem; }
.site-cta-band .btn { display: inline-flex; }

.site-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.site-contact-big {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.35rem 0;
}
.site-contact-big a { color: #0a0a0a; text-decoration: none; }
.site-contact-big a:hover { color: #e10600; }

/* ========== Footer (light, like original) ========== */
.site-foot {
  background: #fff;
  color: #555;
  padding: 2.5rem 1.25rem 1.75rem;
  margin-top: 0;
  border-top: 0;
}
.site-foot-brand {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}
.site-foot-logo {
  height: 48px;
  width: auto;
  display: block;
}
.site-foot-rule {
  max-width: 1100px;
  margin: 0 auto 1.25rem;
  height: 1px;
  background: #e8e8e8;
}
.site-foot-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-foot-loc {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.45;
  flex: 1;
  min-width: 220px;
}
.site-foot-pin { margin-right: 0.25rem; }
.site-foot-ver { color: #9ca3af; }
.site-foot-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.site-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: #111 !important;
  text-decoration: none !important;
  transition: color .15s ease, background .15s ease;
}
.site-social-btn:hover {
  color: #e10600 !important;
  background: #f3f4f6;
  text-decoration: none !important;
}
.site-foot-links {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  padding-top: 0.25rem;
}
.site-foot-links a {
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
}
.site-foot-links a:hover { color: #e10600; }

/* Book pages polish when using public_base */
.site .hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

@media (max-width: 800px) {
  .site-hero { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .site-steps { grid-template-columns: 1fr; }
  .site-hero-bleed {
    min-height: min(70vh, 560px);
    padding: 3rem 1rem 7rem;
  }
  .site-faq-watermark {
    right: 0;
    top: auto;
    bottom: -1rem;
    opacity: 0.85;
  }
  .site-nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
  .site-nav.open { display: flex; }
  .site-top-inner { position: relative; flex-wrap: wrap; }
  .site-nav-cta { text-align: center; }
  .site-foot-bottom { flex-direction: column; align-items: flex-start; }
}


/* === grok-theme overlay === */
.site {
  background: #f3efe8;
  color: #161311;
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
}
.site a { color: #e10600; }
.site-redline { height: 4px; width: 100%; background: #e10600; }
.site-top {
  background: rgba(243, 239, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #d4cdc2;
  box-shadow: none;
}
.site-top-inner { max-width: 72rem; }
.site-logo { height: 52px; width: auto; }
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #2c2622;
}
.site-nav a:hover,
.site-nav a.on { color: #e10600; }
.site-nav-cta {
  background: #e10600 !important;
  color: #fffdf8 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  text-transform: none;
  letter-spacing: 0;
}
.site-nav-muted { color: #948c83 !important; font-weight: 500 !important; }
.site-hero-bleed {
  min-height: 88svh;
  justify-content: flex-end;
  align-items: stretch;
  text-align: left;
  padding: 0;
  background: #161311;
  overflow: hidden;
}
.site-hero-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.site-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .site-hero-video {
    left: 50%;
    width: auto;
    max-width: none;
    transform: translateX(-50%);
    object-fit: contain;
  }
}
.site-hero-scrim {
  background: linear-gradient(180deg, rgb(22 19 17 / 0.2) 0%, rgb(22 19 17 / 0.12) 35%, rgb(22 19 17 / 0.78) 100%);
}
.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}
.site-hero-content-left { text-align: left; }
.site-hero-content h1 {
  font-weight: 600;
  letter-spacing: -0.04em;
  text-shadow: none;
}
.site-eyebrow-light {
  color: rgba(255,253,248,0.75);
  letter-spacing: 0.22em;
  margin: 0 0 0.75rem;
}
.site-btn-hero {
  border-radius: 8px !important;
  font-weight: 500 !important;
}
a.btn.site-btn-hero-secondary,
.site-btn-hero-secondary {
  display: inline-flex !important;
  align-items: center;
  background: #e10600 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 0.85rem 1.4rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}
a.btn.site-btn-hero-secondary:hover {
  background: #e10600 !important;
  color: #fff !important;
}
.site-product-card {
  background: #fffdf8;
  border: 0;
  border-top: 0 !important;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgb(22 19 17 / 0.07), 0 1px 2px -1px rgb(22 19 17 / 0.06), 0 2px 6px 0 rgb(22 19 17 / 0.04);
}
.site-section { max-width: 72rem; }
.site-section-white { background: #fffdf8; }
.site-foot { background: #161311; color: #fffdf8; }
.site-foot-logo { height: 64px; width: auto; }

