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

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --deep:    #1e0f07;
  --warm:    #5c2d1a;
  --gold:    #c8963e;
  --gold2:   #e8b86d;
  --sand:    #f0e6d3;
  --cream:   #faf7f2;
  --muted:   #8a7060;
  --white:   #ffffff;
  --text:    #2a1a10;
  --textlt:  #5a3a2a;
  --border:  rgba(200,150,62,0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --nav-h: 80px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--deep);
}
.section-title.light { color: var(--sand); }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--textlt);
  line-height: 1.75;
  max-width: 560px;
}
.section-subtitle.light { color: rgba(240,230,211,.75); }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--deep);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
  display: flex;
  align-items: center;
}
.nav.scrolled {
  background: var(--deep);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #c8963e;
  letter-spacing: .05em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .2em;
  color: #ffffff;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-book {
  font-size: .75rem;
  padding: .6rem 1.4rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--sand);
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--deep);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  background: var(--deep);
  padding: 4rem 0 2rem;
  color: var(--sand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(240,230,211,.6);
  line-height: 1.6;
}
.footer-col-title {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(240,230,211,.7);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.footer-contact-icon { color: var(--gold); font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: .85rem; color: rgba(240,230,211,.75); line-height: 1.5; }
.footer-contact-text a { transition: color .2s; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: var(--muted); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
  font-size: .85rem;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

/* ─── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  height: 45vh;
  min-height: 320px;
  background: var(--deep);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e0f07 0%, #3d1e10 50%, #5c2d1a 100%);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0, var(--gold) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.page-hero-pyramid {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 320px;
  height: 220px;
  opacity: .15;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.page-hero-breadcrumb {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}
