:root {
  --bg: #0b0d10;
  --bg-soft: #12161a;
  --bg-elevated: #171c21;
  --card: rgba(23, 28, 33, 0.88);
  --text: #f4efe5;
  --muted: #c9bfae;
  --muted-2: #9d9383;
  --gold: #d4af37;
  --gold-soft: #e6cf80;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(212, 175, 55, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.24);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1200px;
  --hero-overlay: linear-gradient(rgba(5, 8, 12, 0.42), rgba(5, 8, 12, 0.76));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.05), transparent 28%),
    linear-gradient(to bottom, #090b0d, #0d1013 24%, #0b0d10 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(255,255,255,0.015)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.top-space {
  margin-top: 1.6rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 9, 11, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.98rem;
  position: relative;
  transition: color 0.18s ease;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, 0.03);
  color: var(--muted);
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08) inset;
}

/* Hero */

.hero {
  min-height: 82vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 6rem 0 5.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 680px;
  margin: 0 0 1.8rem;
  color: #e7e0d3;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

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

.btn-primary {
  background: linear-gradient(180deg, #e0c463 0%, #d4af37 100%);
  color: #111;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ead27d 0%, #dcb74a 100%);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}

.btn-secondary:hover {
  border-color: rgba(212, 175, 55, 0.42);
  color: var(--gold-soft);
}

.btn-block {
  width: 100%;
}

/* Typography blocks */

.section-head {
  margin-bottom: 2.15rem;
}

.section-head h2,
.intro h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin: 0 0 0.65rem;
  line-height: 1.06;
}

.section-head p,
.intro p,
.contact-section p {
  color: var(--muted);
  max-width: 820px;
}

.intro {
  position: relative;
}

.intro::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: var(--line-gold);
  margin-top: 1.5rem;
}

/* Grids */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

/* Cards */

.stay-card,
.place-card,
.info-box,
.review-card,
.booking-partners,
.contact-box,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stay-card,
.place-card {
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.stay-card:hover,
.place-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow);
}

.stay-card img,
.place-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.stay-card-body,
.place-card-body {
  padding: 1.2rem 1.2rem 1.25rem;
}

.stay-card h3,
.place-card h3,
.info-box h3,
.booking-partners h3,
.gallery-heading {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.meta {
  margin: 0 0 0.7rem;
  color: var(--gold-soft);
  font-size: 0.96rem;
}

.dual-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Gallery */

.gallery-heading {
  margin: 2.15rem 0 1rem;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.gallery-grid img:hover {
  transform: scale(1.015);
  border-color: rgba(212, 175, 55, 0.24);
}

/* Lists */

.styled-list {
  margin: 0;
  padding-left: 1.15rem;
}

.styled-list li + li {
  margin-top: 0.6rem;
}

.info-box {
  padding: 1.4rem;
}

/* Reviews */

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

.review-card {
  margin: 0;
  padding: 1.35rem;
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.55rem;
  left: 0.8rem;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.18);
  line-height: 1;
}

.review-card p {
  margin: 0 0 1rem;
  color: #ebe6db;
  position: relative;
  z-index: 1;
}

.review-card span,
.review-card footer {
  color: var(--gold-soft);
  font-size: 0.95rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.45rem;
}

.contact-box {
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.contact-box a,
.booking-partners a {
  color: var(--gold-soft);
}

.contact-note {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.95rem;
}

.contact-form span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #101317;
  color: var(--text);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: #12161a;
}

.booking-partners {
  padding: 1.25rem;
}

.booking-partners ul {
  margin: 0;
  padding-left: 1.1rem;
}

.booking-partners li + li {
  margin-top: 0.58rem;
}

/* Footer */

.site-footer {
  background: #08090a;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.6rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted-2);
}

/* Responsive */

@media (max-width: 1060px) {
  .cards-grid,
  .gallery-grid,
  .reviews-grid,
  .two-col-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 0;
  }
}

@media (max-width: 700px) {
  .cards-grid,
  .gallery-grid,
  .reviews-grid,
  .two-col-grid,
  .contact-grid,
  .form-grid,
  .dual-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 4.6rem 0 4rem;
  }

  .main-nav {
    gap: 0.85rem;
  }

  .brand {
    font-size: 1.28rem;
  }
}
