:root {
  color-scheme: dark;
  --ink: #fff7ec;
  --muted: #c8b8a7;
  --dim: #8d8176;
  --black: #0d0a0c;
  --panel: #171013;
  --panel-2: #21151a;
  --line: rgba(255, 247, 236, 0.14);
  --red: #8f1f32;
  --red-bright: #cf334d;
  --gold: #d7b46f;
  --gold-soft: #f3d997;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 10%, rgba(143, 31, 50, 0.32), transparent 34rem),
    linear-gradient(180deg, #0d0a0c 0%, #150d11 46%, #0b090a 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--cursor-x, 70%) var(--cursor-y, 18%), rgba(215, 180, 111, 0.08), transparent 24rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 247, 236, 0.025) 42% 42.2%, transparent 42.2% 100%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 180, 111, 0.78);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(13, 10, 12, 0.88), rgba(13, 10, 12, 0));
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(13, 10, 12, 0.84);
  border-bottom: 1px solid rgba(255, 247, 236, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 180, 111, 0.55);
  border-radius: 7px;
  color: var(--gold-soft);
  background: linear-gradient(135deg, rgba(143, 31, 50, 0.8), rgba(20, 13, 16, 0.94));
  box-shadow: 0 12px 32px rgba(143, 31, 50, 0.28), inset 0 1px 0 rgba(255, 247, 236, 0.18);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(143, 31, 50, 0.42), inset 0 1px 0 rgba(255, 247, 236, 0.22);
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  gap: clamp(14px, 2.6vw, 30px);
  color: rgba(255, 247, 236, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-soft);
}

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

.language-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 247, 236, 0.14);
  border-radius: 7px;
  background: rgba(255, 247, 236, 0.05);
  backdrop-filter: blur(14px);
}

.language-links a {
  min-width: 34px;
  padding: 7px 8px;
  border-radius: 5px;
  color: rgba(255, 247, 236, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.language-links a:hover {
  color: var(--ink);
  background: rgba(255, 247, 236, 0.12);
}

.language-links a[aria-current="page"] {
  color: #160e10;
  background: var(--gold);
}

.header-action,
.button,
.package-select {
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.header-action {
  padding: 12px 16px;
  color: #160e10;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 34px rgba(215, 180, 111, 0.18);
  transition: box-shadow 180ms ease, transform 180ms var(--ease-out);
}

.header-action:hover,
.button:hover,
.package-select:hover {
  transform: translateY(-2px);
}

.header-action:hover,
.button.primary:hover {
  box-shadow: 0 22px 52px rgba(215, 180, 111, 0.27);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 86svh;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 74px) 72px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 86%, rgba(207, 51, 77, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(13, 10, 12, 0.3), transparent 45%, rgba(143, 31, 50, 0.08));
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 22vh;
  background: linear-gradient(180deg, transparent, rgba(13, 10, 12, 0.96));
  content: "";
  pointer-events: none;
}

.hero-content,
.hero-card,
.hero-scene {
  position: relative;
}

.hero-content {
  z-index: 5;
  min-width: 0;
  width: 100%;
  max-width: 760px;
  animation: riseIn 760ms var(--ease-out) 80ms both;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(56px, 7.6vw, 112px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  font-size: 26px;
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out), background 180ms ease;
}

.button::after,
.package-select::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 247, 236, 0.34) 48%, transparent 62% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-85%);
  transition: opacity 180ms ease, transform 520ms var(--ease-out);
}

.button:hover::after,
.package-card:hover .package-select::after {
  opacity: 1;
  transform: translateX(85%);
}

.button.primary {
  color: #160e10;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 42px rgba(215, 180, 111, 0.2);
}

.button.ghost {
  border: 1px solid rgba(255, 247, 236, 0.2);
  color: var(--ink);
  background: rgba(255, 247, 236, 0.06);
}

.button.ghost:hover {
  border-color: rgba(215, 180, 111, 0.36);
  background: rgba(255, 247, 236, 0.095);
}

.hero-scene {
  z-index: 1;
  min-height: 560px;
  animation: floatScene 9s ease-in-out infinite;
}

.city-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(255, 247, 236, 0.08) 20% 20.2%, transparent 20.2% 44%, rgba(255, 247, 236, 0.05) 44% 44.2%, transparent 44.2%),
    repeating-linear-gradient(180deg, transparent 0 54px, rgba(255, 247, 236, 0.05) 56px, transparent 58px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.82;
  transform: translateY(calc(var(--scroll-progress, 0) * 28px));
}

.club-front {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: min(480px, 88%);
  height: 74%;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 111, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 24%, rgba(207, 51, 77, 0.44), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 236, 0.09), rgba(255, 247, 236, 0.02)),
    #130d10;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 247, 236, 0.12);
  transform: perspective(900px) rotateY(-3deg) rotateX(1deg);
}

.club-front::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 40%, rgba(255, 247, 236, 0.08) 49%, transparent 58% 100%);
  content: "";
  opacity: 0.7;
  transform: translateX(-45%);
  animation: glassSweep 7s ease-in-out infinite;
}

.club-front::after {
  position: absolute;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(255, 247, 236, 0.16), transparent 64%);
  content: "";
  filter: blur(8px);
}

.neon-sign {
  position: absolute;
  top: 13%;
  left: 50%;
  width: 72%;
  transform: translateX(-50%);
  color: #ffe6a6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 18px rgba(215, 180, 111, 0.85), 0 0 32px rgba(207, 51, 77, 0.7);
  text-wrap: balance;
  animation: neonBreath 4.8s ease-in-out infinite;
}

.door {
  position: absolute;
  right: 24%;
  bottom: 0;
  left: 24%;
  height: 58%;
  border: 1px solid rgba(215, 180, 111, 0.2);
  background:
    linear-gradient(90deg, transparent 49%, rgba(215, 180, 111, 0.28) 49.5% 50.5%, transparent 51%),
    linear-gradient(180deg, rgba(143, 31, 50, 0.42), rgba(0, 0, 0, 0.42));
}

.door::before,
.door::after {
  position: absolute;
  bottom: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.04), rgba(0, 0, 0, 0.18));
  content: "";
}

.door::before {
  left: 0;
}

.door::after {
  right: 0;
}

.rope {
  position: absolute;
  bottom: 18%;
  width: 30%;
  height: 2px;
  background: var(--red-bright);
  box-shadow: 0 0 18px rgba(207, 51, 77, 0.6);
  animation: ropePulse 3.8s ease-in-out infinite;
}

.rope.left {
  left: -9%;
  transform: rotate(-8deg);
}

.rope.right {
  right: -9%;
  transform: rotate(8deg);
}

.car-light {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 70%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 236, 0.86), rgba(207, 51, 77, 0.72), transparent);
  filter: blur(12px);
  opacity: 0.9;
  animation: carLight 6s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  z-index: 4;
  bottom: clamp(34px, 5vw, 72px);
  left: clamp(20px, 5vw, 74px);
  max-width: 390px;
  padding: 24px;
  border: 1px solid rgba(215, 180, 111, 0.22);
  border-radius: 8px;
  background: rgba(23, 16, 19, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: riseIn 680ms var(--ease-out) 220ms both;
}

.hero-card span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 850;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.section,
.intro-band {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 74px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
}

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

.intro-band {
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(58px, 7vw, 86px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(215, 180, 111, 0.035), transparent 38%, rgba(143, 31, 50, 0.08)),
    rgba(255, 247, 236, 0.035);
}

.intro-grid,
.flow-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.flow-grid > div p,
.safety-copy p,
.contact-grid > div p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  max-width: 820px;
  gap: 18px;
  margin-bottom: 34px;
}

.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 26%, rgba(215, 180, 111, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 247, 236, 0.018), rgba(143, 31, 50, 0.07));
}

.team-section::before {
  position: absolute;
  top: 0;
  right: clamp(20px, 6vw, 86px);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(215, 180, 111, 0.22), transparent);
  content: "";
  transform: rotate(12deg);
}

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

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 247, 236, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 236, 0.075), rgba(255, 247, 236, 0.022)),
    rgba(15, 10, 12, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.team-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
  opacity: 0.55;
}

.team-card:hover {
  border-color: rgba(215, 180, 111, 0.42);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.team-portrait {
  position: relative;
  display: grid;
  width: 148px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 111, 0.24);
  border-radius: 8px;
  color: var(--gold-soft);
  text-decoration: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 247, 236, 0.12), transparent 24%),
    radial-gradient(circle at 50% 68%, rgba(143, 31, 50, 0.58), transparent 44%),
    linear-gradient(150deg, #211419, #0f0a0c);
  box-shadow: inset 0 1px 0 rgba(255, 247, 236, 0.14), 0 20px 52px rgba(0, 0, 0, 0.24);
}

.team-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(13, 10, 12, 0.26)),
    radial-gradient(circle at 50% 12%, rgba(255, 247, 236, 0.14), transparent 28%);
  content: "";
  pointer-events: none;
}

.team-portrait::after {
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 247, 236, 0.1);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  transform: scale(1.02);
  transition: transform 420ms var(--ease-out), filter 220ms ease;
}

.team-card:hover .team-portrait img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.065);
}

.team-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
}

.team-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.team-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.team-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.consultation-note {
  display: grid;
  max-width: 760px;
  gap: 8px;
  margin: -6px 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(215, 180, 111, 0.24);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 180, 111, 0.09), rgba(143, 31, 50, 0.08)),
    rgba(255, 247, 236, 0.035);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.consultation-note strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.consultation-note span {
  color: var(--muted);
  line-height: 1.55;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 247, 236, 0.065), rgba(255, 247, 236, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out), background 220ms ease;
}

.package-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(215, 180, 111, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(255, 247, 236, 0.06), transparent 44%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.package-card.is-selected,
.package-card:hover {
  border-color: rgba(215, 180, 111, 0.7);
  background: linear-gradient(180deg, rgba(143, 31, 50, 0.24), rgba(255, 247, 236, 0.045));
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.package-card.is-selected::before,
.package-card:hover::before {
  opacity: 1;
}

.package-top {
  display: grid;
  gap: 10px;
}

.package-top strong {
  color: var(--gold-soft);
}

.package-card p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.package-card li::before {
  color: var(--gold);
  content: "+ ";
}

.package-select {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 247, 236, 0.08);
  border: 1px solid rgba(255, 247, 236, 0.18);
}

.package-card.is-selected .package-select {
  color: #160e10;
  background: var(--gold);
}

.flow-section {
  background: #100b0d;
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 6px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 236, 0.045);
  transition: border-color 180ms ease, transform 180ms var(--ease-out), background 180ms ease;
}

.flow-list li:hover {
  border-color: rgba(215, 180, 111, 0.34);
  background: rgba(255, 247, 236, 0.065);
  transform: translateX(4px);
}

.flow-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.flow-list strong {
  font-size: 19px;
}

.flow-list p {
  color: var(--muted);
  line-height: 1.5;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.safety-copy {
  display: grid;
  gap: 22px;
}

.safety-points {
  display: grid;
  gap: 14px;
}

.safety-points article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 247, 236, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease-out);
}

.safety-points article:hover {
  border-left-color: var(--gold-soft);
  background: rgba(255, 247, 236, 0.075);
  transform: translateX(4px);
}

.safety-points span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-section {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(135deg, rgba(143, 31, 50, 0.34), rgba(13, 10, 12, 0.86)),
    #160d11;
}

.contact-section .section-inner {
  position: relative;
}

.contact-section .section-inner::before {
  position: absolute;
  top: -38px;
  right: 8%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0.7;
}

.contact-email {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-soft);
  font-size: clamp(24px, 3vw, 38px);
  font-family: Georgia, "Times New Roman", serif;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.contact-email:hover {
  color: #fff1bd;
  text-shadow: 0 0 24px rgba(215, 180, 111, 0.36);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(215, 180, 111, 0.25);
  border-radius: 8px;
  background: rgba(13, 10, 12, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 236, 0.16);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 247, 236, 0.08);
  font: inherit;
  font-size: 16px;
  padding: 14px 13px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:hover,
textarea:hover {
  border-color: rgba(255, 247, 236, 0.28);
}

input:focus,
textarea:focus {
  border-color: rgba(215, 180, 111, 0.6);
  background: rgba(255, 247, 236, 0.105);
  box-shadow: 0 0 0 4px rgba(215, 180, 111, 0.08);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--gold-soft);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 74px);
  color: var(--dim);
  font-size: 14px;
}

@keyframes riseIn {
  from {
    opacity: 1;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonBreath {
  0%,
  100% {
    opacity: 0.94;
    text-shadow: 0 0 14px rgba(215, 180, 111, 0.75), 0 0 30px rgba(207, 51, 77, 0.58);
  }
  48% {
    opacity: 1;
    text-shadow: 0 0 24px rgba(255, 230, 166, 0.92), 0 0 48px rgba(207, 51, 77, 0.78);
  }
  52% {
    opacity: 0.86;
  }
  56% {
    opacity: 1;
  }
}

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

@keyframes glassSweep {
  0%,
  58% {
    transform: translateX(-62%);
  }
  82%,
  100% {
    transform: translateX(68%);
  }
}

@keyframes ropePulse {
  0%,
  100% {
    opacity: 0.68;
  }
  50% {
    opacity: 1;
  }
}

@keyframes carLight {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-4%);
  }
  50% {
    opacity: 0.95;
    transform: translateX(4%);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .language-links {
    position: fixed;
    top: 18px;
    right: 14px;
    margin-left: 0;
  }

  .hero,
  .intro-grid,
  .flow-grid,
  .safety-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-scene {
    min-height: 420px;
    order: -1;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-left: 0;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand span:last-child {
    max-width: 132px;
  }

  .language-links {
    display: none;
  }

  .header-action {
    display: none;
  }

  h1 {
    max-width: 340px;
    font-size: clamp(40px, 12.4vw, 48px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .hero-actions .button {
    max-width: 340px;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 54px;
  }

  .hero::after {
    display: none;
  }

  .hero-scene {
    min-height: 260px;
    overflow: hidden;
  }

  .club-front {
    right: 7%;
    width: 86%;
    height: 86%;
  }

  .neon-sign {
    width: 74%;
    font-size: 18px;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 24px;
  }

  .team-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }

  .team-portrait {
    width: 124px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .full {
    grid-column: auto;
  }
}
