:root {
  --blue: #003b7a;
  --blue-bright: #0877d1;
  --navy: #001f4e;
  --navy-deep: #07162e;
  --yellow: #ffc400;
  --yellow-deep: #ffb800;
  --white: #ffffff;
  --surface: #f5f8fc;
  --surface-blue: #eef5fc;
  --text: #334155;
  --ink: #0b1220;
  --muted: #64748b;
  --line: rgba(0, 59, 122, 0.13);
  --shadow-sm: 0 12px 30px rgba(0, 31, 78, 0.09);
  --shadow-md: 0 24px 60px rgba(0, 31, 78, 0.15);
  --shadow-glow: 0 14px 34px rgba(255, 196, 0, 0.25);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --container: 1200px;
  --header-height: 80px;
  --transition: 240ms cubic-bezier(.2, .8, .2, 1);
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.global-bubbles {
  position: fixed;
  z-index: 15;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.global-bubbles span {
  position: absolute;
  bottom: calc(var(--bubble-size) * -1.4);
  left: var(--bubble-left);
  width: var(--bubble-size);
  height: var(--bubble-size);
  border: 1px solid rgba(0, 98, 184, .38);
  border-radius: 50%;
  opacity: .54;
  background:
    radial-gradient(circle at 32% 27%, rgba(255, 255, 255, .8) 0 4%, transparent 8%),
    radial-gradient(circle at 55% 62%, rgba(8, 119, 209, .13), rgba(255, 255, 255, .03) 62%);
  box-shadow:
    inset 0 0 14px rgba(255, 255, 255, .18),
    0 0 18px rgba(8, 119, 209, .06);
  animation: siteBubbleRise var(--bubble-duration) linear var(--bubble-delay) infinite;
}

.global-bubbles span:nth-child(3n) {
  border-color: rgba(255, 184, 0, .34);
}

.global-bubbles span:nth-child(4n) {
  opacity: .36;
}

.global-bubbles span:nth-child(5n) {
  border-width: 2px;
  border-color: rgba(0, 78, 150, .42);
  background:
    radial-gradient(circle at 32% 27%, rgba(255, 255, 255, .92) 0 5%, transparent 9%),
    radial-gradient(circle at 55% 62%, rgba(0, 101, 188, .18), rgba(255, 255, 255, .04) 65%);
}

@keyframes siteBubbleRise {
  from {
    transform: translate3d(0, 115vh, 0) scale(.72);
  }
  55% {
    transform: translate3d(var(--bubble-drift), 42vh, 0) scale(1);
  }
  to {
    transform: translate3d(calc(var(--bubble-drift) * -.5), -22vh, 0) scale(1.08);
  }
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

::selection {
  color: var(--navy);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child,
.product-copy > p,
.washables-copy > p,
.faq-intro > p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button svg,
.mobile-map-cta svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #ffd42a, var(--yellow-deep));
  box-shadow: var(--shadow-glow);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 196, 0, .38);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .14);
}

.button-ghost svg {
  fill: none;
}

.button-sm {
  min-height: 44px;
  padding-inline: 18px;
  font-size: .8rem;
}

.button-wide {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  height: 68px;
  background: rgba(0, 31, 78, .88);
  box-shadow: 0 10px 34px rgba(0, 18, 48, .18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 40px), 1380px);
  height: 100%;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: 172px;
  height: 64px;
  align-items: flex-start;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo {
  width: 210px;
  max-width: none;
  height: auto;
  transform: translate(-13.2%, -22.2%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 600;
  transition: color var(--transition);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  color: var(--navy);
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: max(700px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  z-index: -3;
  background:
    radial-gradient(circle at 78% 25%, rgba(26, 139, 224, .38), transparent 27%),
    radial-gradient(circle at 64% 77%, rgba(0, 94, 177, .34), transparent 32%),
    linear-gradient(135deg, #00142f 0%, #002f68 48%, #004587 72%, #001f4e 100%);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 15, 42, .72) 0%, rgba(0, 31, 78, .28) 58%, rgba(0, 31, 78, .08) 100%),
    repeating-radial-gradient(circle at 78% 48%, transparent 0 72px, rgba(255, 255, 255, .035) 74px 75px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: 31%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  content: "";
  background: rgba(7, 119, 209, .2);
  filter: blur(110px);
}

.hero-inner {
  position: relative;
  display: grid;
  width: min(calc(100% - 40px), 1380px);
  min-height: inherit;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  gap: clamp(46px, 6vw, 90px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 50px) 0 80px;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 28px;
  height: 2px;
  margin-right: 12px;
  content: "";
  background: var(--yellow);
}

.hero-logo-crop {
  width: clamp(260px, 28vw, 330px);
  aspect-ratio: 2.57 / 1;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-logo {
  width: 126.5%;
  max-width: none;
  height: auto;
  transform: translate(-13.2%, -22.2%);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 5.35rem);
  line-height: .98;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-badges li span {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
}

.hero-signoff {
  margin: 20px 0 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.hero-visual-note {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-pill);
  background: rgba(0, 31, 78, .55);
  box-shadow: 0 18px 46px rgba(0, 20, 54, .25);
  backdrop-filter: blur(15px);
}

.hero-visual-note span:last-child {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, .74);
  font-size: .72rem;
  line-height: 1.35;
}

.hero-visual-note strong {
  color: var(--white);
  font-size: .78rem;
}

.note-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #56e39f;
  box-shadow: 0 0 0 6px rgba(86, 227, 159, .13);
}

.hero-pricing {
  position: relative;
  z-index: 2;
  width: 100%;
  scroll-margin-top: 110px;
}

.hero-pricing::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 118%;
  height: 118%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(8, 119, 209, .28), transparent 68%);
  filter: blur(35px);
  transform: translate(-50%, -50%);
}

.hero-pricing-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  text-align: center;
}

.hero-pricing-heading p {
  margin: 0;
  color: var(--yellow);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-pricing-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  letter-spacing: -.04em;
}

.hero-pricing-heading span {
  display: block;
  max-width: 470px;
  color: rgba(224, 239, 255, .68);
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-price-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 390px;
  flex-direction: column;
  padding: 28px 26px 24px;
  border: 1px solid rgba(174, 220, 255, .22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(13, 75, 137, .58), rgba(0, 28, 74, .5));
  box-shadow:
    0 30px 70px rgba(0, 8, 30, .42),
    inset 0 1px 0 rgba(255, 255, 255, .12),
    inset 0 -1px 0 rgba(67, 163, 232, .08);
  backdrop-filter: blur(20px);
  animation: heroCardUp .8s cubic-bezier(.2, .8, .2, 1) .62s both;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-price-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 88% 12%, transparent 0 36px, rgba(255, 255, 255, .07) 37px 38px, transparent 39px),
    radial-gradient(circle at 14% 86%, rgba(8, 119, 209, .12) 0 54px, transparent 55px);
  pointer-events: none;
}

.hero-price-card:nth-child(2) {
  animation-delay: .74s;
}

.hero-price-card:hover {
  border-color: rgba(255, 196, 0, .56);
  box-shadow: 0 36px 82px rgba(0, 8, 30, .5), 0 0 28px rgba(8, 119, 209, .12);
  transform: translateY(-7px) scale(1.012);
}

.hero-price-top {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 50px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-price-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(255, 196, 0, .32);
  border-radius: 16px;
  color: var(--yellow);
  background: linear-gradient(145deg, rgba(255, 196, 0, .14), rgba(255, 255, 255, .05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.hero-price-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-price-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
}

.hero-price-subtitle {
  position: relative;
  z-index: 1;
  min-height: 42px;
  margin-bottom: 18px;
  color: rgba(218, 236, 255, .66);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-price-block {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.hero-old-price {
  margin-bottom: 7px;
  color: rgba(226, 237, 249, .55);
  font-size: .7rem;
  letter-spacing: .02em;
}

.hero-old-price s {
  text-decoration-color: rgba(255, 196, 0, .72);
  text-decoration-thickness: 1.5px;
}

.hero-price-por {
  display: block;
  margin-bottom: 2px;
  color: var(--yellow);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.85rem, 5.35vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .84;
  white-space: nowrap;
}

.hero-price > span {
  margin: 7px 8px 0 0;
  color: var(--yellow);
  font-size: .22em;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-price sup {
  margin-top: 4px;
  color: var(--yellow);
  font-size: .29em;
  letter-spacing: -.02em;
}

.hero-price-footer {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(187, 220, 250, .15);
}

.hero-price-footer strong {
  display: block;
  color: var(--yellow);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-pricing-cta {
  display: flex;
  width: fit-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 20px auto 0;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: linear-gradient(135deg, #ffda38, var(--yellow-deep));
  box-shadow: 0 14px 34px rgba(255, 196, 0, .2);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-pricing-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-pricing-cta:hover {
  box-shadow: 0 18px 42px rgba(255, 196, 0, .34);
  transform: translateY(-4px);
}

.hero-pricing-note {
  max-width: 540px;
  margin: 13px auto 0;
  color: rgba(220, 235, 250, .5);
  font-size: .6rem;
  line-height: 1.55;
  text-align: center;
}

@keyframes heroCardUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
  animation: scrollNudge 1.5s ease-in-out infinite;
}

@keyframes scrollNudge {
  50% { transform: translateY(5px); }
}

.bubble {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .24), rgba(52, 154, 229, .05) 48%, rgba(255, 255, 255, .08));
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .06);
  animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble::after {
  position: absolute;
  top: 18%;
  left: 24%;
  width: 18%;
  height: 10%;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, .34);
  filter: blur(1px);
  transform: rotate(-35deg);
}

.bubble-1 {
  top: 17%;
  right: 5%;
  width: 74px;
  height: 74px;
}

.bubble-2 {
  right: 30%;
  bottom: 16%;
  width: 42px;
  height: 42px;
  animation-delay: -2s;
}

.bubble-3 {
  top: 25%;
  left: 47%;
  width: 25px;
  height: 25px;
  animation-delay: -5s;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-22px) translateX(8px); }
}

.hero-animate {
  opacity: 0;
  animation: heroEnter .75s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-animate:nth-child(1) { animation-delay: .15s; }
.hero-animate:nth-child(2) { animation-delay: .23s; }
.hero-animate:nth-child(3) { animation-delay: .31s; }
.hero-animate:nth-child(4) { animation-delay: .39s; }
.hero-animate:nth-child(5) { animation-delay: .47s; }
.hero-animate:nth-child(6) { animation-delay: .55s; }
.hero-animate:nth-child(7) { animation-delay: .63s; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.quick-trust {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 -16px 45px rgba(0, 24, 65, .08);
}

.quick-trust-inner {
  display: grid;
  width: min(100%, 1440px);
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-height: 160px;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item:hover {
  z-index: 1;
  background: var(--surface);
  transform: translateY(-5px);
}

.line-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--surface-blue);
}

.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-item h2 {
  margin-bottom: 5px;
  font-size: .98rem;
  letter-spacing: -.02em;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.how-section {
  background: var(--surface);
}

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

.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 59, 122, .1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.step-image {
  position: relative;
  aspect-ratio: 1 / .92;
  overflow: hidden;
  background: #e9eef4;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.step-card:hover .step-image img {
  transform: scale(1.045);
}

.step-number {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 7px 20px rgba(0, 31, 78, .2);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
}

.step-content {
  padding: 25px 24px 28px;
}

.step-content h3 {
  margin-bottom: 12px;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

.first-visit {
  display: grid;
  max-width: 920px;
  min-height: 190px;
  align-items: center;
  grid-template-columns: 150px 1fr auto;
  gap: 34px;
  margin: 34px auto 0;
  overflow: hidden;
  padding: 18px 30px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.first-visit img {
  width: 150px;
  height: 154px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 30%;
}

.first-visit h3 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.first-visit p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.first-visit-tag {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--blue);
  background: var(--surface-blue);
  font-size: .75rem;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 8vw, 110px);
  color: rgba(255, 255, 255, .76);
  background:
    radial-gradient(circle at 15% 20%, rgba(8, 119, 209, .32), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #052f69);
}

.pricing-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: .82fr 1.45fr;
  gap: clamp(50px, 8vw, 100px);
}

.pricing-intro h2,
.differences-section h2,
.location-section h2,
.final-cta h2 {
  color: var(--white);
}

.pricing-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .65);
}

.price-cards {
  display: grid;
  align-self: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px) clamp(24px, 3vw, 38px) 32px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 64px rgba(0, 10, 30, .25);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), border-color var(--transition);
}

.price-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  content: "";
}

.price-card:hover {
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-8px);
}

.price-card.featured {
  border-color: rgba(255, 196, 0, .7);
  background: linear-gradient(145deg, rgba(255, 196, 0, .12), rgba(255, 255, 255, .08));
  box-shadow: 0 28px 64px rgba(0, 10, 30, .25), 0 0 38px rgba(255, 196, 0, .11);
}

.price-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--yellow);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.old-price {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .9;
}

.price > span {
  margin: 8px 8px 0 0;
  color: var(--yellow);
  font-size: .9rem;
  letter-spacing: 0;
}

.price sup {
  margin-top: 5px;
  color: var(--yellow);
  font-size: .32em;
  letter-spacing: -.03em;
}

.price-card > p:not(.price, .old-price) {
  min-height: 74px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.price-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.5;
}

.price-foot span {
  margin-right: 4px;
  color: var(--yellow);
}

.pricing-note {
  grid-column: 1 / -1;
  margin: 8px 10px 0;
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
  text-align: center;
}

.pricing-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.orbit-one {
  top: -220px;
  left: -210px;
  width: 520px;
  height: 520px;
}

.orbit-two {
  right: -130px;
  bottom: -230px;
  width: 460px;
  height: 460px;
  border-color: rgba(255, 196, 0, .1);
}

.products-section {
  background: var(--white);
}

.product-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 9vw, 120px);
}

.product-art {
  position: relative;
}

.product-art::before {
  position: absolute;
  z-index: -1;
  right: -5%;
  bottom: -8%;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  content: "";
  background: rgba(8, 119, 209, .12);
  filter: blur(55px);
}

.product-art-frame {
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow var(--transition);
}

.product-art:hover .product-art-frame {
  box-shadow: 0 30px 70px rgba(0, 31, 78, .18);
  transform: translateY(-4px);
}

.product-art-frame img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  object-position: center bottom;
}

.auto-dose {
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 18px 24px;
  border-radius: 20px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: var(--shadow-glow);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.auto-dose strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.product-copy h2,
.washables-copy h2,
.faq-intro h2 {
  max-width: 620px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-list span {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
}

.product-list i {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .68rem;
  font-style: normal;
}

.product-note {
  margin: 18px 0 0;
  color: var(--blue) !important;
  font-size: .77rem !important;
  font-weight: 800;
}

.differences-section {
  color: rgba(255, 255, 255, .75);
  background:
    linear-gradient(rgba(0, 31, 78, .97), rgba(0, 31, 78, .97)),
    url("assets/foto-interno-tv-entrada.jpg") center / cover;
}

.split-heading {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
}

.split-heading > p {
  color: rgba(255, 255, 255, .58) !important;
}

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

.feature {
  position: relative;
  min-height: 285px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow:
    0 22px 48px rgba(0, 10, 30, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature::before {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(8, 119, 209, .3), transparent 68%);
  pointer-events: none;
}

.feature:hover {
  z-index: 1;
  border-color: rgba(255, 196, 0, .5);
  background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .065));
  box-shadow: 0 28px 60px rgba(0, 10, 30, .3), 0 0 28px rgba(255, 196, 0, .08);
  transform: translateY(-8px);
}

.feature .line-icon {
  width: 58px;
  height: 58px;
  margin: 22px 0 28px;
  border: 1px solid rgba(255, 196, 0, .28);
  color: var(--navy);
  background: linear-gradient(145deg, #ffda38, var(--yellow-deep));
  box-shadow: 0 12px 28px rgba(255, 196, 0, .16);
}

.feature .line-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.9;
}

.feature-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, .34);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
}

.feature h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.feature p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
}

.space-section {
  background: var(--surface);
}

.space-heading {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.2fr .65fr;
  gap: 70px;
}

.space-heading p:last-child {
  color: var(--muted);
}

.gallery {
  display: grid;
  height: 790px;
  grid-template-columns: 1fr 1fr .78fr .78fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-main {
  grid-column: 1 / 3;
  grid-row: 1 / -1;
}

.gallery-item:nth-child(6) {
  grid-column: 3 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter var(--transition);
}

.gallery-main img {
  object-position: center 28%;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 20, 52, .78), transparent 45%);
  transition: background var(--transition);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 700;
  text-align: left;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.gallery-item:hover::after {
  background: linear-gradient(0deg, rgba(0, 20, 52, .88), transparent 60%);
}

.washables-section {
  overflow: hidden;
  background: var(--white);
}

.washables-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 120px);
}

.washables-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.washables-list li {
  position: relative;
  padding: 15px 12px 15px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
}

.washables-list li::before {
  position: absolute;
  top: 23px;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, .15);
}

.washables-visual {
  position: relative;
}

.washables-image {
  max-width: 470px;
  overflow: hidden;
  margin-left: auto;
  border-radius: 220px 220px 40px 40px;
  box-shadow: var(--shadow-md);
}

.washables-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 25%;
}

.washables-visual::before {
  position: absolute;
  z-index: -1;
  top: -50px;
  right: -90px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  content: "";
  background: var(--surface-blue);
}

.washables-secondary {
  position: absolute;
  z-index: 1;
  top: 82px;
  left: -58px;
  width: 145px;
  height: 195px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 72px 72px 20px 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

.washables-secondary img {
  width: 100%;
  height: 100%;
  border-radius: 66px 66px 15px 15px;
  object-fit: cover;
  object-position: center 24%;
}

.washables-callout {
  position: absolute;
  bottom: 44px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.washables-callout > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
}

.washables-callout strong,
.washables-callout small {
  display: block;
}

.washables-callout strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .9rem;
}

.washables-callout small {
  color: var(--muted);
  font-size: .7rem;
}

.location-section {
  color: rgba(255, 255, 255, .68);
  background: var(--navy-deep);
}

.location-heading {
  text-align: center;
  margin-inline: auto;
}

.location-heading > p:last-child {
  margin-inline: auto;
  color: rgba(255, 255, 255, .58);
}

.location-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.35fr .65fr;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 35px 90px rgba(0, 8, 24, .35);
}

.map-wrap {
  position: relative;
  min-height: 610px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
  filter: saturate(.78) contrast(1.08);
}

.map-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: .72rem;
  font-weight: 800;
}

.map-label i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, .22);
}

.location-info {
  padding: clamp(32px, 5vw, 60px);
}

.location-address,
.location-hours {
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.location-hours {
  padding-top: 30px;
}

.location-index {
  position: absolute;
  top: 2px;
  right: 0;
  color: rgba(255, 255, 255, .2);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
}

.location-info p {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-info h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.location-info h3 small {
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-body);
  font-size: .72em;
  font-weight: 500;
  letter-spacing: 0;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.location-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  font-weight: 600;
}

.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(55px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-illustration {
  width: 230px;
  height: 170px;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.faq-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 5px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: left;
}

.accordion-item button i {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--transition);
}

.accordion-item button[aria-expanded="true"] i {
  background: var(--yellow);
  transform: rotate(180deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms cubic-bezier(.2, .8, .2, 1);
}

.accordion-panel > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel > p {
  padding: 0 55px 28px 5px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  background:
    radial-gradient(circle at 22% 50%, rgba(8, 119, 209, .35), transparent 33%),
    linear-gradient(120deg, var(--navy-deep), var(--navy));
}

.final-cta-inner {
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
}

.final-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .65);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.final-cta-image {
  align-self: end;
  max-width: 390px;
  height: 540px;
  overflow: hidden;
  margin-left: auto;
  border-radius: 200px 200px 0 0;
  box-shadow: 0 -10px 80px rgba(0, 0, 0, .25);
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.cta-bubble {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.cta-bubble-one {
  top: -160px;
  right: -70px;
  width: 460px;
  height: 460px;
}

.cta-bubble-two {
  bottom: 50px;
  left: 48%;
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, .025);
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, .6);
  background: #050e1d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .7fr .8fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-brand > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  font-weight: 700;
}

.footer-brand .brand {
  width: 220px;
  height: 84px;
}

.footer-brand .brand-logo {
  width: 270px;
}

.footer-label {
  margin-bottom: 12px;
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-info address,
.footer-info > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  font-style: normal;
}

.footer-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-nav a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-route {
  color: var(--yellow);
  font-weight: 700;
}

.mobile-map-cta {
  position: fixed;
  z-index: 900;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-pill);
  color: var(--navy);
  background: linear-gradient(135deg, #ffd738, var(--yellow-deep));
  box-shadow: 0 14px 42px rgba(0, 20, 54, .32);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 800;
}

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 30px 80px;
  background: rgba(2, 8, 19, .94);
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox figure {
  display: flex;
  max-width: min(92vw, 950px);
  max-height: 90vh;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, .16);
  transform: scale(1.06);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 1.8rem;
}

.lightbox-prev {
  top: 50%;
  left: 22px;
  font-size: 2rem;
}

.lightbox-next {
  top: 50%;
  right: 22px;
  font-size: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: .75rem;
  }

  .header-cta {
    display: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-image {
    aspect-ratio: 1.1 / 1;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .pricing-intro {
    display: block;
  }

  .pricing-intro .eyebrow,
  .pricing-intro h2 {
    grid-column: auto;
  }

  .pricing-intro > p:not(.eyebrow) {
    grid-column: auto;
  }

  .gallery {
    height: 720px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 84px 0;
  }

  .container,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(85vw, 360px);
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 100px 32px 32px;
    background: rgba(0, 22, 58, .98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .28);
    transform: translateX(105%);
    transition: transform 350ms cubic-bezier(.2, .8, .2, 1);
  }

  .site-nav::before {
    position: absolute;
    top: 24px;
    left: 32px;
    content: "MENU";
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .hero {
    min-height: max(740px, 100svh);
    align-items: flex-end;
  }

  .hero-photo {
    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 18, 52, .99) 0%, rgba(0, 31, 78, .9) 57%, rgba(0, 20, 55, .25) 100%),
      linear-gradient(90deg, rgba(0, 31, 78, .65), transparent);
  }

  .hero-inner {
    min-height: inherit;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 130px 0 90px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-subtitle {
    max-width: 620px;
  }

  .hero-pricing {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero-visual-note,
  .hero-scroll {
    display: none;
  }

  .quick-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 140px;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: 0;
  }

  .product-layout,
  .washables-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-art {
    max-width: 620px;
    margin-inline: auto;
  }

  .product-art-frame img {
    min-height: auto;
  }

  .split-heading,
  .space-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    min-height: 250px;
  }

  .gallery {
    height: 760px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1.2fr repeat(3, .8fr);
  }

  .gallery-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
  }

  .washables-copy {
    max-width: 690px;
  }

  .washables-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .faq-intro {
    position: static;
  }

  .faq-illustration {
    display: none;
  }

  .final-cta-inner {
    min-height: 560px;
    grid-template-columns: 1.1fr .7fr;
    gap: 35px;
  }

  .final-cta-image {
    height: 470px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-map-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 105px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 74px 0;
  }

  .container,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

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

  .brand {
    width: 150px;
    height: 57px;
  }

  .brand-logo {
    width: 184px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-photo {
    background-position: 62% center;
  }

  .hero-inner {
    gap: 36px;
    padding-bottom: 102px;
  }

  .hero-kicker {
    margin-bottom: 13px;
    font-size: .64rem;
  }

  .hero-logo-crop {
    width: 260px;
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 11.6vw, 3.45rem);
  }

  .hero-subtitle {
    margin-bottom: 23px;
    font-size: .92rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 22px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding-inline: 12px;
    font-size: .73rem;
  }

  .hero-badges {
    display: grid;
    gap: 7px 12px;
    padding-top: 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-badges li {
    font-size: .67rem;
  }

  .hero-signoff {
    margin-top: 12px;
    font-size: .78rem;
  }

  .hero-pricing-heading {
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-pricing-heading h2 {
    font-size: 1.7rem;
  }

  .hero-price-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-price-card {
    min-height: 380px;
    padding: 25px 22px 22px;
    border-radius: 26px;
  }

  .hero-price-top {
    margin-bottom: 17px;
  }

  .hero-price-card h3,
  .hero-price-subtitle {
    text-align: center;
  }

  .hero-price-subtitle {
    min-height: 0;
    margin-bottom: 18px;
  }

  .hero-price-block {
    text-align: center;
  }

  .hero-price {
    justify-content: center;
    font-size: clamp(4.1rem, 21vw, 5.2rem);
  }

  .hero-price-footer {
    text-align: center;
  }

  .hero-pricing-cta {
    width: 100%;
    min-height: 54px;
  }

  .hero-pricing-note {
    font-size: .62rem;
  }

  .bubble-1 {
    top: 16%;
    right: 5%;
    width: 55px;
    height: 55px;
  }

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

  .trust-item {
    min-height: 108px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .trust-item:last-child {
    border-bottom: 0 !important;
  }

  .trust-item .line-icon {
    width: 42px;
    height: 42px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    min-height: 230px;
    grid-template-columns: 42% 58%;
  }

  .step-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .step-image img {
    object-position: center;
    transform: scale(1.25);
    transform-origin: 62% 64%;
  }

  .step-card:hover .step-image img {
    transform: scale(1.25);
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .step-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 22px 20px;
  }

  .step-content h3 {
    font-size: 1.08rem;
  }

  .step-content p {
    font-size: .79rem;
  }

  .first-visit {
    grid-template-columns: 90px 1fr;
    gap: 18px;
    min-height: 150px;
    padding: 14px;
  }

  .first-visit img {
    width: 90px;
    height: 118px;
  }

  .first-visit .eyebrow {
    margin-bottom: 7px;
  }

  .first-visit h3 {
    font-size: 1rem;
  }

  .first-visit p:not(.eyebrow) {
    font-size: .72rem;
    line-height: 1.5;
  }

  .first-visit-tag {
    display: none;
  }

  .pricing-intro {
    display: block;
  }

  .price-cards {
    grid-template-columns: 1fr;
  }

  .price-card {
    border-radius: var(--radius-md);
  }

  .price-card > p:not(.price, .old-price) {
    min-height: 0;
  }

  .product-layout {
    gap: 55px;
  }

  .product-art-frame {
    transform: none;
  }

  .auto-dose {
    right: -6px;
    bottom: -25px;
    padding: 14px 18px;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    padding: 28px;
  }

  .feature .line-icon {
    margin: 18px 0;
  }

  .gallery {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-main {
    min-height: 230px;
    grid-column: auto;
  }

  .gallery-main {
    min-height: 430px;
    grid-column: 1 / -1;
  }

  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
  }

  .gallery-item span {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: .67rem;
  }

  .washables-list {
    grid-template-columns: 1fr;
  }

  .washables-image {
    width: calc(100% - 36px);
    margin-right: 0;
    margin-left: auto;
  }

  .washables-image img {
    height: 520px;
  }

  .washables-secondary {
    top: 82px;
    left: 0;
    width: 105px;
    height: 150px;
  }

  .washables-callout {
    right: 0;
    bottom: 25px;
    left: 0;
    width: calc(100% - 20px);
    margin-inline: auto;
  }

  .location-grid {
    border-radius: var(--radius-md);
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
  }

  .location-info {
    padding: 28px 22px;
  }

  .accordion-item button {
    min-height: 82px;
  }

  .final-cta {
    padding: 78px 0 0;
  }

  .final-cta-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .final-cta-image {
    width: 250px;
    height: 360px;
    margin: 0 auto;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 70px 14px 90px;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .hero-animate {
    opacity: 1;
    transform: none;
  }
}
