:root {
  --bg: #071015;
  --bg-soft: #0e171d;
  --panel: rgba(8, 14, 19, 0.78);
  --panel-light: rgba(255, 255, 255, 0.05);
  --text: #f5f1e8;
  --muted: #c6bcaa;
  --gold: #d7b67a;
  --gold-soft: #b9965f;
  --line: rgba(215, 182, 122, 0.22);
  --white: #ffffff;
  --max: 1280px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(3, 7, 11, 0.92), rgba(3, 7, 11, 0.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.brand-text {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-sm {
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.84rem;
}

.btn-gold {
  background: linear-gradient(180deg, #e2c891 0%, #c7a061 100%);
  color: #111111;
  box-shadow: 0 10px 30px rgba(215, 182, 122, 0.22);
}

.btn-gold:hover {
  background: linear-gradient(180deg, #ead3a3 0%, #d0ac6d 100%);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 8, 12, 0.58) 0%, rgba(4, 8, 12, 0.20) 28%, rgba(4, 8, 12, 0.38) 100%),
    linear-gradient(to right, rgba(6, 8, 11, 0.48) 0%, rgba(6, 8, 11, 0.08) 40%, rgba(6, 8, 11, 0.14) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4, 8, 12, 0.45) 0%, rgba(4, 8, 12, 0.12) 30%, rgba(4, 8, 12, 0.28) 100%),
    linear-gradient(to right, rgba(6, 8, 11, 0.18) 0%, rgba(6, 8, 11, 0.04) 45%, rgba(6, 8, 11, 0.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 170px;
  padding-bottom: 120px;
}

.hero-content-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-logo {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 25vw);
  min-width: 200px;
  z-index: 3;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.45));
}

.hero-cta-card {
  max-width: 620px;
  margin-top: 110px;
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(8, 14, 19, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.hero-cta-card h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero-description {
  margin: 14px auto 0;
  max-width: 42ch;
  font-size: 1rem;
  color: #f2eadf;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
    background-position: center center;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero-logo {
    top: 88px;
    width: 210px;
  }

  .hero-cta-card {
    margin-top: 88px;
    max-width: 92%;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .hero-cta-card h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 0.96rem;
  }

  .hero-bottom {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    bottom: 18px;
  }

  .hero-bottom-left {
    left: 14px;
  }

  .hero-bottom-right {
    right: 14px;
  }
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.hero-description {
  margin: 20px 0 0;
  max-width: 56ch;
  font-size: 1.08rem;
  color: #f2eadf;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-logo {
  position: absolute;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  width: min(330px, 25vw);
  min-width: 190px;
  z-index: 3;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.45));
}

.hero-bottom {
  position: absolute;
  bottom: 26px;
  z-index: 2;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff3dc;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
  padding: 10px 16px;
  background: rgba(10, 13, 17, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  border-radius: 999px;
}

.hero-bottom-left {
  left: 26px;
}

.hero-bottom-right {
  right: 26px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, #081116 0%, #0b151b 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

/* Intro */
.intro {
  padding: 90px 0 30px;
  background: linear-gradient(180deg, #071015 0%, #0b141a 100%);
}

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

.intro-card {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.intro-card h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.feature-item {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-card h3,
.feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.service-card p,
.feature-item p {
  margin: 0;
  color: var(--muted);
}

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

/* Fleet */
.fleet-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.fleet-copy,
.fleet-panel-inner {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  height: 100%;
}

.fleet-copy h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
}

.fleet-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.fleet-panel-inner h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.fleet-panel-inner ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.fleet-panel-inner li + li {
  margin-top: 12px;
}

/* Area */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.area-list span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
}

/* Reserve */
.reserve-section {
  background: linear-gradient(180deg, #091116 0%, #0d171d 100%);
}

.reserve-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.reserve-copy,
.reserve-form {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.reserve-copy h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
}

.reserve-copy p {
  margin: 0;
  color: var(--muted);
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 12px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #c8bca7;
}

input:focus,
textarea:focus {
  border-color: rgba(215, 182, 122, 0.6);
  box-shadow: 0 0 0 3px rgba(215, 182, 122, 0.10);
}

/* Footer */
.site-footer {
  background: #050c10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  padding: 70px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.footer-bottom {
  padding: 18px 20px 26px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: #9e927d;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reserve-box,
  .fleet-block,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    top: 108px;
    width: min(280px, 28vw);
  }
}

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

  .intro-grid,
  .features-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    background-position: center center;
  }

  .hero-copy {
    padding: 28px 24px;
    margin-top: 90px;
  }

  .hero-logo {
    top: 94px;
    width: 210px;
  }

  .hero-bottom {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    bottom: 18px;
  }

  .hero-bottom-left {
    left: 14px;
  }

  .hero-bottom-right {
    right: 14px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-text {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }

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

  .hero-content {
    padding-top: 110px;
    padding-bottom: 90px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section,
  .intro {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-bottom {
    bottom: 12px;
    max-width: calc(50% - 18px);
    text-align: center;
    line-height: 1.25;
  }
}