:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f3;
  --panel: #ffffff;
  --panel-2: #090909;
  --text: #080808;
  --muted: #5d6266;
  --line: rgba(8, 8, 8, 0.14);
  --accent: #e41f2b;
  --accent-2: #b91520;
  --ink: #ffffff;
  --shadow: 0 26px 70px rgba(8, 8, 8, 0.16);
  --container: min(1180px, calc(100vw - 40px));
  color-scheme: light;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("https://askit.dextheme.net/waxy/wp-content/uploads/sites/22/2024/09/FKJK87Q.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  z-index: 50;
  background: var(--accent);
  color: #ffffff;
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
  transition: transform 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.topbar {
  width: var(--container);
  min-height: 34px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}

.topbar__social,
.topbar__meta,
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__social a,
.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.7rem;
  text-transform: uppercase;
  transition: 220ms ease;
}

.topbar__social a:hover,
.social-links a:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.topbar__meta a,
.topbar__meta span {
  color: var(--muted);
}

.navbar {
  width: var(--container);
  height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 156px;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--text);
  transition: color 220ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.2rem;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(8, 8, 8, 0.42);
}

.button--outline:hover {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.button--dark {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.button--dark:hover {
  background: var(--accent-2);
  color: #ffffff;
}

.button--review {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.button--review:hover {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 0 0;
  color: #ffffff;
}

.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: heroFade 18s infinite, kenBurns 18s infinite;
}

.hero__slide--one {
  background-image: url("assets/tinted-callout-bg.jpg");
}

.hero__slide--two {
  background-image: url("assets/tinted-discount-bg.jpg");
  animation-delay: 6s;
}

.hero__slide--three {
  background-image: url("assets/tinted-about-main.jpg");
  animation-delay: 12s;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.12)),
    linear-gradient(to top, #ffffff, rgba(0, 0, 0, 0.16) 34%);
}

@keyframes heroFade {
  0%, 30% { opacity: 1; }
  38%, 100% { opacity: 0; }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  45% { transform: scale(1.09); }
  100% { transform: scale(1.02); }
}

.hero__content {
  align-self: center;
  padding: 34px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  max-width: 630px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 800;
}

h3 {
  line-height: 1.1;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: #d7e1e3;
}

.care-list img,
.trust-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.care-list p,
.trust-row p,
.price-card p,
.footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

.partners {
  padding: 54px 0;
  background: var(--bg);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
  align-items: center;
}

.partner-strip span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: 220ms ease;
}

.partner-strip span:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.section {
  position: relative;
  padding: 120px 0;
}

.about {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
  min-height: 920px;
}

.about__main {
  width: 84%;
  height: 700px;
  margin-left: 0;
  object-fit: cover;
  object-position: 80% center;
  box-shadow: var(--shadow);
}

.booking-card {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: min(360px, 82%);
  padding: 30px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
}

.booking-card p {
  color: rgba(255, 255, 255, 0.82);
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: inherit;
  font-size: 0.82rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.16);
  background: rgba(8, 8, 8, 0.03);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 0;
  resize: vertical;
}

.booking-card input,
.booking-card textarea {
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.booking-card input::placeholder,
.booking-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-status {
  min-height: 22px;
  margin: 4px 0 12px;
  font-size: 0.84rem;
}

.form-status.is-error {
  color: #ffdfdf;
}

.booking-card .form-status.is-error {
  color: #ffffff;
}

.form-status.is-success {
  color: var(--accent-2);
}

.booking-card .form-status.is-success {
  color: #ffffff;
}

.care-list {
  display: grid;
  gap: 28px;
  margin: 38px 0 32px;
}

.care-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.care-list h3 {
  margin-bottom: 7px;
  font-size: 1.22rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.services {
  background: #090909;
  color: #ffffff;
}

.service-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  min-height: 380px;
}

.service-panel {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.04));
}

.service-panel div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
}

.service-panel h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.service-panel a,
.text-link {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-panel:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.callout {
  position: relative;
  isolation: isolate;
  padding: 110px 0;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.36) 100%),
    url("assets/tinted-callout-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("https://askit.dextheme.net/waxy/wp-content/uploads/sites/22/2024/09/FKJK87Q.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.callout__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.callout h2 {
  margin-bottom: 8px;
}

.callout p {
  color: var(--accent);
  font-weight: 700;
}

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

.callout__stats article {
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.callout__stats strong {
  display: block;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.callout__stats span {
  color: var(--accent);
  font-weight: 700;
}

.trust-row {
  padding: 54px 0;
  border-block: 1px solid var(--line);
  background: #090909;
  color: #ffffff;
}

.trust-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.trust-row article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
}

.trust-row article img {
  grid-row: 1 / 3;
  align-self: center;
}

.trust-row article p {
  grid-column: 2;
}

.trust-row h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.trust-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.testimonials {
  background: radial-gradient(circle at 50% 0, rgba(228, 31, 43, 0.08), transparent 38%), #ffffff;
}

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

.testimonial-grid article {
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-mark {
  display: block;
  color: var(--accent);
  font-size: 4rem;
  line-height: 0.75;
  font-weight: 800;
}

.testimonial-grid p {
  min-height: 150px;
  font-size: 1.28rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.22;
}

.testimonial-grid div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-grid strong {
  font-size: 1rem;
}

.testimonial-grid div span {
  color: var(--muted);
  font-size: 0.78rem;
}

.stars {
  display: block;
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.testimonial-cta {
  margin-top: 48px;
  text-align: center;
}

.faq {
  padding-top: 70px;
  background: var(--bg);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
}

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

.faq-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
}

.faq-item span {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-item small {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  transition: max-height 260ms ease, opacity 260ms ease, margin 260ms ease;
}

.faq-item.is-open small {
  max-height: 160px;
  opacity: 1;
  margin-top: 12px;
}

.pricing {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.pricing .container {
  width: min(1420px, calc(100vw - 48px));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 42px 24px;
  background: #090909;
  color: #ffffff;
  border: 1px solid rgba(8, 8, 8, 0.16);
  box-shadow: var(--shadow);
}

.price-card--featured {
  background: #ffffff;
  color: var(--text);
  border-color: var(--accent);
}

.price-card h3 {
  margin-bottom: 18px;
}

.price {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: clamp(2rem, 2.45vw, 2.85rem);
  font-weight: 800;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  overflow-wrap: normal;
}

.price-card--featured .price {
  color: var(--accent);
}

.price span,
.price small {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.15;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 158px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent);
}

.price-card--featured li::before {
  color: var(--accent);
}

.price-card p {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price-card--featured p {
  color: var(--muted);
  border-color: rgba(8, 8, 8, 0.18);
}

.price-card:not(.price-card--featured) p {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
}

.price-card .button {
  margin-top: auto;
}

.discount {
  padding: 120px 0;
  text-align: center;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
    url("assets/tinted-discount-bg.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.discount h2 {
  max-width: 680px;
  margin-inline: auto;
}

.discount h2 span {
  color: var(--accent);
}

.discount p {
  color: #d7e1e3;
}

.contact {
  color: #ffffff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.94)),
    url("https://askit.dextheme.net/waxy/wp-content/uploads/sites/22/2024/09/FKJK87Q.jpg");
  background-size: cover;
  background-position: center;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 90px;
  align-items: center;
}

.contact__info address,
.contact__info a {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
}

.contact__info .social-links {
  margin-top: 24px;
}

.contact-form {
  padding: 48px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  color: var(--text);
}

.check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.check input {
  width: 15px;
  height: 15px;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 28px;
  background: #090909;
  color: #ffffff;
  border-top: 1px solid var(--line);
}

.services .section-heading p:not(.eyebrow),
.callout .button--outline,
.footer .button--outline {
  color: #ffffff;
}

.callout .button--outline,
.footer .button--outline,
.contact .social-links a,
.footer .social-links a {
  border-color: rgba(255, 255, 255, 0.42);
}

.contact .social-links a,
.footer .social-links a {
  color: #ffffff;
}

.footer__cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer__cta img {
  width: 178px;
  padding: 8px 10px;
  background: #ffffff;
}

.footer__cta h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 52px;
  padding: 44px 0;
}

.footer h3 {
  margin-bottom: 16px;
}

.footer__grid a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  transition: color 180ms ease;
}

.footer p,
.footer__grid a,
.footer__bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer__grid a:hover,
.footer__bottom a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer__bottom span:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ba-section {
  background: #090909;
  color: #fff;
  padding: 82px 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.ba-copy {
  max-width: 620px;
}

.ba-copy h2 {
  margin-bottom: 18px;
}

.ba-copy > p:not(.eyebrow),
.ba-compare > p {
  color: rgba(255, 255, 255, 0.72);
}

.ba-benefits {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.ba-benefits article {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.ba-benefits strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.ba-benefits span {
  color: rgba(255, 255, 255, 0.68);
}

.ba-compare > p {
  margin: 0 0 16px;
  text-align: center;
  font-weight: 700;
}

.ba-track {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: pan-y;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.1);
}

.ba-pane {
  position: absolute;
  inset: 0;
  background-image: url('assets/before-after.jpg');
  background-repeat: no-repeat;
  background-size: 200% auto;
}

.ba-pane--before {
  background-position: 0% 20%;
}

.ba-pane--after {
  background-position: 100% 20%;
  clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #fff;
  pointer-events: none;
}

.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}

.ba-label {
  position: absolute;
  bottom: 14px;
  padding: 5px 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.ba-label--before { left: 14px; }
.ba-label--after  { right: 14px; }

@media (max-width: 640px) {
  .ba-section { padding: 60px 0; }
  .ba-track { max-width: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .topbar {
    display: none;
  }

  .navbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 220ms ease;
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero__content {
    padding: 84px 0 64px;
  }

  .about__grid,
  .faq__grid,
  .contact__grid,
  .ba-grid,
  .footer__cta {
    grid-template-columns: 1fr;
  }

  .callout__grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
  }

  .partner-strip,
  .trust-row__grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about__grid,
  .contact__grid {
    gap: 54px;
  }

  .service-panels {
    grid-template-columns: 1fr;
  }

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

  .ba-copy {
    max-width: none;
  }

  .price-card--featured {
    transform: none;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 500px);
  }

  .brand img {
    width: 116px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .section {
    padding: 84px 0;
  }

  .care-list article,
  .trust-row article {
    grid-template-columns: 1fr;
  }

  .partner-strip,
  .trust-row__grid,
  .pricing-grid,
  .testimonial-grid,
  .callout__stats,
  .callout__grid,
  .ba-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .partner-strip {
    gap: 26px;
  }

  .about__media {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .about__main,
  .booking-card {
    position: static;
    width: 100%;
    margin-left: 0;
  }

  .about__main {
    height: 360px;
  }

  .booking-card,
  .contact-form,
  .price-card,
  .testimonial-grid article {
    padding: 26px;
  }

  .callout,
  .discount {
    background-attachment: scroll;
  }

  .footer__cta {
    gap: 22px;
  }

  .footer__bottom {
    display: grid;
  }
}
