:root {
  --bg: #f5efe6;
  --bg-strong: #e7dccf;
  --surface: rgba(255, 252, 247, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #1f2522;
  --muted: #5a655f;
  --line: rgba(31, 37, 34, 0.12);
  --accent: #b36344;
  --accent-deep: #8f4a31;
  --accent-soft: #ead7cc;
  --trustpilot: #00b67a;
  --sage: #9ba88d;
  --shadow: 0 28px 70px rgba(26, 33, 29, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page-gutter: clamp(18px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(179, 99, 68, 0.12), transparent 28%),
    radial-gradient(circle at right 20%, rgba(155, 168, 141, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f3ec 0%, #f0e7dd 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
}

body.video-lightbox-open {
  overflow: hidden;
}

body.booking-overlay-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.background-orb {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  width: 18rem;
  height: 18rem;
  top: 6rem;
  right: -4rem;
  background: rgba(179, 99, 68, 0.22);
}

.orb-b {
  width: 20rem;
  height: 20rem;
  bottom: 10rem;
  left: -5rem;
  background: rgba(155, 168, 141, 0.22);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding:
    max(20px, env(safe-area-inset-top))
    var(--page-gutter)
    calc(20px + env(safe-area-inset-bottom));
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: static;
  top: auto;
  z-index: 24;
  padding: 12px 20px;
  margin-bottom: 14px;
  border-radius: 24px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(26, 33, 29, 0.1);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(31, 37, 34, 0.06);
}

.brand-logo {
  width: 44px;
  height: auto;
}

.brand-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.brand-kicker,
.eyebrow,
.section-label,
.progress-label,
.step-number {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

.eyebrow:empty {
  display: none;
}

.brand-kicker {
  font-size: clamp(0.92rem, 0.22vw + 0.84rem, 1.02rem);
  font-weight: 800;
  white-space: nowrap;
}

.brand-subtitle {
  min-width: 0;
  font-size: clamp(0.98rem, 0.3vw + 0.86rem, 1.14rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(31, 37, 34, 0.8);
  overflow-wrap: anywhere;
}

@media (max-width: 1120px) {
  .brand-copy {
    align-items: center;
    gap: 8px;
  }

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

  .brand-subtitle {
    font-size: 0.86rem;
  }
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(31, 37, 34, 0.88);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  appearance: none;
}

.ghost-link:hover {
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-1px);
}

.header-call-cta {
  border-color: rgba(44, 113, 246, 0.22);
  background: linear-gradient(135deg, #4b88ff 0%, #1f64ec 100%);
  box-shadow:
    0 16px 32px rgba(31, 100, 236, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
}

.header-call-cta:hover {
  background: linear-gradient(135deg, #5b95ff 0%, #255ee6 100%);
  transform: translateY(-2px);
}

.header-cta {
  position: relative;
  overflow: hidden;
  padding: 13px 22px;
  border-color: rgba(0, 182, 122, 0.18);
  background: linear-gradient(135deg, #23c98a 0%, #118c67 100%);
  box-shadow:
    0 18px 36px rgba(17, 140, 103, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 700;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.header-cta span {
  position: relative;
  z-index: 1;
}

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

.header-cta::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: -42%;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
  transform: skewX(-24deg);
  animation: ctaSheen 3.4s ease-in-out infinite;
}

.header-cta:hover {
  background: linear-gradient(135deg, #31d89d 0%, #118c67 100%);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, -6px);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, 6px);
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero-panel,
.founder-quote-card,
.wave-card,
.trust-grid article,
.process-grid article,
.faq-grid article,
.form-shell,
.stats-strip article {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.review-source-link {
  min-height: 40px;
}

.review-rail-shell {
  position: relative;
  min-width: 0;
}

.review-rail {
  overflow-x: auto;
  padding: 4px 0 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.review-rail::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 14px;
  align-items: stretch;
  width: max-content;
}

.review-card {
  width: clamp(250px, 22vw, 320px);
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 233, 0.88));
  border: 1px solid rgba(31, 37, 34, 0.08);
  box-shadow: 0 18px 36px rgba(26, 33, 29, 0.08);
}

.review-card-top,
.review-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card-top p,
.review-card-meta span,
.review-load-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.review-card-author {
  font-weight: 700;
  color: var(--ink);
}

.review-card-date {
  white-space: nowrap;
}

.review-card-stars {
  margin: 14px 0 10px;
  color: var(--trustpilot);
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.review-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.15;
}

.review-card > p:last-of-type {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-card-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 37, 34, 0.08);
}

.review-load-note {
  margin-top: 6px;
  padding-left: 2px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(520px, 0.94fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: center;
  min-height: auto;
  padding: clamp(22px, 2.3vw, 34px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  max-width: min(700px, 100%);
  padding: clamp(4px, 0.8vw, 10px) 0;
}

.hero-copy-intro,
.hero-copy-main {
  display: grid;
}

.hero-copy-intro {
  gap: 10px;
  max-width: 46rem;
}

.hero-copy-main {
  gap: 16px;
  max-width: 41rem;
}

.hero-copy h1,
.section-heading h2,
.consultation-copy h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 14.4ch;
  font-size: clamp(2.92rem, 3.9vw, 4.95rem);
  line-height: 0.93;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-subheadline,
.consultation-copy p,
.founder-quote-card blockquote,
.trust-grid p,
.process-grid p,
.step-head p,
.form-status,
.summary-card,
.bmi-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-subheadline {
  max-width: 42ch;
  font-size: clamp(1rem, 1vw, 1.11rem);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 38rem;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(143, 74, 49, 0.22);
}

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

.hero-media {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.hero-mobile-video-card {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 848 / 1072;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(234, 224, 214, 0.18)),
    #efe6da;
  box-shadow: 0 24px 52px rgba(26, 33, 29, 0.14);
}

.hero-mobile-video-card,
.review-showcase-video-card {
  cursor: pointer;
}

.hero-mobile-video-card:focus-visible,
.review-showcase-video-card:focus-visible {
  outline: 2px solid rgba(179, 99, 68, 0.6);
  outline-offset: 3px;
}

.hero-mobile-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  min-height: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(234, 224, 214, 0.18)),
    #efe6da;
  box-shadow: 0 26px 56px rgba(26, 33, 29, 0.14);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 239, 230, 0) 40%, rgba(24, 29, 27, 0.18) 100%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-photo-meta {
  position: absolute;
  left: clamp(16px, 1.8vw, 24px);
  right: auto;
  bottom: clamp(16px, 1.8vw, 24px);
  width: min(280px, calc(100% - 40px));
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(22, 27, 25, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(18, 22, 21, 0.22);
  color: #fff;
  z-index: 3;
}

.caption-label,
.caption-name,
.caption-credentials {
  margin: 0;
}

.caption-label {
  color: rgba(255, 255, 255, 0.82);
}

.caption-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.caption-credentials {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.stats-strip,
.insight-grid,
.trust-grid,
.process-grid,
.faq-section,
.consultation-section {
  margin-top: 18px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats-strip article {
  border-radius: 22px;
  padding: 20px;
}

.stats-strip strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 981px) {
  .stats-strip article {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 18px 20px;
  }

  .stats-strip strong {
    flex: 0 0 auto;
    font-size: clamp(2.15rem, 2.8vw, 3rem);
    line-height: 0.92;
    white-space: nowrap;
  }

  .stats-strip span {
    margin-top: 0;
  }
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.founder-quote-card {
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: 14px 20px;
  min-height: auto;
  padding: 14px 22px;
  overflow: hidden;
}

.founder-quote-copy {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 40rem;
  margin: 0;
}

.founder-quote-card blockquote {
  margin-top: 0;
  max-width: 31ch;
  font-family: "Newsreader", serif;
  font-size: clamp(1.55rem, 2.05vw, 2.16rem);
  line-height: 1.12;
  color: var(--ink);
}

.founder-quote-support {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.founder-quote-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
}

.founder-quote-image {
  width: auto;
  max-width: 100%;
  max-height: clamp(270px, 21vw, 336px);
  height: auto;
  object-fit: contain;
  transform: none;
  transform-origin: center center;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading-band {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.82fr);
  align-items: end;
  gap: 12px 24px;
}

.section-heading-card {
  align-items: center;
  gap: 18px 34px;
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(26, 33, 29, 0.06);
  backdrop-filter: blur(14px);
}

.trust-section-heading {
  max-width: none;
  gap: 12px;
  padding-top: 10px;
}

.section-heading-main {
  display: grid;
  gap: 8px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  align-items: end;
  gap: 14px 28px;
}

.section-heading-copy {
  margin: 0;
  max-width: 37ch;
  justify-self: start;
  align-self: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.section-heading h2 {
  font-size: clamp(2rem, 2.45vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading-band .section-heading-main h2 {
  max-width: 13.9ch;
}

.trust-section-heading .section-heading-main h2 {
  max-width: 12.9ch;
}

.process-section .section-heading-main h2 {
  max-width: 13.1ch;
}

.faq-section .section-heading-main h2 {
  max-width: 12.4ch;
}

.trust-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid article,
.process-grid article,
.faq-grid article {
  border-radius: 22px;
  padding: 22px;
}

.trust-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.trust-grid article::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 103, 66, 0.92) 0%, rgba(232, 207, 180, 0.75) 100%);
}

.trust-grid h3,
.process-grid h3,
.faq-grid h3,
.step-head h3 {
  margin: 10px 0 8px;
  font-size: 1.18rem;
}

.trust-grid h3 {
  margin: 0;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid .process-step {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}

.trust-section,
.process-section,
.faq-section {
  display: grid;
  gap: 18px;
}

.consultation-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  padding-bottom: 0;
}

.consultation-copy {
  max-width: none;
  padding: 8px 0 0;
}

.consultation-heading .section-heading-main h2 {
  max-width: 10.6ch;
}

.consultation-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 18px 34px;
}

.consultation-intro-copy {
  max-width: 34ch;
  padding-top: 0;
}

.disclaimer-list {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.disclaimer-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.disclaimer-list p::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 5px rgba(179, 99, 68, 0.08);
  flex: 0 0 auto;
}

.consultation-scroll-stage {
  position: relative;
}

.form-shell {
  border-radius: 28px;
  padding: 18px;
  width: 100%;
}

.form-shell.has-sequence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.form-shell-main {
  min-width: 0;
  display: grid;
  align-content: start;
}

.form-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 16px;
}

.progress-copy {
  margin: 2px 0 0;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 37, 34, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transition: width 0.24s ease;
}

.form-step {
  display: none;
  margin-top: 18px;
}

.form-step.is-active {
  display: block;
  animation: rise 0.32s ease;
}

.form-step[data-step="0"] {
  max-width: 620px;
}

.form-step[data-step="0"] .field-grid {
  gap: 12px;
}

.form-step[data-step="0"] .checkbox-row {
  max-width: 34rem;
  margin-top: 8px;
}

.step-head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-span {
  grid-column: 1 / -1;
}

.field-grid label,
.field-stack {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(31, 37, 34, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(179, 99, 68, 0.22);
  border-color: rgba(179, 99, 68, 0.4);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.conditions-fieldset {
  margin: 18px 0 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.conditions-fieldset legend {
  padding: 0 8px;
  font-weight: 800;
  font-size: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkbox-grid label {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 37, 34, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.checkbox-grid label:hover {
  border-color: rgba(179, 99, 68, 0.24);
  transform: translateY(-1px);
}

.checkbox-grid label:has(input:checked) {
  border-color: rgba(179, 99, 68, 0.38);
  background: rgba(234, 215, 204, 0.82);
  box-shadow: inset 0 0 0 1px rgba(179, 99, 68, 0.08);
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
  flex: 0 0 18px;
}

.bmi-card,
.summary-card,
.emergency-note {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 227, 217, 0.72));
  border: 1px solid rgba(31, 37, 34, 0.08);
}

.bmi-card {
  display: grid;
  gap: 14px;
}

.bmi-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bmi-metric {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 37, 34, 0.08);
}

.bmi-label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.bmi-value {
  margin: 6px 0;
  font-family: "Newsreader", serif;
  font-size: 3rem;
  line-height: 1;
}

.bmi-value-secondary {
  font-size: 2.35rem;
}

.bmi-band,
.bmi-note {
  margin: 0;
  color: var(--muted);
}

.bmi-band {
  font-weight: 600;
}

.bmi-value-cool {
  color: #4477b3;
}

.bmi-value-good {
  color: #2f6a45;
}

.bmi-value-warm {
  color: #9b612f;
}

.bmi-value-alert {
  color: #9f3b25;
}

.consent-stack {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.form-actions {
  margin-top: 24px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
}

.form-sequence-panel {
  display: block;
  min-width: 0;
  position: sticky;
  top: calc(108px + env(safe-area-inset-top));
  align-self: start;
}

.consultation-media-card {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 1.35vw, 18px);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 236, 228, 0.58));
  border: 1px solid rgba(31, 37, 34, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 18px 36px rgba(26, 33, 29, 0.08);
}

.consultation-media-copy {
  display: grid;
  gap: 8px;
}

.consultation-media-copy > * {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.consultation-media-copy h3,
.consultation-media-copy p {
  margin: 0;
}

.consultation-media-copy .section-label {
  color: var(--muted);
}

.consultation-media-copy h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.45rem, 1.65vw, 1.9rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.consultation-media-copy p:last-child {
  color: var(--muted);
  line-height: 1.58;
  max-width: 34ch;
}

.consultation-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(31, 37, 34, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 44px rgba(26, 33, 29, 0.12);
  cursor: pointer;
}

.consultation-video-card:focus-visible {
  outline: 2px solid rgba(179, 99, 68, 0.6);
  outline-offset: 3px;
}

.consultation-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.consultation-video-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.consultation-video-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 22, 21, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.consultation-video-pill-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

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

.form-status.is-success {
  color: #2f6a45;
}

.is-hidden {
  display: none;
}

#consultation,
#howItWorks,
#faq,
#reviews {
  scroll-margin-top: 36px;
}

.site-footer {
  position: static;
  margin: 10px 0 0;
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.site-footer-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.site-credit-line {
  margin: 0;
  width: 100%;
  padding: 10px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 10%, rgba(255, 255, 255, 0.72) 90%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(31, 37, 34, 0.08);
  border-bottom: 1px solid rgba(31, 37, 34, 0.05);
  color: rgba(90, 101, 95, 0.9);
  font-size: 0.88rem;
  line-height: 1.45;
}

.back-to-top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(34, 41, 39, 0.92), rgba(23, 28, 27, 0.96));
  box-shadow: 0 18px 34px rgba(15, 20, 18, 0.14);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(42, 50, 47, 0.94), rgba(28, 34, 32, 0.98));
  box-shadow: 0 22px 40px rgba(15, 20, 18, 0.18);
}

.whatsapp-float {
  position: fixed;
  right: max(20px, calc(env(safe-area-inset-right) + 20px));
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: visible;
  filter: drop-shadow(0 18px 30px rgba(20, 104, 57, 0.22));
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.42);
  outline-offset: 6px;
}

.whatsapp-float-rings {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  pointer-events: none;
}

.whatsapp-float-rings::before,
.whatsapp-float-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.36);
  animation: whatsappRing 2.8s ease-in-out infinite;
}

.whatsapp-float-rings::after {
  animation-delay: 1.1s;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

@keyframes whatsappRing {
  0% {
    transform: scale(0.88);
    opacity: 0;
  }

  20% {
    opacity: 0.9;
  }

  55% {
    opacity: 0.32;
  }

  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

main {
  display: flex;
  flex-direction: column;
}

.hero-panel {
  order: -1;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.review-badge-image {
  width: clamp(180px, 22vw, 300px);
  max-width: 100%;
  object-fit: contain;
}

.review-badge-copy {
  display: grid;
  gap: 8px;
}

.review-badge-copy h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}


[data-animate] {
  animation: rise 0.7s ease both;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 18px 36px rgba(17, 140, 103, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  50% {
    box-shadow:
      0 22px 44px rgba(17, 140, 103, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

@keyframes ctaSheen {
  0% {
    transform: translateX(0) skewX(-24deg);
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  42%,
  100% {
    transform: translateX(430%) skewX(-24deg);
    opacity: 0;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-panel,
  .insight-grid,
  .consultation-section {
    grid-template-columns: 1fr;
  }

  .section-heading-band,
  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading-card {
    gap: 14px;
    padding: 16px 18px;
  }

  .hero-panel {
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
    padding: 0;
  }

  .section-heading-copy {
    max-width: 42ch;
    justify-self: start;
  }

  .founder-quote-card {
    grid-template-columns: 1fr;
  }

  .founder-quote-visual {
    order: -1;
    justify-content: flex-start;
  }

  .founder-quote-image {
    max-width: 240px;
  }

  .hero-copy h1 {
    max-width: 13.5ch;
  }

  .hero-media {
    min-height: 0;
  }

  .review-badge {
    width: 100%;
  }

  .trust-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .background-orb {
    display: none;
  }

  .site-shell {
    width: 100%;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-right: 10px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    padding-left: 10px;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .brand-copy {
    gap: 6px;
  }

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

  .brand-subtitle {
    font-size: 0.8rem;
    line-height: 1.16;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-panel,
  .form-shell,
  .founder-quote-card,
  .stats-strip article,
  .trust-grid article,
  .process-grid article,
  .faq-grid article {
    padding: 20px;
  }

  .wave-card {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 46px;
    padding: 8px 10px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .review-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-copy {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .hero-copy-intro,
  .hero-copy-main {
    justify-items: center;
    max-width: none;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading-main {
    gap: 8px;
  }

  .section-heading-band {
    padding: 14px 14px 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(31, 37, 34, 0.06);
    box-shadow: 0 14px 32px rgba(26, 33, 29, 0.05);
  }

  .section-heading-main::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(179, 99, 68, 0.94) 0%, rgba(232, 207, 180, 0.78) 100%);
    margin-bottom: 4px;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-heading-band h2,
  .section-heading-split h2,
  .trust-section-heading .section-heading-main h2,
  .process-section .section-heading-main h2,
  .faq-section .section-heading-main h2,
  .consultation-heading .section-heading-main h2 {
    max-width: 17.2ch;
    font-size: clamp(1.36rem, 5.4vw, 1.82rem);
    line-height: 1;
    text-wrap: balance;
  }

  .section-heading-band,
  .section-heading-split {
    gap: 6px;
    padding-inline: 0;
  }

  .section-heading-card {
    gap: 12px;
    padding: 14px;
  }

  .section-heading-copy {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.42;
    color: rgba(90, 101, 95, 0.92);
  }

  .trust-grid article,
  .process-grid article,
  .faq-grid article {
    padding: 16px 15px;
    border-radius: 20px;
  }

  .trust-grid h3,
  .process-grid h3,
  .faq-grid h3 {
    font-size: 1rem;
    line-height: 1.16;
  }

  .process-grid .process-step {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .field-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .disclaimer-list p {
    min-height: 0;
  }

  .form-shell.has-sequence-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-sequence-panel {
    position: static;
  }

  .consultation-section {
    padding-bottom: 0;
  }

  .site-footer {
    position: static;
    margin-top: 8px;
  }

  .site-credit-line {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(31, 37, 34, 0.08);
    border-radius: 14px;
  }

  .form-progress {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bmi-metrics {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    order: -1;
    width: 100%;
  }

  .hero-photo-card {
    aspect-ratio: 1.15 / 1;
    min-height: 0;
    border-radius: 22px;
  }

  .hero-photo {
    object-position: center 20%;
  }

  .hero-photo-meta {
    left: 12px;
    right: auto;
    bottom: 12px;
    width: min(260px, calc(100% - 24px));
    padding: 12px 14px;
  }

  .caption-name {
    font-size: 1rem;
  }

  .hero-copy h1,
  .consultation-copy h2,
  .section-heading h2 {
    font-size: clamp(1.72rem, 7.6vw, 2.28rem);
    line-height: 0.94;
  }

  .hero-copy h1 {
    max-width: 11.6ch;
    margin-inline: auto;
    text-align: center;
  }

  .hero-subheadline,
  .consultation-copy p,
  .trust-grid p,
  .process-grid p,
  .faq-grid p,
  .summary-card,
  .bmi-note {
    font-size: 0.98rem;
  }

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

  .button,
  .ghost-link {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .hero-subheadline,
  .hero-actions {
    width: 100%;
  }

  .pill-row span {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .review-source-link {
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links a {
    width: 100%;
    justify-content: center;
  }

  .founder-quote-card blockquote {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .founder-quote-visual {
    padding-inline: 0;
  }

  .founder-quote-image {
    width: min(100%, 320px);
    max-height: 240px;
  }

  .consultation-copy {
    padding: 8px 2px;
  }

  .disclaimer-list {
    gap: 8px;
  }

  .form-progress {
    position: sticky;
    top: calc(8px + env(safe-area-inset-top));
    z-index: 2;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: 18px;
    border: 1px solid rgba(31, 37, 34, 0.08);
    background: rgba(248, 243, 236, 0.92);
    backdrop-filter: blur(12px);
  }

  .step-head {
    margin-bottom: 16px;
  }

  .step-head h3 {
    font-size: 1.12rem;
  }

  .conditions-fieldset {
    padding: 16px 14px;
  }

  .checkbox-row,
  .checkbox-grid label {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
  }

  .checkbox-row input,
  .checkbox-grid input {
    width: 22px;
    height: 22px;
    margin-top: 0;
    flex: 0 0 auto;
  }

  .form-actions {
    position: sticky;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 2;
    gap: 10px;
    padding-top: 14px;
    background:
      linear-gradient(180deg, rgba(248, 243, 236, 0) 0%, rgba(248, 243, 236, 0.94) 24%, rgba(248, 243, 236, 1) 100%);
  }

  .form-status {
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .hero-copy h1,
  .consultation-copy h2,
  .section-heading h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
  }

  .section-heading-band h2,
  .section-heading-split h2,
  .trust-section-heading .section-heading-main h2,
  .process-section .section-heading-main h2,
  .faq-section .section-heading-main h2,
  .consultation-heading .section-heading-main h2 {
    max-width: 15.2ch;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .review-badge-image {
    width: min(100%, 240px);
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .hero-photo-meta {
    width: calc(100% - 24px);
  }

  .pill-row span {
    justify-content: center;
  }
}

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

  [data-animate],
  .form-step.is-active,
  .button,
  .ghost-link,
  .header-cta,
  .header-cta::before,
  .progress-bar span {
    animation: none;
    transition: none;
  }
}

main {
  display: block;
}

.hero-panel {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(680px, 1.08fr);
  gap: clamp(8px, 0.9vw, 14px);
  padding-block: clamp(16px, 1.45vw, 22px);
  padding-inline: clamp(22px, 1.8vw, 26px);
}

.hero-copy {
  max-width: none;
  gap: 12px;
}

.hero-copy-intro {
  gap: 6px;
  max-width: 48rem;
}

.hero-copy-main {
  gap: 12px;
  max-width: 46rem;
}

.hero-copy h1 {
  max-width: 18.8ch;
  font-size: clamp(2.6rem, 2.82vw, 3.82rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-subheadline {
  max-width: 49ch;
  font-size: clamp(1rem, 0.98vw, 1.1rem);
  line-height: 1.55;
}

.hero-media {
  align-items: stretch;
}

.hero-photo-card {
  aspect-ratio: 2.56 / 1;
  min-height: clamp(270px, 20vw, 326px);
}

.hero-photo {
  object-position: center 20%;
}

.hero-photo-meta {
  bottom: 12px;
  width: min(252px, calc(100% - 24px));
  padding: 11px 13px;
}

.review-showcase {
  margin-top: 10px;
  display: grid;
  grid-template-columns: clamp(182px, 14vw, 220px) minmax(0, 1fr);
  align-items: stretch;
  gap: 8px 20px;
  padding: 10px clamp(18px, 1.6vw, 22px) 10px;
  border-radius: 28px;
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.review-showcase-video-card {
  display: block;
  aspect-ratio: 848 / 1072;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 37, 34, 0.08);
  box-shadow: 0 20px 40px rgba(26, 33, 29, 0.08);
}

.review-showcase-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(18px, env(safe-area-inset-top))
    18px
    calc(18px + env(safe-area-inset-bottom));
  background: rgba(14, 18, 17, 0.88);
  backdrop-filter: blur(14px);
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox-player {
  width: min(100%, 820px);
  max-height: calc(100vh - 44px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.video-lightbox-close {
  position: absolute;
  top: calc(16px + env(safe-area-inset-top));
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 22, 21, 0.72);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(18px, env(safe-area-inset-top))
    18px
    calc(18px + env(safe-area-inset-bottom));
  background: rgba(18, 24, 23, 0.42);
  backdrop-filter: blur(8px);
}

.booking-overlay[hidden] {
  display: none;
}

.booking-panel {
  width: min(1040px, 100%);
  max-height: calc(100vh - 52px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(248, 243, 236, 0.98);
  box-shadow: 0 32px 80px rgba(17, 24, 22, 0.22);
}

.booking-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(31, 37, 34, 0.08);
}

.booking-panel-title {
  display: grid;
  gap: 6px;
}

.booking-panel-title h2,
.booking-panel-title p,
.booking-scheduler-copy h3,
.booking-scheduler-copy p,
.booking-option-copy h3,
.booking-option-copy p {
  margin: 0;
}

.booking-panel-title h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 2.35vw, 2.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.booking-panel-title > p:last-child {
  max-width: 52ch;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.5;
}

.booking-panel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.booking-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(31, 37, 34, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  appearance: none;
}

.booking-panel-body {
  min-height: 0;
  overflow: auto;
  padding: 14px 20px 20px;
}

.booking-options-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 37, 34, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 40px rgba(17, 24, 22, 0.06);
}

.booking-option-copy {
  display: grid;
  gap: 8px;
}

.booking-option-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(31, 37, 34, 0.52);
}

.booking-option-copy h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.18rem, 1.4vw, 1.48rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.booking-option-copy p:last-child {
  max-width: 42ch;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.45;
}

.booking-option-button {
  min-width: 92px;
  min-height: 42px;
  padding-inline: 16px;
  border-color: rgba(44, 113, 246, 0.2);
  background: linear-gradient(135deg, #4b88ff 0%, #1f64ec 100%);
  box-shadow: 0 18px 34px rgba(31, 100, 236, 0.2);
  color: #fff;
}

.booking-scheduler-step {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
}

.booking-scheduler-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(31, 37, 34, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.booking-scheduler-copy h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.booking-scheduler-copy p:last-of-type {
  color: var(--muted);
  line-height: 1.7;
}

.booking-open-tab {
  width: 100%;
}

.booking-embed-shell {
  min-height: 0;
  padding: 10px;
  border-radius: 26px;
  border: 1px solid rgba(31, 37, 34, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.booking-embed-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.review-showcase-content {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(31, 37, 34, 0.08);
}

.review-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 14px;
}

.review-badge {
  display: block;
  min-width: 0;
}

.review-badge-mark {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 37, 34, 0.08);
}

.review-badge-brand {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.review-badge-stars {
  color: var(--trustpilot);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.review-badge-inline-label {
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--muted);
}

.review-badge-inline-copy {
  font-family: "Newsreader", serif;
  font-size: clamp(0.96rem, 1vw, 1.18rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.review-source-link {
  min-width: 168px;
  min-height: 36px;
  padding-inline: 14px;
  white-space: nowrap;
}

.review-rail-shell {
  min-width: 0;
  padding-left: 6px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(248, 243, 236, 1) 0%, rgba(248, 243, 236, 0) 4%, rgba(248, 243, 236, 0) 96%, rgba(248, 243, 236, 1) 100%);
}

.review-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}

.review-rail::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  padding: 0;
}

.trust-review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  width: min(282px, calc(100vw - 84px));
  min-height: 164px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 37, 34, 0.08);
  box-shadow: 0 20px 40px rgba(26, 33, 29, 0.08);
}

.trust-review-card-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.trust-review-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.trust-review-meta {
  display: grid;
  gap: 6px;
}

.trust-review-name,
.trust-review-date,
.trust-review-quote,
.trust-review-source,
.trust-review-empty-copy {
  margin: 0;
}

.trust-review-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.trust-review-date {
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-review-stars {
  margin: 0;
  color: var(--trustpilot);
  letter-spacing: 0.16em;
  font-size: 1rem;
  white-space: nowrap;
}

.trust-review-quote {
  color: rgba(31, 37, 34, 0.88);
  line-height: 1.48;
  font-size: 0.9rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.trust-review-source {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-review-empty-copy {
  max-width: 24ch;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .hero-panel {
    grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  }

  .hero-photo-card {
    aspect-ratio: 2.42 / 1;
    min-height: clamp(250px, 23vw, 304px);
  }
}

@media (max-width: 1040px) {
  .hero-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .form-shell.has-sequence-panel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-sequence-panel {
    position: static;
  }

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

  .booking-scheduler-step {
    grid-template-columns: 1fr;
  }

  .review-showcase {
    grid-template-columns: 1fr;
  }

  .review-showcase-video-card {
    display: none;
  }

  .review-showcase-head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: 13.2ch;
  }

  .hero-photo-card {
    aspect-ratio: 1.22 / 1;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
  }

  .brand-lockup {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-header.is-nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, 0.82);
  }

  .header-actions {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-call-cta {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-cta {
    justify-self: auto;
    margin: 0;
    width: auto;
    flex: 0 0 auto;
    min-height: 40px;
    max-width: none;
    padding: 8px 12px;
    font-size: 0.78rem;
    animation: ctaPulse 2.8s ease-in-out infinite;
    white-space: nowrap;
  }

  .header-cta-desktop {
    display: none;
  }

  .header-cta-mobile {
    display: inline;
  }

  .site-header .ghost-link {
    width: auto;
  }

  .site-footer-inner {
    width: 100%;
  }

  .back-to-top-button {
    width: 100%;
  }

  .whatsapp-float {
    right: max(16px, calc(env(safe-area-inset-right) + 16px));
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 16px));
    width: 64px;
    height: 64px;
  }

  .whatsapp-float-icon {
    width: 64px;
    height: 64px;
  }

  .review-showcase {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .review-showcase-content {
    gap: 10px;
  }

  .review-showcase-video-card {
    display: none;
  }

  .review-badge {
    width: 100%;
  }

  .review-badge-mark {
    width: 100%;
    border-radius: 18px;
  }

  .review-source-link {
    width: 100%;
    min-width: 0;
  }

  .review-track {
    gap: 14px;
  }

  .trust-review-card {
    width: min(320px, calc(100vw - 60px));
    min-height: 0;
    padding: 18px;
  }

  .hero-mobile-video-card {
    display: block;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-mobile-video {
    aspect-ratio: auto;
  }

  .booking-overlay {
    padding: 0;
    align-items: stretch;
  }

  .booking-panel {
    width: 100%;
    max-height: none;
    height: 100%;
    border-radius: 0;
  }

  .booking-panel-head,
  .booking-panel-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .booking-panel-head {
    grid-template-columns: 1fr;
    padding-top: calc(14px + env(safe-area-inset-top));
  }

  .booking-panel-controls {
    width: 100%;
    justify-content: space-between;
  }

  .booking-option-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .booking-option-button,
  .booking-open-tab,
  .booking-back {
    width: 100%;
  }

  .booking-scheduler-copy {
    padding: 18px;
  }

  .booking-embed-shell {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .booking-embed-frame {
    min-height: calc(100vh - 260px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    border-radius: 18px;
  }

  .video-lightbox {
    padding: 0;
    align-items: stretch;
  }

  .video-lightbox-player {
    width: 100%;
    max-height: none;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
  }

  .video-lightbox-close {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    width: 42px;
    height: 42px;
  }

  .hero-photo-card {
    display: none;
  }

  .hero-photo-card {
    aspect-ratio: 1.15 / 1;
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .hero-photo-card {
    aspect-ratio: 1 / 1;
  }
}
