/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #fdf8f2; --warm-white: #fffcf7;
  --sage: #7a9e7e; --sage-light: #a8c5ac; --sage-dark: #4e7252;
  --terracotta: #c97b5a; --terracotta-light: #e8a98a; --gold: #d4a847;
  --text: #3a2e28; --text-light: #7a6b62; --text-lighter: #a89890;
}
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%; background: rgba(253,248,242,0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(122,158,126,0.15);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--sage-dark); text-decoration: none; line-height: 1.1; }
.nav-logo span { display: block; font-size: 0.65rem; font-family: 'Nunito', sans-serif; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.9rem; color: var(--text-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta { background: var(--terracotta); color: #fff; padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* === BUTTONS === */
.btn-primary { background: var(--terracotta); color: #fff; padding: 15px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 6px 24px rgba(201,123,90,0.35); display: inline-block; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(78,114,82,0.35); }
.btn-secondary { background: transparent; color: var(--sage-dark); padding: 15px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; border: 2px solid var(--sage); transition: all 0.25s; display: inline-block; }
.btn-secondary:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

/* === SECTION LABELS === */
section { padding: 100px 6%; }
.section-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; max-width: 560px; }

/* === FORMS === */
.booking-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.booking-perks { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.booking-perk { font-size: 0.95rem; font-weight: 600; color: var(--sage-dark); }
.booking-form-wrap { background: #fff; border-radius: 28px; padding: 44px; border: 1px solid rgba(122,158,126,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.form-group .optional { font-weight: 400; color: var(--text-lighter); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border-radius: 12px; border: 1.5px solid rgba(122,158,126,0.25); background: var(--cream); color: var(--text); font-family: 'Nunito', sans-serif; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,126,0.15); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6b62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.btn-submit { width: 100%; padding: 16px; border-radius: 50px; background: var(--terracotta); color: #fff; border: none; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.25s; box-shadow: 0 6px 24px rgba(201,123,90,0.35); margin-top: 4px; }
.btn-submit:hover { background: var(--sage-dark); box-shadow: 0 10px 32px rgba(78,114,82,0.35); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* === TRUST BADGES === */
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--sage-dark); background: rgba(122,158,126,0.1); border: 1px solid rgba(122,158,126,0.2); padding: 6px 12px; border-radius: 50px; }

/* === URGENCY SIGNAL === */
.urgency-signal { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,71,0.12); border: 1px solid rgba(212,168,71,0.35); color: #8a6b1a; padding: 8px 16px; border-radius: 50px; font-size: 0.83rem; font-weight: 700; margin-bottom: 20px; }
.urgency-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

/* === FOOTER === */
footer { background: #1e2f20; color: rgba(255,255,255,0.55); padding: 48px 6%; text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.footer-tagline { font-size: 0.88rem; margin-bottom: 28px; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* === STICKY MOBILE CTA === */
.mobile-cta-bar { display: none; }
@media (max-width: 720px) {
  .mobile-cta-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: #fff; border-top: 1px solid rgba(122,158,126,0.2);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1); padding: 12px 16px;
    gap: 10px; align-items: center;
  }
  .mobile-cta-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--sage-dark); color: #fff; padding: 13px 16px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; text-decoration: none; }
  .mobile-cta-book { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--terracotta); color: #fff; padding: 13px 16px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; text-decoration: none; }
  body { padding-bottom: 70px; }
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === KEYFRAMES === */
@keyframes fadeUp { from { transform: translateY(28px); opacity:0; } to { transform: translateY(0); opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* === COMMON RESPONSIVE === */
@media (max-width: 720px) {
  nav { padding: 14px 5%; }
  .nav-links { display: none; }
  section { padding: 72px 5%; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .booking-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Address autocomplete dropdown */
.addr-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border: 1.5px solid rgba(122,158,126,0.35);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 4px;
  z-index: 200;
  list-style: none;
  padding: 6px 0;
  overflow: hidden;
}
.addr-dropdown:empty { display: none; }
.addr-dropdown-item {
  display: flex; flex-direction: column;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
}
.addr-dropdown-item:hover { background: rgba(122,158,126,0.08); }
.addr-main { font-weight: 600; }
.addr-sec { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }
