:root {
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Syne", "Manrope", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --bg: #f5f0e8;
  --bg-alt: #ece3d3;
  --surface: rgba(255, 252, 246, 0.78);
  --surface-strong: #fffdf8;
  --ink: #0f141b;
  --ink-soft: #4c5563;
  --night: #11161d;
  --night-soft: #1a222b;
  --line: rgba(16, 20, 27, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold: #c9a36a;
  --gold-deep: #9f7540;
  --teal: #0e6a66;
  --cyan: #5dc4da;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 32px rgba(13, 16, 22, 0.12);
  --shadow-strong: 0 30px 70px rgba(10, 14, 20, 0.24);
  --container: min(1140px, calc(100% - 2.2rem));
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 8% 0%, rgba(201, 163, 106, 0.22), transparent 60%),
    radial-gradient(800px 500px at 100% 10%, rgba(93, 196, 218, 0.18), transparent 70%),
    linear-gradient(180deg, #f7f3ec 0%, #efe6d9 48%, #f6f2ea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -15vh -20vw;
  pointer-events: none;
  background:
    radial-gradient(420px 280px at 82% 24%, rgba(17, 22, 29, 0.08), transparent 70%),
    radial-gradient(580px 360px at 20% 72%, rgba(201, 163, 106, 0.12), transparent 75%);
  z-index: -2;
  filter: blur(10px);
  animation: auraDrift 22s ease-in-out infinite;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 0.65px, transparent 0.65px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

body.lightbox-open {
  overflow: hidden;
}

.parallax-layer {
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.55rem 0;
  transition: padding 0.35s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.94), rgba(247, 243, 236, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  padding: 0.4rem 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(15, 21, 30, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(16, 20, 27, 0.16);
  background: #fff;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-links a {
  padding: 0.54rem 0.78rem;
  border-radius: 999px;
  color: #273140;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.nav-links a:hover {
  background: rgba(16, 20, 27, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links .nav-pill {
  padding: 0.58rem 1rem;
  color: #f9f5ee;
  background: linear-gradient(135deg, var(--night), #26303d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(11, 15, 21, 0.28);
}

.nav-links .nav-pill:hover {
  background: linear-gradient(135deg, #11161d, #11161d);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.nav-open .nav-toggle .bar:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle .bar:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(0.6rem, 1.8vw, 1.1rem) 0 clamp(3.2rem, 6vw, 5.5rem);
}

.hero-aura {
  position: absolute;
  inset: 8% 0 auto 0;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(760px 320px at 70% 40%, rgba(17, 22, 29, 0.2), transparent 70%),
    radial-gradient(620px 300px at 26% 22%, rgba(201, 163, 106, 0.34), transparent 70%);
  filter: blur(6px);
  opacity: 0.9;
  animation: auraPulse 12s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: start;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(16, 20, 27, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  padding-left: 0.58rem;
  border-left: 1px solid rgba(16, 20, 27, 0.2);
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero h1 {
  margin-top: 0.35rem;
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  line-height: 1.02;
}

.hero .serif {
  display: inline-block;
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 1.14em;
  font-style: italic;
  font-weight: 400;
}

.lead {
  margin-top: 0.25rem;
  max-width: 54ch;
  color: #344252;
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 0.9rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

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

.btn-primary {
  color: #121820;
  background: linear-gradient(135deg, #e2c185, #c59457);
  box-shadow: 0 12px 26px rgba(157, 116, 62, 0.34);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -110% auto -110% -40%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: buttonSweep 3.8s linear infinite;
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(157, 116, 62, 0.42);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.63);
  border-color: rgba(16, 20, 27, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.hero-highlights {
  display: grid;
  list-style: none !important;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
  grid-column: 1 / -1;
  margin-top: clamp(0.35rem, 1.2vw, 0.9rem);
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}

.hero-highlights li,
.hero-highlights li::marker {
  list-style: none !important;
  content: "";
}

.hero-highlight-card {
  display: grid;
  gap: 0.24rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(16, 20, 27, 0.12);
  border-radius: 16px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-highlight-metric strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
}

.hero-highlight-metric span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.hero-highlight-card h3 {
  font-size: 0.82rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-highlight-card p {
  margin-top: 0.38rem;
  color: #3b4b5f;
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  align-self: start;
  position: relative;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 0.58rem;
  min-height: auto;
}

.hero-visual-inner {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: end;
  align-items: start;
  min-height: auto;
}

.hero-visual-kicker {
  justify-self: end;
  padding: 0.36rem 0.7rem;
  border: 1px solid rgba(16, 20, 27, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #253246;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-image-card {
  position: relative;
  width: min(420px, 100%);
  height: clamp(220px, 26vw, 290px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: #10161d;
  box-shadow: var(--shadow-strong);
  animation: floatCard 9s ease-in-out infinite;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

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

.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.03);
}

section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  display: grid;
  gap: 0.55rem;
  max-width: 700px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.service-lab {
  position: relative;
  overflow: hidden;
  color: #f6f3ee;
  background: linear-gradient(160deg, #11161d, #171f29 60%, #0f161e);
}

.service-lab::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 54%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201, 163, 106, 0.24), transparent 72%);
  pointer-events: none;
}

.service-lab .eyebrow {
  color: #f5efe4;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-light);
}

.service-lab .eyebrow span {
  color: #d8dbe2;
  border-color: rgba(255, 255, 255, 0.18);
}

.service-switch {
  display: inline-flex;
  gap: 0.3rem;
  max-width: 100%;
  margin-top: 1.6rem;
  padding: 0.36rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.service-toggle {
  padding: 0.72rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #d8dce6;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition:
    background 0.24s var(--ease),
    color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}

.service-toggle.is-active {
  color: #11161d;
  background: linear-gradient(135deg, #e2c185, #c59457);
  box-shadow: 0 8px 20px rgba(197, 148, 85, 0.26);
}

.service-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  margin-top: 1.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  animation: panelRise 0.5s var(--ease);
}

.panel-main,
.panel-aside {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-main h3,
.panel-aside h4 {
  font-size: 1.35rem;
}

.panel-main p {
  margin-top: 0.68rem;
  max-width: 54ch;
  color: #cfd4de;
}

.panel-list {
  display: grid;
  gap: 0.62rem;
  margin-top: 0.9rem;
}

.panel-list li {
  position: relative;
  padding-left: 1.06rem;
  color: #e4e9f2;
}

.panel-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d4ae73;
}

.package-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.package-list li {
  display: grid;
  gap: 0.18rem;
  padding: 0.72rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.package-list span {
  color: #fbf7ef;
  font-weight: 700;
}

.package-list small {
  color: #c8cfdb;
}

.inline-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: #e2be84;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.experience {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card {
  padding: 1.1rem;
  border: 1px solid rgba(16, 20, 27, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.step-index {
  display: inline-flex;
  padding: 0.32rem 0.5rem;
  border-radius: 8px;
  color: #e7d3af;
  background: #11161d;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.step-card h3 {
  margin-top: 0.78rem;
  font-size: 1.3rem;
}

.step-card p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 27, 0.12);
  border-radius: 18px;
  background: #0f141b;
  box-shadow: var(--shadow-soft);
}

.gallery-shot {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
}

.gallery-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.45s var(--ease),
    filter 0.45s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.3));
  transition: opacity 0.3s var(--ease);
}

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

.gallery-item:hover::after {
  opacity: 0.18;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.56rem 0.68rem 0.62rem;
  color: #f4f8ff;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 14, 0.7) 35%, rgba(4, 8, 14, 0.88) 100%);
}

.gallery-note {
  margin-top: 0.88rem;
  color: #536073;
  font-size: 0.88rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 16, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s var(--ease);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0.92rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(10, 14, 21, 0.84);
  box-shadow: 0 30px 70px rgba(1, 3, 6, 0.48);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.26s var(--ease),
    transform 0.26s var(--ease);
}

.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox.is-open .lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #f2f7ff;
  background: rgba(16, 21, 30, 0.74);
  cursor: pointer;
}

.lightbox-close {
  top: 0.56rem;
  right: 0.56rem;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  font-size: 1.05rem;
}

.lightbox-nav.prev {
  left: 0.56rem;
}

.lightbox-nav.next {
  right: 0.56rem;
}

.lightbox-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #080d13;
  min-height: 300px;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.lightbox-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem;
  color: #eef3ff;
  font-size: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 4, 8, 0.65) 46%, rgba(2, 4, 8, 0.9) 100%);
}

.compare-shell {
  display: grid;
  align-content: start;
  gap: 0.68rem;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.compare-head p {
  color: #f0f5ff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.compare-head span {
  color: #d9b67e;
  font-size: 0.83rem;
  font-weight: 700;
}

.compare-stage {
  --compare: 55%;
  position: relative;
  height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #080d13;
  cursor: ew-resize;
}

.compare-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--compare);
  overflow: hidden;
  border-right: 2px solid rgba(217, 182, 126, 0.8);
}

.compare-after-wrap img {
  width: 100%;
}

.compare-handle {
  position: absolute;
  top: 10px;
  left: var(--compare);
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(11, 16, 24, 0.76);
  box-shadow: 0 0 0 7px rgba(6, 8, 12, 0.22);
  pointer-events: none;
}

.compare-range-label {
  color: #cad3e5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-range {
  width: 100%;
  accent-color: #d2ad73;
}

.booking {
  position: relative;
  overflow: hidden;
  color: #f5f1ea;
  background: linear-gradient(160deg, #11161d, #151c25 55%, #0f151d);
}

.booking::before {
  content: "";
  position: absolute;
  inset: auto auto -30% -10%;
  width: 46%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(93, 196, 218, 0.2), transparent 70%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.booking-copy p {
  max-width: 52ch;
  margin-top: 0.9rem;
  color: #cfd3dd;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-lines li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #e8edf4;
  font-size: 0.95rem;
}

.contact-lines span {
  color: #cfb180;
  font-weight: 700;
}

.contact-lines a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  gap: 0.86rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.booking-form label {
  display: grid;
  gap: 0.3rem;
  color: #dfe4ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(11, 16, 22, 0.48);
  padding: 0.72rem 0.78rem;
  color: #f7f9fc;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease),
    background 0.24s var(--ease);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form label.has-error input,
.booking-form label.has-error select,
.booking-form label.has-error textarea {
  border-color: rgba(219, 116, 116, 0.88);
  box-shadow: 0 0 0 3px rgba(219, 116, 116, 0.2);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #cfb180;
  box-shadow: 0 0 0 3px rgba(207, 177, 128, 0.2);
  background: rgba(11, 16, 22, 0.68);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.field-error {
  margin-top: 0.08rem;
  color: #f3a9a9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.policy-note {
  color: #aeb9ca;
  font-size: 0.76rem;
  line-height: 1.5;
}

.policy-note a {
  color: #9ad4ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 1.1rem;
  color: #cfb180;
  font-size: 0.86rem;
}

.form-status.is-pending {
  color: #d8c19b;
}

.form-status.is-success {
  color: #86dfb5;
}

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

.site-footer {
  padding: 1.3rem 0 2.2rem;
  color: #d8dce6;
  background: #0d131a;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.2rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-legal a {
  color: #cfe0f7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-legal span {
  color: #8ca0b8;
}

.legal-page {
  min-height: 100vh;
  color: #d8e5f8;
  background:
    radial-gradient(700px 320px at 10% -10%, rgba(112, 196, 255, 0.14), transparent 68%),
    radial-gradient(680px 320px at 90% 110%, rgba(102, 236, 213, 0.1), transparent 75%),
    #060b12;
}

.legal-main {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.legal-shell {
  width: min(900px, calc(100% - 1.6rem));
  margin: 0 auto;
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(165, 203, 251, 0.24);
  border-radius: 22px;
  background: rgba(8, 14, 22, 0.76);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 0.72rem;
  color: #9ad4ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-shell h1 {
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  line-height: 1.05;
}

.legal-meta {
  margin-top: 0.35rem;
  color: #9fb2cb;
  font-size: 0.9rem;
}

.legal-shell h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.legal-shell p,
.legal-shell li {
  margin-top: 0.5rem;
  color: #c6d4e7;
  line-height: 1.62;
}

.legal-shell ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.legal-shell a {
  color: #9ad4ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-note {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  color: #95a8bf;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  padding: 0.82rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #121820;
  background: linear-gradient(135deg, #e2c185, #c59457);
  box-shadow: 0 16px 30px rgba(139, 104, 57, 0.3);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(139, 104, 57, 0.4);
}

.floating-cta:active {
  transform: translateY(0);
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 44;
  transform: translateX(-50%);
  width: min(560px, calc(100vw - 13.5rem));
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(10, 16, 24, 0.92);
  box-shadow: 0 18px 34px rgba(2, 6, 10, 0.54);
}

.consent-banner[hidden] {
  display: none !important;
}

.consent-banner p {
  color: #dce8f8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  padding: 0.64rem 0.92rem;
  font-size: 0.8rem;
}

body.theme-noir {
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Syne", sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ink: #edf5ff;
  --ink-soft: #a5b5cd;
  --line: rgba(199, 222, 255, 0.26);
  --shadow-soft: 0 20px 38px rgba(2, 6, 10, 0.44);
  --shadow-strong: 0 38px 84px rgba(1, 4, 8, 0.66);
  --noir-accent: #92d4ff;
  --noir-accent-2: #69f2d6;
  --noir-accent-soft: rgba(146, 212, 255, 0.2);
  --noir-surface: rgba(11, 18, 29, 0.76);
  color: var(--ink);
  background:
    radial-gradient(920px 600px at 8% -6%, rgba(84, 149, 255, 0.24), transparent 60%),
    radial-gradient(760px 520px at 100% 10%, rgba(91, 242, 214, 0.2), transparent 70%),
    radial-gradient(720px 440px at 52% 88%, rgba(70, 115, 193, 0.18), transparent 72%),
    linear-gradient(180deg, #05080f 0%, #0a1019 44%, #04070d 100%);
}

body.theme-noir::before {
  background:
    radial-gradient(460px 300px at 82% 22%, rgba(132, 190, 255, 0.2), transparent 70%),
    radial-gradient(620px 360px at 22% 74%, rgba(67, 174, 182, 0.2), transparent 76%);
  animation: noirDrift 28s ease-in-out infinite;
}

body.theme-noir::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(163, 208, 255, 0.08) 0,
      rgba(163, 208, 255, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: screen;
  animation: noirScan 14s linear infinite;
}

body.theme-noir .grain {
  opacity: 0.1;
  mix-blend-mode: screen;
}

body.theme-noir .site-header::after {
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.56) 70%, transparent);
}

body.theme-noir .nav-shell {
  border-color: rgba(168, 205, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(10, 16, 25, 0.88), rgba(8, 13, 21, 0.78)),
    linear-gradient(145deg, rgba(128, 182, 255, 0.1), rgba(83, 230, 206, 0.08));
  box-shadow: 0 16px 32px rgba(0, 3, 8, 0.42);
}

body.theme-noir .nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(148, 203, 255, 0.26);
  border-radius: inherit;
  pointer-events: none;
}

body.theme-noir .brand img {
  border-color: rgba(210, 228, 255, 0.22);
  background: #070c14;
}

body.theme-noir .brand-sub {
  color: #9eb0cb;
}

body.theme-noir .nav-links a {
  color: #cfdaee;
}

body.theme-noir .nav-links {
  background: transparent;
}

body.theme-noir .nav-links a:hover {
  color: #f2f8ff;
  background: rgba(146, 212, 255, 0.16);
}

body.theme-noir .nav-links .nav-pill {
  color: #08111c;
  background: linear-gradient(135deg, var(--noir-accent), var(--noir-accent-2));
  border-color: rgba(174, 219, 255, 0.28);
  box-shadow: 0 10px 24px rgba(33, 121, 172, 0.38);
}

body.theme-noir .nav-toggle {
  border-color: rgba(179, 213, 255, 0.32);
  background: rgba(10, 16, 25, 0.8);
}

body.theme-noir .nav-toggle .bar {
  background: #e7eefb;
}

body.theme-noir .eyebrow {
  color: #e8f1fe;
  border-color: rgba(165, 202, 250, 0.3);
  background: rgba(8, 13, 20, 0.7);
}

body.theme-noir .eyebrow span {
  color: #9fb3ce;
  border-color: rgba(170, 205, 252, 0.26);
}

body.theme-noir .lead {
  color: #a7b8d0;
}

body.theme-noir .hero-aura {
  background:
    radial-gradient(880px 340px at 72% 44%, rgba(146, 212, 255, 0.32), transparent 74%),
    radial-gradient(640px 330px at 22% 24%, rgba(105, 242, 214, 0.22), transparent 72%);
  filter: blur(10px);
  opacity: 1;
  animation: noirFlux 10.5s ease-in-out infinite;
}

body.theme-noir .hero h1 {
  color: #f2f8ff;
  text-shadow: 0 10px 22px rgba(64, 110, 178, 0.26);
}

body.theme-noir .hero-visual-kicker {
  border-color: rgba(170, 208, 255, 0.28);
  background: rgba(8, 13, 21, 0.76);
  color: #cfe3ff;
}

body.theme-noir .hero .serif {
  color: #9bd8ff;
}

body.theme-noir .btn-primary {
  color: #061220;
  background: linear-gradient(135deg, var(--noir-accent), var(--noir-accent-2));
  box-shadow: 0 14px 30px rgba(47, 137, 191, 0.42);
}

body.theme-noir .btn-primary::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: noirSheen 4.1s linear infinite;
}

body.theme-noir .btn-primary:hover {
  box-shadow: 0 18px 36px rgba(47, 137, 191, 0.56);
}

body.theme-noir .btn-secondary {
  color: #e7eef9;
  border-color: rgba(170, 206, 255, 0.26);
  background: rgba(12, 20, 31, 0.72);
}

body.theme-noir .btn-secondary:hover {
  background: rgba(16, 28, 43, 0.94);
}

body.theme-noir .hero-highlight-card {
  border-color: rgba(173, 210, 255, 0.24);
  background: rgba(9, 14, 23, 0.74);
}

body.theme-noir .hero-highlight-metric span {
  color: #9eb2ca;
}

body.theme-noir .hero-highlight-card p {
  color: #9fb2cb;
}

body.theme-noir .hero-image-card::before {
  border-color: rgba(183, 218, 255, 0.28);
}

body.theme-noir .service-lab {
  background:
    radial-gradient(760px 360px at 16% -10%, rgba(146, 212, 255, 0.22), transparent 72%),
    radial-gradient(680px 340px at 86% 110%, rgba(104, 241, 214, 0.16), transparent 75%),
    linear-gradient(160deg, #060b12, #0a1018 58%, #050911);
}

body.theme-noir .service-lab::before {
  background: radial-gradient(ellipse at center, rgba(116, 189, 255, 0.26), transparent 72%);
}

body.theme-noir .service-toggle {
  color: #c6d6ee;
}

body.theme-noir .service-toggle.is-active {
  color: #06101d;
  background: linear-gradient(135deg, var(--noir-accent), var(--noir-accent-2));
  box-shadow: 0 10px 24px rgba(42, 136, 183, 0.36);
}

body.theme-noir .service-panel {
  border-color: rgba(168, 206, 255, 0.2);
  background: rgba(9, 14, 23, 0.68);
}

body.theme-noir .panel-main,
body.theme-noir .panel-aside {
  border-color: rgba(165, 203, 251, 0.18);
  background: rgba(10, 16, 26, 0.62);
}

body.theme-noir .panel-main p,
body.theme-noir .package-list small {
  color: #a8b8ce;
}

body.theme-noir .package-list li {
  border-color: rgba(171, 208, 255, 0.2);
  background: rgba(8, 14, 22, 0.62);
}

body.theme-noir .inline-link {
  color: #8fd0ff;
}

body.theme-noir .experience {
  background:
    radial-gradient(800px 280px at 25% 5%, rgba(146, 212, 255, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

body.theme-noir .step-card {
  border-color: rgba(172, 208, 255, 0.18);
  background: rgba(8, 14, 23, 0.72);
}

body.theme-noir .step-index {
  color: #07111d;
  background: linear-gradient(135deg, var(--noir-accent), var(--noir-accent-2));
}

body.theme-noir .step-card p {
  color: #9dafc7;
}

body.theme-noir .section-head h2,
body.theme-noir .gallery-note {
  color: #ebf4ff;
}

body.theme-noir .gallery-note {
  color: #a2b4cb;
}

body.theme-noir .gallery-item {
  border-color: rgba(164, 203, 254, 0.26);
  box-shadow: 0 18px 34px rgba(2, 6, 10, 0.4);
}

body.theme-noir .gallery-item::after {
  background: linear-gradient(180deg, transparent 34%, rgba(2, 6, 12, 0.72));
}

body.theme-noir .gallery-item figcaption {
  color: #dcecff;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 5, 9, 0.56) 30%, rgba(2, 5, 9, 0.9) 100%);
}

body.theme-noir .booking {
  background:
    radial-gradient(760px 360px at 86% -14%, rgba(146, 212, 255, 0.16), transparent 72%),
    radial-gradient(620px 340px at 16% 110%, rgba(105, 242, 214, 0.14), transparent 72%),
    linear-gradient(160deg, #050a11, #09101a 58%, #050911);
}

body.theme-noir .booking::before {
  background: radial-gradient(ellipse at center, rgba(130, 193, 255, 0.22), transparent 70%);
}

body.theme-noir .booking-copy p {
  color: #a8b9cf;
}

body.theme-noir .contact-lines span {
  color: #8fd0ff;
}

body.theme-noir .booking-form {
  border-color: rgba(161, 201, 255, 0.24);
  background: rgba(8, 14, 22, 0.7);
}

body.theme-noir .booking-form label {
  color: #dbe9ff;
}

body.theme-noir .booking-form input,
body.theme-noir .booking-form select,
body.theme-noir .booking-form textarea {
  border-color: rgba(170, 207, 255, 0.24);
  background: rgba(5, 11, 18, 0.7);
  color: #f1f7ff;
}

body.theme-noir .booking-form input:focus,
body.theme-noir .booking-form select:focus,
body.theme-noir .booking-form textarea:focus {
  border-color: var(--noir-accent);
  box-shadow: 0 0 0 3px rgba(146, 212, 255, 0.24);
  background: rgba(5, 11, 18, 0.88);
}

body.theme-noir .booking-form label.has-error input,
body.theme-noir .booking-form label.has-error select,
body.theme-noir .booking-form label.has-error textarea {
  border-color: rgba(245, 130, 130, 0.84);
  box-shadow: 0 0 0 3px rgba(245, 130, 130, 0.2);
}

body.theme-noir .field-error {
  color: #ffb4b4;
}

body.theme-noir .policy-note {
  color: #9eb2ca;
}

body.theme-noir .policy-note a {
  color: #8fd0ff;
}

body.theme-noir .form-status {
  color: #9ad4ff;
}

body.theme-noir .form-status.is-pending {
  color: #b6cbdf;
}

body.theme-noir .form-status.is-success {
  color: #8ae3bf;
}

body.theme-noir .form-status.is-error {
  color: #ffb0b0;
}

body.theme-noir .lightbox-dialog {
  border-color: rgba(155, 205, 255, 0.34);
  background: rgba(5, 10, 16, 0.93);
}

body.theme-noir .lightbox-close,
body.theme-noir .lightbox-nav {
  border-color: rgba(166, 207, 255, 0.3);
  background: rgba(9, 15, 23, 0.82);
}

body.theme-noir .compare-head span {
  color: #91d3ff;
}

body.theme-noir .compare-stage {
  border-color: rgba(170, 209, 255, 0.22);
}

body.theme-noir .compare-after-wrap {
  border-right-color: rgba(145, 211, 255, 0.92);
}

body.theme-noir .compare-range {
  accent-color: #91d3ff;
}

body.theme-noir .floating-cta {
  color: #06111d;
  background: linear-gradient(135deg, var(--noir-accent), var(--noir-accent-2));
  box-shadow: 0 16px 30px rgba(30, 117, 170, 0.44);
}

body.theme-noir .floating-cta:hover {
  box-shadow: 0 22px 42px rgba(30, 117, 170, 0.54);
}

body.theme-noir .footer-legal a {
  color: #bcd7f5;
}

body.theme-noir .consent-banner {
  border-color: rgba(168, 205, 255, 0.3);
  background: rgba(5, 11, 18, 0.94);
}

body.theme-noir .consent-banner p {
  color: #cfe0f8;
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(28px) scale(0.99);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@keyframes noirDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate3d(2.2%, -1.6%, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes noirScan {
  0% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(8%);
  }
}

@keyframes noirFlux {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05) translate3d(1.4%, -1.2%, 0);
    opacity: 1;
  }
}

@keyframes noirSheen {
  0% {
    transform: translateX(-240%) skewX(-18deg);
  }
  100% {
    transform: translateX(440%) skewX(-18deg);
  }
}

@keyframes auraDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(2%, -2%, 0);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(1);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.05);
  }
}

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

@keyframes buttonSweep {
  0% {
    transform: translateX(-220%) skewX(-20deg);
  }
  100% {
    transform: translateX(420%) skewX(-20deg);
  }
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 520px;
    justify-self: center;
    justify-items: center;
    min-height: auto;
  }

  .hero-highlights {
    order: 3;
  }

  .hero-visual-inner {
    justify-items: center;
    min-height: auto;
  }

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

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

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-visual,
  .hero-visual-kicker,
  .hero-visual-inner {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.7rem 0;
  }

  .nav-shell {
    padding: 0.58rem 0.72rem;
    border-radius: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scaleY(0.8);
    transform-origin: top;
    transition:
      transform 0.3s var(--ease),
      opacity 0.3s var(--ease),
      visibility 0.3s;
  }

  body.theme-noir .nav-links {
    border-color: rgba(168, 205, 255, 0.3);
    background: rgba(8, 13, 20, 0.96);
    box-shadow: 0 14px 30px rgba(0, 2, 8, 0.52);
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-links a {
    padding: 0.68rem 0.74rem;
    border-radius: 10px;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.9rem);
    line-height: 1.03;
    max-width: 10.5ch;
  }

  .lead {
    max-width: none;
  }

  .hero-cta {
    gap: 0.6rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .hero-visual {
    justify-items: center;
    min-height: auto;
  }

  .hero-visual-inner {
    justify-items: center;
    min-height: auto;
  }

  .hero-image-card {
    height: 280px;
    width: min(420px, 100%);
    border-radius: 24px;
  }

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

  .lightbox-dialog {
    grid-template-columns: 1fr;
    max-width: 640px;
    padding-top: 2.8rem;
  }

  .lightbox-nav {
    top: 1rem;
    transform: none;
  }

  .lightbox-nav.prev {
    left: 0.8rem;
  }

  .lightbox-nav.next {
    right: 3.7rem;
  }

  .compare-stage {
    height: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  :root {
    --container: min(1140px, calc(100% - 1.1rem));
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-sub {
    font-size: 0.67rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .service-switch {
    width: 100%;
  }

  .service-toggle {
    flex: 1 1 auto;
    text-align: center;
  }

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

  .floating-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
  }

  .consent-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
    bottom: 4.9rem;
    transform: none;
  }

  .lightbox {
    padding: 0.5rem;
  }

  .lightbox-dialog {
    border-radius: 14px;
  }

  .lightbox-media img {
    min-height: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .parallax-layer {
    transform: none !important;
  }
}
