:root {
  --bg: #060b12;
  --bg-soft: #0d1622;
  --panel: rgba(14, 23, 34, 0.72);
  --panel-border: rgba(255, 255, 255, 0.16);
  --text: #e9edf3;
  --text-soft: #aebacc;
  --heading: #f4f7fc;
  --gold: #d2ac71;
  --gold-strong: #e1c189;
  --teal: #37c4b7;
  --shadow-soft: 0 24px 55px rgba(0, 0, 0, 0.35);
  --shadow-hard: 0 35px 90px rgba(0, 0, 0, 0.5);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(55, 196, 183, 0.12), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(210, 172, 113, 0.15), transparent 36%),
    linear-gradient(180deg, #070d14 0%, #04080e 44%, #060d15 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
}

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

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

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(66px, 8vw, 112px) 0;
}

.panel {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  padding: clamp(24px, 3.8vw, 44px);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 36%,
    rgba(255, 255, 255, 0.11) 48%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: panelSheen 8.5s ease-in-out infinite;
}

.lux-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lux-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(86px);
  opacity: 0.45;
  animation: drift 16s ease-in-out infinite alternate;
}

.glow-a {
  width: 310px;
  height: 310px;
  left: -120px;
  top: 8vh;
  background: #228ca5;
}

.glow-b {
  width: 390px;
  height: 390px;
  right: -140px;
  top: 24vh;
  background: #876537;
  animation-delay: -5s;
}

.glow-c {
  width: 320px;
  height: 320px;
  left: 42%;
  bottom: -130px;
  background: #1e887f;
  animation-delay: -9s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 95;
  backdrop-filter: blur(16px);
  background: rgba(6, 13, 21, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.scroll-progress {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c79247, #f3d39a, #2eb8ab);
  box-shadow: 0 0 12px rgba(242, 205, 146, 0.7);
  transition: width 0.12s linear;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #121312;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05)),
    linear-gradient(145deg, #ebcb92, #ab7a3b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.06;
}

.brand-copy strong {
  font-size: 1.03rem;
  color: #f7fbff;
}

.brand-copy small {
  font-size: 0.72rem;
  color: #90a2b9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.nav-links a {
  color: #d8e1ec;
  font-size: 0.92rem;
  position: relative;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 193, 129, 0.35), transparent 70%);
  transition: transform 0.24s ease;
}

.nav-links a:hover::before {
  transform: translateX(-50%) scale(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #f4f8ff;
}

.cta-btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

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

.cta-solid {
  color: #13110d;
  background: linear-gradient(145deg, #f0cf97, #bc8a48);
  box-shadow: 0 12px 30px rgba(150, 105, 42, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 30%;
  height: 100%;
  transform: skewX(-15deg);
  background: rgba(255, 255, 255, 0.35);
  animation: sheen 2.8s ease-in-out infinite;
}

.cta-glass {
  color: #ecf4ff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.cta-outline {
  color: #f5f9ff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding-top: clamp(58px, 7vw, 100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 4.6vw, 52px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.05rem, 4.2vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.hero-lead {
  margin: 20px 0 0;
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.74;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-stats article {
  border-radius: var(--radius-sm);
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats .value {
  display: block;
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  font-weight: 800;
  color: #f3f8ff;
}

.hero-stats .label {
  display: block;
  margin-top: 6px;
  color: #97a6ba;
  font-size: 0.81rem;
}

.trust-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #b8c7da;
}

.hero-media {
  position: relative;
  perspective: 1200px;
}

.carousel {
  position: relative;
}

.carousel-track {
  position: relative;
}

.hero-carousel .carousel-track {
  min-height: clamp(360px, 50vw, 560px);
  border-radius: clamp(18px, 3vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-hard);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  will-change: opacity, transform, filter;
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.026);
  filter: brightness(0.88) saturate(0.9);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  filter: brightness(1) saturate(1.02);
  z-index: 2;
}

.carousel-slide.is-exiting {
  opacity: 0;
  transform: scale(1.01);
  filter: brightness(0.82) saturate(0.84);
  z-index: 3;
}

.hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
}

.hero-carousel .carousel-slide.is-active img {
  animation: heroKenBurns 5.6s ease both;
}

.slide-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 14, 22, 0.75);
  backdrop-filter: blur(6px);
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}

.carousel-slide.is-active .slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide.is-exiting .slide-overlay {
  opacity: 0;
  transform: translateY(16px);
}

.slide-overlay strong {
  color: #f5f8fc;
  font-size: 1rem;
}

.slide-overlay small {
  color: #b3c1d3;
}

.carousel-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-carousel .carousel-controls {
  inset: 0;
  right: auto;
  bottom: auto;
  padding: 0 12px;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.hero-carousel:hover .carousel-controls,
.hero-carousel:focus-within .carousel-controls {
  opacity: 1;
}

.carousel-btn {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 27, 0.84);
  color: #ebf2fc;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition:
    background-color 0.26s ease,
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(241, 201, 136, 0.8);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(10, 22, 36, 0.95);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.hero-carousel .carousel-btn {
  pointer-events: auto;
}

.carousel-dots {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-dots button.is-active {
  background: linear-gradient(90deg, #f2cd92, #d79f50);
  transform: scaleX(1.14);
}

.floating-card {
  position: absolute;
  border-radius: 14px;
  background: rgba(9, 16, 26, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.38);
  animation: float 4.6s ease-in-out infinite;
}

.floating-card span,
.floating-card strong {
  color: #f2f6fb;
}

.floating-card small {
  color: #a8b7cb;
}

.card-location {
  left: 14px;
  bottom: 20px;
}

.card-rating {
  right: 14px;
  top: 20px;
  animation-delay: -2s;
}

.section-head {
  max-width: 780px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.62rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.service-grid {
  margin-top: 28px;
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  padding: 22px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 193, 137, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.33);
}

.service-card h3 {
  font-size: 1.3rem;
}

.service-card p {
  margin: 11px 0 0;
  color: #a9b6c8;
  line-height: 1.65;
}

.service-card span {
  margin-top: 14px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 700;
  color: #241a0a;
  background: linear-gradient(140deg, #eed3a4, #bf8d47);
}

.process-layout {
  display: grid;
  gap: 30px;
}

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

.timeline-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 22px 18px;
}

.timeline-item span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #140f07;
  font-weight: 800;
  background: linear-gradient(145deg, #f0ce99, #b98440);
  margin-bottom: 14px;
}

.timeline-item h3 {
  font-size: 1.22rem;
}

.timeline-item p {
  margin: 9px 0 0;
  color: #a6b3c3;
  line-height: 1.58;
}

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

.result-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.result-card.large {
  grid-column: span 2;
  min-height: 330px;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-image {
  cursor: zoom-in;
}

.result-card:hover img {
  transform: scale(1.06);
}

.result-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 12px;
  background: rgba(8, 14, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #e5edf6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: clamp(12px, 3vw, 32px);
  background: rgba(3, 7, 12, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  background: rgba(7, 12, 20, 0.96);
  transform: translateY(16px) scale(0.985);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: min(84vh, 860px);
  width: min(94vw, 1420px);
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  justify-self: center;
}

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

.lightbox-media {
  min-height: min(84vh, 860px);
  background:
    radial-gradient(circle at 18% 20%, rgba(39, 180, 169, 0.22), transparent 44%),
    radial-gradient(circle at 82% 10%, rgba(210, 172, 113, 0.18), transparent 40%),
    #050b14;
  display: grid;
  place-items: stretch;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #03070c;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.lightbox-info {
  margin: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(6, 11, 18, 0.95);
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.lightbox-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #e1c189;
  font-weight: 700;
}

.lightbox-title {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.08;
  color: #f4f8ff;
}

.lightbox-copy {
  margin: 0;
  color: #aebdd0;
  line-height: 1.72;
}

.lightbox-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lightbox-points li {
  color: #dce6f2;
  font-size: 0.9rem;
  padding-left: 16px;
  position: relative;
}

.lightbox-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(140deg, #efcd96, #c08a45);
}

.lightbox-caption {
  margin: 6px 0 0;
  color: #d7e2ef;
  font-weight: 600;
}

.lightbox-index {
  margin: 4px 0 0;
  color: #8fa0b6;
  font-size: 0.82rem;
}

.lightbox.is-switching .lightbox-figure img,
.lightbox.is-switching .lightbox-info {
  opacity: 0;
  transform: translateY(10px) scale(0.992);
  filter: blur(4px);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #edf3fc;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(6, 13, 22, 0.86);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 201, 136, 0.88);
}

.lightbox-close {
  position: absolute;
  top: clamp(10px, 2vw, 22px);
  right: clamp(10px, 2vw, 22px);
  z-index: 2;
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 2.2vw, 28px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 190;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #eef4ff;
  font-size: 1.28rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(7, 15, 25, 0.9);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(241, 201, 136, 0.32), transparent 70%);
  transition: opacity 0.26s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(241, 201, 136, 0.88);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.42);
}

.back-to-top:hover::before {
  opacity: 1;
}

body.lightbox-open .back-to-top {
  opacity: 0;
  pointer-events: none;
}

.reviews-panel {
  overflow: hidden;
}

.review-carousel {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  min-height: 250px;
}

.review-carousel .carousel-track {
  min-height: 250px;
}

.quote-slide {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3vw, 36px);
}

.quote-slide p {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.28rem, 2.1vw, 2.05rem);
  line-height: 1.2;
  color: #f4f8ff;
  max-width: 28ch;
}

.quote-slide strong {
  color: #d4e0ef;
  letter-spacing: 0.03em;
}

.review-carousel .carousel-controls {
  right: 18px;
  bottom: 18px;
}

.review-carousel .carousel-dots {
  left: 20px;
  bottom: 22px;
}

.contact-wrap {
  display: grid;
  gap: 13px;
  grid-template-columns: 1.05fr 0.95fr;
}

.contact-card {
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
}

.contact-card p {
  margin: 16px 0 0;
  line-height: 1.68;
  color: #afbdd0;
}

.contact-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.contact-card li {
  color: #ced9e7;
}

.lead-form {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 14, 22, 0.72);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.89rem;
  color: #dbe4f1;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f1f6fc;
  padding: 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(223, 232, 243, 0.66);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(55, 196, 183, 0.8);
  box-shadow: 0 0 0 4px rgba(55, 196, 183, 0.2);
}

.site-footer {
  padding: 34px 0 40px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #8f9eb2;
  font-size: 0.86rem;
  flex-wrap: wrap;
}

.small {
  font-size: 0.77rem;
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.75s ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(12px, -18px, 0);
  }
}

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

@keyframes sheen {
  0% {
    left: -45%;
  }
  60% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.048);
  }
  to {
    transform: scale(1.012);
  }
}

@keyframes panelSheen {
  0%,
  68%,
  100% {
    transform: translateX(-120%);
  }
  78% {
    transform: translateX(120%);
  }
}

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    margin: 0 auto;
    width: min(92vw, 520px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(4, 10, 18, 0.95);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

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

  .nav-wrap > .cta-outline {
    display: none;
  }

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

  .result-card.large {
    grid-column: span 1;
    min-height: 260px;
  }

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  h1 {
    line-height: 1.03;
  }

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

  .hero-carousel .carousel-track,
  .review-carousel .carousel-track {
    min-height: 320px;
  }

  .quote-slide p {
    font-size: 1.3rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .lightbox-figure {
    grid-template-columns: 1fr;
    width: min(94vw, 760px);
  }

  .lightbox-media {
    min-height: min(52vh, 420px);
  }

  .lightbox-info {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lightbox-nav {
    position: fixed;
    bottom: 18px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .back-to-top {
    right: 14px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.18rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-glow,
  .floating-card,
  .cta-solid::after,
  .panel::before {
    animation: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }
}
