:root {
  --ink: #08120f;
  --ink-soft: #34413c;
  --surface: #ffffff;
  --surface-soft: #f3f6f4;
  --surface-dark: #07130f;
  --line: #dce4df;
  --brand: #0d7a54;
  --brand-dark: #075a3e;
  --brand-light: #daf5e8;
  --gold: #d8b45a;
  --gold-soft: #f6edcf;
  --shadow-sm: 0 12px 30px rgba(7, 19, 15, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 19, 15, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(216, 180, 90, 0.12), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(13, 122, 84, 0.1), transparent 30rem);
  content: "";
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #2e9fd8;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.intent-topbar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  padding: 8px 24px;
  background: var(--surface-dark);
  color: #e9f5ef;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intent-topbar span + span::before {
  margin-right: clamp(18px, 4vw, 54px);
  color: var(--gold);
  content: "•";
}

.intent-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 223, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.intent-nav {
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.intent-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.intent-brand-mark {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 44px;
  border: 2px solid #47514d;
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(145deg, #2a3336, #070a0a);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.intent-brand-mark::after {
  position: absolute;
  right: 50%;
  bottom: 4px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #7c8782;
  content: "";
  transform: translateX(50%);
}

.intent-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.intent-brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

.intent-brand small {
  margin-top: 4px;
  color: #55615c;
  font-size: 0.72rem;
  font-weight: 700;
}

.intent-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
  font-size: 0.86rem;
  font-weight: 700;
}

.intent-menu > a:not(.intent-nav-cta) {
  position: relative;
  color: #44514c;
}

.intent-menu > a:not(.intent-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.intent-menu > a:hover::after {
  transform: scaleX(1);
}

.intent-nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 122, 84, 0.2);
}

.intent-nav-cta:hover {
  background: var(--brand-dark);
}

.intent-menu-button {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.intent-menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.intent-breadcrumbs,
.intent-hero,
.intent-section,
.intent-final-cta,
.intent-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.intent-breadcrumbs {
  padding-top: 22px;
}

.intent-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 0;
  margin: 0;
  color: #68736f;
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.intent-breadcrumbs li + li::before {
  margin-right: 9px;
  color: #9aa39f;
  content: "/";
}

.intent-breadcrumbs a:hover {
  color: var(--brand);
}

.intent-hero {
  display: grid;
  min-height: 610px;
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  padding-block: 48px 68px;
}

.intent-eyebrow {
  margin: 0 0 15px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intent-hero h1,
.intent-section h2,
.intent-final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.intent-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

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

.intent-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.intent-button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 15px 28px rgba(13, 122, 84, 0.22);
}

.intent-button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 18px 32px rgba(13, 122, 84, 0.28);
}

.intent-button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.intent-button-secondary:hover {
  border-color: #bcc9c2;
  box-shadow: var(--shadow-sm);
}

.intent-hero-facts {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin: 28px 0 0;
  background: rgba(255, 255, 255, 0.82);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.intent-hero-facts li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 15px 16px;
}

.intent-hero-facts li + li {
  border-left: 1px solid var(--line);
}

.intent-hero-facts span,
.intent-contact-grid span {
  color: #6b7671;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intent-hero-facts strong {
  overflow: hidden;
  margin-top: 3px;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intent-hero-media {
  position: relative;
}

.intent-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.35;
  border: 1px solid #dbe5df;
  border-radius: var(--radius-lg);
  background: #e8edea;
  box-shadow: var(--shadow-lg);
}

.intent-image-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 19, 15, 0.4));
  content: "";
  pointer-events: none;
}

.intent-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.intent-image-frame img[src$="shop.webp"] {
  transform: scale(1.55);
  transform-origin: center bottom;
}

.intent-hero-media:hover img {
  transform: scale(1.025);
}

.intent-hero-media:hover img[src$="shop.webp"] {
  transform: scale(1.6);
}

.intent-availability {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  width: min(330px, calc(100% - 28px));
  flex-direction: column;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(7, 19, 15, 0.94);
  box-shadow: 0 20px 44px rgba(7, 19, 15, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
}

.intent-availability span {
  color: #a9bbb3;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intent-availability strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1rem;
}

.intent-availability small {
  margin-top: 5px;
  color: #c9d5d0;
  font-size: 0.72rem;
}

.intent-section {
  padding-block: clamp(62px, 8vw, 104px);
}

.intent-section + .intent-section {
  border-top: 1px solid #e7ece9;
}

.intent-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.intent-section h2,
.intent-final-cta h2 {
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.06;
}

.intent-section-heading > p:last-child,
.intent-decision > div > p,
.intent-final-cta p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.01rem;
}

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

.intent-info-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.intent-info-card:hover {
  border-color: #b7c9c0;
  box-shadow: 0 18px 46px rgba(7, 19, 15, 0.12);
  transform: translateY(-4px);
}

.intent-info-card > span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-info-card h3 {
  margin: 28px 0 0;
  font-size: clamp(1.22rem, 2.1vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.intent-info-card p {
  margin: 13px 0 0;
  color: #52605a;
  font-size: 0.88rem;
}

.intent-info-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.intent-decision {
  display: grid;
  align-items: start;
  gap: clamp(40px, 8vw, 100px);
  grid-template-columns: 0.85fr 1.15fr;
}

.intent-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--brand-dark);
  font-weight: 800;
}

.intent-checklist {
  padding: 0;
  margin: 0;
  list-style: none;
}

.intent-checklist li {
  display: grid;
  align-items: start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr;
}

.intent-checklist li:first-child {
  padding-top: 0;
}

.intent-checklist span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 900;
}

.intent-checklist p {
  margin: 7px 0 0;
  color: #314039;
  font-size: 0.97rem;
  font-weight: 620;
}

.intent-store {
  border-top: 0 !important;
}

.intent-store-card {
  padding: clamp(30px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 122, 84, 0.16), transparent 40%),
    var(--surface-dark);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.intent-store-card .intent-eyebrow {
  color: #94dfbd;
}

.intent-store-card h2 {
  max-width: 780px;
  color: #fff;
}

.intent-store-card address {
  max-width: 760px;
  margin-top: 22px;
  color: #c5d3cd;
  font-size: 1rem;
  font-style: normal;
}

.intent-contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  grid-template-columns: repeat(3, 1fr);
}

.intent-contact-grid a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 180ms ease, border-color 180ms ease;
}

.intent-contact-grid a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.intent-contact-grid span {
  color: #a8bab2;
}

.intent-contact-grid strong {
  overflow: hidden;
  margin-top: 4px;
  color: #fff;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intent-delivery-note,
.intent-terms-note {
  max-width: 820px;
  margin: 26px 0 0;
  color: #d3dfda;
  font-size: 0.86rem;
}

.intent-terms-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebfb7;
}

.intent-faq-list {
  border-top: 1px solid var(--line);
}

.intent-faq-list details {
  border-bottom: 1px solid var(--line);
}

.intent-faq-list summary {
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 23px 4px;
  cursor: pointer;
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  font-weight: 780;
  grid-template-columns: 1fr 30px;
  list-style: none;
}

.intent-faq-list summary::-webkit-details-marker {
  display: none;
}

.intent-faq-list summary span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--brand-dark);
  transition: transform 180ms ease;
}

.intent-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.intent-faq-list details p {
  max-width: 820px;
  padding: 0 54px 23px 4px;
  margin: 0;
  color: #52605a;
}

.intent-related-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.intent-related-grid a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.intent-related-grid a:hover {
  border-color: #b7c9c0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.intent-related-grid span {
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.intent-related-grid strong {
  margin-top: 25px;
  font-size: 1.08rem;
}

.intent-related-grid small {
  margin-top: auto;
  padding-top: 18px;
  color: #58655f;
  font-weight: 700;
}

.intent-final-cta {
  display: grid;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-lg);
  margin-block: 42px 100px;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 180, 90, 0.22), transparent 22rem),
    var(--surface-dark);
  box-shadow: var(--shadow-lg);
  color: #fff;
  grid-template-columns: 1fr auto;
}

.intent-final-cta .intent-eyebrow {
  color: #94dfbd;
}

.intent-final-cta h2 {
  max-width: 760px;
  color: #fff;
}

.intent-final-cta p {
  color: #c3d2cb;
}

.intent-final-cta > div:last-child {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  gap: 10px;
}

.intent-button-on-dark {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.intent-button-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

.intent-footer {
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  padding-block: 52px 34px;
  border-top: 1px solid var(--line);
  color: #53605b;
  font-size: 0.8rem;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.intent-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.intent-footer p {
  max-width: 360px;
  margin: 8px 0 0;
}

.intent-footer > div > strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intent-footer a:not(.intent-brand):hover {
  color: var(--brand-dark);
}

.intent-footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.intent-brand-footer .intent-brand-mark {
  width: 27px;
  height: 36px;
}

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

@media (max-width: 1040px) {
  .intent-nav {
    width: min(var(--max), calc(100% - 32px));
  }

  .intent-menu {
    gap: 18px;
    font-size: 0.78rem;
  }

  .intent-menu a:nth-child(2),
  .intent-menu a:nth-child(3) {
    display: none;
  }

  .intent-hero,
  .intent-section,
  .intent-breadcrumbs,
  .intent-final-cta,
  .intent-footer {
    width: min(var(--max), calc(100% - 32px));
  }

  .intent-hero {
    min-height: auto;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

  .intent-info-card {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .intent-topbar {
    min-height: 32px;
    justify-content: flex-start;
    overflow: hidden;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .intent-topbar span {
    display: none;
  }

  .intent-topbar span:first-child {
    display: inline;
  }

  .intent-nav {
    min-height: 67px;
  }

  .intent-menu-button {
    display: block;
  }

  .intent-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 14px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 34px rgba(7, 19, 15, 0.12);
    flex-direction: column;
    gap: 0;
  }

  .intent-menu.is-open {
    display: flex;
  }

  .intent-menu a,
  .intent-menu a:nth-child(2),
  .intent-menu a:nth-child(3) {
    display: block;
    padding: 12px 8px;
  }

  .intent-nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .intent-menu > a:not(.intent-nav-cta)::after {
    display: none;
  }

  .intent-hero,
  .intent-section,
  .intent-breadcrumbs,
  .intent-final-cta,
  .intent-footer {
    width: min(100% - 28px, var(--max));
  }

  .intent-breadcrumbs {
    padding-top: 16px;
  }

  .intent-breadcrumbs ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .intent-hero {
    display: flex;
    min-height: 0;
    padding-block: 32px 50px;
    flex-direction: column;
  }

  .intent-hero-copy {
    width: 100%;
  }

  .intent-hero h1 {
    font-size: clamp(2.35rem, 12.2vw, 4.2rem);
    line-height: 0.98;
  }

  .intent-lead {
    margin-top: 19px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .intent-hero-actions {
    display: grid;
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .intent-button {
    width: 100%;
    min-height: 54px;
  }

  .intent-hero-facts {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }

  .intent-hero-facts li {
    display: grid;
    align-items: center;
    padding: 10px 14px;
    grid-template-columns: 84px 1fr;
  }

  .intent-hero-facts li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intent-hero-facts strong {
    margin-top: 0;
    text-align: right;
  }

  .intent-hero-media {
    width: 100%;
  }

  .intent-image-frame {
    aspect-ratio: 4 / 3.7;
    border-radius: 26px;
  }

  .intent-availability {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 15px 17px;
  }

  .intent-section {
    padding-block: 56px;
  }

  .intent-section h2,
  .intent-final-cta h2 {
    font-size: clamp(2rem, 9.5vw, 3.15rem);
  }

  .intent-section-heading {
    margin-bottom: 26px;
  }

  .intent-section-heading > p:last-child,
  .intent-decision > div > p,
  .intent-final-cta p {
    font-size: 0.94rem;
  }

  .intent-info-grid,
  .intent-related-grid {
    grid-template-columns: 1fr;
  }

  .intent-info-card {
    min-height: 230px;
  }

  .intent-decision {
    grid-template-columns: 1fr;
  }

  .intent-checklist li {
    grid-template-columns: 40px 1fr;
  }

  .intent-store-card {
    border-radius: 26px;
  }

  .intent-contact-grid {
    grid-template-columns: 1fr;
  }

  .intent-contact-grid a {
    min-height: 70px;
  }

  .intent-final-cta {
    display: flex;
    padding: 34px 24px;
    border-radius: 26px;
    margin-block: 20px 68px;
    flex-direction: column;
  }

  .intent-final-cta > div:last-child {
    width: 100%;
    min-width: 0;
  }

  .intent-footer {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .intent-footer > small {
    grid-column: auto;
  }

  .intent-mobile-bar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 66px;
    padding: 7px max(10px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(7, 19, 15, 0.97);
    box-shadow: 0 -12px 32px rgba(7, 19, 15, 0.2);
    grid-template-columns: 0.85fr 1.15fr;
    backdrop-filter: blur(12px);
  }

  .intent-mobile-bar a {
    display: flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    flex-direction: column;
  }

  .intent-mobile-bar a:last-child {
    background: var(--brand);
  }

  .intent-mobile-bar span {
    color: #b9c9c2;
    font-size: 0.62rem;
    font-weight: 750;
    text-transform: uppercase;
  }

  .intent-mobile-bar strong {
    margin-top: 1px;
    font-size: 0.78rem;
  }
}

@media (max-width: 390px) {
  .intent-brand strong {
    font-size: 0.88rem;
  }

  .intent-brand small {
    font-size: 0.66rem;
  }

  .intent-hero h1 {
    font-size: 2.18rem;
  }

  .intent-hero-facts strong {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
