:root {
  --forest: #213629;
  --moss: #465a48;
  --clay: #8c6b4f;
  --mist: #f3eee8;
  --charcoal: #1d1d1d;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.1);
  --radius: 18px;
  --shadow: 0 14px 35px rgba(12, 22, 16, 0.14);
  --shadow-soft: 0 8px 24px rgba(12, 22, 16, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: radial-gradient(circle at top right, #faf7f3 5%, #f3eee8 40%, #ece4da 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5rem;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 90;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 0.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 235, 0.95);
  backdrop-filter: blur(8px);
}

.nav-shell {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--forest);
}

.logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(33, 54, 41, 0.2);
  background: #fff;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
  line-height: 1.12;
}

.brand-copy strong {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy small {
  display: none;
  color: var(--moss);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.menu-toggle {
  border: 1px solid rgba(33, 54, 41, 0.3);
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
  margin-top: 0.2rem;
}

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

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  padding: 0.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--forest);
  color: var(--white);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  min-height: clamp(470px, 60svh, 720px);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(18, 24, 22, 0.78), rgba(18, 24, 22, 0.32)),
    radial-gradient(circle at top right, rgba(140, 107, 79, 0.26), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block: clamp(3rem, 9vw, 5.6rem);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: var(--forest);
  font-weight: 500;
}

.hero h1 {
  margin-top: 0.8rem;
  max-width: 750px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.section {
  padding-block: clamp(2.8rem, 6vw, 4.4rem);
}

.section-title {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.06;
}

.section-summary {
  margin-top: 0.9rem;
  max-width: 720px;
  color: rgba(29, 29, 29, 0.84);
  line-height: 1.6;
}

.section-head {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.card h2,
.card h3 {
  font-size: clamp(1.45rem, 3.5vw, 2.05rem);
}

.card p {
  color: rgba(29, 29, 29, 0.86);
  line-height: 1.58;
}

.room-card .image-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin: -0.2rem -0.2rem 0.85rem;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.room-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card:hover .image-wrap img {
  transform: scale(1.04);
}

.meta {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: rgba(29, 29, 29, 0.75);
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.amenity-list li {
  border-radius: 999px;
  border: 1px solid rgba(70, 90, 72, 0.3);
  background: var(--mist);
  padding: 0.34rem 0.58rem;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--forest);
}

.experience-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.experience-list li {
  border: 1px solid rgba(70, 90, 72, 0.2);
  border-radius: 14px;
  background: var(--mist);
  padding: 0.95rem;
}

.experience-list li a {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-grid .image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.72rem 0.85rem;
  font-size: 0.86rem;
  color: rgba(29, 29, 29, 0.78);
}

.simple-list {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.5rem;
}

.contact-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.17);
  background: #fff;
  padding: 0.63rem 0.75rem;
  font: inherit;
  margin-top: 0.32rem;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.small-muted {
  color: rgba(29, 29, 29, 0.68);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-full {
  width: 100%;
  margin-top: 0.75rem;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(33, 54, 41, 0.36);
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--forest);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--forest);
  transform: translateY(-1px);
}

.cta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cta-banner {
  border-radius: 22px;
  border: 1px solid rgba(33, 54, 41, 0.2);
  background: linear-gradient(130deg, #1c3226, #274337);
  color: var(--white);
  padding: 1.4rem;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-banner p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.flash {
  margin-top: 1rem;
  border-radius: 12px;
  padding: 0.78rem 0.9rem;
  font-weight: 600;
}

.flash-success {
  border: 1px solid #b8ddb9;
  background: #e8f5e9;
  color: #14532d;
}

.flash-error {
  border: 1px solid #efb6b6;
  background: #ffebee;
  color: #8a1c1c;
}

.feature-block {
  padding: 1.35rem;
}

.sticky-whatsapp {
  position: fixed;
  z-index: 55;
  right: 0.75rem;
  left: 0.75rem;
  bottom: 0.75rem;
  border-radius: 999px;
  background: #1a9f53;
  color: #fff;
  text-align: center;
  padding: 0.76rem 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  line-height: 1.2;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sticky-whatsapp:hover {
  background: #138044;
  transform: translateY(-1px);
}

.site-footer {
  background: var(--forest);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3.5rem;
  padding-top: 2.3rem;
}

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

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: grid;
  gap: 0.4rem;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-block: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .brand-copy small {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    grid-column: auto;
    border-top: 0;
    padding-top: 0;
  }

  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    padding: 0.52rem 0.72rem;
    border-radius: 999px;
  }

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

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

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

  .sticky-whatsapp {
    left: auto;
    width: auto;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (min-width: 1020px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
