:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #2d2d2d;
  --muted: #6f6f6f;
  --green: #189bf2;
  --green-dark: #2d2d2d;
  --gold: #189bf2;
  --line: #e7edf4;
  --shadow: 0 18px 50px rgba(45, 45, 45, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  background-image:
    linear-gradient(170deg, rgba(24, 155, 242, 0.045) 0 1px, transparent 1px),
    linear-gradient(8deg, rgba(45, 45, 45, 0.035) 0 1px, transparent 1px);
  background-size: 100% 140px, 100% 180px;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  background: var(--green);
  color: #fff;
  left: 20px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 1000;
}

.skip-link:focus {
  top: 20px;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 237, 244, 0.9);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px 36px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-icon {
  height: 48px;
  object-fit: contain;
  width: 58px;
}

.brand-text {
  color: var(--ink);
}

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

nav a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a[data-lang] {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 10px;
}

nav a[data-lang].active {
  border-color: var(--green);
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  border-radius: 999px;
  color: #fff;
  padding: 10px 18px;
}

.hero {
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("../images/meno102-01.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(45, 45, 45, 0.74), rgba(45, 45, 45, 0.36), rgba(45, 45, 45, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff;
  padding-top: 185px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.eyebrow.dark {
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  max-width: 760px;
}

h2 {
  font-size: 42px;
  line-height: 1.16;
}

h3 {
  font-size: 19px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  border-radius: 999px;
  display: inline-block;
  font-weight: 800;
  padding: 15px 24px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

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

.button.primary {
  background: var(--green);
  box-shadow: 0 18px 40px rgba(24, 155, 242, 0.24);
  color: #fff;
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.hero-facts span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
}

.trust-band {
  background: var(--ink);
  color: #fff;
}

.trust-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 30px;
  padding-top: 30px;
}

.trust-grid strong {
  display: block;
  font-size: 26px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.split {
  display: grid;
  gap: 64px;
  grid-template-columns: 0.85fr 1.15fr;
}

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

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.amenities-section,
.reviews-section {
  background: #fff;
}

.amenities-grid,
.review-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.amenities-grid article,
.review-grid article,
.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(38, 51, 34, 0.06);
  padding: 26px;
}

.amenities-grid h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
}

.location-card ul {
  margin: 0;
  padding-left: 20px;
}

.location-card li {
  line-height: 1.8;
  margin-bottom: 10px;
}

.review-grid article {
  text-align: center;
}

.review-grid strong {
  color: var(--green);
  display: block;
  font-size: 34px;
}

.review-grid span {
  color: var(--muted);
  font-weight: 700;
}

.rating-note {
  color: var(--muted);
  font-size: 13px;
  margin: 24px auto 0;
  text-align: center;
}

.booking-section {
  background: linear-gradient(135deg, var(--ink), #394047);
  color: #fff;
}

.booking-card {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.booking-card h2,
.booking-card p {
  color: #fff;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.contact-lines span,
.contact-lines a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-instagram {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

.instagram-icon {
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
  max-width: 690px;
}

.site-footer {
  background: #151912;
  color: #fff;
  padding: 28px 0;
}

.footer-grid {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid span {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    padding: 16px 22px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .trust-grid,
  .amenities-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .booking-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 96px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .section {
    padding: 68px 0;
  }

  .trust-grid,
  .amenities-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}
