/* DETAIL-PRO — luxury noir detailing */

:root {
  --paper: #030303;
  --bg: #080808;
  --bg-card: #0e0e0e;
  --bg-elevated: #141414;
  --bg-glass: rgba(12, 12, 12, 0.72);
  --gold-light: #f2dfa0;
  --gold: #c9a227;
  --gold-mid: #b8942a;
  --gold-dark: #7a5a18;
  --gold-grad: linear-gradient(135deg, #fdf6e3 0%, #e8c96a 24%, #c9a227 52%, #9a7420 82%, #6b5015 100%);
  --gold-grad-hover: linear-gradient(135deg, #fff8ec 0%, #f0d47a 24%, #d4af37 52%, #a67c00 82%, #7a5a18 100%);
  --icon-glow: drop-shadow(0 2px 10px rgba(201, 162, 39, 0.42));
  --gold-grad-soft: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.45), transparent);
  --gold-text: linear-gradient(180deg, #faf0d4 0%, #d4af37 42%, #a67c00 100%);
  --text: #f7f7f7;
  --text-muted: #b3b3b3;
  --text-dim: #666666;
  --border: rgba(212, 175, 55, 0.38);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.22);
  --content-max: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-sm: 6px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shadow-gold: 0 12px 48px rgba(201, 162, 39, 0.22), 0 0 0 1px rgba(201, 162, 39, 0.08);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.45);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.125rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

::selection {
  background: rgba(201, 162, 39, 0.28);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 1.6rem + 3vw, 4rem);
  max-width: 13ch;
  font-weight: 500;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.875rem, 1.3rem + 1.8vw, 2.875rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  --section-bg: var(--bg);
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 8vw, 100px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  background: var(--section-bg);
  z-index: 0;
}

.section > .container,
.section > .hero__grid {
  position: relative;
  z-index: 1;
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, min(42vw, 720px));
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
  padding-bottom: 1.25rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 5px 5px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 0 0 auto;
  width: min(200px, 20vw);
  height: 1px;
  background: var(--gold-grad-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-grad);
  flex-shrink: 0;
}

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__tag {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.125rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s var(--ease-luxury), border-color 0.25s, background 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn--gold {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 236, 180, 0.35);
}

.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-luxury);
}

.btn--gold:hover {
  background: var(--gold-grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(201, 162, 39, 0.38);
}

.btn--gold:hover::after {
  transform: translateX(120%);
}

.btn--outline {
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.07);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: #fff8e8;
  background: rgba(201, 162, 39, 0.14);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.16);
}

.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
  min-height: 40px;
}

.btn--block {
  width: 100%;
}

.link-gold {
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.link-gold:hover {
  border-bottom-color: var(--gold);
  color: var(--text);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-grad-soft);
  opacity: 0.6;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-luxury);
}

.nav a:hover {
  color: var(--gold-light);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.header__phone {
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--gold-light);
}

.header__hours {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  --section-bg: transparent;
  --hero-h: clamp(520px, 68vh, 720px);
  min-height: var(--hero-h);
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: clamp(32px, 5vh, 56px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.45) 38%, rgba(3, 3, 3, 0.08) 62%, rgba(3, 3, 3, 0.42) 100%),
    radial-gradient(ellipse 55% 45% at 72% 50%, rgba(201, 162, 39, 0.1), transparent 72%);
  z-index: 1;
  pointer-events: none;
}

.hero__bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  transform: scale(1.04);
  transform-origin: center right;
  pointer-events: none;
}

@media (min-width: 769px) {
  .hero__bg img {
    --hero-shell-inset: max(var(--gutter), calc((100vw - var(--content-max)) / 2));
    right: var(--hero-shell-inset);
    width: min(960px, calc(100vw - var(--hero-shell-inset) - 600px));
    max-width: 960px;
    height: 100%;
  }
}

.hero__grid {
  width: min(var(--content-max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  align-items: center;
  padding-block: clamp(20px, 3vw, 36px);
}

.hero__content {
  align-self: center;
  max-width: 640px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    animation: heroReveal 1s var(--ease-luxury) both;
  }

  .hero__content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero__content > *:nth-child(2) { animation-delay: 0.22s; }
  .hero__content > *:nth-child(3) { animation-delay: 0.34s; }
  .hero__content > *:nth-child(4) { animation-delay: 0.46s; }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.hero__time {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.hero__time-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.1);
  box-shadow: inset 0 0 20px rgba(201, 162, 39, 0.1), 0 0 16px rgba(201, 162, 39, 0.08);
  flex-shrink: 0;
}

.hero__time-icon svg {
  width: 22px;
  height: 22px;
}

.hero__time strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gold-light);
}

.hero__time small {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__brand {
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--content-max)) / 2 + 24px));
  bottom: clamp(24px, 5vh, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
}

.hero__brand .logo__name {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(8, 8, 8, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
  z-index: 2;
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.service-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 3, 3, 0.68) 100%);
  pointer-events: none;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.25rem 1.25rem 2.75rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
}

.service-card__text {
  flex: 1;
  min-width: 0;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(201, 162, 39, 0.06);
  color: var(--gold);
  box-shadow: inset 0 0 18px rgba(201, 162, 39, 0.1);
}

.service-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transform: scale(1.35);
  filter: brightness(1.15) var(--icon-glow);
}

.service-card:hover .service-card__icon {
  border-color: var(--gold);
  box-shadow: inset 0 0 22px rgba(201, 162, 39, 0.16), 0 0 20px rgba(201, 162, 39, 0.12);
}

.service-card h3 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card__link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.125rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.service-card__link:hover {
  background: rgba(201, 162, 39, 0.12);
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  align-items: stretch;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 100%;
  padding: 1.25rem 0.75rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.feature:hover {
  border-color: var(--border-subtle);
  background: rgba(201, 162, 39, 0.03);
}

.feature__icon {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: transform 0.35s var(--ease-luxury);
}

.feature__icon img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: brightness(1.1) var(--icon-glow);
}

.feature:hover .feature__icon {
  transform: scale(1.05);
  filter: none;
}

.feature__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

.feature strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.feature span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 15rem;
}

/* Before / After */
.works__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: calc(520px * 21 / 9);
  margin-inline: auto;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  user-select: none;
  touch-action: none;
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.ba-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__after {
  position: absolute;
  inset: 0;
}

.ba-slider__before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.ba-slider__before {
  width: var(--ba-slider-w, 100%);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.ba-slider__label {
  position: absolute;
  top: 16px;
  z-index: 4;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.6);
}

.ba-slider__label--before { left: 16px; }
.ba-slider__label--after { right: 16px; }

.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(5, 5, 5, 0.75);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
  margin: 0;
}

/* Packages */
.packages__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.package-card {
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(10, 10, 10, 0.85) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.35s, transform 0.35s var(--ease-luxury);
}

.package-card:hover {
  border-color: var(--border-gold);
}

.package-card--hit {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 236, 180, 0.12);
  transform: scale(1.02);
  z-index: 1;
}

.package-card--hit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top, rgba(201, 162, 39, 0.1), transparent 65%);
  pointer-events: none;
}

.package-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #1a1208;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.package-card h3 {
  color: var(--gold-light);
}

.package-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.package-card ul {
  margin-bottom: 1.5rem;
  flex: 1;
}

.package-card li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.45rem 0;
  padding-left: 1rem;
  position: relative;
}

.package-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.package-card--consult {
  padding: 0;
  overflow: hidden;
}

.package-card--consult img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.package-card__consult-text {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card__consult-text .btn {
  margin-top: auto;
}

/* Reviews & Partners */
.reviews-partners__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.reviews__head {
  margin-bottom: 1.5rem;
}

.reviews__head h2 {
  margin: 0;
}

.reviews__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.reviews__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(12, 12, 12, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  gap: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #120c04;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.review-card h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.partners__img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.88;
}

/* Booking section */
.booking-section {
  --section-bg: #060606;
}

.booking-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 900px);
  height: 1px;
  background: var(--gold-grad-soft);
  z-index: 1;
}

.booking-section__grid {
  align-items: start;
}

.booking-section__sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-section__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.booking-section__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.booking-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.25rem;
}

.booking-perks li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
  line-height: 1.45;
}

.perk-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: border-color 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
}

.perk-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  filter: var(--icon-glow);
}

.booking-perks li:hover .perk-icon {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.14);
}

.booking-form {
  background: linear-gradient(160deg, rgba(14, 14, 14, 0.95), rgba(8, 8, 8, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  margin-bottom: 16px;
}

.field__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field textarea {
  padding: 12px 14px;
  min-height: 100px;
  resize: vertical;
}

.field input[type="date"] {
  color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  margin-right: 2px;
  cursor: pointer;
  opacity: 1;
  background: center / 16px 16px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  line-height: 1.45;
}

.form-privacy__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--gold-light);
  opacity: 1;
}

.form-privacy__icon svg {
  width: 100%;
  height: 100%;
}

/* Contact */
.contact-section {
  --section-bg: var(--paper);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.contact-section__headline {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  margin: 0 0 1.25rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.contact-section__headline-lead {
  font-size: clamp(1.75rem, 1.15rem + 1.6vw, 2.5rem);
  color: var(--text);
  font-weight: 500;
}

.contact-section__headline-accent {
  font-size: clamp(2.125rem, 1.35rem + 2.2vw, 3.125rem);
  font-weight: 600;
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.contact-section__desc {
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.38);
  color: var(--gold-light);
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s var(--ease-luxury), background 0.3s;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 6px rgba(201, 162, 39, 0.28));
}

.contact-item:hover .contact-item__icon {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.04);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.1);
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item small {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-item:hover strong {
  color: var(--gold-light);
}

.contact-section__media img {
  width: 100%;
  max-width: 720px;
  justify-self: end;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  mask-image: linear-gradient(180deg, #000 75%, transparent 100%);
}

.social p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.social__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.social__links a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.social__links a svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none;
}

.social__links a:hover {
  background: rgba(201, 162, 39, 0.04);
  border-color: var(--gold);
  color: var(--gold);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
  background: var(--paper);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-grad-soft);
  opacity: 0.5;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__nav a:hover {
  color: var(--gold-light);
}

.footer__copy {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 0;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.modal__card {
  position: relative;
  width: min(820px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(165deg, #121212, #0a0a0a);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.75), var(--shadow-gold);
}

.modal__card--gallery {
  width: min(1120px, calc(100vw - 40px));
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  display: grid;
  place-items: center;
  transition: color 0.2s, border-color 0.2s;
}

.modal__close:hover {
  color: var(--text);
  border-color: var(--gold);
}

.modal__sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, transform 0.4s var(--ease-luxury);
}

.gallery-grid img:hover {
  border-color: var(--border-gold);
  transform: scale(1.02);
}

.price-list {
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9375rem;
}

.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-dim);
  min-width: 24px;
  margin-bottom: 4px;
}

.price-row span:last-child {
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

.reviews-modal-list {
  display: grid;
  gap: 12px;
}

.review-card--modal {
  margin: 0;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  box-shadow: var(--shadow-gold);
}

.toast[hidden] {
  display: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .services__grid,
  .packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .features__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .feature:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .feature:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .reviews__track {
    grid-template-columns: 1fr;
  }

  .reviews-partners__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.96);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .burger {
    display: flex;
  }

  .header__contact {
    display: none;
  }

  .section__grid,
  .hero__grid,
  .booking-section__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .hero__brand {
    display: none;
  }

  .hero {
    --hero-h: clamp(480px, 64vh, 660px);
    align-items: flex-start;
  }

  .contact-section__media img {
    justify-self: stretch;
    max-width: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .booking-perks {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .packages__grid,
  .features__grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(-n + 3),
  .feature:nth-child(4),
  .feature:nth-child(5) {
    grid-column: auto;
  }

  .form-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .ba-slider {
    aspect-ratio: 4 / 3;
  }


  .header__right .btn--outline {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    --hero-h: clamp(520px, 78vh, 780px);
    padding-bottom: clamp(40px, 6vh, 64px);
  }

  .hero__bg img {
    width: 100%;
    max-height: 72%;
    object-position: 68% 35%;
    transform: scale(1.02);
  }

  .feature__icon {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__time {
    justify-content: center;
  }

  .package-card--hit {
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid rgba(201, 162, 39, 0.65);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav a:focus-visible {
  outline-offset: 4px;
}
