:root {
  --bg: #f5f0e8;
  --paper: #ffffff;
  --paper-soft: #fff8ec;
  --dark: #172033;
  --muted: #687083;
  --line: rgba(23, 32, 51, 0.12);

  --red: #8f1d2c;
  --wine: #4b1020;
  --gold: #d8a545;
  --cream: #ffe3aa;

  --mix: linear-gradient(135deg, var(--wine), var(--red), var(--gold));

  --shadow: 0 24px 70px rgba(75, 16, 32, 0.16);
  --shadow2: 0 14px 38px rgba(23, 32, 51, 0.1);

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(216, 165, 69, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(143, 29, 44, 0.16), transparent 35%),
    var(--bg);
  line-height: 1.7;
}

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

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

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(75, 16, 32, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.logo small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--gold), var(--cream)),
    var(--gold);
  position: relative;
  box-shadow: 0 12px 30px rgba(216, 165, 69, 0.35);
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 3px solid var(--wine);
}

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

nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-btn {
  background: var(--gold);
  color: var(--wine) !important;
  box-shadow: 0 10px 25px rgba(216, 165, 69, 0.26);
}

/* Hero */

.hero {
  padding: 80px 0 70px;
}

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

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(18px);
}

.hero-card {
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  top: -70px;
  background: var(--mix);
  border-radius: 50%;
  opacity: 0.16;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-card h3,
.hero-main h1,
.section-title h2,
.panel h2 {
  margin: 14px 0;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-card h3 {
  font-size: 30px;
}

.hero-main {
  border-radius: 38px;
  padding: 54px;
  background:
    linear-gradient(135deg, rgba(75, 16, 32, 0.94), rgba(143, 29, 44, 0.9)),
    var(--wine);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(216, 165, 69, 0.22);
}

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

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

.hero-main h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 78px);
  text-transform: capitalize;
}

.hero-main p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 850px;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.mini-list div {
  padding: 18px;
  border-radius: 22px;
  background: var(--paper-soft);
  border: 1px solid rgba(216, 165, 69, 0.25);
}

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

.mini-list span {
  color: var(--muted);
  font-size: 14px;
}

/* Sections */

section {
  padding: 58px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.panel {
  border-radius: var(--radius);
  padding: 38px;
}

.soft-panel {
  background:
    linear-gradient(180deg, #fff, var(--paper-soft));
  position: sticky;
  top: 110px;
}

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

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

.section-title h2,
.panel h2 {
  font-size: clamp(30px, 4vw, 48px);
}

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

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

.info-box {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: 0 12px 32px rgba(23, 32, 51, 0.07);
}

.info-box h3 {
  margin: 0 0 8px;
  color: var(--wine);
}

.info-box p {
  margin: 0;
}

/* Cards */

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

.card {
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s ease;
}

.card:hover,
.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--wine);
}

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

/* Hotel grid */

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

.hotel-card {
  min-height: 260px;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.hotel-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(216, 165, 69, 0.18);
}

.hotel-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--mix);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(143, 29, 44, 0.22);
}

.hotel-card h3 {
  margin: 24px 0 10px;
  color: var(--wine);
}

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

/* Footer */

.footer {
  padding: 44px 0;
  background: var(--wine);
  color: #fff;
}

.footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.footer-links a,
.footer-links span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  background: var(--gold);
  color: var(--wine);
}

.small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner,
  nav {
    justify-content: center;
  }

  .header-inner {
    flex-direction: column;
    padding: 18px 0;
  }

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

  .soft-panel {
    position: static;
  }

  .hero-main {
    padding: 38px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 42px;
  }

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

  nav a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero-main h1 {
    font-size: 38px;
  }
}