:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-2: #fff3dd;
  --ink: #17211c;
  --muted: #5d675f;
  --primary: #0f5b45;
  --primary-dark: #0a4434;
  --primary-soft: #dff0e8;
  --gold: #c9953f;
  --gold-soft: #fff0cf;
  --line: rgba(23, 33, 28, 0.12);
  --shadow: 0 22px 60px rgba(25, 40, 35, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  z-index: 999;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), #1d8b6b 62%, var(--gold));
  box-shadow: 0 12px 28px rgba(15, 91, 69, 0.24);
}

.brand strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #33413a;
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(15, 91, 69, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 149, 63, 0.25), transparent 28%),
    radial-gradient(circle at 10% 10%, rgba(15, 91, 69, 0.17), transparent 30%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.eyebrow.light {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.8vw, 5.65rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.hero-subtext,
.section-copy p,
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-subtext {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 1.16rem;
}

.hero-actions,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 42px rgba(15, 91, 69, 0.24);
}

.btn-outline {
  color: var(--primary);
  background: #fff;
  border-color: rgba(15, 91, 69, 0.22);
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.hero-points li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.hero-card {
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1.23;
  object-fit: cover;
  background: var(--surface-2);
}

.hero-card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #856224;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-card-body h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-card-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.mini-call,
.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-strip {
  padding: 26px 0;
  background: var(--primary-dark);
  color: #fff;
}

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

.strip-grid div {
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.strip-grid strong {
  font-size: 1.55rem;
  font-weight: 800;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.split-grid,
.pricing-grid,
.location-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-copy p {
  margin-bottom: 18px;
}

.info-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-panel h3 {
  font-size: 1.55rem;
}

.info-panel dl {
  margin: 0;
}

.info-panel dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-panel dl div:last-child {
  border-bottom: 0;
}

.info-panel dt {
  color: var(--muted);
  font-weight: 700;
}

.info-panel dd {
  margin: 0;
  font-weight: 800;
}

.soft-bg {
  background: linear-gradient(180deg, #fff8eb, #edf8f2);
}

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

.section-head.narrow {
  max-width: 680px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 28px;
  min-height: 245px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 91, 69, 0.1);
  box-shadow: 0 14px 40px rgba(25, 40, 35, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--primary-soft);
  font-size: 1.5rem;
}

.feature-card p,
.amenity-list p,
.price-cards p,
.footer p,
.form-note {
  color: var(--muted);
}

.amenity-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.amenity-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

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

.amenity-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
}

.amenity-list span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: #795719;
  font-weight: 900;
}

.amenity-list strong {
  font-size: 1.05rem;
}

.amenity-list p {
  margin: 0;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 149, 63, 0.18), transparent 28%),
    linear-gradient(135deg, #0c3529, #071d18);
}

.dark-section .section-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.location-cards div {
  min-height: 138px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.location-cards strong,
.location-cards span {
  display: block;
}

.location-cards strong {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.location-cards span {
  color: rgba(255, 255, 255, 0.68);
}

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

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(25, 40, 35, 0.09);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--surface-2);
}

.gallery-grid figcaption {
  padding: 16px 18px;
  font-weight: 800;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.82rem;
}

.price-cards {
  display: grid;
  gap: 18px;
}

.price-cards article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(25, 40, 35, 0.08);
}

.price-cards h3 {
  font-size: 1.6rem;
}

.price-cards span {
  display: inline-flex;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.enquiry-section {
  background: linear-gradient(180deg, #fffaf2, #fff);
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-box a {
  padding: 15px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.lead-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lead-form h3 {
  font-size: 1.8rem;
}

.lead-form label {
  display: block;
  margin: 16px 0 7px;
  color: #2b352f;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 28, 0.16);
  border-radius: 14px;
  background: #fffdfa;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(15, 91, 69, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 91, 69, 0.11);
}

.error-message {
  display: block;
  min-height: 19px;
  color: #b3261e;
  font-weight: 700;
  font-size: 0.82rem;
}

.full-btn {
  width: 100%;
  margin-top: 12px;
}

.form-note {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.success-message {
  margin-top: 14px;
  color: var(--primary);
  font-weight: 800;
}

.footer {
  padding: 54px 0 20px;
  background: #071d18;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer .brand-mark {
  box-shadow: none;
}

.footer small,
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer h3 {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.float-call {
  background: var(--ink);
}

.float-whatsapp {
  background: #159b5c;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    z-index: 110;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .split-grid,
  .pricing-grid,
  .location-grid,
  .enquiry-grid,
  .amenity-layout {
    grid-template-columns: 1fr;
  }

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

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

  .strip-grid div:nth-child(2) {
    border-right: 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

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

  .section-pad {
    padding: 64px 0;
  }

  .nav {
    min-height: 68px;
  }

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

  .brand small {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    top: 68px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero-actions,
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points,
  .card-grid.four,
  .gallery-grid,
  .strip-grid,
  .location-cards {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .info-panel,
  .lead-form {
    padding: 24px;
  }

  .info-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .amenity-list div {
    grid-template-columns: 1fr;
  }

  .amenity-list span {
    grid-row: auto;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions a {
    min-width: auto;
  }

  .footer {
    padding-bottom: 90px;
  }
}
