/* Albright AI Agency - design system (hybrid: dark hero + light body, sibling of Women Run AI) */
@font-face { font-family: "Playfair Display"; font-weight: 600; font-style: normal; font-display: swap; src: url("/fonts/playfair-display-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-weight: 700; font-style: normal; font-display: swap; src: url("/fonts/playfair-display-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-weight: 600; font-style: italic; font-display: swap; src: url("/fonts/playfair-display-latin-600-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 400; font-style: normal; font-display: swap; src: url("/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 500; font-style: normal; font-display: swap; src: url("/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-style: normal; font-display: swap; src: url("/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 700; font-style: normal; font-display: swap; src: url("/fonts/inter-latin-700-normal.woff2") format("woff2"); }

:root {
  /* light body */
  --ink: #1b1b3a;
  --ink-soft: #4a4a6e;
  --paper: #f8f7fd;
  --paper-deep: #eeedf9;
  --plum-tint: #e9e7fa;
  --line: #e0def0;
  --card: #ffffff;
  /* dark brand */
  --plum: #2b2470;
  --indigo-deep: #191540;
  --navy: #14112f;
  --nav: #4c40c4;
  --peri: #8b84ea;
  --peri-soft: #a9a2f2;
  --gold: #d9b23a;
  --gold-deep: #8f7113;
  --btn: #5346c9;
  --btn-dark: #4338a8;
  --btn-bright: #6a5ae0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 27, 58, 0.08);
  --shadow-dark: 0 10px 30px rgba(10, 8, 30, 0.35);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
}
img { max-width: 100%; display: block; }
a { color: var(--btn-dark); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--peri);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy);
  color: #fff; padding: 0.6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; line-height: 1.3; }
.eyebrow {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1rem;
}
.gold-i { font-style: italic; color: var(--gold); font-weight: 600; }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 42em; }

/* Header - bright blurple like the original site */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.25rem; max-width: 1100px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; text-decoration: none; }
.logo span { color: #cfc9ff; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.45rem 0.8rem; border-radius: 8px; }
.nav-links a:hover { background: rgba(255, 255, 255, 0.15); }
.nav-links a[aria-current="page"] { background: #fff; color: var(--nav); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.4); border-radius: 8px; padding: 0.45rem 0.7rem; font-size: 1.15rem; cursor: pointer; color: #fff; }

/* Buttons */
.btn {
  display: inline-block; padding: 0.85rem 1.6rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease; border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--btn); color: #fff; }
.btn-primary:hover { background: var(--btn-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-light:hover { border-color: #fff; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.nav-links a.btn-primary.btn-sm { background: var(--navy); color: #fff; }
.nav-links a.btn-primary.btn-sm:hover { background: #0f0d2b; }

/* Sections */
section { padding: 4.5rem 0; }

/* Hero - immersive dark indigo on every page */
.hero {
  padding: 4.5rem 0 5rem; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--plum) 0%, var(--indigo-deep) 78%);
}
.hero::after {
  content: ""; position: absolute; right: -12rem; top: -14rem; width: 38rem; height: 38rem;
  background: radial-gradient(circle at center, rgba(106, 90, 224, 0.4) 0%, transparent 68%);
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1, .hero h2 { color: #fff; }
.hero .eyebrow { color: var(--gold); }
.hero .lead { color: #d9d6f5; margin: 1.4rem 0 2.2rem; }
.hero .cta-note { color: #c9c6ec; }
.hero .btn-primary { background: #fff; color: var(--plum); }
.hero .btn-primary:hover { background: #e9e6ff; color: var(--plum); }
.hero .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.hero .btn-secondary:hover { border-color: #fff; }
.hero a { color: var(--peri-soft); }

.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cta-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.9rem; }

/* Hero with photo - soft spotlight glow */
.hero-photo { padding-bottom: 0; }
.hero-grid { display: flex; gap: 2rem; align-items: flex-end; }
.hero-copy { flex: 1; padding-bottom: 3.5rem; }
.hero-figure { flex: 0 0 550px; align-self: flex-end; position: relative; margin-right: 2rem; }
.hero-figure::before {
  content: ""; position: absolute; left: 50%; bottom: -8rem; transform: translateX(-50%);
  width: 46rem; height: 46rem; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(139, 132, 234, 0.32) 0%, rgba(106, 90, 224, 0.16) 40%, transparent 66%);
  pointer-events: none;
}
.hero-figure picture { position: relative; display: block; }
.hero-figure img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 18px 40px rgba(6, 4, 24, 0.5));
  -webkit-mask-image: linear-gradient(to bottom, #000 92%, rgba(0, 0, 0, 0.25) 100%);
  mask-image: linear-gradient(to bottom, #000 92%, rgba(0, 0, 0, 0.25) 100%);
}

/* Photos in body sections */
.photo { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }
.split { display: flex; gap: 2.5rem; align-items: center; }
.split > div { flex: 1; }
.split .photo { flex: 0 0 38%; max-width: 38%; }
.avatar { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; object-fit: cover; }

/* Dark bands (also used as page closers) */
.band { background: var(--navy); }
.band h2, .band h3 { color: #fff; }
.band .lead, .band p { color: #c9c6ec; }
.band a:not(.btn) { color: var(--peri-soft); }
.band .btn-primary, .band-plum .btn-primary { background: #fff; color: var(--plum); }
.band .btn-primary:hover, .band-plum .btn-primary:hover { background: #e9e6ff; color: var(--plum); }
.band .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.band-plum { background: linear-gradient(135deg, var(--plum), var(--nav)); }
.tint { background: var(--plum-tint); }
.tint-warm { background: var(--paper-deep); }

/* Cards + grids */
.grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card .num {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--btn);
  font-weight: 700; display: block; margin-bottom: 0.6rem;
}
.card-link { font-weight: 700; text-decoration: none; display: inline-block; margin-top: 1rem; }

/* Stat strip */
.stats { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2.2rem; }
.stat b { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 0.92rem; color: var(--ink-soft); }
.band .stat span { color: #c9c6ec; }

/* Quotes */
.quote { border-left: 4px solid var(--gold); padding-left: 1.3rem; }
.quote p { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; color: var(--ink); }
.quote footer { margin-top: 0.8rem; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }
.quote-who { display: flex; align-items: center; gap: 0.7rem; }
.quote-who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }

/* Curriculum list */
.weeks { list-style: none; margin-top: 2rem; }
.weeks li { display: flex; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.weeks .wk { font-family: var(--font-display); font-weight: 700; color: var(--btn-dark); min-width: 5.6rem; }
.weeks b { font-size: 1.05rem; }
.weeks p { color: var(--ink-soft); font-size: 0.98rem; }

/* Checklist */
.checks { list-style: none; margin-top: 1.4rem; }
.checks li { padding-left: 1.9rem; position: relative; margin-bottom: 0.7rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 800; }
.band .checks li::before, .tint .checks li::before { color: var(--gold-deep); }

/* People */
.person { display: flex; gap: 1.4rem; align-items: flex-start; }
.monogram {
  flex: 0 0 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--btn-bright));
}

/* Forms - light for maximum completion */
form.contact { max-width: 560px; margin-top: 2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.95rem; }
.hero .field label { color: #fff; }
.field input, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 3px solid var(--peri); border-color: var(--btn); }
.hidden { display: none; }

/* Embeds */
.embed-frame { width: 100%; min-height: 760px; border: 0; border-radius: var(--radius); background: #fff; }

/* Footer */
.site-footer { background: var(--navy); color: #c9c6ec; padding: 3.5rem 0 2.5rem; margin-top: 0; }
.site-footer .logo { color: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.site-footer b { color: #fff; }
.site-footer ul { list-style: none; margin-top: 0.8rem; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: #c9c6ec; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* Price */
.price-box { text-align: center; }
.price-box .amount { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--ink); line-height: 1; }
.price-box .terms { color: var(--ink-soft); margin-top: 0.6rem; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .person { flex-direction: column; }
  .hero-grid { flex-direction: column; align-items: flex-start; }
  .hero-copy { padding-bottom: 0; }
  .hero-figure { flex: none; width: min(300px, 78%); margin: 2.5rem auto 0; align-self: center; }
  .hero-figure::before { width: 28rem; height: 28rem; bottom: -4rem; }
  .split { flex-direction: column; }
  .split .photo { flex: none; max-width: 100%; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--nav); border-bottom: 1px solid rgba(255,255,255,0.2);
    flex-direction: column; padding: 1.2rem 1.5rem; gap: 0.6rem; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 4rem 0 3.5rem; }
  section { padding: 3.2rem 0; }
  .stats { gap: 1.8rem; }
}
