:root {
  --bg: #0f1117;
  --bg-soft: #171a23;
  --panel: #ffffff;
  --panel-dark: #1d2130;
  --text: #f5f2ec;
  --dark-text: #182033;
  --muted: #9ca3af;
  --muted-dark: #667085;

  --gold: #d6a84f;
  --soft-gold: #f7df9e;
  --champagne: #fff4d6;
  --burgundy: #6d1024;
  --deep-burgundy: #3b0713;
  --navy: #111827;
  --cream: #fffaf0;

  --line: rgba(214, 168, 79, 0.22);
  --line-light: rgba(255, 255, 255, 0.12);

  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.16);

  --radius: 26px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(109, 16, 36, 0.32), transparent 38%),
    linear-gradient(180deg, #10131b 0%, #17111a 45%, #fff8ec 45%, #fff8ec 100%);
  color: var(--text);
  line-height: 1.7;
}

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

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(15, 17, 23, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 21px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.logo small {
  display: block;
  font-size: 12px;
  color: var(--soft-gold);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 1px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff7cf 0%, var(--gold) 34%, #7a4d13 72%, #251507 100%);
  border: 2px solid rgba(255, 244, 214, 0.55);
  box-shadow:
    0 0 0 6px rgba(214, 168, 79, 0.12),
    0 18px 35px rgba(214, 168, 79, 0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-family: Arial, sans-serif;
  font-size: 15px;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--soft-gold);
}

.nav-btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #8a5b18);
  color: #18120a !important;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(214, 168, 79, 0.28);
}

/* Hero */
.hero {
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 32px;
  align-items: stretch;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(29, 33, 48, 0.96), rgba(35, 16, 27, 0.96));
  border: 1px solid var(--line);
}

.hero-main {
  padding: 56px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(255, 239, 199, 0.92)),
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.35), transparent 38%);
  color: var(--dark-text);
  border: 1px solid rgba(214, 168, 79, 0.35);
}

.hero-main::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(109, 16, 36, 0.1);
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: auto 40px 40px auto;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-block;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-main .kicker {
  color: var(--burgundy);
}

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

h1 {
  font-size: clamp(44px, 7vw, 86px);
  text-transform: capitalize;
  margin-bottom: 28px;
  color: var(--navy);
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

h3 {
  font-size: 23px;
}

.hero-card h3,
.hero-card strong {
  color: #ffffff;
}

.hero-card p,
.hero-card span {
  color: rgba(255, 255, 255, 0.68);
}

.hero-main p {
  color: #555f70;
}

p {
  color: var(--muted);
  margin-bottom: 18px;
}

.mini-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.mini-list div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 168, 79, 0.18);
}

.mini-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--champagne);
}

.mini-list span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

/* Sections */
section {
  padding: 76px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
}

.panel {
  padding: 44px;
  background:
    linear-gradient(180deg, #ffffff, #fff7e8);
  color: var(--dark-text);
  border: 1px solid rgba(214, 168, 79, 0.28);
  box-shadow: var(--shadow-soft);
}

.panel p {
  color: var(--muted-dark);
}

.soft-panel {
  background:
    linear-gradient(180deg, #24111a, #111827);
  color: #ffffff;
  border: 1px solid var(--line);
}

.soft-panel h2,
.soft-panel h3 {
  color: #ffffff;
}

.soft-panel p {
  color: rgba(255, 255, 255, 0.66);
}

.section-title {
  margin-bottom: 32px;
}

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

.section-title.center h2 {
  color: var(--navy);
}

.section-title.center p {
  color: var(--muted-dark);
}

.info-box {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(214, 168, 79, 0.2);
  margin-bottom: 18px;
}

.info-box h3 {
  color: var(--soft-gold);
  margin-bottom: 8px;
}

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

.card {
  padding: 32px;
  background:
    linear-gradient(180deg, #ffffff, #fff6df);
  color: var(--dark-text);
  border: 1px solid rgba(214, 168, 79, 0.28);
  transition: 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  color: var(--burgundy);
}

.card p {
  color: var(--muted-dark);
}

.card:hover,
.hotel-card:hover {
  transform: translateY(-9px);
  border-color: rgba(214, 168, 79, 0.7);
  box-shadow: 0 28px 75px rgba(109, 16, 36, 0.18);
}

/* Hotel grid */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hotel-card {
  padding: 32px;
  background:
    linear-gradient(180deg, #171a23, #27111b);
  border: 1px solid var(--line);
  transition: 0.3s ease;
  color: #ffffff;
}

.hotel-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), #8a5b18);
  color: #1b1206;
  font-family: Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(214, 168, 79, 0.28);
}

.hotel-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.hotel-card p {
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(214, 168, 79, 0.16), transparent 35%),
    linear-gradient(135deg, #0d0f15, #261019 58%, #090a0f);
}

.footer-box {
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links span {
  color: var(--soft-gold);
  font-weight: 800;
  font-family: Arial, sans-serif;
}

.footer-links a:hover {
  color: #ffffff;
}

.small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive */
@media (max-width: 950px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
    text-align: center;
  }

  nav {
    justify-content: center;
    gap: 18px;
  }

  .hero-grid,
  .two-column,
  .cards,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .hero-card,
  .panel {
    padding: 32px;
  }

  body {
    background:
      radial-gradient(circle at top, rgba(214, 168, 79, 0.16), transparent 35%),
      linear-gradient(180deg, #10131b 0%, #17111a 38%, #fff8ec 38%, #fff8ec 100%);
  }
}

@media (max-width: 520px) {
  nav {
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .nav-btn {
    padding: 10px 18px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-main,
  .hero-card,
  .panel,
  .card,
  .hotel-card {
    border-radius: 22px;
  }
}