/* ═══════════════════════════════════════════
   THE EDITORIAL — Shared Site Styles
   Mobile-first, fully responsive
   ═══════════════════════════════════════════ */

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

:root {
  --ink: #2b1f16;
  --brand: #d4845f;
  --brand-mid: #e0a888;
  --brand-light: #fbe9da;
  --brand-dark: #b56541;
  --cream: #fdf3e9;
  --cream-2: #fbe9da;
  --gold: #877763;
  --gold-light: #f0e9df;
  --white: #fffaf4;
  --rule: rgba(43,31,22,0.12);
  --rule-light: rgba(43,31,22,0.07);
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ═══════════════════
   NAV — MOBILE FIRST
   ═══════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  background: rgba(253,243,233,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--rule);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--brand); text-decoration: none;
}
.nav-links {
  display: none; /* hidden on mobile, shown via burger */
  list-style: none;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-book {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; background: var(--brand); color: #fff;
  text-decoration: none; border-radius: 2px; transition: background 0.2s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--brand-dark); }

/* Hamburger button */
.nav-burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer; z-index: 310;
}
.nav-burger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 299;
  display: flex; flex-direction: column;
  padding: 40px 28px 40px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; }
.nav-drawer ul li a {
  display: block; padding: 18px 0;
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
  border-bottom: 0.5px solid var(--rule); transition: color 0.2s;
}
.nav-drawer ul li a:hover, .nav-drawer ul li a.active { color: var(--brand); }
.nav-drawer-book {
  display: block; margin-top: 32px; padding: 18px;
  background: var(--brand); color: #fff; text-align: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
}
.nav-drawer-contact {
  margin-top: 20px; font-size: 12px; color: rgba(43,31,22,0.4);
  text-align: center; line-height: 1.8;
}
.nav-drawer-contact a { color: var(--brand); text-decoration: none; }

/* ═══════════════════
   BUTTONS
   ═══════════════════ */
.btn-primary {
  display: inline-block; padding: 16px 32px;
  background: var(--brand); color: #fff;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 16px 28px;
  border: 0.5px solid rgba(43,31,22,0.25); color: var(--ink);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ═══════════════════
   PAGE HEADER (sub-pages)
   ═══════════════════ */
.page-header {
  padding: calc(var(--nav-h) + 48px) 24px 48px;
  text-align: center; background: var(--cream);
}
.page-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 8vw, 64px); font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.1; color: var(--ink);
  max-width: 700px; margin: 0 auto 14px;
}
.page-title em { font-style: italic; color: var(--brand); }
.page-sub {
  font-size: 15px; color: rgba(43,31,22,0.5); max-width: 480px;
  margin: 0 auto; line-height: 1.8; font-weight: 300;
}

/* ═══════════════════
   FOOTER
   ═══════════════════ */
footer {
  background: var(--ink); padding: 48px 24px;
  display: grid; grid-template-columns: 1fr;
  gap: 36px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: rgba(255,250,244,0.85);
  margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.footer-brand img { width: 24px; height: auto; opacity: 0.8; }
.footer-brand-sub {
  font-size: 12px; color: rgba(255,250,244,0.35); line-height: 1.7; margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,250,244,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,250,244,0.85); }
.footer-col-title {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,250,244,0.28); margin-bottom: 14px;
}
.footer-right { display: flex; flex-direction: column; align-items: flex-start; }
.footer-book-btn {
  display: inline-block; padding: 14px 24px; margin-bottom: 16px;
  border: 0.5px solid rgba(255,250,244,0.2); color: rgba(255,250,244,0.65);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.2s;
}
.footer-book-btn:hover { background: rgba(255,250,244,0.08); color: #fff; }
.footer-fine { font-size: 11px; color: rgba(255,250,244,0.25); line-height: 1.8; }
.footer-bottom {
  background: var(--ink); padding: 16px 24px;
  border-top: 0.5px solid rgba(255,250,244,0.08);
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; text-align: center;
}
.footer-bottom span { font-size: 11px; color: rgba(255,250,244,0.22); }

/* ═══════════════════
   TABLET — 640px+
   ═══════════════════ */
@media (min-width: 640px) {
  nav { padding: 0 32px; }
  footer { grid-template-columns: 1fr 1fr; padding: 56px 32px; }
  .footer-right { align-items: flex-start; }
  .page-header { padding: calc(var(--nav-h) + 56px) 40px 56px; }
}

/* ═══════════════════
   DESKTOP — 1024px+
   ═══════════════════ */
@media (min-width: 1024px) {
  nav { padding: 0 56px; }
  .nav-logo { font-size: 16px; }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink); text-decoration: none; opacity: 0.55; transition: opacity 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { opacity: 1; }
  .nav-burger { display: none; }
  .nav-drawer { display: none !important; }
  footer { grid-template-columns: 1fr 1fr 1fr; padding: 56px; gap: 40px; }
  .footer-right { align-items: flex-end; }
  .footer-fine { text-align: right; }
  .footer-bottom { flex-direction: row; justify-content: space-between; padding: 20px 56px; }
  .page-header { padding: calc(var(--nav-h) + 80px) 56px 64px; }
}

/* ═══════════════════
   NAV BURGER JS TOGGLE
   ═══════════════════ */
