:root {
  --bg: #f5f2ea;
  --bg-soft: #fffdf8;
  --paper: #ffffff;
  --line: #e7ddce;
  --text: #1f1a14;
  --muted: #6d655a;
  --gold: #bc9457;
  --gold-2: #7c5b2d;
  --deep: #111723;
  --shadow: 0 24px 55px rgba(31, 20, 7, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 15% -10%, #fff4dd 0, transparent 38%), var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  z-index: 0;
  background-image: radial-gradient(rgba(147, 114, 67, 0.11) 1px, transparent 1px);
  background-size: 3px 3px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topbar {
  background: linear-gradient(90deg, #151c2d, #1f2a42);
  color: #f8f2e7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}

.topbar-phones {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-wrap a {
  opacity: 0.92;
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.topbar-instagram svg {
  width: 16px;
  height: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-switch a {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.76rem;
  font-weight: 700;
}

.lang-switch a.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.topbar-wrap a:hover {
  opacity: 1;
  color: #ffd693;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(188, 148, 87, 0.28);
  backdrop-filter: blur(8px);
  background: rgba(255, 252, 246, 0.9);
}

.nav-wrap {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand-top {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-cta .btn {
  font-family: "Playfair Display", serif;
}

.nav a.active,
.nav a:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.nav-cta {
  min-width: 132px;
}

.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.22s ease;
}

.btn.fill {
  color: #241808;
  background: linear-gradient(135deg, #f7d59c, #d6a867);
}

.btn.fill:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  min-height: 82vh;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero-slider {
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.hero-slider .slide {
  display: none;
  width: 100%;
  height: 82vh;
  object-fit: cover;
}

.hero-slider .slide.active {
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 14, 24, 0.72), rgba(10, 14, 24, 0.28), rgba(10, 14, 24, 0.82));
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  width: min(900px, 92vw);
  margin: 0 auto;
}

.kicker {
  color: #ffd693;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.08;
}

.hero p {
  margin: 18px auto 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
}

.action-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-controls {
  z-index: 3;
  bottom: 26px;
}

.section {
  padding: 78px 0;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  margin: 0 0 12px;
}

.intro {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 760px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 1.22rem;
  color: var(--gold-2);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-slider {
  position: relative;
  overflow: hidden;
}

.room-card-slide {
  display: none;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.room-card-slide.active {
  display: block;
}

.room-card-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.room-card-prev,
.room-card-next {
  background: rgba(255, 255, 255, 0.92);
}

.card-body {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
}

.slide {
  display: none;
  width: 100%;
  height: min(68vh, 620px);
  object-fit: cover;
}

.slide.active {
  display: block;
}

.controls {
  position: absolute;
  inset: auto 0 16px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ctrl {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  color: #1e160d;
  cursor: pointer;
}

.room-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.room-sub {
  color: var(--gold-2);
  margin-top: 4px;
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.contact-box {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-box p,
.contact-box a {
  color: var(--muted);
  line-height: 1.8;
}

.map-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.map {
  width: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 320px;
}

.form-wrap h3 {
  margin: 0 0 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 148, 87, 0.2);
}

.form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-alert.success {
  background: #e8f8ea;
  color: #1f6a2e;
  border: 1px solid #9fd4a7;
}

.form-alert.error {
  background: #fdeeee;
  color: #8d1f1f;
  border: 1px solid #efb1b1;
}

.prose p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 14px;
}

.legal-text {
  color: var(--muted);
  line-height: 1.8;
  white-space: normal;
}

.footer {
  margin-top: 26px;
  background: linear-gradient(120deg, #121a2a, #1a2540);
  color: #f1e9db;
  padding-top: 40px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 6px;
}

.footer-brand p {
  color: rgba(241, 233, 219, 0.86);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
}

.footer-links a {
  color: rgba(241, 233, 219, 0.9);
}

.footer-bottom {
  margin-top: 26px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(940px, calc(100% - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(188, 148, 87, 0.36);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 18px 60px rgba(17, 23, 35, 0.22);
  backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-consent__actions a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions .btn {
  min-height: 42px;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.5s ease;
}

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

@media (max-width: 1024px) {
  .nav-wrap {
    grid-template-columns: auto 1fr;
  }

  .nav-cta {
    display: none;
  }

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

  .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar-wrap {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 8px 0;
  }

  .topbar-phones {
    gap: 10px;
    flex-wrap: wrap;
  }

  .topbar-right {
    gap: 8px;
  }

  .lang-switch a {
    padding: 2px 7px;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
    gap: 14px;
  }

  .hero-slider .slide,
  .hero {
    height: 72vh;
    min-height: 72vh;
  }

  .cols-2,
  .cols-3,
  .contact-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

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

  .room-head {
    flex-direction: column;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: space-between;
    white-space: normal;
  }
}
