:root {
  --bg-0: #040507;
  --bg-1: #0a0c10;
  --bg-2: #141820;
  --paper: #f7f7f6;
  --ink: #101216;
  --ink-soft: #3f4653;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 18, 22, 0.12);
  --glass: rgba(255, 255, 255, 0.06);
  --accent: #d9e5ff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  --hero-photo-x: -1.8;
  --hero-photo-y: -0.8;
  --hero-photo-zoom: 1.16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 5.4rem;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: #f2f3f5;
  background: var(--bg-0);
  line-height: 1.55;
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 92vw);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 9, 12, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 13, 0.88);
  border-color: var(--line-dark);
}

.nav {
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  position: relative;
}

.brand {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.04);
  margin-left: 0.35rem;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  min-width: 2.2rem;
  min-height: 1.9rem;
  padding: 0.2rem 0.55rem;
  background: transparent;
  color: #d7dce6;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  background: #f8f9fb;
  color: #0c0f14;
}

.nav-links a,
.nav-toggle {
  color: #d7dce6;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
  background: transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-toggle:hover {
  color: #fff;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
}

section {
  padding: clamp(4.4rem, 8vw, 7rem) 0;
}

.section-dark {
  background: radial-gradient(95% 130% at 88% 0%, #1a2232 0%, #090b10 46%, #050608 100%);
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f1f2f4 100%);
  color: var(--ink);
}

.kicker {
  margin: 0;
  color: #9ca8bc;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
}

h1 {
  margin: 0.65rem 0 1rem;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.accent {
  background: linear-gradient(90deg, #d6e2ff 0%, #ffffff 50%, #b4c9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
p,
a,
label,
span {
  overflow-wrap: anywhere;
}

.lead,
.section-intro {
  max-width: 64ch;
  color: #c8cfdd;
}

.section-light .section-intro {
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-solid {
  background: #f8f9fb;
  color: #0c0f14;
  box-shadow: 0 8px 28px rgba(207, 219, 255, 0.24);
}

.btn-outline {
  color: #e7ebf5;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-light .btn-solid {
  background: #11141b;
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 20, 27, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-radius: 30px;
}

.hero-frame-link:focus-visible {
  outline: 2px solid rgba(232, 240, 255, 0.95);
  outline-offset: 6px;
}

html.js-enabled .hero-visual {
  animation: heroFloat 13s ease-in-out infinite;
  transform-origin: 52% 50%;
}

.hero-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: #130c0a;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 45%, rgba(3, 5, 8, 0.68) 100%),
    radial-gradient(circle at 70% 20%, transparent 0%, rgba(5, 6, 9, 0.22) 68%);
  pointer-events: none;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 16px -14px -16px 22px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(155deg, rgba(205, 223, 255, 0.22), rgba(75, 101, 156, 0.08));
  filter: blur(1px);
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform:
    translate3d(
      calc(var(--hero-photo-x) * 1%),
      calc(var(--hero-photo-y) * 1%),
      0
    )
    scale(var(--hero-photo-zoom));
  transform-origin: center;
  filter: saturate(0.96) contrast(1.03);
  user-select: none;
}

.hero-instagram-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 10, 15, 0.62);
  backdrop-filter: blur(7px);
  color: #f3f6fc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.hero-frame-link:hover .hero-instagram-badge,
.hero-frame-link:focus-visible .hero-instagram-badge {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(10, 13, 19, 0.76);
  transform: translateY(-1px);
}


.hero-copy h1 span {
  display: block;
}

html.js-enabled .hero-copy .kicker,
html.js-enabled .hero-copy h1 span,
html.js-enabled .hero-copy .lead,
html.js-enabled .hero-copy .hero-cta {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

html.js-enabled.hero-ready .hero-copy .kicker {
  animation: heroRiseIn 560ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms both;
}

html.js-enabled.hero-ready .hero-copy h1 span:nth-child(1) {
  animation: heroLineIn 560ms cubic-bezier(0.18, 0.76, 0.24, 1) 130ms both;
}

html.js-enabled.hero-ready .hero-copy h1 span:nth-child(2) {
  animation: heroLineIn 560ms cubic-bezier(0.18, 0.76, 0.24, 1) 220ms both;
}

html.js-enabled.hero-ready .hero-copy h1 span:nth-child(3) {
  animation: heroLineIn 560ms cubic-bezier(0.18, 0.76, 0.24, 1) 310ms both;
}

html.js-enabled.hero-ready .hero-copy .lead {
  animation: heroRiseIn 560ms cubic-bezier(0.2, 0.7, 0.2, 1) 380ms both;
}

html.js-enabled.hero-ready .hero-copy .hero-cta {
  animation: heroRiseIn 560ms cubic-bezier(0.2, 0.7, 0.2, 1) 450ms both;
}

.hero-cta .btn-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.48) 45%, transparent 72%);
  transform: translateX(-170%);
  opacity: 0;
  pointer-events: none;
}

.hero-cta .btn-solid:hover::after,
.hero-cta .btn-solid:focus-visible::after {
  animation: ctaShine 820ms ease-out 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  animation: drift 8s ease-in-out infinite;
}

.orb-main {
  width: 220px;
  height: 220px;
  top: 18%;
  left: 20%;
  background: radial-gradient(circle at 30% 30%, rgba(225, 236, 255, 0.92), rgba(80, 115, 190, 0.16));
}

.orb-secondary {
  width: 190px;
  height: 190px;
  right: 11%;
  top: 36%;
  background: radial-gradient(circle at 32% 35%, rgba(255, 255, 255, 0.58), rgba(116, 147, 220, 0.1));
  animation-delay: -2s;
}

.orb-tertiary {
  width: 130px;
  height: 130px;
  left: 48%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(246, 250, 255, 0.48), rgba(188, 210, 255, 0.07));
  animation-delay: -4s;
}

.scanline {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(241, 247, 255, 0.95) 50%, transparent 100%);
  animation: scan 3.5s linear infinite;
}

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

@keyframes scan {
  0% {
    transform: translateY(-340px);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.gallery-grid,
.benefits-grid,
.pricing-grid,
.workshops-grid,
.proof-grid,
.service-grid,
.labs-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.72);
  padding: 1.15rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 10px 24px rgba(15, 21, 32, 0.08);
}

.service-good-for {
  color: #3f4f67;
  font-size: 0.92rem;
  border-top: 1px dashed rgba(63, 79, 103, 0.24);
  padding-top: 0.55rem;
}

.services-cta {
  margin-top: 1.05rem;
  font-size: 0.96rem;
}

.services-cta a {
  color: #0e213f;
  font-weight: 700;
}

.featured-labs {
  position: relative;
  overflow: hidden;
}

.featured-labs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 45% at 88% 14%, rgba(187, 214, 255, 0.24), transparent 70%),
    radial-gradient(45% 32% at 8% 88%, rgba(102, 127, 186, 0.22), transparent 74%);
  pointer-events: none;
}

.featured-labs .container {
  position: relative;
  z-index: 1;
}

.labs-body {
  margin-top: 0.75rem;
  color: #d8dfec;
  max-width: 74ch;
}

.labs-grid {
  margin-top: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lab-card {
  border: 1px solid rgba(221, 232, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.05rem;
  background: linear-gradient(165deg, rgba(201, 218, 255, 0.12), rgba(127, 154, 220, 0.04));
  display: grid;
  gap: 0.55rem;
}

.labs-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.labs-training-links {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.labs-training-label {
  margin: 0;
  color: #d8dfec;
  font-size: 0.9rem;
}

.labs-training-link {
  border: 1px solid rgba(221, 232, 255, 0.26);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  color: #e9f1ff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: rgba(205, 220, 248, 0.08);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.labs-training-link:hover {
  border-color: rgba(238, 245, 255, 0.55);
  background: rgba(215, 229, 255, 0.16);
  transform: translateY(-1px);
}

.gallery-grid {
  margin-top: 1.5rem;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.photo-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  padding: 1px;
  background: linear-gradient(130deg, rgba(36, 49, 77, 0.35), rgba(36, 49, 77, 0.04));
  overflow: hidden;
}

.photo-card.featured {
  min-height: 360px;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.96) contrast(1.02);
}

.portrait-card .photo-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 11, 16, 0.02) 35%, rgba(9, 11, 16, 0.86) 100%);
}

.photo-overlay {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  color: #edf2ff;
  background:
    linear-gradient(170deg, rgba(8, 12, 18, 0.25), rgba(8, 12, 18, 0.82)),
    radial-gradient(circle at 20% 14%, rgba(177, 202, 255, 0.28), transparent 45%),
    #0f1522;
  transition: transform 220ms ease;
}

.photo-card:hover .photo-overlay {
  transform: scale(1.02);
}

.photo-title {
  font-weight: 700;
}

.photo-note {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #c3cee3;
}

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

.about-grid p + p {
  margin-top: 0.8rem;
}

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

.proof-card,
.card,
.price-card,
.quote-tool,
.workshop-card,
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.proof-card {
  padding: 1rem;
  background: var(--glass);
  border-color: var(--line-dark);
}

.benefits-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line-light);
  display: grid;
  gap: 0.7rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card p {
  color: #2e3a4c;
}

.card:hover,
.price-card:hover,
.workshop-card:hover,
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(19, 26, 39, 0.12);
}

.service-card,
.price-card,
.workshop-card,
.lab-card,
.proof-card,
.card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.price-card:hover,
.workshop-card:hover,
.lab-card:hover,
.proof-card:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(16, 23, 36, 0.14);
}

.service-card:hover,
.workshop-card:hover,
.lab-card:hover {
  border-color: rgba(115, 139, 186, 0.34);
}

.marker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: #5f6776;
}

.pricing-grid {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-card {
  padding: 1.1rem;
  background: var(--glass);
  border-color: var(--line-dark);
  display: grid;
  gap: 0.65rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.badge {
  display: inline-flex;
  width: max-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #d7e0f4;
  font-size: 0.74rem;
}

.quote-tool {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.055));
  border-color: rgba(255, 255, 255, 0.18);
  padding: 1.15rem;
}

.quote-tool p,
.quote-tool label {
  color: #e1e7f4;
}

.quote-tool .calc-output {
  color: #dce8ff;
}

.rates-note {
  margin-top: 0.5rem;
  color: #c2cbdd;
  font-size: 0.93rem;
}

.section-light .rates-note {
  color: #3f4653;
}

.calc-controls {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.93rem;
}

input,
select {
  width: 100%;
  min-height: 2.8rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f0f2f5;
  padding: 0.35rem 0.65rem;
  font: inherit;
}

.section-light input,
.section-light select {
  border-color: #cdd3dd;
  color: #12161f;
  background: #fff;
}

.calc-output {
  margin-top: 0.9rem;
  font-weight: 700;
  min-height: 1.4rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.calc-output.flash {
  opacity: 0;
  transform: translateY(4px);
}

.workshops-grid {
  margin: 1.5rem 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.workshop-card {
  padding: 1rem;
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.7);
}

.process-grid {
  margin-top: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.05rem;
  display: grid;
  gap: 0.65rem;
}

.process-card p {
  color: #d1daeb;
}

.booking-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(126, 156, 225, 0.24), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.booking-panel p {
  color: #d4dced;
}

.booking-top-cta {
  margin-top: 1rem;
  margin-bottom: 1.05rem;
}

.booking-form {
  display: grid;
  gap: 0.82rem;
  margin-top: 0.8rem;
}

.booking-form textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f0f2f5;
  padding: 0.55rem 0.65rem;
  font: inherit;
  resize: vertical;
  min-height: 7rem;
}

.booking-email-link {
  color: #dce7ff;
  text-underline-offset: 0.18rem;
}

.booking-note {
  margin: 0.9rem 0 1.2rem;
  font-size: 0.93rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.95rem 1rem;
  font: inherit;
  font-weight: 600;
  color: #12161f;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 230ms ease;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: #3f4653;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

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

html.js-enabled .reveal {
  transition: opacity 540ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 540ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

html.js-enabled .reveal:not(.in-view) {
  opacity: 1;
  transform: translate3d(0, 10px, 0);
}

html.js-enabled .reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroRiseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -7px, 0) rotate(-0.55deg);
  }
}

@keyframes ctaShine {
  0% {
    transform: translateX(-170%);
    opacity: 0;
  }
  20% {
    opacity: 0.62;
  }
  100% {
    transform: translateX(170%);
    opacity: 0;
  }
}

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

  html.js-enabled .reveal,
  html.js-enabled .reveal:not(.in-view),
  html.js-enabled .reveal.in-view,
  html.js-enabled .hero-copy .kicker,
  html.js-enabled .hero-copy h1 span,
  html.js-enabled .hero-copy .lead,
  html.js-enabled .hero-copy .hero-cta {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

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

  .hero-frame {
    width: min(100%, 360px);
  }

}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    inset: 4.2rem 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.8rem 4vw 1.1rem;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(7, 10, 14, 0.98);
    z-index: 50;
  }

  .nav-links.open {
    display: flex;
  }

  .lang-toggle {
    margin-left: 0;
  }

  .calc-controls,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .labs-cta .btn,
  .booking-top-cta .btn {
    width: 100%;
  }

  .btn,
  .faq-question,
  input,
  select,
  .booking-form textarea {
    min-height: 2.9rem;
  }
}
