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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F4EF;
  --warm-white: #FDFCFA;
  --slate: #2C3035;
  --slate-mid: #4A5058;
  --slate-light: #8A9099;
  --sage: #6B7D6A;
  --sage-light: #E8EDE7;
  --gold: #B8965A;
  --gold-light: #F0E8D8;
  --border: #E0DAD0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--slate); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--slate); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(253,252,250,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-decoration: none; color: var(--slate-mid); padding: 4px 0; position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--gold); }
.nav-dd { position: relative; }
.nav-dd > a::after { content: ' \025BE'; color: var(--slate-light); font-size: 9px; }
.nav-dd-menu { position: absolute; top: 100%; left: -16px; min-width: 232px; background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 12px 34px rgba(44,48,53,0.10); padding: 14px 8px 8px; display: none; flex-direction: column; gap: 2px; }
.nav-dd-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: flex; }
.nav-dd-menu a { padding: 9px 12px; border-radius: 3px; font-weight: 400; }
.nav-dd-menu a:hover { background: var(--cream); color: var(--slate); }
.nav-dd-menu a::after { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--slate); margin: 4px 0; transition: .25s; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; padding: 15px 30px; border-radius: 2px; cursor: pointer; text-decoration: none; border: 1px solid var(--slate); background: var(--slate); color: var(--warm-white); transition: all .2s; text-align: center; }
.btn:hover { background: transparent; color: var(--slate); }
.btn-gold { background: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--slate); }
.btn-outline:hover { background: var(--slate); color: var(--warm-white); }
.btn-light { background: var(--warm-white); border-color: var(--warm-white); color: var(--slate); }
.btn-light:hover { background: transparent; color: var(--warm-white); }
.btn-sm { padding: 11px 22px; }

/* ── TYPE ── */
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: inline-block; }
h1.display { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 5.2vw, 4rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--slate); }
h2.display { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 3.6vw, 2.85rem); line-height: 1.12; color: var(--slate); }
h3.sub { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1.25; color: var(--slate); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--slate-mid); font-weight: 300; }
p.body { margin-top: 18px; color: var(--slate-mid); }
.muted { color: var(--slate-light); }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-light); }

/* ── HERO ── */
.hero { padding: 92px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero .lead { margin: 26px 0 34px; max-width: 30em; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; letter-spacing: 0.04em; color: var(--sage); border: 1px solid var(--sage); border-radius: 40px; padding: 6px 14px; background: var(--warm-white); }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

.img-ph { background: linear-gradient(135deg, var(--sage-light), var(--gold-light)); border: 1px dashed var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--slate-light); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 24px; min-height: 380px; }
.img-ph.portrait { min-height: 460px; }

/* real photos in the same slots */
.photo { width: 100%; display: block; border-radius: 4px; object-fit: cover; aspect-ratio: 4 / 3; box-shadow: 0 14px 38px rgba(44,48,53,0.10); }
.photo.portrait { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 24 / 9; }

/* accreditation logo chips */
.accred-logos { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.accred-chip { background: #fff; border-radius: 6px; padding: 10px 18px; height: 66px; display: inline-flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.accred-chip img { height: 44px; width: auto; display: block; }
.accred-logos-lg { gap: 16px; }
.accred-logos-lg .accred-chip { height: 88px; padding: 12px 22px; }
.accred-logos-lg .accred-chip img { height: 62px; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 34px 30px; transition: all .25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(44,48,53,0.08); border-color: var(--gold); }
.card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 12px; }
.card p { font-size: 0.96rem; color: var(--slate-mid); flex-grow: 1; }
.card .link { margin-top: 20px; font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.04em; text-decoration: none; }
.card .link:hover { text-decoration: underline; }

/* ── PROCESS ── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
.step { position: relative; padding-top: 26px; }
.step::before { content: ''; position: absolute; top: 0; left: 0; width: 38px; height: 2px; background: var(--gold); }
.step-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-style: italic; margin-bottom: 8px; }
.step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--slate-mid); }

/* ── TWO COLUMN / CHECKLIST ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.col-box { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 34px; }
.col-box h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 20px; }
.checklist { list-style: none; }
.checklist li { position: relative; padding-left: 28px; margin-bottom: 14px; color: var(--slate-mid); font-size: 0.97rem; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border: 1.5px solid var(--gold); border-radius: 50%; }

/* prose split */
.prose-split { display: grid; grid-template-columns: 1fr 0.7fr; gap: 56px; align-items: start; }
.prose-split.reverse { grid-template-columns: 0.7fr 1fr; }
.sidebar-list { background: var(--cream); border-left: 2px solid var(--gold); padding: 26px 28px; border-radius: 0 4px 4px 0; }
.sidebar-list h5 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 16px; }
.sidebar-list ul { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; color: var(--slate-mid); }
.sidebar-list li:last-child { border-bottom: none; }

/* callout */
.callout { background: var(--sage-light); border-radius: 4px; padding: 44px 48px; border: 1px solid #d6e0d4; }
.callout h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 14px; }
.callout p { color: var(--slate-mid); }

/* credentials */
.cred-list { columns: 2; column-gap: 48px; margin-top: 34px; list-style: none; }
.cred-list li { padding: 13px 0; border-bottom: 1px solid var(--border); break-inside: avoid; font-size: 0.97rem; }
.cred-list li span { color: var(--gold); font-style: italic; font-family: var(--font-display); margin-right: 8px; }

/* testimonial */
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 48px; }
.quote { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 38px 34px; position: relative; }
.quote::before { content: '\201C'; font-family: var(--font-display); font-size: 4.5rem; color: var(--gold-light); position: absolute; top: 6px; left: 20px; line-height: 1; }
.quote p { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; line-height: 1.4; color: var(--slate); position: relative; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-light); }
.ph-note { font-size: 12px; color: var(--slate-light); font-style: italic; margin-top: 18px; }

/* CTA band */
.cta-band { background: var(--slate); color: var(--warm-white); padding: 84px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 16px; color: var(--warm-white); }
.cta-band p { color: #C9CDD2; max-width: 34em; margin: 0 auto 30px; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* value section */
.value-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.value-grid.even { grid-template-columns: 1fr 1fr; }

/* page intro header */
.page-head { padding: 84px 0 20px; }
.page-head .lead { margin-top: 22px; max-width: 38em; }

/* ── FAQ (native details) ── */
.faq-wrap { max-width: 840px; }
.faq-group-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 40px 0 8px; font-weight: 600; }
.faq-group-label:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; font-size: 1.06rem; font-weight: 500; color: var(--slate); position: relative; line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 21px; font-size: 1.4rem; color: var(--gold); font-weight: 300; }
.faq-item[open] summary::after { content: '\2013'; }
.faq-a { padding: 0 40px 24px 0; }
.faq-a p { color: var(--slate-mid); font-size: 0.99rem; }

/* ── RESOURCES ── */
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 52px; }
.resource-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; padding: 32px; transition: all .25s; text-decoration: none; display: block; }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(44,48,53,0.08); border-color: var(--gold); }
.cat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.resource-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin: 14px 0 16px; line-height: 1.2; color: var(--slate); }
.read-time { font-size: 12px; color: var(--slate-light); letter-spacing: 0.04em; }
.resource-card .link { display: inline-block; margin-top: 18px; font-size: 13px; font-weight: 500; color: var(--gold); }

/* ── ARTICLE ── */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-light); text-decoration: none; margin-bottom: 28px; }
.back-link:hover { color: var(--gold); }
.back-link::before { content: '\2190'; }
.article-head { padding: 64px 0 8px; }
.article-head .container { max-width: 760px; }
.article-head h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1.12; letter-spacing: -0.01em; margin-top: 4px; }
.byline { margin-top: 22px; font-size: 13px; letter-spacing: 0.04em; color: var(--slate-light); display: flex; align-items: center; gap: 12px; }
.byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.article-body { max-width: 720px; margin: 0 auto; padding: 36px 48px 88px; }
.article-body .standfirst { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; line-height: 1.45; color: var(--slate-mid); margin-bottom: 36px; }
.article-body h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; line-height: 1.2; color: var(--slate); margin: 40px 0 14px; }
.article-body p { color: var(--slate-mid); font-size: 1.05rem; line-height: 1.75; margin-bottom: 18px; }
.article-body ul { list-style: none; margin: 4px 0 24px; }
.article-body ul li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--slate-mid); font-size: 1.03rem; line-height: 1.7; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border: 1.5px solid var(--gold); border-radius: 50%; }
.article-cta { max-width: 720px; margin: 0 auto; padding: 0 48px; }
.article-cta-inner { background: var(--cream); border-left: 2px solid var(--gold); border-radius: 0 4px 4px 0; padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.article-cta-inner p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--slate); margin: 0; flex: 1 1 260px; }
.article-more { max-width: 720px; margin: 0 auto; padding: 56px 48px 90px; border-top: 1px solid var(--border); }
.article-more h5 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 20px; }
.more-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.more-card { border: 1px solid var(--border); border-radius: 4px; padding: 22px 24px; transition: all .2s; text-decoration: none; display: block; }
.more-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.more-card .cat-label { font-size: 10px; }
.more-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; line-height: 1.2; margin-top: 8px; color: var(--slate); }

/* ── FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 64px; margin-top: 48px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-body); font-size: 0.97rem; color: var(--slate); background: var(--warm-white); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.contact-aside { background: var(--cream); border-radius: 4px; padding: 38px 34px; }
.contact-aside h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 18px; }
.contact-aside p { font-size: 0.95rem; color: var(--slate-mid); margin-bottom: 14px; }
.contact-aside a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
footer { background: var(--slate); color: #B8BDC4; padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; }
.footer-logo { display: inline-block; text-decoration: none; }
.footer-logo img { height: 30px; width: auto; display: block; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #B8BDC4; text-decoration: none; font-size: 0.92rem; margin-bottom: 11px; }
.footer-col a:hover { color: var(--gold); }
.accred { margin-top: 48px; padding-top: 28px; border-top: 1px solid #3C4147; display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.accred span { font-size: 12px; letter-spacing: 0.08em; color: var(--slate-light); }
.accred .sep { color: #3C4147; }
.footer-bottom { margin-top: 24px; font-size: 12px; color: var(--slate-light); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .container { padding: 0 24px; }
  nav { padding: 0 24px; height: 64px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; box-shadow: 0 14px 30px rgba(44,48,53,0.08); }
  nav.open .nav-links { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-dd-menu { position: static; display: flex; box-shadow: none; border: none; padding: 0 0 8px 14px; min-width: 0; }
  .nav-dd > a::after { content: ''; }
  .hero-grid, .value-grid, .value-grid.even, .prose-split, .prose-split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .process, .two-col, .quote-row, .resource-grid, .more-row { grid-template-columns: 1fr; }
  .cred-list { columns: 1; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0; }
  .img-ph { min-height: 280px; }
  .article-body, .article-cta, .article-more { padding-left: 24px; padding-right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout { padding: 32px 26px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; transition: none; } }


/* personal statement (About) */
.personal-note { border-left: 2px solid var(--gold); padding-left: 30px; }
.personal-note .eyebrow { margin-bottom: 12px; }
.signoff { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--slate-mid); margin-top: 24px; }
@media (max-width: 880px) { .personal-note { padding-left: 22px; } }
