:root {
  --ink: #080303;
  --ink-soft: #190908;
  --paper: #0f0706;
  --paper-soft: #1b0a09;
  --champagne: #efc86a;
  --champagne-deep: #b47a2b;
  --signal-red: #a51d1f;
  --white: #ffffff;
  --muted: #c7b7a0;
  --line: rgba(239, 200, 106, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --container: min(1240px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: rgba(255, 250, 240, 0.92);
  background:
    radial-gradient(circle at 20% 0%, rgba(165, 29, 31, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 16%, rgba(239, 200, 106, 0.12), transparent 28rem),
    linear-gradient(180deg, #080303, #110605 46%, #070303);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, #fff 0 1px, transparent 1px);
  background-size: 34px 34px, 47px 47px;
  mix-blend-mode: screen;
}

body:not(.page-loaded) {
  overflow: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  gap: 24px;
  align-content: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 183, 111, 0.14), transparent 34%),
    var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.55s ease;
}

.preloader-mark {
  display: grid;
  place-items: center;
  width: min(210px, 46vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(217, 183, 111, 0.28);
  background: #050303;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(16px);
  animation: loaderTitle 0.72s ease forwards;
}

.preloader-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-line {
  position: relative;
  width: min(320px, 70vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  animation: loaderLine 1.15s ease-in-out infinite;
}

.page-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 220;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne-deep), var(--champagne));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(217, 183, 111, 0.6);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  width: min(1240px, calc(100% - 44px));
  margin: 22px auto 0;
  padding: 9px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(8, 3, 3, 0.72);
  backdrop-filter: blur(22px) saturate(128%);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 3, 3, 0.94);
  border-color: rgba(217, 183, 111, 0.24);
  box-shadow: 0 18px 44px rgba(12, 11, 9, 0.25);
}

.page-loaded .site-header {
  animation: headerDrop 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 0;
  object-fit: cover;
  border: 1px solid rgba(217, 183, 111, 0.36);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.brand-name {
  color: var(--champagne);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav a,
.site-footer a {
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.69rem;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--champagne);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 0;
  background: var(--champagne);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 142px 0 64px;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(239, 200, 106, 0.14) 42%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13.2vw);
  transform: translateX(-120%);
  pointer-events: none;
}

.page-loaded .hero::before {
  animation: heroSheen 1.45s ease 0.55s both;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  transform: scale(1.08);
}

.page-loaded .hero-media {
  animation: heroImageIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgba(239, 200, 106, 0.16), transparent 24%),
    radial-gradient(circle at 30% 70%, rgba(165, 29, 31, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(4, 2, 2, 0.97), rgba(10, 4, 4, 0.5) 56%, rgba(5, 2, 2, 0.92)),
    linear-gradient(0deg, rgba(5, 2, 2, 0.96), transparent 50%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-shell::before {
  content: "21 rue Frédérick Lemaître";
  position: absolute;
  left: -34px;
  top: 4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(239, 200, 106, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  max-width: 700px;
  justify-self: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--champagne);
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(239, 200, 106, 0.28);
  background: rgba(239, 200, 106, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Bodoni Moda", Georgia, serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6.1vw, 6.45rem);
  letter-spacing: 0;
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  line-height: 0.93;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.btn:active,
.nav-cta:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--champagne);
  color: var(--ink);
}

.btn-primary:hover,
.nav-cta:hover {
  background: #e7c986;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--champagne);
  border-color: rgba(239, 200, 106, 0.36);
}

.hero-stats {
  position: relative;
  width: 100%;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats article {
  padding: 20px;
  background: rgba(12, 11, 9, 0.24);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-stats article:hover {
  transform: translateY(-4px);
  background: rgba(12, 11, 9, 0.42);
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-showcase {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(217, 183, 111, 0.24), rgba(255, 255, 255, 0.04));
  filter: blur(24px);
  opacity: 0.55;
}

.hero-logo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 0;
  border: 1px solid rgba(217, 183, 111, 0.42);
  background: #050303;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-marquee {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  gap: clamp(28px, 5vw, 84px);
  width: min(1240px, calc(100% - 48px));
  padding: 16px 0;
  border-top: 1px solid rgba(239, 200, 106, 0.18);
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  overflow: hidden;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-grid,
.contact-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.section-copy p:not(.section-kicker),
.section-heading p,
.event-card p,
.contact-card p,
.pricing-note {
  color: var(--muted);
}

.section-copy > p:not(.section-kicker) {
  max-width: 68ch;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.section-heading {
  width: var(--container);
  margin: 0 auto 42px;
  max-width: 780px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 16px auto 0;
  max-width: 660px;
}

.image-panel,
.video-frame,
.map-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(239, 200, 106, 0.18);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.image-panel img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.advantage-grid span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

.events,
.video-section,
.contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--paper);
}

.event-grid,
.pricing-grid,
.gallery-grid {
  width: var(--container);
  margin: 0 auto;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 255px;
  gap: 14px;
}

.event-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  grid-column: span 4;
  border: 1px solid rgba(239, 200, 106, 0.16);
  border-radius: 0;
  background: #070303;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out), border-color 0.55s var(--ease-out);
}

.event-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.event-card:nth-child(2) {
  grid-column: span 5;
}

.event-card:nth-child(3) {
  grid-column: span 5;
}

.event-card:nth-child(4),
.event-card:nth-child(5),
.event-card:nth-child(6) {
  grid-column: span 4;
}

.event-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(12, 11, 9, 0.16);
  border-color: rgba(217, 183, 111, 0.5);
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 2, 2, 0.35) 38%, rgba(5, 2, 2, 0.92) 100%),
    radial-gradient(circle at 12% 18%, rgba(239, 200, 106, 0.2), transparent 25%);
}

.event-card:hover img,
.gallery-item:hover img {
  transform: scale(1.055);
}

.event-card div {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 3vw, 34px);
}

.event-card h3 {
  color: #fffaf0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 0.96;
}

.event-card p {
  margin: 12px 0 0;
}

.pricing {
  background:
    radial-gradient(circle at 20% 12%, rgba(165, 29, 31, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--paper-soft), var(--ink));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(239, 200, 106, 0.2);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 3, 3, 0.72);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.price-card.featured {
  border-color: rgba(217, 183, 111, 0.82);
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 200, 106, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(165, 29, 31, 0.62), rgba(8, 3, 3, 0.92));
  color: var(--white);
  box-shadow: 0 28px 80px rgba(12, 11, 9, 0.22);
}

.price-label {
  margin: 0 0 12px;
  color: var(--champagne-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured .price-label {
  color: var(--champagne);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 16px 0;
  border-top: 1px solid rgba(239, 200, 106, 0.16);
}

.featured li {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.pricing-note {
  width: var(--container);
  margin: 22px auto 0;
  max-width: 780px;
  text-align: center;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--ink);
}

.video-layout {
  align-items: start;
}

.video-frame-featured video {
  aspect-ratio: 16 / 9;
}

.video-playlist {
  width: var(--container);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 200, 106, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--ink);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.video-card span {
  display: block;
  min-height: 50px;
  padding: 13px 14px 15px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.video-playlist.visible .video-card {
  animation: tileIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.video-playlist.visible .video-card:nth-child(1) {
  animation-delay: 0.04s;
}

.video-playlist.visible .video-card:nth-child(2) {
  animation-delay: 0.1s;
}

.video-playlist.visible .video-card:nth-child(3) {
  animation-delay: 0.16s;
}

.video-playlist.visible .video-card:nth-child(4) {
  animation-delay: 0.22s;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "photo1 photo2 photo3 photo4"
    "photo6 photo2 photo5 photo5"
    "photo7 photo7 photo5 photo5";
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  border: 1px solid rgba(239, 200, 106, 0.16);
  background: var(--ink);
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

.gallery-item:nth-child(1) {
  grid-area: photo1;
}

.gallery-item:nth-child(2) {
  grid-area: photo2;
}

.gallery-item:nth-child(3) {
  grid-area: photo3;
}

.gallery-item:nth-child(4) {
  grid-area: photo4;
}

.gallery-item:nth-child(5) {
  grid-area: photo5;
}

.gallery-item:nth-child(6) {
  grid-area: photo6;
}

.gallery-item:nth-child(7) {
  grid-area: photo7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid.visible .gallery-item {
  animation: tileIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-grid.visible .gallery-item:nth-child(1) {
  animation-delay: 0.02s;
}

.gallery-grid.visible .gallery-item:nth-child(2) {
  animation-delay: 0.08s;
}

.gallery-grid.visible .gallery-item:nth-child(3) {
  animation-delay: 0.14s;
}

.gallery-grid.visible .gallery-item:nth-child(4) {
  animation-delay: 0.2s;
}

.gallery-grid.visible .gallery-item:nth-child(5) {
  animation-delay: 0.26s;
}

.gallery-grid.visible .gallery-item:nth-child(6) {
  animation-delay: 0.32s;
}

.gallery-grid.visible .gallery-item:nth-child(7) {
  animation-delay: 0.38s;
}

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

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

.reservation {
  background:
    radial-gradient(circle at 12% 20%, rgba(165, 29, 31, 0.26), transparent 30rem),
    radial-gradient(circle at 86% 80%, rgba(239, 200, 106, 0.11), transparent 24rem),
    linear-gradient(90deg, rgba(165, 29, 31, 0.12), transparent 46%),
    var(--ink);
  color: var(--white);
}

.reservation::before {
  content: "";
  position: absolute;
  inset: 42px max(24px, calc((100% - 1240px) / 2));
  border: 1px solid rgba(239, 200, 106, 0.14);
  pointer-events: none;
}

.reservation .section-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.reservation-grid {
  position: relative;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 58px);
}

.reservation .section-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  border-left: 1px solid rgba(239, 200, 106, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 2, 2, 0.42);
}

.reservation h2 {
  max-width: 520px;
  font-size: clamp(3.2rem, 6.8vw, 6.25rem);
  line-height: 0.88;
}

.contact-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 34px;
  color: var(--champagne);
  font-weight: 800;
}

.contact-mini a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(239, 200, 106, 0.18);
  background: rgba(239, 200, 106, 0.07);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.contact-mini a:hover {
  transform: translateX(6px);
  border-color: rgba(239, 200, 106, 0.42);
  background: rgba(239, 200, 106, 0.12);
}

.contact-mini span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(239, 200, 106, 0.22);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 6, 5, 0.72);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.36);
}

.booking-form.visible .form-field,
.booking-form.visible .btn,
.booking-form.visible .form-status {
  animation: formFieldIn 0.56s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-form.visible .form-field:nth-child(1) {
  animation-delay: 0.03s;
}

.booking-form.visible .form-field:nth-child(2) {
  animation-delay: 0.07s;
}

.booking-form.visible .form-field:nth-child(3) {
  animation-delay: 0.11s;
}

.booking-form.visible .form-field:nth-child(4) {
  animation-delay: 0.15s;
}

.booking-form.visible .form-field:nth-child(5) {
  animation-delay: 0.19s;
}

.booking-form.visible .form-field:nth-child(6) {
  animation-delay: 0.23s;
}

.booking-form.visible .form-field:nth-child(7) {
  animation-delay: 0.27s;
}

.booking-form.visible .form-field:nth-child(8) {
  animation-delay: 0.31s;
}

.booking-form.visible .btn {
  animation-delay: 0.35s;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full,
.booking-form .full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(239, 200, 106, 0.18);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field select option {
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(217, 183, 111, 0.16);
}

.form-field small {
  min-height: 18px;
  color: #ffd0d0;
  font-size: 0.76rem;
  font-weight: 700;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
  border-color: #ff8f8f;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--champagne);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(239, 200, 106, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-actions {
  margin-top: 24px;
}

.contact-actions .btn-secondary {
  color: var(--white);
  border-color: rgba(239, 200, 106, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 52px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #050202;
  text-align: center;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  align-content: start;
  color: var(--white);
  font-weight: 700;
}

.footer-center {
  display: grid;
  justify-items: center;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-contact-visible .floating-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-contact a,
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(217, 183, 111, 0.5);
  background: var(--ink);
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(12, 11, 9, 0.24);
}

.page-loaded .floating-contact a {
  animation: softPulse 3.2s ease-in-out infinite;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 80;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 72px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.lightbox img {
  width: min(1100px, 100%);
  max-height: calc(100dvh - 120px);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  transform: scale(0.96);
  transition: transform 0.28s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s ease var(--reveal-delay, 0ms), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-zoom {
  transform: translateY(20px) scale(0.94);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
  transform: translateX(0) translateY(0) scale(1);
}

@keyframes loaderTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0.72;
    transform: scale(1.12);
    filter: saturate(0.82) brightness(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
}

@keyframes heroSheen {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes tileIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes formFieldIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 14px 38px rgba(12, 11, 9, 0.24);
  }

  50% {
    box-shadow: 0 18px 46px rgba(217, 183, 111, 0.32);
  }
}

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

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

  body:not(.page-loaded) {
    overflow: auto;
  }

  .preloader {
    display: none;
  }

  .gallery-item {
    opacity: 1;
    transform: none;
  }

  .video-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .main-nav {
    position: fixed;
    top: 94px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(12, 11, 9, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-showcase {
    justify-self: start;
    width: min(620px, 100%);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .hero-logo-card {
    border-radius: 22px;
  }

  .hero-stats {
    margin: 0;
  }

  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .reservation .section-copy {
    min-height: auto;
  }

  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 250px;
  }

  .event-card,
  .event-card:nth-child(1),
  .event-card:nth-child(2),
  .event-card:nth-child(3),
  .event-card:nth-child(4),
  .event-card:nth-child(5),
  .event-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "photo1 photo2"
      "photo3 photo2"
      "photo4 photo5"
      "photo6 photo5"
      "photo7 photo7";
    grid-auto-rows: 220px;
  }

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

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

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 12px;
  }

  .brand-name {
    max-width: 112px;
    white-space: normal;
    line-height: 1.05;
    font-size: 0.82rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 34px;
    align-items: start;
  }

  .hero-shell {
    gap: 24px;
  }

  .hero-shell::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.7rem);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .hero-showcase::before,
  .hero-logo-card {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .hero-stats article {
    padding: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    text-align: left;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px) scale(0.985);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0) scale(1);
  }

  .advantage-grid,
  .event-grid,
  .pricing-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .reservation::before {
    inset: 24px 14px;
  }

  .reservation .section-copy {
    padding: 24px;
  }

  .reservation h2 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
    line-height: 0.94;
  }

  .event-grid {
    grid-auto-rows: 285px;
  }

  .event-card img {
    height: 210px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .video-playlist {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-card span {
    min-height: auto;
  }

  .gallery-item:nth-child(n),
  .gallery-item.wide,
  .gallery-item.tall {
    grid-area: auto;
  }

  .map-frame iframe {
    height: 360px;
  }

  .site-footer {
    display: grid;
  }

  .floating-contact {
    left: 14px;
    right: auto;
    bottom: 14px;
  }

  .floating-contact a {
    min-width: 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    font-size: 0.7rem;
  }

  .back-to-top {
    bottom: 14px;
  }

  .lightbox {
    padding: 58px 14px;
  }

  .lightbox-prev {
    left: 12px;
    bottom: 18px;
    top: auto;
  }

  .lightbox-next {
    right: 12px;
    bottom: 18px;
    top: auto;
  }
}

@media (max-width: 420px) {
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
