/* ── EDIT TOOLBAR ── */
#edit-toolbar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}

#edit-toolbar .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C0DD97;
  flex-shrink: 0;
}

#edit-toolbar .dot.editing { background: #EF9F27; }

#toggle-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.03em;
}

#toggle-btn:hover { background: rgba(255,255,255,0.2); }

#save-btn {
  background: #C0DD97;
  border: none;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.03em;
  display: none;
}

#save-btn:hover { background: #97C459; }

/* ── EDITABLE STYLES ── */
body.edit-mode [contenteditable] {
  outline: none;
  border-radius: 3px;
  transition: background 0.15s, box-shadow 0.15s;
  cursor: text;
}

body.edit-mode [contenteditable]:hover {
  background: rgba(192,221,151,0.18);
  box-shadow: 0 0 0 2px rgba(99,153,34,0.25);
}

body.edit-mode [contenteditable]:focus {
  background: rgba(192,221,151,0.28);
  box-shadow: 0 0 0 2px rgba(59,109,17,0.5);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249,246,240,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--rule);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--sage);
  letter-spacing: 0.02em;
  text-decoration: none;
  font-weight: 700;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  border: 1px solid var(--sage);
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--sage);
  color: white;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 5rem;
  margin-top: 3rem;
}

.hero-left { padding: 3rem 0; }
.hero-right { background: var(--ink); color: white; padding: 3rem; border-radius: 8px; }

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  border-radius: 4px;
  background: white;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-top: 0.5rem;
}

/* ── BUTTONS ── */
.btn-book {
  display: inline-block;
  background: var(--sage);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-book:hover {
  background: var(--sage-mid);
  transform: translateY(-2px);
}

/* ── SECTION LAYOUT ── */
section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ── CARD LAYOUT ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  padding: 2rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: white;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: white;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { grid-template-columns: 1fr; }
  section { padding: 2rem 0; }
  .cards { grid-template-columns: 1fr; }
}
