:root {
  --green-950: #082b13;
  --green-900: #0f3f1b;
  --green-800: #174d22;
  --green-700: #23612d;
  --green-100: #e8f1e6;
  --leaf: #9fcf51;
  --cream: #fbf7ef;
  --cream-2: #f4eee3;
  --ink: #172016;
  --muted: #5d675a;
  --line: #e2ded4;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(15, 63, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  background: var(--cream);
}

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

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

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

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head .lead {
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--green-800);
  border-radius: var(--radius);
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 63, 27, 0.22);
}

.btn.outline {
  background: transparent;
  color: var(--green-900);
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.7);
  background: var(--white);
  color: var(--green-900);
}

.btn.block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 222, 212, 0.85);
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--green-800);
  border-radius: 50%;
  color: var(--green-800);
}

.brand-name {
  display: block;
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: 730px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(4, 29, 14, 0.78), rgba(4, 29, 14, 0.32), rgba(4, 29, 14, 0.12)), var(--hero-image) center / cover;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 410px);
  align-items: center;
  gap: 44px;
  min-height: 730px;
  padding: 52px 0;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--leaf);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  max-width: 660px;
}

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

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-top: 12px;
}

.feature-mini {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.feature-mini svg {
  color: var(--leaf);
  width: 32px;
  height: 32px;
}

.feature-mini strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.25;
}

.enquiry-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.enquiry-card h2 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 1.85rem;
}

.form-grid {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--green-950);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7d3c9;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.trust-note {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 0.91rem;
}

.trust-note strong {
  color: var(--green-800);
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.strip-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--shadow);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--green-800);
}

.strip-item strong {
  display: block;
  color: var(--green-950);
}

.strip-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.room-card,
.info-card,
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 63, 27, 0.08);
}

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

.room-body,
.info-card,
.post-body {
  padding: 22px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 9px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.price {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
}

.split-media img {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
}

.split-media img:nth-child(2) {
  min-height: 280px;
  margin-top: 52px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--green-700);
}

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

.info-card {
  min-height: 178px;
}

.info-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green-700);
}

.info-card p {
  margin-top: 8px;
  color: var(--muted);
}

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

.gallery-grid a,
.gallery-grid img {
  width: 100%;
  height: 100%;
}

.gallery-grid a {
  display: block;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
}

.gallery-grid img {
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.gallery-grid .wide {
  grid-column: span 2;
}

.cta-band {
  padding: 54px 0;
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 96px 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(4, 29, 14, 0.78), rgba(4, 29, 14, 0.22)), var(--page-image) center / cover;
}

.page-hero h1,
.page-hero .eyebrow {
  color: var(--white);
}

.page-hero .lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.contact-box {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-line {
  display: flex;
  gap: 13px;
}

.contact-line svg {
  color: var(--green-700);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 24px;
  background: #071d0d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.85fr 0.9fr;
  gap: 36px;
  padding-bottom: 34px;
}

.site-footer h3,
.site-footer h4,
.site-footer .brand-name {
  color: var(--white);
}

.site-footer h4 {
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--leaf);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--leaf);
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  gap: 10px;
}

.floating-cta a {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.floating-cta svg {
  width: 24px;
  height: 24px;
}

.floating-cta .call {
  background: var(--white);
  color: var(--green-900);
}

.floating-cta .call svg {
  stroke-width: 2.4;
}

.floating-cta .whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: var(--white);
}

.floating-cta .whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .nav {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 54px 0 78px;
  }

  .feature-row,
  .strip-card,
  .amenity-grid,
  .footer-grid,
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cta-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 54px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero {
    background-position: center;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 36px;
  }

  .hero-actions,
  .cta-actions,
  .price-line,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .price-line .btn {
    width: 100%;
  }

  .feature-row,
  .strip-card,
  .card-grid,
  .amenity-grid,
  .gallery-grid,
  .footer-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .strip-card {
    box-shadow: 0 12px 26px rgba(15, 63, 27, 0.12);
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .gallery-grid .wide {
    grid-column: span 1;
  }

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

  .split-media img,
  .split-media img:nth-child(2) {
    min-height: 260px;
    margin-top: 0;
  }

  .enquiry-card {
    padding: 22px 18px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
