* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --surface-2: #f0eadc;
  --text: #1e2a23;
  --muted: #5c6a61;
  --line: #d9d2c4;
  --brand: #2f7a5f;
  --brand-deep: #1f5a44;
  --accent: #d48f3f;
  --shadow: 0 16px 35px rgba(31, 43, 35, 0.12);
  --radius: 20px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 143, 63, 0.08), transparent 33%),
    radial-gradient(circle at 100% 100%, rgba(47, 122, 95, 0.08), transparent 35%),
    var(--bg);
  line-height: 1.65;
}

a {
  color: var(--brand-deep);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
}

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(240, 234, 220, 0.86));
  border-bottom: 1px solid rgba(30, 42, 35, 0.14);
  backdrop-filter: blur(8px);
}

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

.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo span {
  color: var(--brand);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 90, 68, 0.14);
  border-radius: 999px;
  padding: 8px;
  margin-left: auto;
}

.nav a {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: var(--brand);
  color: #fff;
}

.header-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(31, 90, 68, 0.28);
}

.header-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  padding: 74px 0 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 143, 63, 0.15), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(47, 122, 95, 0.12), transparent 32%);
  pointer-events: none;
}

.hero-grid,
.two-col,
.footer-grid,
.stats-grid,
.cards-grid,
.section-head,
.cta-box,
.testimonials-grid,
.amenities-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: reveal 0.7s ease both;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  margin: 14px 0;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.hero h1 span {
  color: var(--brand);
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(30, 42, 35, 0.14);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
  color: #fff;
}

.btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.highlights {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlights li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 600;
}

.highlights i {
  color: var(--accent);
  margin-right: 6px;
}

.mountain-icon {
  position: absolute;
  right: 14px;
  bottom: -8px;
  color: rgba(31, 90, 68, 0.2);
  font-size: 3rem;
}

.hero-card,
.feature-box,
.room-card,
.map-box,
.cta-box,
.stat-card,
.testimonial,
.amenity,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  animation: reveal 0.9s ease both;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(24, 35, 30, 0.32), transparent);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: min(460px, 62vw);
  object-fit: cover;
}

.stats {
  padding: 8px 0 0;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 1.12rem;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 84px 0;
  animation: reveal 0.7s ease both;
}

.soft-bg {
  background: linear-gradient(180deg, rgba(240, 234, 220, 0.5), rgba(247, 244, 237, 0.6));
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-box {
  padding: 26px;
}

.feature-box ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.feature-box li {
  margin-bottom: 8px;
}

.feature-box li i {
  color: var(--brand);
  margin-right: 8px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-tag {
  margin-bottom: 6px;
}

.section-head {
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head h2 {
  position: relative;
  padding-bottom: 8px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.section-head p:last-child {
  max-width: 54ch;
  color: var(--muted);
}

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

.room-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.room-card:hover,
.testimonial:hover,
.amenity:hover,
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(30, 42, 35, 0.16);
}

.room-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  margin-top: 0;
}

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

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
  aspect-ratio: 16 / 10;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f3eee2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 42, 35, 0.7);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: rgba(30, 42, 35, 0.92);
  transform: translateY(-50%) scale(1.06);
}

.prev {
  left: 14px;
}

.next {
  right: 14px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 22px;
}

.quote-icon {
  color: var(--accent);
  margin-bottom: 10px;
}

.testimonial p {
  color: var(--muted);
  font-style: italic;
}

.stars {
  color: #d39943;
  margin: 10px 0;
}

.testimonial cite {
  font-weight: 700;
  color: var(--brand-deep);
}

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

.amenity {
  padding: 20px;
  text-align: center;
}

.amenity i {
  display: block;
  color: var(--brand);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.amenity span {
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.faq-item h3 {
  margin: 0 0 10px;
}

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

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.contact-form textarea {
  grid-column: span 2;
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  grid-column: span 2;
}

.map-layout {
  align-items: start;
}

.map-box {
  overflow: hidden;
  min-height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.cta-box {
  grid-template-columns: 1.25fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #2f7a5f, #1f5a44);
  color: #fff;
  border-color: transparent;
}

.cta-box .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 143, 63, 0.16), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(47, 122, 95, 0.2), transparent 34%),
    #18231e;
  color: rgba(255, 255, 255, 0.85);
  padding: 44px 0 32px;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 26px 30px;
}

.footer-grid h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.footer-grid a {
  color: #9cdabf;
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: #f9d39f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.footer-brand p,
.footer-contact p {
  margin: 0 0 10px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social a:hover {
  background: #fff;
  color: #1f5a44;
}

.footer-bottom {
  text-align: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  background: #22c15e;
  color: #fff;
  padding: 13px 17px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(212, 143, 63, 0.55);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .section-head,
  .cta-box,
  .footer-grid,
  .cards-grid,
  .stats-grid,
  .testimonials-grid,
  .amenities-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 18px;
    gap: 14px;
    border-radius: 0 0 16px 16px;
    margin-left: 0;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .hero-card img {
    height: 360px;
  }
}

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

  .section {
    padding: 68px 0;
  }

  .slide {
    height: 100%;
  }

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

  .contact-form textarea,
  .contact-form button {
    grid-column: span 1;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    text-align: center;
    bottom: 12px;
  }
}
