:root {
  --navy: #16233f;
  --navy-2: #1e2e52;
  --navy-3: #0e172b;
  --gold: #c6a15b;
  --gold-2: #b58c43;
  --cream: #f7f3ec;
  --cream-2: #fbf9f5;
  --paper: #fffefa;
  --ink: #172036;
  --muted: #697185;
  --line: rgba(22, 35, 63, .13);
  --coral: #d8836b;
  --sage: #7f9d8d;
  --shadow: 0 24px 60px rgba(17, 27, 51, .12);
  --radius: 24px;
  --shell: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
::selection { color: white; background: var(--gold-2); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--navy);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 86px;
  background: rgba(255, 254, 250, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(18, 32, 57, .06); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { display: grid; line-height: 1.2; }
.brand b { font-family: "Playfair Display", Georgia, serif; font-size: 1.34rem; color: var(--navy); }
.brand small { margin-top: 4px; color: var(--muted); font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav a { text-decoration: none; font-size: .86rem; font-weight: 600; color: #3b465e; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-2); }
.main-nav .member-link { padding-left: 20px; border-left: 1px solid var(--line); }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; color: var(--navy); padding: 9px 14px; border-radius: 10px; font-weight: 700; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--navy-3);
  background: linear-gradient(135deg, #d9bb7a, var(--gold));
  box-shadow: 0 12px 26px rgba(198, 161, 91, .22);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(198, 161, 91, .3); }
.button-small { min-height: 42px; padding: 9px 18px; font-size: .8rem !important; color: var(--navy-3) !important; }
.button-navy { color: white; background: var(--navy); box-shadow: 0 12px 26px rgba(22, 35, 63, .18); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: white; }
.button-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #e2c98f; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  color: white;
  background: radial-gradient(circle at 78% 20%, #2d416d 0, var(--navy-2) 30%, var(--navy) 62%, var(--navy-3) 100%);
}
.hero-grid { min-height: calc(100vh - 86px); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-block: 74px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 5vw, 4.6rem);
  line-height: 1.08;
  text-wrap: balance;
}
.hero-copy > p { max-width: 670px; margin-bottom: 32px; color: rgba(255, 255, 255, .78); font-size: 1.08rem; }
.hero-portrait { position: relative; z-index: 2; align-self: end; }
.portrait-frame {
  position: relative;
  max-width: 480px;
  margin: auto;
  padding: 14px;
  border: 1px solid rgba(229, 205, 151, .28);
  border-radius: 250px 250px 28px 28px;
  background: rgba(255, 255, 255, .06);
}
.portrait-frame::before { content: ""; position: absolute; inset: -14px 28px 36px -18px; z-index: -1; border: 1px solid rgba(229, 205, 151, .18); border-radius: inherit; }
.portrait-frame img { width: 100%; height: min(68vh, 690px); object-fit: cover; object-position: center top; border-radius: 240px 240px 20px 20px; }
.portrait-note { position: absolute; left: -18px; bottom: 34px; display: grid; max-width: 250px; padding: 16px 20px; color: var(--navy); background: rgba(255, 254, 250, .95); border-radius: 16px; box-shadow: var(--shadow); }
.portrait-note b { font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; }
.portrait-note span { margin-top: 3px; color: var(--muted); font-size: .76rem; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 300px; height: 300px; top: -160px; left: -100px; background: rgba(198, 161, 91, .12); }
.hero-glow-two { width: 480px; height: 480px; right: -260px; bottom: -290px; background: rgba(198, 161, 91, .1); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 38px; color: rgba(255, 255, 255, .62); font-size: .76rem; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--gold); font-weight: 700; }

.soft-section, .content-section, .program-section, .testimonial-section, .article-section, .about-slice { padding: 110px 0; }
.soft-section { background: var(--cream-2); }
.section-intro { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.section-intro h2 { margin-bottom: 18px; color: var(--navy); text-wrap: balance; }
.section-intro p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 350px; padding: 32px 27px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 20px; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card .card-number { position: absolute; right: 20px; top: 14px; color: rgba(198, 161, 91, .18); font-family: "Playfair Display", Georgia, serif; font-size: 3.8rem; font-weight: 800; line-height: 1; }
.service-card small { display: block; max-width: 70%; margin: 120px 0 12px; color: var(--gold-2); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.service-card h3 { color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.centered-action { margin-top: 36px; text-align: center; }

.about-slice { background: white; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.about-visual { position: relative; max-width: 500px; }
.about-visual::before { content: ""; position: absolute; inset: 28px -28px -28px 28px; z-index: -1; border: 1px solid rgba(198, 161, 91, .45); border-radius: 24px; }
.about-visual img { width: 100%; height: 610px; object-fit: cover; object-position: center top; border-radius: 24px; box-shadow: var(--shadow); }
.gold-stamp { position: absolute; right: -46px; bottom: 42px; display: grid; place-items: center; width: 108px; height: 108px; color: var(--navy); background: var(--gold); border: 8px solid white; border-radius: 50%; font-family: "Playfair Display", Georgia, serif; font-weight: 800; line-height: .7; text-align: center; }
.gold-stamp span { font-size: .7rem; }
.about-copy h2 { color: var(--navy); text-wrap: balance; }
.about-copy p { color: var(--muted); }
.about-copy .button { margin-top: 14px; }

.program-section { background: var(--navy); color: white; }
.program-section .section-intro h2 { color: white; }
.program-section .section-intro p { color: rgba(255, 255, 255, .65); }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.program-card { --accent: var(--gold); position: relative; min-height: 330px; padding: 29px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 22px; background: rgba(255, 255, 255, .055); }
.program-card::after { content: ""; position: absolute; right: -70px; bottom: -75px; width: 170px; height: 170px; border: 1px solid var(--accent); border-radius: 50%; opacity: .35; }
.program-card > span { color: var(--accent); font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.program-card h3 { margin-top: 80px; }
.program-card p { color: rgba(255, 255, 255, .65); font-size: .88rem; }
.program-card a { position: relative; z-index: 1; color: var(--accent); font-weight: 700; text-decoration: none; }
.accent-coral { --accent: #e89d87; }
.accent-gold { --accent: #dfc07c; }
.accent-navy { --accent: #a8bce5; }
.accent-sage { --accent: #a9c6b7; }
.members-banner { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 28px; padding: 34px 40px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 22px; background: linear-gradient(105deg, rgba(255, 255, 255, .08), rgba(198, 161, 91, .12)); }
.members-banner h3 { margin: 0; font-size: 1.75rem; }
.members-banner .eyebrow { margin-bottom: 8px; }

.testimonial-section { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { margin: 0; padding: 34px; background: white; border: 1px solid rgba(198, 161, 91, .22); border-radius: 20px; box-shadow: 0 15px 36px rgba(28, 38, 60, .06); }
.testimonial-card .quote-mark { display: block; height: 50px; color: var(--gold); font-family: Georgia, serif; font-size: 4.6rem; line-height: 1; }
.testimonial-card p { color: #4f586c; font-family: "Playfair Display", Georgia, serif; font-size: 1.12rem; line-height: 1.55; }
.testimonial-card footer { color: var(--navy); font-size: .78rem; font-weight: 700; }

.article-section { background: white; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-grid-wide { grid-template-columns: repeat(2, 1fr); }
.article-card { padding: 32px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 20px; }
.article-card > span { color: var(--gold-2); font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2, .article-card h3 { margin: 24px 0 14px; color: var(--navy); }
.article-card h2 { font-size: 2rem; }
.article-card h2 a, .article-card h3 a { text-decoration: none; }
.article-card p { color: var(--muted); font-size: .9rem; }
.article-card .text-link { margin-top: 10px; font-size: .85rem; }

.final-cta { padding: 72px 0; color: white; background: var(--navy-3); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 760px; margin-bottom: 12px; }
.final-cta p { margin: 0; color: rgba(255, 255, 255, .65); }

.page-hero { padding: 110px 0 105px; color: white; background: radial-gradient(circle at 80% 10%, #31466f, var(--navy) 55%, var(--navy-3)); text-align: center; }
.page-hero.compact { padding: 72px 0; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255, 255, 255, .7); font-size: 1.05rem; }
.page-hero .button { margin-top: 28px; }
.editorial-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.editorial-image img { width: 100%; height: 650px; object-fit: cover; object-position: center top; border-radius: 24px; box-shadow: var(--shadow); }
.prose { max-width: 780px; color: #4d5669; font-size: 1.02rem; }
.prose h2, .prose h3 { color: var(--navy); }
.prose h2 { margin: 52px 0 20px; }
.prose h3 { margin-top: 36px; }
.prose p, .prose li { margin-bottom: 18px; }
.prose li::marker { color: var(--gold-2); }
.prose ul, .prose ol { margin: 22px 0 30px; padding-left: 1.4rem; }
.prose figure { margin: 34px 0; }
.prose figure img, .prose > img { width: 100%; height: auto; border-radius: 16px; }
.prose figcaption { margin-top: 9px; color: var(--muted); font-size: .78rem; text-align: center; }
.prose blockquote { margin: 30px 0; padding: 20px 24px; border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 12px 12px 0; }
.prose .note, .article-disclaimer { padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--cream); border-radius: 0 12px 12px 0; font-size: .87rem; }
.service-list { display: grid; gap: 20px; }
.service-detail { display: grid; grid-template-columns: 110px 1fr; gap: 32px; padding: 34px; border: 1px solid var(--line); border-radius: 20px; }
.service-detail > span { color: rgba(198, 161, 91, .55); font-family: "Playfair Display", Georgia, serif; font-size: 3rem; font-weight: 800; }
.service-detail small { color: var(--gold-2); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-detail h2 { margin: 10px 0 14px; color: var(--navy); font-size: 2.2rem; }
.service-detail p { margin: 0; color: var(--muted); }
.program-list { display: grid; gap: 22px; }
.program-detail { --accent: var(--gold); display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 38px 42px; border: 1px solid var(--line); border-left: 6px solid var(--accent); border-radius: 20px; background: var(--cream-2); scroll-margin-top: 110px; }
.program-detail > div { max-width: 760px; }
.program-detail span { color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.program-detail h2 { margin: 10px 0 12px; color: var(--navy); font-size: 2.35rem; }
.program-detail p { margin: 0; color: var(--muted); }
.single-article .page-hero { padding-bottom: 130px; }
.article-body { margin-top: -55px; margin-bottom: 100px; padding: 55px 62px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.article-body .article-disclaimer { margin: 40px 0 24px; }
.legal-copy { padding: 52px; background: var(--cream-2); border: 1px solid var(--line); border-radius: 24px; }

.site-footer { padding: 70px 0 26px; color: white; background: #0c1425; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 8px; }
.footer-grid strong { margin-bottom: 6px; color: #e3c88e; font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; }
.footer-grid a { color: rgba(255, 255, 255, .65); text-decoration: none; font-size: .83rem; }
.footer-grid a:hover { color: white; }
.footer-brand { display: flex; gap: 15px; align-items: center; }
.footer-brand img { width: 64px; height: 64px; object-fit: contain; filter: brightness(1.2); }
.footer-brand div { display: grid; }
.footer-brand b { font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; }
.footer-brand span { color: rgba(255, 255, 255, .55); font-size: .73rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 50px; padding-top: 20px; color: rgba(255, 255, 255, .43); border-top: 1px solid rgba(255, 255, 255, .1); font-size: .72rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-one { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 1060px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .77rem; }
  .hero-grid { gap: 40px; }
  .service-grid, .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 30px, 720px); }
  .site-header { height: 74px; }
  .brand img { width: 46px; height: 46px; }
  .brand small { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 15px;
    right: 15px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; font-size: .88rem; }
  .main-nav .member-link { padding-left: 12px; border-left: 0; }
  .main-nav .button { margin-top: 5px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 76px 0 0; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-copy .button-row, .trust-row { justify-content: center; }
  .hero-portrait { width: min(100%, 500px); margin: auto; }
  .portrait-frame img { height: 580px; }
  .about-grid, .editorial-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-visual { margin: auto; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .article-grid, .article-grid-wide { grid-template-columns: 1fr; }
  .final-cta-inner, .members-banner, .program-detail { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 24px); }
  body { font-size: 15px; }
  .brand b { font-size: 1.16rem; }
  .hero-grid { padding-top: 60px; }
  .hero h1 { font-size: clamp(2.65rem, 12.5vw, 3.55rem); }
  .button-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .button-row .text-link { justify-content: center; }
  .trust-row { display: grid; grid-template-columns: 1fr; }
  .portrait-frame img { height: 470px; }
  .portrait-note { left: 8px; right: 8px; bottom: 18px; max-width: none; }
  .soft-section, .content-section, .program-section, .testimonial-section, .article-section, .about-slice { padding: 76px 0; }
  .service-grid, .program-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .service-card small { margin-top: 95px; }
  .about-visual img, .editorial-image img { height: 480px; }
  .about-visual::before { inset: 18px 0 -18px 18px; }
  .gold-stamp { right: -5px; width: 88px; height: 88px; }
  .members-banner, .program-detail { padding: 28px 24px; }
  .page-hero { padding: 82px 0; }
  .service-detail { grid-template-columns: 1fr; gap: 8px; padding: 26px; }
  .service-detail > span { font-size: 2rem; }
  .article-body { margin-top: -35px; padding: 32px 24px; }
  .legal-copy { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
