:root {
  --black: #030303;
  --ink: #0a0907;
  --panel: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.11);
  --gold: #d8aa50;
  --champagne: #f4dfaa;
  --mist: #d8d2c3;
  --muted: rgba(216, 210, 195, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 34px rgba(216, 170, 80, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 170, 80, 0.11), transparent 34rem),
    linear-gradient(180deg, #030303 0%, #090806 48%, #030303 100%);
  color: var(--mist);
  font-family: Inter, Arial, sans-serif;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.desktop-nav,
.button-row,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.brand img {
  width: 52px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
}

.desktop-nav {
  gap: 28px;
  color: rgba(216, 210, 195, 0.78);
  font-size: 14px;
}

.desktop-nav a:hover,
.phone-link:hover,
.contact-card a:hover,
.footer a:hover {
  color: var(--champagne);
}

.header-actions {
  gap: 14px;
}

.phone-link {
  color: var(--champagne);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--champagne);
  color: #050505;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: white;
}

.btn-secondary {
  border-color: rgba(216, 170, 80, 0.5);
  background: rgba(216, 170, 80, 0.1);
  color: var(--champagne);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--mist);
}

.menu-button,
.menu-close {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 22px;
  background: rgba(0, 0, 0, 0.96);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 128px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__bg,
.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg {
  filter: saturate(0.94) contrast(1.08);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.82) 44%, rgba(3, 3, 3, 0.42)),
    linear-gradient(0deg, var(--black), transparent 28%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.logo-lockup img {
  width: 112px;
  height: 98px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--glow);
}

.logo-lockup p,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo-lockup strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

h1,
h2,
h3 {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(48px, 7vw, 82px);
}

h2 {
  font-size: clamp(38px, 5vw, 58px);
}

h3 {
  font-size: 28px;
}

.lead {
  color: var(--champagne);
  font-size: 21px;
}

.hero__text,
.section-intro p,
.feature-card p,
.price-item span,
.program-card span,
.contact-card li,
.final-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.hero__text {
  max-width: 670px;
  font-size: 16px;
}

.button-row,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.hero-badges span,
.mini-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  padding: 14px;
  color: white;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.hero-collage {
  position: relative;
  min-height: 650px;
}

.collage-card,
.collage-logo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 80, 0.28);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.collage-card img,
.photo-panel img,
.certificate-grid img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-card--one {
  left: 0;
  top: 8%;
  width: 48%;
  height: 58%;
}

.collage-card--two {
  right: 0;
  top: 0;
  width: 50%;
  height: 46%;
}

.collage-card--three {
  right: 8%;
  bottom: 8%;
  width: 48%;
  height: 40%;
}

.collage-card--four {
  left: 10%;
  bottom: 0;
  width: 42%;
  height: 35%;
}

.collage-logo {
  left: 36%;
  top: 33%;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: var(--glow);
}

.collage-logo img {
  border-radius: 8px;
}

.section {
  padding: 88px 0;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

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

.section-intro h2 {
  margin-top: 16px;
}

.benefit-grid,
.price-grid,
.program-grid,
.steps-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

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

.feature-card,
.price-category,
.program-card,
.step-card,
.contact-card,
.review-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.feature-card:hover,
.price-category:hover,
.program-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 170, 80, 0.55);
  background: rgba(216, 170, 80, 0.07);
}

.icon-dot {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 170, 80, 0.42);
  border-radius: 999px;
  color: var(--champagne);
}

.split,
.review-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.photo-panel {
  height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 80, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel--tall {
  height: 620px;
}

blockquote {
  margin: 30px 0 0;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  color: var(--champagne);
  font-size: 22px;
  line-height: 1.55;
}

.mini-grid,
.certificate-grid {
  display: grid;
  gap: 16px;
}

.mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.certificate-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}

.certificate-grid figure {
  height: 380px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.price-category {
  padding: 22px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: var(--shadow);
}

.price-category--wide {
  grid-column: 1 / -1;
}

.category-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.category-head small {
  color: var(--champagne);
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 16px;
}

.price-item strong {
  display: block;
  color: white;
}

.price-item span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.price-item b {
  flex: 0 0 auto;
  color: var(--champagne);
  text-align: right;
}

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

.program-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(216, 170, 80, 0.42);
  background: rgba(216, 170, 80, 0.08);
  box-shadow: var(--glow);
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.program-card p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.program-card h3 {
  font-size: 42px;
}

.program-card span {
  display: block;
  min-height: 56px;
  margin-top: 12px;
}

.program-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 0;
}

.program-card dl div {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  padding: 12px;
  text-align: center;
}

.program-card dt {
  color: rgba(216, 210, 195, 0.62);
  font-size: 12px;
}

.program-card dd {
  margin: 5px 0 0;
  color: white;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 42px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  color: white;
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 0.7s ease;
}

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

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 16px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
  text-align: left;
  font-weight: 800;
}

.review-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-cards article,
.step-card {
  padding: 24px;
}

.review-cards b,
.step-card b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
}

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

.map-panel {
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 80, 0.25);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.map-panel--card {
  min-height: 190px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    radial-gradient(circle at top right, rgba(216, 170, 80, 0.16), transparent 12rem),
    rgba(255, 255, 255, 0.035);
}

.map-panel--card h3 {
  font-size: 32px;
}

.map-panel--card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-media {
  display: grid;
  gap: 18px;
}

.contact-photo {
  height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 80, 0.25);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 32px;
}

.contact-card h2 {
  margin-top: 16px;
}

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

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

.final-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 96px 0;
  text-align: center;
}

.final-cta > img {
  opacity: 0.1;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.final-cta .container {
  position: relative;
  max-width: 860px;
}

.final-cta h2 {
  margin-top: 18px;
}

.final-cta .btn {
  margin-top: 26px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 20px 86px;
  text-align: center;
  color: rgba(216, 210, 195, 0.58);
}

.mobile-booking {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

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

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

  * {
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: white;
  }

  .mobile-menu.is-open {
    display: grid;
    align-content: start;
    gap: 12px;
  }

  .mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    color: white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
  }

  .menu-close {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: white;
    font-size: 32px;
  }

  .mobile-menu > a:not(.btn) {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: 18px;
    color: white;
    font-size: 18px;
  }

  .hero__grid,
  .split,
  .split--reverse,
  .review-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 560px;
  }

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

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 70px;
    padding: 0 14px;
  }

  .brand span {
    font-size: 23px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.75)),
      linear-gradient(0deg, var(--black), transparent 24%);
  }

  .logo-lockup img {
    width: 92px;
    height: 82px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .button-row,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .benefit-grid,
  .price-grid,
  .program-grid,
  .steps-grid,
  .review-cards,
  .mini-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 500px;
  }

  .collage-card--one {
    width: 58%;
    height: 54%;
  }

  .collage-card--two {
    width: 54%;
    height: 38%;
  }

  .collage-card--three {
    right: 0;
    width: 58%;
  }

  .collage-card--four {
    left: 0;
    width: 50%;
  }

  .collage-logo {
    left: calc(50% - 48px);
    width: 96px;
    height: 96px;
  }

  .section {
    padding: 70px 0;
  }

  .photo-panel,
  .photo-panel--tall,
  .contact-photo,
  .certificate-grid figure {
    height: 420px;
  }

  .map-panel--card {
    min-height: 220px;
  }

  .category-head,
  .price-item {
    display: grid;
  }

  .price-item b {
    text-align: left;
  }

  .program-card dl {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .mobile-booking {
    position: fixed;
    inset: auto 14px 14px 14px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--champagne);
    color: #050505;
    font-weight: 900;
    box-shadow: var(--glow);
  }
}
