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

:root {
  --blue-deep:  #2B5C8A;
  --blue-mid:   #4A80B0;
  --blue-light: #D6E8F5;
  --blue-pale:  #EEF5FB;
  --gold:       #B8922A;   /* warm accent — replaces red everywhere except logo */
  --gold-light: #F5EDD8;   /* pale gold for backgrounds */
  --black:      #1A1A1A;
  --charcoal:   #333333;
  --mid-gray:   #5A6A78;
  --rule:       rgba(43,92,138,0.12);
  --warm-white: #FAFCFE;
  --off-white:  #F2F7FC;
  --straw:      #FDFAF3;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.6;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--blue-deep);
  height: 68px;
  display: flex; align-items: center; padding: 0 32px;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { height: 52px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-divider { width: 1px; height: 44px; background: rgba(43,92,138,0.25); flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #2B5C8A;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-logo-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: #C0202A;
  white-space: nowrap;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--mid-gray); text-decoration: none;
  line-height: 66px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a.active { color: var(--blue-deep); border-bottom-color: var(--blue-deep); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--blue-deep); }

/* ── FOOTER ── */
.site-footer {
  background: var(--off-white);
  border-top: 2px solid var(--blue-deep);
  padding: 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; gap: 24px;
}
.footer-logo { font-family: 'Source Sans 3', sans-serif; font-size: 11px; color: var(--mid-gray); font-weight: 600; }
.footer-copyright { text-align: center; font-size: 11px; color: var(--mid-gray); }
.footer-links { text-align: right; display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }
.footer-links a {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mid-gray); text-decoration: none;
}
.footer-links a:hover { color: var(--blue-deep); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; }
p { font-family: 'Lora', serif; line-height: 1.75; }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-mid);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--blue-mid); flex-shrink: 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--blue-deep); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--blue-mid); font-weight: 400; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 52px 0; }
.section-alt { background: var(--off-white); }
.section-pale { background: var(--blue-pale); }
.section-dark { background: var(--blue-deep); color: #fff; }
.section-gold { background: var(--gold-light); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--blue-mid);
  background: var(--blue-pale);
  border-radius: 0 2px 2px 0;
  padding: 18px 22px; margin: 24px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: var(--blue-deep); line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 1px;
  transition: all 0.15s; cursor: pointer;
}
.btn-primary {
  background: var(--blue-deep); color: #fff; border: 2px solid var(--blue-deep);
}
.btn-primary:hover { background: #1e4466; border-color: #1e4466; }
.btn-ghost {
  background: transparent; color: var(--blue-deep); border: 2px solid var(--blue-deep);
}
.btn-ghost:hover { background: var(--blue-pale); }
.btn-gold {
  background: var(--gold); color: #fff; border: 2px solid var(--gold);
}
.btn-gold:hover { background: #9c7a22; }

/* ── PAGE HEADER ── */
.page-header { background: var(--blue-pale); padding: 52px 0; position: relative; overflow: hidden; }
.page-header-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif; font-size: 180px; font-weight: 700;
  color: rgba(43,92,138,0.05); white-space: nowrap; pointer-events: none; user-select: none; line-height: 1;
}
.page-header-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.page-header-photo { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; box-shadow: 5px 5px 0 var(--blue-light); }
.page-header-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ── DARK BAND CARDS ── */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid rgba(255,255,255,0.3);
  border-radius: 1px; padding: 22px 20px;
}
.dark-card .accent-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: 6px;
}
.dark-card h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: 17px; margin-bottom: 8px; }
.dark-card p { font-family: 'Source Sans 3', sans-serif; font-size: 14px; color: rgba(255,255,255,0.76); line-height: 1.55; margin: 0; }

/* ── AWARD / MILESTONE CARD ── */
.award-card {
  background: var(--blue-pale);
  border-top: 2px solid var(--blue-mid);
  border-radius: 1px; padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(43,92,138,0.08);
}
.award-card .year {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--blue-deep);
}
.award-card h4 { font-family: 'Playfair Display', serif; color: var(--blue-deep); font-size: 16px; margin: 6px 0 8px; }
.award-card p { font-family: 'Source Sans 3', sans-serif; font-size: 13px; color: var(--mid-gray); line-height: 1.5; margin: 0; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--blue-light); border-radius: 1px;
  font-family: 'Source Sans 3', sans-serif; font-size: 14px;
  color: var(--charcoal); background: #fff;
  transition: background 0.15s, border-color 0.15s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: var(--blue-pale); border-color: var(--blue-mid);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── EMAIL INLINE FORM ── */
.email-inline { display: flex; gap: 0; margin-top: 18px; }
.email-inline input {
  flex: 1; padding: 11px 14px;
  border: 1.5px solid var(--blue-mid); border-right: none;
  border-radius: 1px 0 0 1px;
  font-family: 'Source Sans 3', sans-serif; font-size: 14px; outline: none;
}
.email-inline button {
  padding: 11px 22px;
  background: var(--blue-deep); color: #fff;
  border: 1.5px solid var(--blue-deep);
  border-radius: 0 1px 1px 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.email-inline button:hover { background: #1e4466; }

/* ── BOOK COVER ── */
.book-cover { position: relative; display: inline-block; }
.book-cover img { display: block; border-radius: 3px; box-shadow: 5px 5px 0 var(--blue-light); }
.coming-soon-badge {
  position: absolute; top: -10px; right: -12px;
  background: var(--gold); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 1px; transform: rotate(3deg);
}

/* ── TIMELINE ── */
.timeline { margin: 32px 0; position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--blue-light); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-mid); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-mid);
}
.timeline-dot.landmark { background: var(--blue-deep); box-shadow: 0 0 0 2px var(--blue-deep); }
.timeline-year { font-family: 'Source Sans 3', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 3px; }
.timeline-item h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--blue-deep); margin-bottom: 4px; }
.timeline-item p { font-family: 'Source Sans 3', sans-serif; font-size: 13px; color: var(--mid-gray); line-height: 1.55; margin: 0; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 2px solid var(--blue-deep); z-index: 200; padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { line-height: 1; padding: 12px 24px; border-bottom: none; border-bottom: 1px solid var(--rule); }
  .nav-hamburger { display: flex; }
  .nav-inner { position: relative; }
  .page-header-inner { grid-template-columns: 1fr; }
  .page-header-photo { display: none; }
  .page-header-ghost { font-size: 80px; }
  .section { padding: 36px 0; }
  .container { padding: 0 20px; }
  .section-title { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}
