/* Sadé Lancaster — Homepage V1
   No external font or framework dependencies.
   Typography is intentionally a placeholder until final brand fonts are selected.
*/

:root {
  --ivory: #fbf6f2;
  --cream: #f5e9e3;
  --rose: #d52a64;
  --rose-deep: #8d1f47;
  --blush: #f2d9e2;
  --gold: #b58a43;
  --gold-pale: #ead9b7;
  --ink: #231f20;
  --muted: #6f6668;
  --white: #fffdfb;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(64, 32, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 242, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(35, 31, 32, .08);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}
.wordmark-sade {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  color: var(--rose);
}
.wordmark-last {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.logo-wordmark {
  align-items: center;
}
.site-logo {
  display: block;
  width: 168px;
  height: auto;
}
.footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .9rem;
}
.primary-nav a {
  text-decoration: none;
  font-weight: 650;
}
.primary-nav a:not(.nav-cta):hover { color: var(--rose); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 16px;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--ivory);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 9px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 105px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: -170px;
  border: 54px solid var(--blush);
  border-radius: 50%;
  opacity: .55;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 72px;
}
.eyebrow, .section-kicker {
  margin: 0 0 20px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .19em;
  color: var(--rose-deep);
}
.eyebrow span { color: var(--gold); padding: 0 5px; }
.hero h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 6.3vw, 6.5rem);
  line-height: .96;
}
.hero h1 em {
  color: var(--rose);
  font-weight: 500;
}
.hero-lede {
  max-width: 690px;
  margin: 32px 0 0;
  font-size: 1.17rem;
  color: #4d4547;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .025em;
  transition: .2s ease;
}
.button-primary {
  background: var(--rose);
  color: white;
  border: 1px solid var(--rose);
}
.button-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}
.button-text {
  padding-inline: 0;
  min-height: auto;
  border-bottom: 1px solid var(--gold);
}
.button-text span { margin-left: 8px; }
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 58px 0 0;
}
.proof-row div {
  border-top: 1px solid var(--gold-pale);
  padding-top: 14px;
}
.proof-row dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  color: var(--rose-deep);
}
.proof-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.hero-visual {
  position: relative;
  min-height: 600px;
}
.portrait-frame {
  position: absolute;
  z-index: 3;
  inset: 0 12px 72px 42px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.gold-card {
  position: absolute;
  z-index: 1;
  width: 64%;
  height: 58%;
  right: -7px;
  bottom: 10px;
  background: url("../assets/gold-texture.svg") center/cover no-repeat;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 45%;
  height: 54%;
  left: 0;
  bottom: 34px;
  background: var(--rose);
}
.portrait-note {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 7px;
  margin: 0;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--ivory);
  font-size: .75rem;
  letter-spacing: .06em;
}

/* Intro */
.intro {
  background: var(--ink);
  color: var(--ivory);
  padding: 100px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 60px;
}
.intro .section-kicker { color: var(--gold-pale); }
.intro h2 {
  margin: 0 0 28px;
  max-width: 800px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
}
.intro p {
  max-width: 850px;
  color: #e4dbd7;
}
.intro .large-copy {
  font-size: 1.25rem;
  color: var(--white);
}

/* Generic section heading */
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading h2, .recognition h2, .credentials h2, .insights h2, .contact h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 1.04;
}
.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  max-width: 520px;
}

/* Expertise */
.expertise { background: var(--white); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd0cb;
  border-left: 1px solid #ddd0cb;
}
.expertise-card {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid #ddd0cb;
  border-bottom: 1px solid #ddd0cb;
  position: relative;
}
.card-num {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
}
.expertise-card h3 {
  margin: 54px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}
.expertise-card p {
  max-width: 500px;
  color: var(--muted);
  margin: 0;
}

/* Experience */
.experience-strip {
  padding: 40px 0 52px;
  background: var(--blush);
}
.experience-strip .section-kicker { margin-bottom: 22px; }
.org-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}
.org-row span {
  padding-top: 18px;
  border-top: 1px solid rgba(35,31,32,.18);
}

/* Recognition */
.recognition { background: var(--ivory); }
.recognition-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 78px;
  align-items: center;
}
.recognition-intro p:not(.section-kicker) {
  color: var(--muted);
  max-width: 520px;
}
.recognition-panel {
  position: relative;
  background: var(--rose-deep);
  color: white;
  padding: 52px;
  overflow: hidden;
}
.recognition-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 28px solid rgba(255,255,255,.10);
  border-radius: 50%;
  right: -90px;
  bottom: -90px;
}
.panel-label {
  margin: 0 0 24px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
  color: var(--gold-pale);
}
.recognition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recognition-tags span {
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 11px;
  font-size: .8rem;
}
blockquote {
  position: relative;
  z-index: 2;
  margin: 42px 0 18px;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.18;
}
.quote-source {
  margin: 0;
  font-size: .8rem;
  color: #f3dce4;
}

/* Credentials */
.credentials { background: var(--white); }
.credentials-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.credential-photo {
  position: relative;
  max-height: 640px;
  overflow: hidden;
  border-bottom: 18px solid var(--gold);
}
.credential-photo img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 28%;
}
.credential-copy > p:not(.section-kicker) {
  color: var(--muted);
  max-width: 650px;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}
.badge-list span {
  padding: 10px 13px;
  background: var(--cream);
  border-left: 3px solid var(--rose);
  font-size: .83rem;
  font-weight: 700;
}
.degree-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}
.degree-line {
  display: grid;
  gap: 3px;
  padding: 22px 0;
  border-top: 1px solid #ddd0cb;
}
.degree-line:last-child {
  border-bottom: 1px solid #ddd0cb;
}
.degree-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.degree-line span { color: var(--muted); }

/* Insights */
.insights {
  background: var(--cream);
}
.insights-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 90px;
  align-items: start;
}
.insights p:not(.section-kicker) {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.08rem;
}
.insights .coming-soon {
  margin-top: 26px;
  font-weight: 800;
  color: var(--rose-deep) !important;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--rose);
  color: white;
}
.contact::before {
  content: "";
  position: absolute;
  inset: auto -110px -140px auto;
  width: 370px;
  height: 370px;
  border: 48px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
}
.section-kicker.light { color: var(--gold-pale); }
.contact h2 { max-width: 940px; }
.contact p:not(.section-kicker) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  margin: 24px 0 0;
}
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.button-light {
  background: white;
  color: var(--rose-deep);
  border: 1px solid white;
}
.button-light:hover { background: var(--ivory); }
.button-outline-light {
  border: 1px solid rgba(255,255,255,.72);
  color: white;
}
.button-outline-light:hover { background: rgba(255,255,255,.1); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d9ceca;
  padding: 38px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}
.footer-inner p { margin: 0; font-size: .78rem; }
.copyright { color: #a99e9a; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .recognition-grid,
  .credentials-grid,
  .section-heading,
  .insights-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 48px; }
  .hero-visual { min-height: 630px; max-width: 640px; }
  .proof-row { max-width: 650px; }
  .section-heading { gap: 22px; }
  .recognition-grid, .credentials-grid, .insights-grid { gap: 52px; }
  .org-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 760px) {
  .site-logo { width: 142px; }
  .footer-logo { width: 132px; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 78px 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(35,31,32,.10);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 0; }
  .nav-cta { border: 0; padding: 13px 0 !important; color: var(--rose-deep); }
  .hero { padding: 58px 0 80px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-lede { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .proof-row { grid-template-columns: 1fr; gap: 14px; }
  .hero-visual { min-height: 515px; }
  .portrait-frame { inset: 0 5px 62px 26px; }
  .intro { padding: 76px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 250px; padding: 28px; }
  .expertise-card h3 { margin-top: 38px; }
  .org-row { grid-template-columns: 1fr; }
  .recognition-panel { padding: 34px 28px; }
  .credential-photo img { height: 500px; }
  .contact-actions { flex-direction: column; align-items: stretch; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
