@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --navy:     #1c2b3a;
  --navy-mid: #263648;
  --navy-lt:  #344d63;
  --slate:    #4e6070;
  --muted:    #6b7e8f;
  --mist:     #f4f6f8;
  --mist-dk:  #eceef1;
  --border:   #dce1e8;
  --white:    #ffffff;
  --gold:     #b89255;
  --gold-lt:  #d4b07a;
  --accent:   #5a7fa0;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --max-w:    1080px;
  --r:        3px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; color: var(--navy); background: var(--white); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { line-height: 1.8; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 88px 2rem; }

.lbl { display: flex; align-items: center; gap: .7rem; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.lbl::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: .8rem 1.9rem; font-family: var(--sans); font-size: .78rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--r); transition: background .2s, color .2s; cursor: pointer; border: none; }
.btn-dark { background: var(--navy); color: var(--white); } .btn-dark:hover { background: var(--navy-lt); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); } .btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); } .btn-white:hover { background: var(--mist); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── NAV ── */
nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 70px; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.nav-logo .dot { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-menu > li > a { display: block; padding: .4rem .85rem; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--slate); border-radius: var(--r); transition: color .18s, background .18s; }
.nav-menu > li > a:hover { color: var(--navy); background: var(--mist); }
.nav-menu > li > a.active { color: var(--navy); font-weight: 500; }
.nav-cta > a { background: var(--navy) !important; color: var(--white) !important; }
.nav-cta > a:hover { background: var(--navy-lt) !important; }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .6rem; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 4px; min-width: 230px; padding: 6px 0; box-shadow: 0 4px 16px rgba(0,0,0,.08); z-index: 300; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-section { display: block; padding: 8px 16px 4px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.dropdown-section:first-child { margin-top: 0; }
.dropdown-menu a:not(.dropdown-section) { display: block; padding: 7px 16px 7px 24px; font-size: .84rem; color: var(--slate); transition: background .15s, color .15s; }
.dropdown-menu a:not(.dropdown-section):hover { background: var(--mist); color: var(--navy); }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all .3s; }

/* ── HERO (homepage) ── */
#hero { padding: 148px 2rem 100px; background: var(--mist); overflow: hidden; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 58fr 42fr; gap: 4rem; align-items: center; }
.hero-tag { display: flex; align-items: center; gap: .75rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero-tag::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
#hero h1 { color: var(--navy); margin-bottom: 1.5rem; font-weight: 400; }
#hero h1 em { font-style: italic; color: var(--accent); }
#hero .lead { font-size: 1.05rem; color: var(--slate); line-height: 1.85; margin-bottom: 2.25rem; }
.hero-photo { aspect-ratio: 4/5; background: var(--mist-dk); border-radius: 4px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-photo-ph { position: absolute; font-size: .82rem; color: var(--muted); text-align: center; padding: 1rem; }

/* ── OFFER GRID (6 cards) ── */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.offer-card { padding: 2.25rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .2s; position: relative; overflow: hidden; }
.offer-card:nth-child(3n) { border-right: none; }
.offer-card:nth-child(4), .offer-card:nth-child(5), .offer-card:nth-child(6) { border-bottom: none; }
.offer-card:hover { background: var(--mist); }
.offer-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.offer-card:hover::after { transform: scaleX(1); }
.offer-n { font-family: var(--serif); font-size: 2rem; color: var(--mist-dk); line-height: 1; margin-bottom: .75rem; }
.offer-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.offer-badge { display: inline-block; font-size: .68rem; padding: .2rem .65rem; border-radius: 100px; border: 1px solid var(--border); color: var(--muted); margin-bottom: .65rem; letter-spacing: .04em; }
.offer-badge.online { border-color: var(--gold); color: var(--gold); }
.offer-card p { font-size: .88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.1rem; }
.offer-link { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); transition: color .18s; }
.offer-link:hover { color: var(--navy); }
.offer-link::after { content: ' →'; }

/* ── O MNIE (homepage short) ── */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.about-photo { aspect-ratio: 3/4; background: var(--mist-dk); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .82rem; text-align: center; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-role { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.05rem; margin: .4rem 0 1.75rem; }
.about-text { font-size: .96rem; color: var(--slate); margin-bottom: 1rem; line-height: 1.85; }
.about-text strong { color: var(--navy); font-weight: 500; }

/* ── PRICING ── */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: rgba(255,255,255,.12); }
.price-card { padding: 2.25rem; background: var(--navy-mid); transition: background .2s; }
.price-card:hover { background: var(--navy-lt); }
.price-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: .35rem; }
.price-desc { font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: 1.5rem; line-height: 1.5; }
.price-amt { font-family: var(--serif); font-size: 2.75rem; color: var(--white); line-height: 1; margin-bottom: .25rem; }
.price-unit { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.price-note { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.price-cta { text-align: center; margin-top: 3rem; }

/* ── ARTICLES ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.article-card { border-top: 2px solid var(--border); padding-top: 1.5rem; }
.article-cat { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.article-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.3; }
.article-card h3 a { color: inherit; } .article-card h3 a:hover { color: var(--accent); }
.article-card p { font-size: .87rem; color: var(--slate); line-height: 1.7; margin-bottom: .75rem; }
.article-meta { font-size: .76rem; color: var(--muted); }
.articles-more { text-align: center; margin-top: 3rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.cd-label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .25rem; }
.cd-val { font-size: .93rem; color: var(--slate); margin-bottom: 1.5rem; }
.cd-val a { color: inherit; } .cd-val a:hover { color: var(--navy); }
.cf { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 2.5rem; }
.cf-title { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.75rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.fg label { font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.fg input, .fg select, .fg textarea { border: 1px solid var(--border); padding: .7rem 1rem; font-family: var(--sans); font-size: .9rem; color: var(--navy); background: var(--white); border-radius: var(--r); outline: none; transition: border-color .2s; width: 100%; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg textarea { resize: vertical; min-height: 105px; }
.f-consent { font-size: .77rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.f-consent a { color: var(--navy); text-decoration: underline; }
.f-ok { display: none; background: #edf7f2; border: 1px solid #9fd4b8; color: #1a5c3b; padding: .9rem 1.1rem; border-radius: var(--r); font-size: .88rem; margin-top: .75rem; }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 140px 2rem 72px; background: var(--mist); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 7fr 5fr; gap: 4rem; align-items: center; }
.page-hero h1 { color: var(--navy); margin: .5rem 0 1.25rem; }
.page-hero .lead { font-size: 1.05rem; color: var(--slate); line-height: 1.8; margin-bottom: 2rem; }
.breadcrumb { font-size: .76rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--navy); }
.hero-aside { display: flex; flex-direction: column; gap: 1rem; }
.aside-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); }
.aside-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.aside-icon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.aside-text strong { display: block; font-size: .82rem; font-weight: 500; color: var(--navy); margin-bottom: .1rem; }
.aside-text span { font-size: .82rem; color: var(--muted); }

/* ── SUBPAGE LAYOUT ── */
.subpage-wrap { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; padding: 80px 2rem; }
.sticky-sidebar { position: sticky; top: 88px; }
.sidebar-box { background: var(--mist); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; margin-bottom: 1.5rem; }
.sidebar-box h5 { font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 400; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.sb-links { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.sb-links a { display: block; padding: .5rem .75rem; font-size: .84rem; color: var(--slate); border-radius: var(--r); border-left: 2px solid transparent; transition: all .18s; }
.sb-links a:hover { color: var(--navy); background: var(--white); }
.sb-links a.cur { color: var(--navy); border-left-color: var(--gold); background: var(--white); font-weight: 500; }
.sb-links .sb-section { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: .6rem .75rem .2rem; }

/* ── PROSE ── */
.prose { max-width: 680px; }
.prose h2 { font-size: 1.85rem; margin: 2.5rem 0 .75rem; }
.prose h3 { font-size: 1.3rem; margin: 2rem 0 .5rem; color: var(--navy); }
.prose p { font-size: .96rem; color: var(--slate); margin-bottom: 1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { font-size: .94rem; color: var(--slate); margin-bottom: .4rem; }
.prose strong { color: var(--navy); font-weight: 500; }
.prose .intro-p { font-size: 1.08rem; color: var(--slate); line-height: 1.85; margin-bottom: 1.5rem; font-family: var(--serif); font-style: italic; }
.hl-box { background: var(--mist); border-left: 3px solid var(--gold); padding: 1.5rem 1.75rem; border-radius: 0 var(--r) var(--r) 0; margin: 2rem 0; }
.hl-box p { font-size: .9rem; color: var(--slate); margin: 0; }
.hl-box strong { color: var(--navy); }

/* STEPS */
.steps { list-style: none; counter-reset: st; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 1.25rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); counter-increment: st; }
.step:last-child { border-bottom: none; }
.step-n { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); line-height: 1.1; }
.step-n::before { content: counter(st, decimal-leading-zero); }
.step h4 { font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.step p { font-size: .88rem; color: var(--slate); }

/* CHECKLIST */
.cklist { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.cklist li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--slate); }
.cklist li::before { content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; border: 1px solid var(--border); background: var(--mist-dk) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%23b89255' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/12px; margin-top: .2rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; }
.faq-q { padding: 1.4rem 0; border-top: 1px solid var(--border); font-family: var(--serif); font-size: 1.1rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-item:last-child .faq-q { border-bottom: 1px solid var(--border); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; font-size: .9rem; color: var(--slate); line-height: 1.8; padding-bottom: 1.4rem; max-width: 640px; }
.faq-item.open .faq-a { display: block; }

/* CALLOUT */
.callout { background: var(--navy); padding: 72px 2rem; text-align: center; }
.callout-inner { max-width: 600px; margin: 0 auto; }
.callout h2 { color: var(--white); margin-bottom: .75rem; }
.callout p { font-size: .95rem; color: rgba(255,255,255,.55); margin-bottom: 2rem; }
.callout .lbl { justify-content: center; color: var(--gold-lt); } .callout .lbl::before { display: none; }
.callout .btn-row { justify-content: center; }

/* EDUCATION TABLE */
.edu-row { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.edu-row:last-child { border-bottom: none; }
.edu-yr { font-size: .75rem; color: var(--gold); min-width: 56px; padding-top: .15rem; }
.edu-info strong { display: block; font-size: .88rem; color: var(--navy); font-weight: 500; margin-bottom: .1rem; }
.edu-info span { font-size: .82rem; color: var(--muted); }

/* ARTICLES PAGE */
.articles-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.article-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.article-full-card:hover { border-color: var(--navy); }
.article-img { height: 180px; background: var(--mist-dk); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .82rem; overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 1.5rem; }
.article-body .article-cat { margin-bottom: .5rem; }
.article-body h3 { font-size: 1.25rem; margin-bottom: .6rem; line-height: 1.3; }
.article-body h3 a { color: var(--navy); }
.article-body h3 a:hover { color: var(--accent); }
.article-body p { font-size: .88rem; color: var(--slate); line-height: 1.7; }

/* FOOTER */
footer.site-footer { background: var(--navy); padding: 60px 2rem 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 2rem; }
.f-brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.f-brand-name .dot { color: var(--gold); }
.f-brand p { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.75; }
.f-col h5 { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 400; margin-bottom: .9rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.f-col ul a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .18s; }
.f-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .73rem; color: rgba(255,255,255,.18); flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner, .about-grid, .contact-grid, .footer-grid, .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card:nth-child(2n) { border-right: none; }
  .offer-card:nth-child(5), .offer-card:nth-child(6) { border-bottom: none; }
  .offer-card:nth-child(3) { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .offer-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid, .articles-page-grid { grid-template-columns: 1fr; }
  .subpage-wrap { grid-template-columns: 1fr; padding: 60px 1.5rem; }
  .sticky-sidebar { position: static; }
  .f-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo { display: none; }
}
@media (max-width: 640px) {
  section { padding: 64px 1.25rem; }
  #hero { padding: 120px 1.25rem 64px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 199; gap: 0; }
  .nav-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--gold); border-radius: 0; margin-left: 1rem; }
  .nav-toggle { display: flex; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .offer-card:last-child { border-bottom: none !important; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* INLINE SCRIPTS */
function initFAQ(){document.querySelectorAll('.faq-q').forEach(q=>{q.addEventListener('click',()=>{const i=q.parentElement,w=i.classList.contains('open');document.querySelectorAll('.faq-item').forEach(x=>x.classList.remove('open'));if(!w)i.classList.add('open')})});}