@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #faf7f4;
  --blush: #e8c5b8;
  --rose: #c4856a;
  --deep: #1a1014;
  --gold: #c9a96e;
  --soft: #f2ece8;
  --mid: #7a6a64;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--deep);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 60px;
  height: 70px;
  background: rgba(250,247,244,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,133,106,0.18);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--deep);
  text-decoration: none;
}
.nav-logo span { color: var(--rose); font-style: italic; }

.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--rose); }
.nav-links a.active::after { width: 100%; }

.nav-book {
  background: var(--deep) !important;
  color: var(--cream) !important;
  padding: 10px 24px;
  letter-spacing: 0.16em !important;
  transition: background 0.25s !important;
}
.nav-book:hover { background: var(--rose) !important; }
.nav-book::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--deep);
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ── */
.page { padding-top: 70px; min-height: 100vh; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.28s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}
.btn-dark { background: var(--deep); color: var(--cream); }
.btn-dark:hover { background: var(--rose); color: var(--cream); }
.btn-outline { background: transparent; border: 1px solid var(--deep); color: var(--deep); }
.btn-outline:hover { background: var(--deep); color: var(--cream); }
.btn-rose { background: var(--rose); color: var(--cream); }
.btn-rose:hover { background: #b07560; }

/* ── SECTION LABELS ── */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.label-gold { color: var(--gold); }
.label-gold::before { background: var(--gold); }

.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}
.heading em { font-style: italic; color: var(--rose); }
.heading-white { color: var(--cream); }
.heading-white em { color: var(--gold); }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--deep);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 36px;
}
.marquee-dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: var(--cream);
  padding: 64px 80px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--cream);
}
.footer-logo span { color: var(--rose); font-style: italic; }
.footer-desc { font-size: 0.84rem; line-height: 1.85; color: #7a6a64; max-width: 270px; }
.footer-head {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.84rem;
  color: #7a6a64;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: #4a3a34;
}

/* ── ADMIN TRIGGER ── */
.admin-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--deep);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.admin-btn:hover { background: var(--rose); }

/* ── MOBILE ── */
@media (max-width: 820px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); padding: 30px 24px; gap: 22px; border-bottom: 1px solid rgba(196,133,106,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  footer { padding: 50px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
