*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2e7d6f;
  --primary-dark: #1f5c52;
  --primary-light: #e8f5f3;
  --text: #1a2e2b;
  --text-muted: #5a7370;
  --bg: #ffffff;
  --bg-alt: #f7faf9;
  --border: #d4e9e6;
  --shadow: 0 4px 24px rgba(46,125,111,0.10);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TOP BAR ── */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.88); font-size: 13px; padding: 8px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-hours { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-hours span { display: flex; align-items: center; gap: 6px; }
.topbar-hours svg { width: 14px; height: 14px; flex-shrink: 0; }
.hours-short { display: none; }
.topbar-contact { display: flex; align-items: center; gap: 20px; }
.topbar-contact a { color: rgba(255,255,255,0.88); transition: color .2s; }
.topbar-contact a:hover { color: #fff; }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: all .2s; }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.btn-book { background: var(--primary); color: white !important; padding: 10px 22px !important; border-radius: 50px !important; font-weight: 600 !important; font-size: 14px !important; margin-left: 8px; transition: background .2s !important; }
.btn-book:hover { background: var(--primary-dark) !important; }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 201; position: relative; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span { background: white; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(15,46,41,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity .25s; }
.mobile-overlay.open { display: flex; opacity: 1; }
.mobile-overlay a { color: rgba(255,255,255,0.85); font-size: 22px; font-weight: 600; padding: 14px 32px; border-radius: 12px; transition: background .2s, color .2s; width: 280px; text-align: center; }
.mobile-overlay a:hover { background: rgba(255,255,255,0.1); color: white; }
.mobile-overlay .mobile-book { background: var(--primary); color: white !important; margin-top: 16px; font-size: 18px; }
.mobile-overlay .mobile-book:hover { background: var(--primary-dark) !important; }
.overlay-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); background: transparent; color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.overlay-close:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 60px 24px;
}
.page-hero .container { max-width: 860px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); }

/* ── POLICY BODY ── */
.policy-body { padding: 64px 24px 80px; }
.container { max-width: 860px; margin: 0 auto; }

.policy-content { max-width: 760px; }

.policy-meta {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 32px;
}

.policy-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.policy-content h2:first-of-type { margin-top: 8px; }

.policy-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-content ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.policy-content a { color: var(--primary); font-weight: 500; transition: opacity .2s; }
.policy-content a:hover { opacity: 0.75; text-decoration: underline; }

/* ── FOOTER ── */
footer { background: #0f2e29; color: rgba(255,255,255,0.75); padding: 72px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li::before { display: none; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: row; justify-content: space-between; gap: 8px; }
  .topbar-hours .hours-full { display: none; }
  .topbar-hours .hours-short { display: flex; }
  .topbar-email { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .policy-body { padding: 40px 20px 60px; }
}
