@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --gold: #C9A84C; --gold-light: #E8C97A;
  --dark: #1A1208; --dark-mid: #2C1F0E; --dark-surface: #3A2A14;
  --cream: #F5EDD8; --cream-muted: #D9C9A8; --text-muted: #A89060;
  --accent-red: #8B1A1A;
  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--cream); font-family: var(--ff-body); font-size: 16px; line-height: 1.7; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 72px;
  background: rgba(26,18,8,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(8px);
}
.nav-logo img { height: 54px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--cream-muted); text-decoration: none;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; transition: color .2s; padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(to bottom, rgba(26,18,8,.7), rgba(26,18,8,.92)),
    url('open365night.jpg') center/cover no-repeat;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-header .section-label { margin-bottom: .75rem; }
.page-header h1 { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--cream); line-height: 1.05; }

/* ── TYPOGRAPHY ── */
.section-label { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .6rem; display: block; }
.section-title { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem; }
.section-body { color: var(--cream-muted); max-width: 640px; font-size: 1rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: .85rem 2.5rem; background: var(--gold); color: var(--dark); text-decoration: none; font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,.1); transform: translateY(-1px); }
.btn-sm { padding: .6rem 1.5rem; font-size: .72rem; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; margin: 0 auto 3rem; max-width: 300px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: .4; }
.divider-icon { color: var(--gold); opacity: .7; }

/* ── FOOTER ── */
footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 2.5rem 2.5rem 2rem;
}
.footer-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 3rem; align-items: start; }
.footer-logo img { height: 52px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer-nav a { color: var(--cream-muted); text-decoration: none; font-size: .8rem; letter-spacing: .08em; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-info { text-align: right; font-size: .8rem; color: var(--text-muted); line-height: 1.8; }
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-copy { text-align: center; font-size: .72rem; color: var(--text-muted); letter-spacing: .05em; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(201,168,76,.1); }
