:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Cormorant Garamond', Georgia, serif;

  --soft-white: #F7F8F7;
  --white: #FFFFFF;
  --bg-cool: #EEF2F5;
  --slate-deep: #162635;
  --slate: #263B50;
  --steel: #62778A;
  --blue-accent: #8FA3B6;
  --blue-light: #D9E2EA;
  --charcoal: #2D3742;
  --text-muted: #607181;
  --text-light: rgba(247, 248, 247, 0.88);
  --line: rgba(38, 59, 80, 0.16);
  --line-light: rgba(217, 226, 234, 0.18);

  --ivory: var(--soft-white);
  --warm-white: var(--bg-cool);
  --warm-white-legacy: var(--bg-cool);
  --stone: var(--line);
  --muted-bronze: var(--steel);
  --taupe: var(--text-muted);
  --clay: var(--blue-accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--soft-white);
  color: var(--charcoal);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.045em;
  color: var(--slate-deep);
  line-height: 0.9;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}

.site-nav .nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.92;
}

.site-nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--slate-deep);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.4vw, 2.8rem);
}

.site-nav-links a {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--slate);
  transition: opacity 0.25s ease;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  opacity: 0.55;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--slate);
  cursor: pointer;
}

.luxury-btn,
.luxury-btn-outline,
.hero-contact,
.chapter-link,
.contact-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: opacity 0.25s ease;
}

.luxury-btn,
.hero-contact {
  padding: 0.95rem 1.45rem;
  color: var(--soft-white);
  background: var(--slate-deep);
  border: 1px solid var(--line-light);
}

.luxury-btn-outline {
  padding: 0.95rem 1.45rem;
  color: var(--slate-deep);
  border: 1px solid var(--line);
}

.luxury-btn:hover,
.luxury-btn-outline:hover,
.hero-contact:hover,
.chapter-link:hover,
.contact-link:hover {
  opacity: 0.65;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--steel);
}

.glass-panel {
  background: transparent;
  border: 1px solid var(--line);
}

.section-white {
  background: var(--soft-white);
}

.section-glass {
  background: var(--soft-white);
}

.section-slate {
  background: var(--slate-deep);
  color: var(--text-light);
}

.section-slate h1,
.section-slate h2,
.section-slate h3 {
  color: var(--soft-white);
}

.site-footer,
.list-footer,
.platforms-footer {
  background: var(--bg-cool);
  border-top: 1px solid var(--line);
  padding: 2.75rem 6vw;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--steel);
}

.site-footer {
  text-align: center;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
}

.site-footer-social a {
  color: var(--steel);
  font-size: 1.1rem;
  transition: opacity 0.25s ease;
}

.site-footer-social a:hover {
  opacity: 0.6;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--slate-deep);
}

.footer-legal {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 1rem auto 0;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--steel);
}

.footer-links a:hover {
  color: var(--slate-deep);
}

.page-pad {
  padding-top: 5.5rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--soft-white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }

  .site-nav-links.open {
    display: flex;
  }

  .site-nav-links a {
    padding: 1rem 6vw;
    border-bottom: 1px solid rgba(38, 59, 80, 0.1);
  }
}