:root {
  --navy: #222633;
  --navy-soft: #2c3141;
  --blue: #687d9e;
  --blue-dark: #526984;
  --cream: #f7f0eb;
  --cream-deep: #eadfd7;
  --paper: #fcfaf7;
  --gold: #c7a261;
  --gold-light: #e7d4ac;
  --ink: #292d38;
  --muted: #686c76;
  --line: rgba(41, 45, 56, .14);
  --white: #fff;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 28px 70px rgba(20, 24, 34, .16);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6.2vw, 6.5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); letter-spacing: -.035em; }
h3 { font-size: 1.55rem; letter-spacing: -.015em; }
p { text-wrap: pretty; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
}
.eyebrow {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--blue-dark); }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-logo { width: 58px; height: 58px; flex: 0 0 auto; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--serif); font-size: 1.07rem; font-weight: 400; letter-spacing: .02em; }
.brand-copy span { margin-top: 5px; color: rgba(255,255,255,.7); font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { font-size: .82rem; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--gold-light); }
.nav-toggle { display: none; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  color: var(--navy);
  background: var(--gold-light);
  font-size: .79rem;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--white); }
.button-small { min-height: 42px; padding: 11px 17px; font-size: .68rem; }
.button-light { background: var(--cream); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.text-link span { color: var(--gold-light); }
.dark-link { color: var(--navy); border-color: var(--line); }

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  color: var(--white);
  background: var(--navy);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,31,42,.97) 0%, rgba(30,33,45,.87) 47%, rgba(28,31,42,.62) 100%),
    url('assets/sunrise-web.jpg') center / cover no-repeat;
  opacity: .9;
}
.hero::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(231,212,172,.2);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(290px, .56fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}
.hero-copy { max-width: 810px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.microcopy { margin: 18px 0 0; color: rgba(255,255,255,.55); font-size: .78rem; }
.hero-card {
  align-self: end;
  padding: 14px 14px 22px;
  background: rgba(247,240,235,.94);
  color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(54px);
}
.portrait-wrap { aspect-ratio: 7 / 9; overflow: hidden; }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; }
.hero-card blockquote { margin: 22px 12px 12px; font-family: var(--serif); font-size: 1.16rem; line-height: 1.35; }
.hero-card > p { margin: 0 12px; color: var(--blue-dark); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.recognition { background: var(--cream); }
.split-heading { display: grid; grid-template-columns: 1.15fr .7fr; gap: clamp(50px, 9vw, 130px); align-items: end; }
.split-heading h2 { max-width: 750px; margin-bottom: 0; }
.section-intro { margin: 0 0 10px; color: var(--muted); font-size: 1.05rem; }
.issue-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.issue-card { padding: 30px 28px 12px 0; border-right: 1px solid var(--line); }
.issue-card + .issue-card { padding-left: 28px; }
.issue-card:last-child { border-right: 0; }
.issue-card > span { color: var(--gold); font-family: var(--serif); font-style: italic; }
.issue-card h3 { margin: 28px 0 14px; }
.issue-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.program { color: var(--white); background: var(--blue); }
.program-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(55px, 9vw, 130px); align-items: center; }
.program-image { position: relative; }
.program-image > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.image-note {
  position: absolute;
  right: -34px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  padding: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold-light);
  text-align: center;
}
.image-note strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.image-note span { font-size: .66rem; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }
.program-copy h2 { margin-bottom: 28px; }
.program-copy > p:not(.eyebrow) { color: rgba(255,255,255,.8); }
.check-list { display: grid; gap: 13px; margin: 28px 0 38px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: rgba(255,255,255,.9); }
.check-list span { color: var(--gold-light); }

.steps { background: var(--paper); }
.centered-heading { max-width: 790px; margin: 0 auto 70px; text-align: center; }
.centered-heading h2 { margin-bottom: 22px; }
.centered-heading > p:last-child { color: var(--muted); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps-grid article { position: relative; padding: 62px 38px 0 0; }
.steps-grid article + article { padding-left: 38px; border-left: 1px solid var(--line); }
.step-number {
  position: absolute;
  top: -23px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--paper);
  font-family: var(--serif);
}
.steps-grid h3 { margin-bottom: 16px; }
.steps-grid p { color: var(--muted); font-size: .94rem; }

.about { color: var(--white); background: var(--navy); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr .86fr; gap: clamp(55px, 9vw, 130px); align-items: center; }
.about-copy h2 { margin-bottom: 18px; }
.about-lead { color: var(--gold-light); font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: rgba(255,255,255,.72); }
.credentials { margin-top: 30px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.credentials p { margin-bottom: 9px; color: var(--gold-light); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.credentials ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.66); font-size: .86rem; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 47% center; box-shadow: var(--shadow); }
.about-seal {
  position: absolute;
  left: -50px;
  bottom: 38px;
  width: 124px;
  height: 124px;
  display: grid;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--navy);
  background: var(--cream);
  font-size: .62rem;
  letter-spacing: .11em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.about-seal strong { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }

.values { background: var(--cream); }
.values-layout { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 10vw, 150px); }
.values-layout h2 { max-width: 450px; }
.values-list article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.values-list article:last-child { border-bottom: 1px solid var(--line); }
.values-list > article > span { color: var(--gold); font-family: var(--serif); font-style: italic; }
.values-list h3 { margin-bottom: 8px; }
.values-list p { margin: 0; color: var(--muted); }

.testimonials { color: var(--white); background: var(--blue); }
.light-heading > p:last-child { color: rgba(255,255,255,.7); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testimonial-grid figure { margin: 0; padding: clamp(32px, 5vw, 60px); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.testimonial-grid blockquote { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.7rem); line-height: 1.45; }
.testimonial-grid figcaption { color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(60px, 10vw, 150px); }
.faq-heading { position: sticky; top: 40px; align-self: start; }
.faq-heading p:not(.eyebrow) { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; font-family: var(--serif); font-size: 1.25rem; line-height: 1.3; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 4px; color: var(--gold); font-family: var(--sans); font-weight: 300; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { max-width: 720px; padding-right: 45px; color: var(--muted); font-size: .94rem; }

.final-cta {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}
.final-cta-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30,34,45,.73), rgba(30,34,45,.84)), url('assets/sunrise-web.jpg') center 48% / cover no-repeat;
}
.final-cta-content { position: relative; z-index: 1; max-width: 850px; }
.final-cta h2 { margin-bottom: 23px; }
.final-cta-content > p:not(.eyebrow) { max-width: 640px; margin: 0 auto 34px; color: rgba(255,255,255,.8); font-size: 1.08rem; }

.site-footer { padding: 65px 0 25px; color: var(--white); background: #191c26; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-bottom: 48px; }
.footer-actions { display: flex; gap: 30px; }
.footer-actions a { color: rgba(255,255,255,.78); font-size: .8rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-actions span { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { text-decoration: none; }
.floating-cta { display: none; }

.legal-page { background: var(--cream); }
.legal-header { position: static; color: var(--white); background: var(--navy); }
.legal-main { min-height: 70vh; padding: 90px 0 120px; }
.legal-content { max-width: 780px; }
.legal-content h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.legal-content h2 { margin-top: 48px; font-size: 1.8rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.draft-notice { margin: 35px 0; padding: 20px 22px; border-left: 3px solid var(--gold); background: var(--white); }
.draft-notice strong { color: var(--ink); }
.back-link { color: var(--blue-dark); font-weight: 700; }

.reveal { animation: rise .8s ease-out both; }
.reveal-delay { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-delay { animation: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .shell { width: min(100% - 36px, 760px); }
  .site-header { position: absolute; }
  .nav-toggle {
    position: relative;
    z-index: 3;
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }
  .nav-toggle span:not(.sr-only) { width: 25px; height: 1px; display: block; background: var(--white); transition: transform .2s, opacity .2s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 25px;
    padding: 95px 25px;
    background: rgba(34,38,51,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.button) { font-family: var(--serif); font-size: 1.55rem; }
  .hero { min-height: 0; padding: 140px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-card { width: min(430px, 85%); justify-self: end; transform: none; }
  .split-heading, .program-grid, .about-grid, .values-layout, .faq-grid { grid-template-columns: 1fr; }
  .issue-grid { grid-template-columns: 1fr 1fr; }
  .issue-card:nth-child(2) { border-right: 0; }
  .issue-card:nth-child(3), .issue-card:nth-child(4) { border-top: 1px solid var(--line); }
  .issue-card:nth-child(3) { padding-left: 0; }
  .program-image { width: min(560px, 90%); }
  .program-image > img { aspect-ratio: 5 / 4; }
  .about-image { width: min(600px, 90%); margin-left: auto; }
  .about-image img { aspect-ratio: 4 / 3; }
  .faq-heading { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 540px); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 78px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-copy strong { font-size: .96rem; }
  .brand-copy span { font-size: .53rem; }
  .hero { padding: 120px 0 78px; }
  .hero-backdrop { background: linear-gradient(135deg, rgba(28,31,42,.98) 20%, rgba(30,33,45,.78) 100%), url('assets/sunrise-web.jpg') center / cover no-repeat; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-card { width: 100%; justify-self: stretch; }
  .portrait-wrap { aspect-ratio: 4 / 4.5; }
  .portrait-wrap img { object-position: 50% 25%; }
  .split-heading { gap: 28px; }
  .issue-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .issue-card, .issue-card + .issue-card { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .issue-card:first-child { border-top: 0; }
  .issue-card h3 { margin-top: 16px; }
  .program-grid { gap: 72px; }
  .program-image { width: calc(100% - 18px); }
  .program-image > img { aspect-ratio: 5 / 4; }
  .image-note { right: -18px; width: 122px; height: 122px; }
  .steps-grid { grid-template-columns: 1fr; border-top: 0; }
  .steps-grid article, .steps-grid article + article { padding: 35px 0 35px 72px; border-top: 1px solid var(--line); border-left: 0; }
  .step-number { top: 28px; left: 0; }
  .about-grid { gap: 65px; }
  .about-image { width: calc(100% - 20px); }
  .about-image img { aspect-ratio: 3 / 4; }
  .about-seal { left: -20px; bottom: 25px; width: 108px; height: 108px; }
  .values-layout { gap: 35px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .centered-heading { margin-bottom: 50px; text-align: left; }
  .faq-grid { gap: 35px; }
  .final-cta { min-height: 540px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-actions, .footer-bottom nav { flex-direction: column; gap: 13px; }
  .floating-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--gold-light);
    box-shadow: 0 12px 35px rgba(20,24,34,.25);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .site-footer { padding-bottom: 90px; }
  .legal-main { padding-top: 65px; }
}
