:root {
  --forest: #1c3626;
  --forest-deep: #12241a;
  --gold: #c8a15c;
  --gold-light: #e3c78c;
  --cream: #f6f0e2;
  --cream-dark: #ece2cb;
  --ink: #24291f;
  --line: rgba(28, 54, 38, 0.15);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand .mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.1rem;
}
.brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
}
.brand .name small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  text-transform: uppercase;
}

nav.links { display: flex; gap: 26px; align-items: center; }
nav.links a {
  color: var(--cream-dark);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color .2s;
  padding: 6px 0;
}
nav.links a:hover { color: var(--gold-light); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-cta {
  background: var(--gold);
  color: var(--forest-deep) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
}
.nav-cta-mobile { display: none; }

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ---------- Mobile nav & general responsive tweaks ---------- */
@media (max-width: 860px) {
  .nav-toggle-btn { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: block; width: 100%; text-align: center; margin-top: 14px; }

  nav.links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  nav.links.open { max-height: 480px; }
  nav.links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }
  nav.links .nav-cta-mobile { margin: 14px 24px 18px; width: calc(100% - 48px); }

  header.site-header { position: sticky; }
}

@media (max-width: 480px) {
  .brand .name { font-size: 1.1rem; }
  .brand .mark { width: 28px; height: 28px; font-size: 0.95rem; }
  .nav-inner { padding: 12px 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,36,26,0.55) 0%, rgba(18,36,26,0.75) 60%, var(--cream) 100%),
    url('../images/floor2/IMG_7852.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 24px 90px;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(200,161,92,0.18), transparent 60%);
}

.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

.hero .eyebrow { color: var(--gold-light); margin-bottom: 14px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--cream);
  margin: 0 0 18px;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p.lede {
  font-size: 1.08rem;
  color: rgba(246,240,226,0.85);
  max-width: 520px;
  margin: 0 auto 34px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--forest-deep); }
.btn-outline { border-color: rgba(246,240,226,0.5); color: var(--cream); }
.btn-outline:hover { background: rgba(246,240,226,0.1); }

.scripture-strip {
  position: relative; z-index: 2;
  margin: 46px auto 0;
  max-width: 560px;
  border: 1px solid rgba(227,199,140,0.4);
  padding: 18px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}

/* ---------- Section shell ---------- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 10px 0 14px; }
.section-head p { color: #555; font-size: 0.98rem; }

/* ---------- Features ---------- */
.features-band {
  background: var(--forest);
  color: var(--cream);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.feature-item { text-align: center; }
.feature-item .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
}
.feature-item h4 { color: var(--cream); font-size: 0.92rem; font-family: 'Jost', sans-serif; letter-spacing: 0.02em; font-weight: 500; margin: 0; }

/* ---------- Suited for ---------- */
.suited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.suited-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.suited-item .check {
  color: var(--forest);
  font-weight: 700;
}

/* ---------- Booking + Calendar ---------- */
.booking-section { background: var(--cream-dark); }
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--forest); font-weight: 600; }
.field input, .field select, .field textarea {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }

.submit-btn {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background .2s;
}
.submit-btn:hover { background: var(--forest-deep); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

#form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
#form-feedback.success { display: block; background: #e6f0e8; color: var(--forest-deep); border: 1px solid #b7d3bd; }
#form-feedback.error { display: block; background: #fbe9e7; color: #8a2f22; border: 1px solid #f0c4bc; }

/* Calendar */
.calendar-card h3 { margin-top: 0; font-size: 1.3rem; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav button {
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  width: 32px; height: 32px; cursor: pointer; color: var(--forest); font-size: 1rem;
}
.cal-month-label { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--forest); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.cal-grid .dow { font-size: 0.68rem; color: #999; text-transform: uppercase; padding-bottom: 6px; }
.cal-day {
  padding: 9px 0;
  font-size: 0.85rem;
  border-radius: var(--radius);
  color: var(--ink);
}
.cal-day.empty { visibility: hidden; }
.cal-day.past { color: #ccc; }
.cal-day.booked { background: #f3d9d4; color: #a34c3c; text-decoration: line-through; }
.cal-day.available { background: #eef4ee; }
.legend { display: flex; gap: 16px; margin-top: 16px; font-size: 0.78rem; color: #666; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 12px; height: 12px; border-radius: 2px; display: inline-block; }
.legend .i-avail { background: #eef4ee; border: 1px solid var(--line); }
.legend .i-booked { background: #f3d9d4; }

/* ---------- Contact ---------- */
.contact-section { background: var(--forest); color: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  border: 1px solid rgba(227,199,140,0.3);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.contact-card .icon { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 12px; }
.contact-card h4 { color: var(--cream); margin: 0 0 6px; font-family: 'Jost', sans-serif; font-size: 0.95rem; letter-spacing: 0.03em; }
.contact-card p, .contact-card a { color: rgba(246,240,226,0.8); font-size: 0.92rem; }
.contact-card a.whatsapp-link { color: var(--gold-light); font-weight: 600; }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-deep);
  color: rgba(246,240,226,0.65);
  padding: 30px 0;
  font-size: 0.82rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-inner .socials a { margin-left: 14px; color: rgba(246,240,226,0.7); }
.footer-inner .socials a:hover { color: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* ---------- Additional mobile refinements ---------- */
@media (max-width: 600px) {
  .hero { padding: 80px 18px 60px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p.lede { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; padding: 14px 22px; }

  section { padding: 56px 0; }
  .container { padding: 0 18px; }

  .card { padding: 22px; }
  .cal-day { padding: 11px 0; font-size: 0.8rem; }
  .cal-nav button { width: 38px; height: 38px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid img { height: 150px; }

  .pricing-card { padding: 30px 22px; }

  .form-row { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; } /* prevents iOS zoom-on-focus */

  .footer-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-inner .socials a { margin: 0 7px; }

  .admin-table { min-width: 700px; }
}

/* ---------- Language toggle ---------- */
.lang-btn {
  background: none;
  border: 1px solid rgba(227,199,140,0.5);
  color: var(--gold-light);
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.lang-btn:hover { background: rgba(227,199,140,0.1); }

/* ---------- Honeypot (hidden from real users) ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-img img { width: 100%; border-radius: var(--radius); display: block; }
.about-copy .eyebrow { margin-bottom: 8px; }
.about-copy h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 4vw, 2.3rem); }
.about-copy p { color: #555; }
.about-stats { display: flex; gap: 34px; margin-top: 26px; }
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--forest); }
.about-stats span { font-size: 0.78rem; color: #888; text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform .25s;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--forest);
  margin-bottom: 20px;
}
.price-amount span { font-size: 1rem; color: #888; font-family: 'Jost', sans-serif; }
.price-includes { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.price-includes li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.price-includes li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.price-note { font-size: 0.8rem; color: #999; }
.price-discount-badge {
  margin-top: 12px;
  display: inline-block;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--ink); margin: 0 0 14px; }
.testimonial-name { font-size: 0.8rem; color: #888; }

/* ---------- Price summary in booking form ---------- */
.price-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--forest);
}

/* ---------- House rules ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.rule-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rule-item strong { color: var(--forest); font-size: 0.92rem; }
.rule-item span { font-size: 0.85rem; color: #777; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--forest);
  list-style: none;
  position: relative;
  padding-right: 26px;
  font-size: 0.96rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 12px 0 0; color: #666; font-size: 0.9rem; }

/* ---------- Map ---------- */
.map-embed {
  margin-top: 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(227,199,140,0.3);
}

/* ---------- Reviews ---------- */
.review-form-wrap { max-width: 640px; margin: 40px auto 0; }
.review-toggle summary {
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: var(--forest);
  list-style: none;
  padding: 12px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
}
.review-toggle summary::-webkit-details-marker { display: none; }

.star-rating { display: flex; gap: 6px; }
.star-rating button {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #d8d8d8;
  cursor: pointer;
  padding: 2px;
  transition: color .15s;
}
.star-rating button.active { color: var(--gold); }

/* ---------- Gallery tabs ---------- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.gallery-tab {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--forest);
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

/* Font Awesome icon sizing within existing icon wrappers */
.feature-item .icon i,
.contact-card .icon i {
  font-size: 1.2rem;
}
.stars i { font-size: 0.95rem; margin-right: 1px; }
.stars .fa-star { color: var(--gold); }
.stars .fa-regular.fa-star { color: #d8d8d8; }

/* ---------- Referral banner ---------- */
.referral-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.referral-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.referral-card h3 { color: var(--cream); font-size: 1.2rem; margin: 4px 0 8px; }
.referral-card p { color: rgba(246,240,226,0.8); font-size: 0.92rem; margin: 0; }
@media (max-width: 560px) {
  .referral-card { flex-direction: column; text-align: center; align-items: center; padding: 26px 22px; }
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  animation: wa-pulse 2.4s infinite;
  transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; right: 16px; }
}

/* ---------- Referral applied note ---------- */
.referral-applied-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e6f0e8;
  color: var(--forest-deep);
  border: 1px solid #b7d3bd;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ---------- Calendar floor tabs ---------- */
.cal-floor-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.cal-floor-tab {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--forest);
  padding: 7px 6px;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cal-floor-tab.active,
.cal-floor-tab:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
