/* Christine Mack — Shared Stylesheet */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A3254;
  --gold:       #C9963A;
  --gold-light: #E8C97A;
  --grey-pale:  #EEF0F4;
  --grey-mid:   #7A8394;
  --grey-dark:  #3A3F47;
  --grey-text:  #C8CDD6;
  --white:      #FAFBFC;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--navy);
  color: var(--white);
}

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 32px 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--gold);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-bottom: 20px;
}

.nav-links li a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.nav-links li a:hover { opacity: 1; }
.nav-links li a.active {
  opacity: 1;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 80px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow span { margin: 0 10px; opacity: 0.4; }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--white);
}

.hero-headline em { color: var(--gold-light); }

.hero-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0 32px;
}

.hero-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.85;
  max-width: 480px;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── PAGE HERO (single column, no photo) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SECTIONS ── */
.section-light {
  background: var(--grey-pale);
  padding: 72px 80px;
}

.section-light-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-mid {
  background: var(--navy-mid);
  padding: 72px 80px;
}

.section-mid-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-dark {
  background: var(--navy);
  padding: 72px 80px;
}

.section-dark-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 20px 0 28px;
}

/* Headlines */
.headline-dark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--grey-dark);
}

.headline-dark em { color: var(--gold); }

.headline-light {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  color: var(--white);
}

.headline-light em { color: var(--gold-light); }

/* Body copy */
.body-dark {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-dark);
  line-height: 1.85;
  max-width: 660px;
}

.body-dark p { margin-bottom: 1.1em; }
.body-dark p:last-child { margin-bottom: 0; }

.body-light {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.85;
  max-width: 660px;
}

.body-light p { margin-bottom: 1.1em; }
.body-light p:last-child { margin-bottom: 0; }

/* Pull quote */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 28px 0;
}

.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--white);
}

.pull-quote-dark p {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--grey-dark);
}

/* Contact links */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-link:hover { opacity: 0.6; }

.contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 150, 58, 0.2);
  padding: 24px 40px;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 40px 64px;
    gap: 40px;
  }
  .hero-photo {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
    order: -1;
  }
  .page-hero,
  .section-light,
  .section-mid,
  .section-dark { padding: 56px 40px; }
}

@media (max-width: 540px) {
  nav { padding: 24px 24px 0; }
  .nav-links { gap: 20px; }
  .hero,
  .page-hero { padding: 48px 24px 52px; }
  .section-light,
  .section-mid,
  .section-dark { padding: 48px 24px; }
}
