:root {
  --bg: #f9faf8;
  --panel: #ffffff;
  --text: #102018;
  --muted: #53645a;
  --line: #d7e0da;
  --brand: #0c8b65;
  --brand-dark: #066b4d;
  --accent: #ffb873;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(12, 34, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 184, 115, 0.28), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(12, 139, 101, 0.15), transparent 24%),
    var(--bg);
  line-height: 1.55;
}

.construction-banner {
  background: linear-gradient(90deg, #0c8b65, #0a6f51);
  color: #ffffff;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.52rem 1rem;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section-pad {
  padding: 4.2rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(249, 250, 248, 0.88);
  border-bottom: 1px solid rgba(16, 32, 24, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}

.lang-select {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 0.48rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.brand {
  font-family: "DM Serif Display", serif;
  font-size: 1.4rem;
}

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 1rem 4vw;
  gap: 0.8rem;
}

.site-nav.open {
  display: flex;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-content h1 {
  margin: 0.35rem 0 0.8rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.1;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), #12a67a);
  color: #ffffff;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.quick-stats {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.quick-stats strong {
  color: var(--text);
}

.hero-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.shape-a {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -70px;
  top: 8%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 184, 115, 0.8), rgba(255, 184, 115, 0));
}

.shape-b {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: -120px;
  bottom: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(12, 139, 101, 0.26), rgba(12, 139, 101, 0));
}

.section-head h2 {
  margin: 0.35rem 0 1rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 5.2vw, 2.4rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(16, 32, 24, 0.06);
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

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

.price {
  margin-top: 0.6rem !important;
  font-weight: 800;
  color: var(--brand-dark) !important;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(12, 139, 101, 0.03), rgba(12, 139, 101, 0.08));
  border-top: 1px solid rgba(12, 32, 24, 0.08);
  border-bottom: 1px solid rgba(12, 32, 24, 0.08);
}

.amenities-grid {
  display: grid;
  gap: 0.9rem;
}

.amenity {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.amenity h3 {
  margin: 0 0 0.45rem;
}

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

.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

.directions-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}

.directions-list li {
  padding-left: 0.2rem;
}

.quote-card {
  padding: 1rem;
}

.quote-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.quote-card span {
  font-weight: 700;
}

.cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #eef7f2 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
}

.cta-box h2 {
  margin-top: 0;
  font-family: "DM Serif Display", serif;
}

.experience-image {
  width: min(100%, 860px);
  margin: 0 auto 1rem;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow);
  height: auto;
}

.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

[dir="rtl"] .nav-wrap,
[dir="rtl"] .footer-wrap {
  flex-direction: row-reverse;
}

[dir="rtl"] .site-nav {
  text-align: right;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-head,
[dir="rtl"] .card-body,
[dir="rtl"] .amenity,
[dir="rtl"] .quote-card,
[dir="rtl"] .cta-box {
  text-align: right;
}

[dir="rtl"] .directions-list {
  padding-right: 1.2rem;
  padding-left: 0;
}

html.lang-alt .brand,
html.lang-alt .hero-content h1,
html.lang-alt .section-head h2,
html.lang-alt .cta-box h2 {
  font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Noto Sans Arabic", "Noto Sans Hebrew", "Manrope", sans-serif;
}

html.lang-alt .eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  .section-pad {
    padding: 5.4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 2rem;
  }

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

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

  .cta-box {
    padding: 2.2rem;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .lang-label {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 1rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    min-height: 280px;
    object-fit: cover;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-media,
  .card,
  .amenity,
  .cta-box {
    animation: fadeUp 0.7s ease both;
  }

  .hero-media {
    animation-delay: 0.15s;
  }

  .rooms-grid .card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .rooms-grid .card:nth-child(3) {
    animation-delay: 0.32s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
