/* =========================================================================
   Drummers Nest — stylesheet
   Palette taken from the guest house logo.
   ========================================================================= */

:root {
  --green-900: #123822;
  --green-800: #16432a;
  --green-700: #1b4d2e;
  --green-600: #2d6a4f;
  --sage-500: #8fbf8f;
  --sage-300: #c8ddc0;
  --sage-100: #e6efe0;
  --cream-50: #f6f9f3;
  --cream-100: #eef4ea;
  --white: #ffffff;
  --ink: #1f2d24;
  --ink-light: #4d5c52;
  --amber-600: #a35d16;
  --amber-100: #fbeedd;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(18, 56, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(18, 56, 34, 0.12);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--green-800);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem); }
h3 { font-weight: 700; font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-light); }

a { color: var(--green-700); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--tint {
  background: var(--cream-100);
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--sage-100);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-800); }

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1fbd5a; }

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

.btn--outline-dark {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-700);
}
.btn--outline-dark:hover { background: var(--sage-100); }

.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--danger { background: #b3401f; color: #fff; }
.btn--danger:hover { background: #96341a; }

/* ---------------------------------------------------------------------
   Header / Nav
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 243, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--sage-100);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--green-800);
  font-size: 1.15rem;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-500);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav__links a:hover { color: var(--green-700); }

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

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-800);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% -10%, #1e5936 0%, var(--green-900) 62%);
  color: var(--white);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 88px 0 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__leaf-decor {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle, var(--sage-500) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--sage-300);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.4rem);
  margin-bottom: 18px;
}
.hero p.lead {
  color: var(--sage-100);
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: var(--white);
}
.hero__stat span {
  font-size: 0.82rem;
  color: var(--sage-300);
}

.hero__card {
  position: relative;
  z-index: 2;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.hero__card h3 { margin-bottom: 14px; }
.hero__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero__card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.hero__card li svg { flex: none; margin-top: 3px; color: var(--green-600); }

/* ---------------------------------------------------------------------
   Highlights grid
   --------------------------------------------------------------------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.highlight-card__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-card h4 {
  margin: 0 0 4px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--green-800);
}
.highlight-card p { margin: 0; font-size: 0.92rem; }

/* ---------------------------------------------------------------------
   Units
   --------------------------------------------------------------------- */
.unit {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
  margin-bottom: 40px;
}
.unit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.unit__gallery {
  position: relative;
  background: var(--sage-100);
  min-height: 320px;
}
.unit__gallery-main {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.unit__gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--green-600);
  background: linear-gradient(135deg, var(--sage-100), var(--cream-100));
  text-align: center;
  padding: 24px;
}
.unit__gallery-thumbs {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.unit__gallery-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  flex: none;
}
.unit__body { padding: 32px; }
.unit__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--sage-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.unit__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
}
.unit__price strong { font-family: "Poppins", sans-serif; font-size: 1.5rem; color: var(--green-800); }
.unit__price span { font-size: 0.85rem; color: var(--ink-light); }
.unit__price small { display: block; font-size: 0.8rem; color: var(--green-600); font-weight: 600; }

.unit__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.unit__fact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid var(--sage-300);
  padding: 6px 12px;
  border-radius: 999px;
}

.unit__facilities {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.unit__facilities li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.unit__facilities li svg { color: var(--green-600); flex: none; }

.unit__cal-toggle { margin-top: 20px; }

/* Availability calendar */
.availability {
  margin-top: 18px;
  border-top: 1px dashed var(--sage-300);
  padding-top: 18px;
}
.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cal-month h5 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--green-800);
  text-align: center;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-size: 0.72rem;
}
.cal-grid .dow {
  text-align: center;
  font-weight: 700;
  color: var(--ink-light);
  padding-bottom: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--ink);
}
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-available { background: var(--sage-100); color: var(--green-800); }
.cal-day.is-booked { background: #f1d9cf; color: var(--amber-600); text-decoration: line-through; }
.cal-day.is-past { background: transparent; color: #c7d2c9; }
.cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--ink-light);
  flex-wrap: wrap;
}
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.cal-legend i.available { background: var(--sage-100); border: 1px solid var(--sage-300); }
.cal-legend i.booked { background: #f1d9cf; }

/* ---------------------------------------------------------------------
   Water notice / alert callouts
   --------------------------------------------------------------------- */
.notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--amber-100);
  border: 1px solid #ecd3ae;
  border-radius: var(--radius-md);
  padding: 22px 26px;
}
.notice__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  color: var(--amber-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice h4 { color: var(--amber-600); margin-bottom: 6px; }
.notice p { margin: 0; color: #6b4a24; }
.notice p + p { margin-top: 8px; }

.notice--danger {
  background: #fbe4e0;
  border-color: #f0bdb4;
}
.notice--danger h4 { color: #a83b2a; }
.notice--danger .notice__icon { color: #a83b2a; }
.notice--danger p { color: #7a2f22; }

/* ---------------------------------------------------------------------
   Policies grid
   --------------------------------------------------------------------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--sage-100);
}
.policy-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
}
.policy-card h4 svg { color: var(--green-600); }

/* ---------------------------------------------------------------------
   Location
   --------------------------------------------------------------------- */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.distance-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.distance-list a { text-decoration: none; font-weight: 600; }
.distance-list a:hover { text-decoration: underline; }
.distance-list .dist { color: var(--green-700); font-weight: 700; white-space: nowrap; }

.attraction-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.attraction-list a {
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.attraction-list a:hover { text-decoration: underline; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------- */
.contact-card {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.contact-card h2 { color: var(--white); }
.contact-card p { color: var(--sage-100); }
.contact-methods {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.contact-methods a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-methods svg { color: var(--sage-500); flex: none; }
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 26px;
}
.contact-actions .btn { width: 100%; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: var(--sage-100);
  padding: 40px 0 24px;
  border-top: 4px solid var(--green-700);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand .brand__mark { width: 36px; height: 36px; }
.footer__brand strong { color: var(--white); font-family: "Poppins", sans-serif; }
.footer__links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer__links a { color: var(--sage-100); text-decoration: none; font-size: 0.92rem; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  font-size: 0.82rem;
  color: rgba(230,239,224,0.65);
}
.footer__bottom a { color: rgba(230,239,224,0.75); }

/* ---------------------------------------------------------------------
   Utility
   --------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green-800);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .unit__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 32px 24px; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn--outline-dark { display: none; }
  .nav__toggle { display: block; }
  body.nav-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 20px;
    border-bottom: 1px solid var(--sage-100);
    box-shadow: var(--shadow-sm);
  }
  body.nav-open .nav__links a { padding: 10px 0; width: 100%; }
  .cal-months { grid-template-columns: 1fr; }
  .unit__facilities { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}
