@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-hebrew-hebrew.woff2") format("woff2");
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Noto Sans Hebrew";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-hebrew-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #120a11;
  --ink-soft: #21131d;
  --plum: #3a1830;
  --paper: #fff8fb;
  --blush: #f8e8f0;
  --pink: #ff2f9d;
  --pink-light: #ff80c3;
  --cyan: #62e8e2;
  --white: #fffafd;
  --muted-light: #d1c0cb;
  --muted-dark: #66545f;
  --border-light: rgba(255, 255, 255, 0.15);
  --border-dark: rgba(18, 10, 17, 0.13);
  --shadow-soft: 0 22px 60px rgba(50, 10, 34, 0.15);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1160px;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--ink);
  font-family: "Noto Sans Hebrew", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

::selection {
  background: var(--pink);
  color: var(--white);
}

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

button,
input {
  font: inherit;
}

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

button,
summary,
[href] {
  cursor: pointer;
  touch-action: manipulation;
}

button:active,
summary:active,
a[href]:active {
  opacity: 0.78;
}

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

img {
  height: auto;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  right: 10px;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding-inline: clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 10, 17, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(1.2);
}

.wordmark {
  direction: ltr;
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: baseline;
  gap: 0.6rem;
  padding-block: 0.55rem;
  line-height: 1;
}

.wordmark strong {
  color: var(--pink-light);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 47, 157, 0.7);
}

.wordmark span {
  color: var(--muted-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-header nav a {
  position: relative;
  padding-block: 0.6rem;
  color: #eadfe6;
  transition: color 180ms ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 100%;
  height: 2px;
  background: var(--pink);
  content: "";
  transition: left 200ms ease;
}

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

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  left: 0;
}

.header-cta {
  position: relative;
  overflow: hidden;
  justify-self: end;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  background: var(--pink);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 47, 157, 0.32);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ff58b1;
  box-shadow: 0 0 34px rgba(255, 47, 157, 0.46);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.55rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button.button {
  appearance: none;
}

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

.button-primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(255, 47, 157, 0.3);
}

.button-primary:hover {
  background: #ff5db6;
  box-shadow: 0 16px 42px rgba(255, 47, 157, 0.4);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(18, 10, 17, 0.38);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--cyan);
  background: rgba(98, 232, 226, 0.12);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 10, 17, 0.2);
}

.button-dark:hover {
  background: var(--plum);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(18, 10, 17, 0.18);
}

.button-light:hover {
  background: var(--cyan);
}

.shine-cta::after {
  position: absolute;
  top: -55%;
  bottom: -55%;
  left: -38%;
  width: 24%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  pointer-events: none;
  animation: cta-shine 4.8s ease-in-out infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(560px, 70svh, 700px);
  place-items: center;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 15% 24%, rgba(98, 232, 226, 0.12), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 47, 157, 0.18), transparent 30%),
    linear-gradient(135deg, #10080f 0%, #1c0d18 52%, #2d1025 100%);
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: -14%;
  background: radial-gradient(circle at 62% 44%, rgba(255, 47, 157, 0.22), transparent 30%);
  animation: ambient-flow 13s ease-in-out infinite alternate;
}

.hero::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 56% 50%, black, transparent 74%);
}

.hero-shell {
  direction: ltr;
  display: grid;
  width: min(100%, 1240px);
  grid-template-areas: "media copy";
  grid-template-columns: minmax(380px, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-inline: auto;
}

.hero-media {
  position: relative;
  grid-area: media;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #0d080c;
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42), 0 0 46px rgba(255, 47, 157, 0.16);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 47, 157, 0.32);
  border-radius: inherit;
  box-shadow: inset 0 0 46px rgba(255, 47, 157, 0.12);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% 46%;
  filter: saturate(1.06) contrast(1.06) brightness(1.08);
  transform: scale(1.14);
  transform-origin: 18% 50%;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  background: rgba(13, 8, 12, 0.78);
  color: var(--white);
  font-size: 0.76rem;
  backdrop-filter: blur(10px);
}

.hero-media figcaption strong {
  color: var(--pink-light);
  font-size: 0.95rem;
}

.hero-copy {
  position: relative;
  direction: rtl;
  grid-area: copy;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}

.hero-neon-logo {
  direction: ltr;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.55rem;
  color: var(--pink-light);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  line-height: 0.78;
  text-align: center;
}

.hero-neon-logo span {
  font-size: clamp(5.6rem, 9vw, 8.8rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 3px #fff,
    0 0 9px var(--pink),
    0 0 24px var(--pink),
    0 0 50px rgba(255, 47, 157, 0.72);
  animation: neon-pulse 4.2s ease-in-out infinite;
}

.hero-neon-logo small {
  margin-top: 1.35rem;
  color: #ffb9de;
  font-size: clamp(0.95rem, 1.55vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.36em;
  text-shadow: 0 0 9px var(--pink), 0 0 22px rgba(255, 47, 157, 0.82);
}

.hero h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(2.35rem, 4.1vw, 4.15rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-subtitle {
  margin-bottom: 0;
  color: #f1e5ec;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.primary-booking-cta {
  min-height: 64px;
  padding-inline: 2rem;
  font-size: 1.08rem;
}

.promise {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 74px;
  place-items: center;
  overflow: hidden;
  padding: 0.9rem 1rem;
  background: linear-gradient(100deg, #f6208b 0%, #ff49aa 55%, #f6208b 100%);
  color: var(--ink);
}

.promise::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: repeating-linear-gradient(115deg, transparent 0 38px, rgba(255, 255, 255, 0.5) 39px 40px);
  content: "";
}

.promise p {
  z-index: 1;
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
}

.promise strong {
  font-weight: 950;
}

.promise span {
  font-weight: 700;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1rem, 5vw, 4.5rem);
}

.section-heading {
  display: flex;
  width: min(100%, var(--content));
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto clamp(1.35rem, 2.6vw, 2rem);
}

.section-heading h2,
.about-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.08;
  white-space: nowrap;
}

.section-heading p {
  margin-bottom: 0.25rem;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  white-space: nowrap;
}

.section-heading-light h2 {
  color: var(--white);
}

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

.method {
  min-height: calc(100svh - 72px);
  align-content: center;
  background:
    radial-gradient(circle at 7% 14%, rgba(255, 47, 157, 0.2), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(98, 232, 226, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 250, 0.82)),
    var(--paper);
}

.method::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(255, 47, 157, 0.16) 1.5px, transparent 1.5px),
    linear-gradient(120deg, transparent 0 74px, rgba(98, 232, 226, 0.1) 75px 76px, transparent 77px);
  background-size: 28px 28px, 150px 150px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 78%);
}

.method::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 42%;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 157, 0.17), rgba(255, 47, 157, 0.045) 44%, transparent 70%);
  filter: blur(8px);
  content: "";
  pointer-events: none;
  animation: ambient-flow 16s ease-in-out infinite alternate;
}

.method-layout,
.journey-layout {
  display: grid;
  width: min(100%, var(--content));
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-inline: auto;
}

.media-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-card picture,
.media-card img {
  width: 100%;
}

.media-card img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.method-media {
  border: 8px solid rgba(255, 255, 255, 0.92);
  outline: 1px solid rgba(58, 24, 48, 0.13);
  background: var(--ink);
  box-shadow: 0 24px 54px rgba(58, 24, 48, 0.16), 0 0 0 10px rgba(255, 47, 157, 0.045);
}

.method-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(18, 10, 17, 0.9));
  content: "";
  pointer-events: none;
}

.method-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  margin: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 0.75rem;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(18, 10, 17, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(58, 24, 48, 0.06);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.benefit-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 157, 0.5);
  box-shadow: 0 16px 34px rgba(58, 24, 48, 0.11);
}

.benefit-list article > span {
  color: var(--pink);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.benefit-list h3 {
  margin-bottom: 0.25rem;
  font-size: 1.18rem;
  font-weight: 950;
}

.benefit-list p {
  max-width: 46ch;
  margin-bottom: 0;
  color: var(--muted-dark);
  line-height: 1.55;
}

.method-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 47, 157, 0.28);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: linear-gradient(105deg, rgba(255, 47, 157, 0.1), rgba(98, 232, 226, 0.11));
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.method-note strong {
  flex: none;
  color: var(--ink);
  font-size: 1rem;
}

.method-note span {
  max-width: 62ch;
}

.journey {
  background:
    radial-gradient(circle at 15% 20%, rgba(98, 232, 226, 0.15), transparent 24%),
    radial-gradient(circle at 86% 68%, rgba(255, 47, 157, 0.28), transparent 34%),
    linear-gradient(135deg, #120a11, #27121f 58%, #38142d);
  color: var(--white);
}

.journey::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.32;
  background-image: repeating-linear-gradient(120deg, transparent 0 70px, rgba(255, 255, 255, 0.08) 71px 72px);
  content: "";
}

.journey-copy {
  max-width: 500px;
}

.journey-copy > p:not(.journey-lead) {
  max-width: 45ch;
  margin-bottom: 1.75rem;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.journey-lead {
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 950;
}

.journey-media {
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dark);
}

.about {
  background:
    radial-gradient(circle at 10% 78%, rgba(98, 232, 226, 0.25), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 47, 157, 0.3), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 222, 239, 0.3)),
    var(--blush);
}

.about::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.38;
  background-image: radial-gradient(rgba(58, 24, 48, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.about-shell {
  display: grid;
  width: min(100%, 1160px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-lg) + 8px);
  background: rgba(255, 250, 253, 0.72);
  box-shadow: var(--shadow-soft), 0 0 54px rgba(255, 47, 157, 0.12);
  backdrop-filter: blur(14px);
}

.about-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(58, 24, 48, 0.2);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 47, 157, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 0 36px rgba(255, 47, 157, 0.2);
  content: "";
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
}

.about-copy {
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.4rem, 2vw, 1.25rem);
}

.about-copy h2 {
  color: var(--ink);
}

.about-copy > p {
  max-width: 55ch;
  color: var(--muted-dark);
  font-size: 1.03rem;
}

.about-copy > p:first-of-type {
  margin-top: 1.35rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(58, 24, 48, 0.16);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 850;
}

.faq {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 47, 157, 0.38), transparent 32%),
    radial-gradient(circle at 88% 92%, rgba(255, 47, 157, 0.2), transparent 25%),
    radial-gradient(circle at 90% 100%, rgba(98, 232, 226, 0.14), transparent 30%),
    var(--ink);
  color: var(--white);
}

.faq-list {
  display: grid;
  width: min(100%, 880px);
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-inline: auto;
}

.faq details {
  align-self: start;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq details[open] {
  border-color: rgba(255, 47, 157, 0.62);
  background: rgba(255, 47, 157, 0.09);
}

.faq summary {
  position: relative;
  min-height: 64px;
  padding: 1.15rem 3.25rem 1.05rem;
  font-weight: 900;
  text-align: center;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--pink-light);
  content: "+";
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--pink);
  color: var(--ink);
}

.faq details p {
  max-width: 68ch;
  margin: -0.1rem auto 1.25rem;
  padding-inline: 1.25rem;
  color: var(--muted-light);
  line-height: 1.6;
  text-align: center;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 8vw, 8rem);
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
  background: linear-gradient(112deg, #ff238f 0%, #ff5eb8 55%, #62e8e2 145%);
  color: var(--ink);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: repeating-linear-gradient(118deg, transparent 0 52px, rgba(255, 255, 255, 0.65) 53px 54px);
  content: "";
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.final-cta p {
  margin: 0.35rem 0 0;
  font-weight: 750;
  white-space: nowrap;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem 2rem;
  padding: 1.5rem clamp(1rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d070c;
  color: var(--white);
}

footer p,
footer small {
  margin: 0;
  color: #ad9da7;
}

footer p {
  font-size: 0.86rem;
}

footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

footer nav button,
footer nav a {
  min-height: 44px;
  border: 0;
  padding: 0.55rem 0.2rem;
  background: transparent;
  color: #d9cdd5;
  font-size: 0.82rem;
  font-weight: 700;
}

footer nav button:hover,
footer nav a:hover {
  color: var(--pink-light);
}

footer small {
  grid-column: 1 / -1;
  font-size: 0.72rem;
}

.site-dialog {
  width: min(94vw, 700px);
  max-height: min(92svh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 47, 157, 0.28), transparent 26%),
    var(--ink-soft);
  color: var(--white);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
}

.contact-dialog {
  width: min(96vw, 1080px);
  max-height: 94svh;
}

.contact-dialog .dialog-content {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.site-dialog::backdrop {
  background: rgba(8, 4, 7, 0.78);
  backdrop-filter: blur(9px);
}

.dialog-close-form {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  justify-content: flex-end;
  height: 0;
  margin: 0;
}

.dialog-close {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0.75rem 0 0 0.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(18, 10, 17, 0.8);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.dialog-close:hover {
  background: var(--pink);
  color: var(--ink);
}

.dialog-content {
  padding: clamp(2.2rem, 7vw, 4rem);
}

.dialog-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  white-space: nowrap;
}

.dialog-content > p {
  color: var(--muted-light);
}

.dialog-content a:not(.button) {
  color: var(--pink-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dialog-neon {
  direction: ltr;
  margin-bottom: 1rem;
  color: var(--pink-light);
  font-family: "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 0 0 9px var(--pink), 0 0 22px rgba(255, 47, 157, 0.75);
}

.dialog-privacy {
  margin: 1.15rem 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.dialog-privacy summary {
  min-height: 48px;
  padding: 0.75rem 1rem;
  color: #f5eaf1;
  font-size: 0.86rem;
  font-weight: 850;
}

.dialog-privacy p {
  margin: 0 1rem 0.8rem;
  color: #bbaab5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.booking-form {
  margin-top: 1.35rem;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.booking-progress li {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.58rem 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  color: #a998a3;
  font-size: 0.78rem;
}

.booking-progress li span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.booking-progress li b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-progress li.is-current {
  border-color: rgba(255, 47, 157, 0.62);
  background: rgba(255, 47, 157, 0.12);
  color: var(--white);
}

.booking-progress li.is-current span {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 0 16px rgba(255, 47, 157, 0.55);
}

.booking-progress li.is-complete {
  border-color: rgba(98, 232, 226, 0.38);
  color: #c9fffb;
}

.booking-slide {
  animation: booking-slide-in 220ms ease both;
}

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

.booking-slide-heading {
  margin-bottom: 1rem;
}

.booking-slide-heading h3 {
  margin: 0 0 0.25rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.booking-slide-heading p {
  margin: 0;
  color: #c7b8c1;
  font-size: 0.88rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.weight-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.booking-field {
  display: grid;
  gap: 0.38rem;
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.booking-field > span {
  color: #f2e6ed;
  font-size: 0.84rem;
  font-weight: 850;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  font-size: 1rem;
  color-scheme: dark;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--pink-light);
  outline: 0;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 3px rgba(255, 47, 157, 0.2);
}

.booking-field input::placeholder {
  color: #aa99a4;
}

.booking-field select option {
  background: #24121e;
  color: var(--white);
}

.booking-field input[aria-invalid="true"],
.booking-field select[aria-invalid="true"] {
  border-color: #ff6f9b;
  background: rgba(155, 24, 68, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 80, 132, 0.16);
}

.booking-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.booking-navigation-next {
  justify-content: flex-end;
}

.booking-navigation .button {
  min-width: min(100%, 190px);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 0.75rem;
  color: #ddd0d8;
  font-size: 0.74rem;
  font-weight: 800;
}

.calendar-legend span::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-inline-end: 0.35rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
  box-shadow: 0 0 9px currentColor;
}

.legend-available { color: #8fffc1; }
.legend-closed { color: #ff8cae; }
.legend-holiday { color: #d2a8ff; }
.legend-vacation { color: #ffd275; }

.booking-calendar {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.calendar-weekdays,
.calendar-days {
  direction: rtl;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.42rem;
}

.calendar-weekdays {
  margin-bottom: 0.42rem;
}

.calendar-weekdays span {
  padding-block: 0.25rem;
  color: #bfaeba;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.calendar-spacer {
  min-height: 64px;
}

.calendar-day {
  display: grid;
  min-width: 0;
  min-height: 64px;
  place-content: center;
  gap: 0.1rem;
  border: 1px solid;
  border-radius: 12px;
  padding: 0.3rem 0.15rem;
  font: inherit;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.calendar-day .calendar-date {
  font-size: 1.02rem;
  font-weight: 950;
}

.calendar-day small {
  overflow: hidden;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day.is-available {
  border-color: rgba(108, 255, 170, 0.52);
  background: rgba(34, 137, 82, 0.22);
  color: #b9ffd4;
  box-shadow: inset 0 0 18px rgba(77, 255, 151, 0.08), 0 0 12px rgba(77, 255, 151, 0.08);
  cursor: pointer;
}

.calendar-day.is-available:hover,
.calendar-day.is-available:focus-visible {
  transform: translateY(-2px);
  border-color: #8fffc1;
  outline: 3px solid rgba(143, 255, 193, 0.18);
  box-shadow: 0 0 18px rgba(77, 255, 151, 0.26);
}

.calendar-day.is-selected {
  border-color: var(--pink-light);
  background: linear-gradient(145deg, rgba(255, 47, 157, 0.52), rgba(61, 181, 132, 0.42));
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 47, 157, 0.18), 0 0 22px rgba(255, 47, 157, 0.4);
}

.calendar-day.is-closed {
  border-color: rgba(255, 92, 135, 0.34);
  background: rgba(149, 29, 62, 0.18);
  color: #ff9db7;
}

.calendar-day.is-closed .calendar-date::after {
  margin-inline-start: 0.2rem;
  content: "×";
  color: #ff537f;
}

.calendar-day.is-holiday {
  border-color: rgba(194, 137, 255, 0.42);
  background: rgba(103, 55, 145, 0.24);
  color: #dfc2ff;
}

.calendar-day.is-vacation {
  border-color: rgba(255, 205, 96, 0.42);
  background: rgba(145, 103, 24, 0.22);
  color: #ffe09a;
}

.calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.82;
}

.selection-summary {
  min-height: 26px;
  margin: 0.7rem 0 0;
  color: #dcefe9;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.time-picker {
  margin: 0;
  border: 0;
  padding: 0;
}

.time-picker legend {
  margin-bottom: 0.55rem;
  color: #f2e6ed;
  font-size: 0.86rem;
  font-weight: 900;
}

.time-options {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.time-option {
  min-height: 54px;
  border: 1px solid rgba(98, 232, 226, 0.35);
  border-radius: 13px;
  background: rgba(98, 232, 226, 0.08);
  color: #c8fffc;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.time-option:hover,
.time-option:focus-visible {
  border-color: var(--aqua);
  outline: 3px solid rgba(98, 232, 226, 0.15);
}

.time-option[aria-pressed="true"] {
  border-color: var(--pink-light);
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(255, 47, 157, 0.4);
}

.booking-review {
  min-height: 48px;
  margin-top: 0.9rem;
  border: 1px solid rgba(98, 232, 226, 0.22);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  background: rgba(98, 232, 226, 0.07);
  color: #e8fffd;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.booking-slide > small {
  display: block;
  margin-top: 0.7rem;
  color: #aa99a4;
  font-size: 0.74rem;
  text-align: center;
}

.consent-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.75rem;
  margin: 1.15rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.consent-row input {
  width: 22px;
  height: 22px;
  margin: 0.15rem 0 0;
  accent-color: var(--pink);
}

.consent-row span {
  color: #e6dae2;
  font-size: 0.88rem;
  line-height: 1.55;
}

.consent-row button {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 0;
  padding: 0 0.12rem;
  background: transparent;
  color: var(--pink-light);
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-feedback {
  display: none;
  margin: 0 0 0.8rem;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}

.booking-feedback:focus {
  outline: 0;
}

@media (min-width: 901px) {
  .method-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  }

  .benefit-list {
    align-content: center;
  }
}

.booking-feedback.is-error,
.booking-feedback.is-success {
  display: block;
}

.booking-feedback.is-error {
  border: 1px solid rgba(255, 128, 160, 0.45);
  background: rgba(155, 24, 68, 0.26);
  color: #ffd4e4;
}

.booking-feedback.is-success {
  border: 1px solid rgba(98, 232, 226, 0.4);
  background: rgba(27, 122, 117, 0.24);
  color: #bffaf7;
}

.dialog-action {
  width: 100%;
}

.dialog-action[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
  filter: grayscale(0.4);
}

.dialog-content > small {
  display: block;
  margin-top: 0.75rem;
  color: #aa99a4;
  font-size: 0.75rem;
  text-align: center;
}

.legal-dialog .dialog-content p {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header > nav {
    display: none;
  }

  .method-layout,
  .journey-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .journey-media {
    order: -1;
  }

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

  .about-shell {
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
    gap: 2rem;
  }

  .about-copy h2 {
    font-size: clamp(2rem, 4.7vw, 2.8rem);
  }

  .hero-shell {
    grid-template-columns: minmax(320px, 0.9fr) minmax(410px, 1.1fr);
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 64px;
    gap: 0.65rem;
    padding-inline: 0.85rem;
  }

  .wordmark {
    gap: 0.42rem;
  }

  .wordmark strong {
    font-size: 1.15rem;
  }

  .wordmark span {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .header-cta {
    min-height: 48px;
    padding-inline: 1rem;
    font-size: 0.86rem;
  }

  .button {
    min-height: 50px;
    padding: 0.72rem 1rem;
    font-size: 0.93rem;
  }

  .hero {
    min-height: 0;
    padding: 1.6rem 1rem 2rem;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 47, 157, 0.16), transparent 34%);
  }

  .hero::after {
    opacity: 0.14;
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, transparent 25%, black 100%);
  }

  .hero-shell {
    grid-template-areas: "copy" "media";
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
  }

  .hero-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .hero-media img {
    object-position: 16% 46%;
    transform: scale(1.16);
  }

  .hero-media figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    font-size: 0.66rem;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .hero-neon-logo {
    display: flex;
    margin-bottom: 1rem;
  }

  .hero-neon-logo span {
    font-size: clamp(4.35rem, 22vw, 6.2rem);
  }

  .hero-neon-logo small {
    margin-top: 0.95rem;
    font-size: clamp(0.7rem, 3.4vw, 0.92rem);
    letter-spacing: 0.3em;
  }

  .hero h1 {
    margin-bottom: 0.3rem;
    font-size: clamp(1.7rem, 7.8vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: clamp(0.88rem, 4vw, 1.05rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.15rem;
  }

  .hero-actions .primary-booking-cta {
    width: 100%;
    min-height: 58px;
  }

  .hero-actions .button-secondary {
    width: min(66%, 240px);
    min-height: 48px;
    justify-self: center;
  }

  .promise {
    min-height: 82px;
    padding-block: 0.75rem;
  }

  .promise p {
    display: grid;
    gap: 0;
    font-size: 0.97rem;
    line-height: 1.45;
  }

  .section {
    padding: 3.15rem 1rem;
  }

  .method {
    min-height: auto;
  }

  .section-heading {
    display: block;
    margin-bottom: 1.65rem;
    text-align: center;
  }

  .section-heading h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: clamp(1.65rem, 7.4vw, 2rem);
    letter-spacing: -0.045em;
  }

  .section-heading p {
    margin-top: 0.35rem;
    font-size: clamp(0.82rem, 3.6vw, 0.95rem);
  }

  .method-layout,
  .journey-layout {
    gap: 1.45rem;
  }

  .media-card {
    border-radius: 20px;
  }

  .method-media figcaption {
    right: 0.9rem;
    bottom: 0.7rem;
    left: 0.9rem;
    font-size: 0.76rem;
  }

  .benefit-list {
    gap: 0.6rem;
  }

  .benefit-list article {
    grid-template-columns: 38px 1fr;
    gap: 0.65rem;
    padding: 0.95rem;
    border-radius: 16px;
  }

  .benefit-list article > span {
    font-size: 1.1rem;
  }

  .benefit-list h3 {
    margin-bottom: 0.15rem;
    font-size: 1.02rem;
  }

  .benefit-list p {
    font-size: 0.87rem;
    line-height: 1.55;
  }

  .method-note {
    display: grid;
    gap: 0.2rem;
    text-align: center;
  }

  .journey-copy {
    text-align: center;
  }

  .journey-copy > p:not(.journey-lead) {
    margin-inline: auto;
    font-size: 0.94rem;
  }

  .journey-lead {
    font-size: 1.25rem;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .about-photo img {
    aspect-ratio: 4 / 5;
    object-position: center 30%;
  }

  .about-copy {
    padding: 0.4rem 0.45rem 0.75rem;
    text-align: center;
  }

  .about-copy > p {
    margin-inline: auto;
    font-size: 0.92rem;
    text-align: right;
  }

  .about-copy > p:first-of-type {
    margin-top: 1rem;
  }

  .trust-list {
    justify-content: center;
    margin-block: 1rem 1.3rem;
  }

  .trust-list li {
    padding: 0.4rem 0.62rem;
    font-size: 0.75rem;
  }

  .faq summary {
    min-height: 58px;
    padding: 1rem 3rem 0.9rem;
    font-size: 0.95rem;
  }

  .faq details p {
    margin-inline: 1rem;
    font-size: 0.87rem;
  }

  .final-cta {
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    padding-block: 2.65rem;
    text-align: center;
  }

  .final-cta p {
    font-size: 0.84rem;
  }

  .final-cta .button {
    width: min(100%, 300px);
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
    padding-block: 1.6rem;
    text-align: center;
  }

  footer nav {
    justify-content: center;
    gap: 0.8rem;
  }

  footer small {
    grid-column: auto;
  }

  .dialog-content {
    padding: 3rem 1.25rem 1.7rem;
  }

  .contact-dialog {
    width: 100vw;
    max-width: none;
    height: 100svh;
    max-height: 100svh;
    border: 0;
    border-radius: 0;
  }

  .contact-dialog .dialog-content {
    min-height: 100%;
    padding: 3.25rem 1rem 1.25rem;
  }

  .dialog-content h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

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

  .booking-field-wide {
    grid-column: auto;
  }

  .booking-progress li {
    display: grid;
    justify-items: center;
    gap: 0.25rem;
    font-size: 0.67rem;
    text-align: center;
  }

  .booking-progress li span {
    width: 24px;
    height: 24px;
  }

  .weight-pair {
    gap: 0.55rem;
  }

  .calendar-weekdays,
  .calendar-days {
    gap: 0.25rem;
  }

  .booking-calendar {
    padding: 0.48rem;
  }

  .calendar-spacer,
  .calendar-day {
    min-height: 54px;
  }

  .calendar-day {
    border-radius: 9px;
  }

  .calendar-day .calendar-date {
    font-size: 0.9rem;
  }

  .calendar-day small {
    font-size: 0.49rem;
  }

  .time-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-navigation .button {
    min-width: 0;
    flex: 1;
    padding-inline: 0.55rem;
  }
}

@media (max-width: 360px) {
  .wordmark span {
    display: none;
  }

  .header-cta {
    padding-inline: 0.8rem;
    font-size: 0.8rem;
  }

  .hero-neon-logo span {
    font-size: 4.2rem;
  }

  .hero h1 {
    font-size: 1.62rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-actions .button {
    padding-inline: 0.65rem;
    font-size: 0.82rem;
  }

  .section-heading h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 1.52rem;
  }

  .section-heading p,
  .final-cta p {
    font-size: 0.78rem;
  }

  footer nav {
    gap: 0.55rem;
  }

  footer nav button,
  footer nav a {
    font-size: 0.75rem;
  }
}

@media (max-height: 500px) and (min-width: 701px) {
  .hero {
    min-height: 460px;
    padding-block: 1.5rem;
  }

  .hero-neon-logo {
    margin-bottom: 1rem;
  }

  .hero-neon-logo span {
    font-size: clamp(4.8rem, 10vw, 6.4rem);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes ambient-flow {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
}

@keyframes neon-pulse {
  0%, 100% { opacity: 0.92; filter: brightness(0.96); }
  50% { opacity: 1; filter: brightness(1.14); }
}

@keyframes cta-shine {
  0%, 64% { transform: translateX(0) skewX(-22deg); opacity: 0; }
  70% { opacity: 0.8; }
  88%, 100% { transform: translateX(680%) skewX(-22deg); opacity: 0; }
}

@keyframes booking-slide-in {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}
