:root {
  --black: #030303;
  --black-soft: #0b0b0c;
  --black-card: #111113;
  --black-card-2: #171719;
  --white: #fffaf0;
  --muted: #b7aa8e;
  --muted-2: #837963;
  --gold-1: #7a5518;
  --gold-2: #c99b3f;
  --gold-3: #fff0a8;
  --gold-4: #a87422;
  --line: rgba(230, 190, 105, 0.18);
  --line-strong: rgba(255, 229, 150, 0.34);
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 155, 63, 0.16), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(255, 240, 168, 0.07), transparent 28%),
    var(--black);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

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

.gold-text {
  color: #e5bd63;
  background:
    linear-gradient(
      110deg,
      #745018 0%,
      #b8862e 14%,
      #fff1a8 28%,
      #c69332 42%,
      #fff7c7 55%,
      #a36d20 70%,
      #e5bd63 86%,
      #7b5419 100%
    );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(213, 169, 78, 0.12);
  animation: goldSweep 7s ease-in-out infinite alternate;
}

@keyframes goldSweep {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.page-glow {
  position: fixed;
  width: 46vw;
  height: 46vw;
  right: -18vw;
  top: 18vh;
  border-radius: 50%;
  background: rgba(201, 155, 63, 0.10);
  filter: blur(80px);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-emblem {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: "Cinzel", serif;
  font-size: 25px;
  font-weight: 800;
  color: var(--gold-3);
  background:
    linear-gradient(145deg, rgba(255, 240, 168, 0.16), rgba(201, 155, 63, 0.02)),
    #080808;
  box-shadow: inset 0 0 18px rgba(255, 240, 168, 0.08), 0 0 24px rgba(201, 155, 63, 0.12);
}

.brand strong {
  display: block;
  font-family: "Cinzel", serif;
  letter-spacing: 0.11em;
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,250,240,0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-3);
}

.nav-call,
.language-picker {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,240,168,0.12), rgba(201,155,63,0.03));
  color: var(--gold-3);
  padding: 11px 15px;
  font-weight: 800;
}

.hero-language {
  display: flex;
  margin-bottom: 18px;
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 38px 0 15px;
  cursor: pointer;
}

.language-picker::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-select {
  width: auto;
  min-width: 106px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-3);
  padding: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.language-select:focus {
  box-shadow: none;
}

.language-select option {
  color: #0b0802;
  background: var(--white);
}

.language-symbol {
  font-size: 18px;
  line-height: 1;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 88px 0 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 168, 0.45), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 12px;
}

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

h1 {
  margin-bottom: 24px;
  font-family: "Cinzel", serif;
  font-size: clamp(56px, 9vw, 118px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 680px;
  color: rgba(255,250,240,0.76);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.btn.primary {
  color: #0b0802;
  background:
    linear-gradient(115deg, #7a5518, #d3a64b 28%, #fff1a8 48%, #c08a2e 68%, #865819);
  box-shadow: 0 18px 40px rgba(201, 155, 63, 0.22);
}

.btn.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-3);
}

.btn.full {
  width: 100%;
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-contacts a {
  color: var(--muted);
  border-bottom: 1px solid rgba(201, 155, 63, 0.32);
  font-weight: 700;
}

.lux-card {
  position: relative;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255, 240, 168, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    var(--black-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 18%, transparent 36%),
    repeating-linear-gradient(105deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 7px);
  opacity: 0.18;
  pointer-events: none;
}

.lux-card-top {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 240, 168, 0.18), transparent 25%),
    linear-gradient(160deg, rgba(255, 240, 168, 0.05), transparent 36%),
    #080808;
  border: 1px solid rgba(255, 240, 168, 0.15);
  overflow: hidden;
}

.lux-card-top::before {
  content: "G";
  position: absolute;
  right: 16px;
  top: -64px;
  font-family: "Cinzel", serif;
  font-size: 280px;
  line-height: 1;
  color: rgba(255, 240, 168, 0.055);
  z-index: 1;
}

.lux-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.74) 78%),
    linear-gradient(90deg, rgba(0,0,0,0.54), transparent 58%);
}

.lux-card-copy {
  position: relative;
  z-index: 2;
}

.vehicle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.vehicle-img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lux-vehicle-img {
  z-index: 0;
}

.lux-card-top h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 44px);
}

.lux-card-top p {
  margin-bottom: 0;
  color: var(--muted);
}

.vehicle-line {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.vehicle-line span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.035);
  font-weight: 900;
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stats div {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.hero-stats strong {
  display: block;
  color: var(--gold-3);
  font-size: 20px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
}

.gold-strip {
  border-block: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(122,85,24,0.24), rgba(255,240,168,0.15), rgba(122,85,24,0.24));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0;
  color: var(--gold-3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow),
.fleet-grid p,
.tour-copy p,
.booking-copy p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.vehicle-card,
.route-box,
.booking-form,
.contact-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255,240,168,0.075), transparent 32%),
    var(--black-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 250px;
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-3);
  background: rgba(255,240,168,0.05);
  font-size: 24px;
}

.dark-panel {
  background:
    linear-gradient(180deg, rgba(255,240,168,0.03), rgba(255,240,168,0.00)),
    #070707;
  border-block: 1px solid var(--line);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.fleet-list {
  display: grid;
  gap: 18px;
}

.vehicle-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
}

.vehicle-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -70px;
  border-radius: 50%;
  background: rgba(201,155,63,0.08);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.vehicle-photo {
  position: relative;
  z-index: 1;
  min-height: 190px;
  margin: 0;
  border: 1px solid rgba(255, 240, 168, 0.20);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,240,168,0.16), transparent 32%),
    linear-gradient(145deg, rgba(255,240,168,0.09), rgba(255,255,255,0.02)),
    #080808;
  box-shadow: inset 0 0 28px rgba(255,240,168,0.04);
  overflow: hidden;
}

.vehicle-photo::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255,240,168,0.42);
  font-family: "Cinzel", serif;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}

.vehicle-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.38)),
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 28%);
}

.vehicle-photo.has-image::before {
  opacity: 0;
}

.vehicle-card-body {
  position: relative;
  z-index: 1;
}

.vehicle-badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-3);
  font-family: "Cinzel", serif;
  font-weight: 900;
}

.vehicle-card p {
  max-width: 640px;
}

.tours-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.route-box {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.route-box div {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}

.route-box span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #0b0802;
  background: linear-gradient(130deg, #8a621f, #fff0a8, #b57d24);
  font-weight: 900;
}

.booking-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(201,155,63,0.16), transparent 24%),
    #070707;
  border-top: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
}

.contact-panel a {
  color: var(--gold-3);
  font-weight: 800;
}

.booking-form {
  padding: 28px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-3);
  font-size: 13px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,240,168,0.20);
  border-radius: 16px;
  background: rgba(0,0,0,0.38);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
}

select {
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255,240,168,0.62);
  box-shadow: 0 0 0 4px rgba(201,155,63,0.13);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 38px 0;
  background: #020202;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid strong {
  font-family: "Cinzel", serif;
  letter-spacing: 0.12em;
}

.footer-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 4px;
  text-align: right;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  gap: 8px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #0b0802;
  background: linear-gradient(130deg, #8a621f, #fff0a8, #b57d24);
  box-shadow: 0 16px 40px rgba(0,0,0,0.36);
  font-weight: 900;
}

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

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

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    justify-content: center;
    gap: 12px;
  }

  .nav-links {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-links a,
  .nav-call {
    width: auto;
    text-align: center;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero-grid,
  .fleet-grid,
  .tours-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    grid-template-columns: minmax(160px, 0.45fr) 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 62px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    font-size: 13px;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .cards,
  .strip-grid,
  .hero-stats,
  .form-row,
  .vehicle-card {
    grid-template-columns: 1fr;
  }

  .vehicle-photo {
    min-height: 220px;
  }

  .lux-card {
    padding: 16px;
  }

  .lux-card-top {
    min-height: 280px;
    padding: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    display: grid;
  }

  .footer-contact {
    text-align: left;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
  }

  .floating-actions a {
    flex: 1;
  }
}
