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

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080705;
  --surface:  #100e0b;
  --surface2: #17140f;
  --gold:     #c9a252;
  --gold-lt:  #e8c97a;
  --text:     #f0ece3;
  --muted:    #b0a898;
  --border:   #2a2520;
  --border2:  #3a3020;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
.cinzel { font-family: 'Cinzel', serif; }
.cormorant { font-family: 'Cormorant Garamond', serif; }

.section-tag {
  display: block;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
}

.section-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 540px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,7,5,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-emblem {
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav-emblem::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--gold); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}

.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--text);
}

.btn-solid {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
}
.btn-solid:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
  margin: 20px 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 160px 60px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: 0.035;
  pointer-events: none;
}
.page-hero-tag {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 700px;
}
.page-hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.85;
}

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 70px 60px;
}

.footer-brand .nav-logo { margin-bottom: 18px; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ─── SUBSCRIBE STRIP ─── */
.subscribe-strip {
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,162,82,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.subscribe-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
}
.subscribe-strip p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 38px;
  line-height: 1.8;
}
.subscribe-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}
.subscribe-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.subscribe-form button:hover { background: var(--gold-lt); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

.anim-1 { opacity: 0; animation: fadeUp 1s 0.2s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 1s 0.4s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 1s 0.6s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.anim-5 { opacity: 0; animation: fadeUp 1s 1.0s forwards; }

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

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(8,7,5,0.98);
    align-items: center;
    justify-content: flex-start;
    padding: 100px 40px 60px;
    gap: 0;
    z-index: 199;
    overflow-y: auto;
  }
  .nav-links.open li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a {
    font-size: 14px;
    letter-spacing: 4px;
    display: block;
    padding: 22px 0;
  }
  .nav-links.open .btn-gold {
    margin: 28px auto 0;
    display: inline-block;
    border: 1px solid var(--gold) !important;
  }
  .nav-toggle { display: flex; z-index: 201; position: relative; }

  .divider { padding: 0 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .subscribe-strip { padding: 60px 24px; }
  .footer-main { grid-template-columns: 1fr; padding: 50px 24px; gap: 36px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; }
}
