/* Deliberate Prep — site styles */
:root {
  --navy: #22405F;
  --navy-mid: #4C7093;
  --navy-light: #9BB8D2;
  --cream: #F5F0E6;
  --cream-card: #FBF8F1;
  --rule: #E7DCC6;
  --gold: #F2B03C;
  --ink: #1E2B3B;
  --serif: 'Young Serif', Georgia, serif;
  --sans: 'Source Sans 3', Arial, sans-serif;
  --max: 1160px;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); font-family: var(--sans); color: var(--ink); }
a { text-decoration: none; color: var(--navy); }
a:hover { color: var(--gold); }
img { display: block; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

/* Header */
header { display: flex; align-items: center; justify-content: space-between; padding: 14px 48px; border-bottom: 1px solid var(--rule); }
.brand { display: flex; gap: 12px; align-items: center; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--serif); letter-spacing: 0.26em; font-size: 16px; color: var(--navy); }
.brand-name.small { font-size: 13px; }
.brand-tag { font-weight: 600; font-size: 8px; letter-spacing: 0.28em; color: var(--navy-mid); }
header nav { display: flex; gap: 28px; align-items: center; }
header nav a { font-weight: 600; font-size: 15px; color: var(--navy-mid); }
header nav a.nav-active { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 3px; }

/* Buttons */
.btn { padding: 12px 24px; border-radius: 6px; font-weight: 600; font-size: 16px; white-space: nowrap; display: inline-block; }
header .btn { padding: 10px 20px; font-size: 15px; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #E0A231; color: var(--navy); }
.btn-secondary { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }

/* Layout helpers */
.wrap { max-width: var(--max); margin: 0 auto; width: 100%; }
.eyebrow { font-weight: 600; font-size: 12px; letter-spacing: 0.28em; color: var(--navy-mid); }
.card { background: var(--cream-card); border: 1px solid var(--rule); border-radius: 10px; padding: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Home */
.hero { display: flex; align-items: center; gap: 64px; padding: 80px 48px; max-width: var(--max); margin: 0 auto; }
.hero-copy { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: 52px; color: var(--navy); margin: 0; line-height: 1.12; text-wrap: pretty; }
.hero p { font-size: 18px; line-height: 1.65; margin: 0; max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { width: 430px; flex: none; }
.section { padding: 0 48px 72px; max-width: var(--max); margin: 0 auto; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; color: var(--navy); margin: 0 0 10px; }
.card p { font-size: 15px; line-height: 1.65; margin: 0; }
.band { background: var(--navy); padding: 56px 48px; }
.band-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.band h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; color: var(--cream); margin: 0 0 10px; }
.band p { font-size: 16px; color: var(--navy-light); max-width: 60ch; line-height: 1.6; margin: 0; }
.band .btn { flex: none; }

/* Footer */
footer { padding: 36px 48px; }
footer.bordered { border-top: 1px solid var(--rule); }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-contact, .footer-contact a { font-size: 13px; color: var(--navy-mid); }

/* Tutoring */
.page-head { padding: 72px 48px 48px; max-width: var(--max); margin: 0 auto; }
.page-head h1 { font-family: var(--serif); font-weight: 400; font-size: 44px; color: var(--navy); margin: 14px 0 18px; line-height: 1.15; text-wrap: pretty; }
.page-head p { font-size: 18px; line-height: 1.65; margin: 0; max-width: 64ch; }
.step { padding: 24px; }
.step-num { font-family: var(--serif); font-size: 26px; color: var(--navy-light); }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--navy); margin: 8px 0; }
.step p { font-size: 14px; line-height: 1.6; margin: 0; }
.split { padding: 0 48px 72px; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.included ul { margin: 14px 0 0; padding-left: 18px; font-size: 15px; line-height: 2; }
.consult-card { background: var(--navy); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.consult-card h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; color: var(--cream); line-height: 1.3; margin: 0; }
.consult-card p { font-size: 14px; color: var(--navy-light); line-height: 1.6; margin: 0; }
.consult-card .btn { align-self: flex-start; padding: 11px 22px; font-size: 15px; }

/* Courses */
.centered { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 96px 48px; gap: 22px; }
.centered h1 { font-family: var(--serif); font-weight: 400; font-size: 42px; color: var(--navy); margin: 0; }
.centered p { font-size: 17px; line-height: 1.65; margin: 0; max-width: 54ch; }
.centered .actions { display: flex; gap: 12px; margin-top: 8px; }

/* About */
.bio { padding: 72px 48px 56px; max-width: var(--max); margin: 0 auto; display: flex; gap: 56px; align-items: flex-start; }
.portrait-col { flex: none; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.portrait { width: 280px; height: 340px; object-fit: cover; border-radius: 14px; background: var(--cream-card); border: 1px solid var(--rule); }
.portrait-caption { font-size: 13px; color: var(--navy-mid); text-align: center; }
.bio-copy { display: flex; flex-direction: column; gap: 18px; }
.bio-copy h1 { font-family: var(--serif); font-weight: 400; font-size: 42px; color: var(--navy); margin: 0; line-height: 1.15; text-wrap: pretty; }
.bio-copy p { font-size: 17px; line-height: 1.7; margin: 0; max-width: 62ch; }
.reviews-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 20px; flex-wrap: wrap; }
.reviews-nav { display: flex; gap: 10px; align-items: center; }
.reviews-nav span { font-size: 13px; color: var(--navy-mid); }
.reviews-nav button { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--navy); background: transparent; color: var(--navy); font-size: 16px; cursor: pointer; line-height: 1; }
.reviews-nav button:hover { background: var(--navy); color: var(--cream); }
.quote-card { display: flex; flex-direction: column; gap: 14px; }
.quote-rule { width: 40px; height: 5px; background: var(--gold); flex: none; }
.quote-text { font-size: 15px; line-height: 1.7; font-style: italic; flex: 1; }
.quote-who { font-size: 13px; color: var(--navy-mid); }
.reviews-link { margin-top: 14px; font-size: 12px; }
.reviews-link a { color: var(--navy-mid); }

/* Contact */
.contact { flex: 1; padding: 64px 48px 72px; max-width: var(--max); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-copy { display: flex; flex-direction: column; gap: 18px; }
.contact-copy h1 { font-family: var(--serif); font-weight: 400; font-size: 40px; color: var(--navy); margin: 0; line-height: 1.15; text-wrap: pretty; }
.contact-copy p { font-size: 17px; line-height: 1.7; margin: 0; }
.contact-note { background: var(--cream-card); border: 1px solid var(--rule); border-radius: 10px; padding: 20px 24px; font-size: 14px; line-height: 1.7; }
.contact-note a { font-weight: 600; color: var(--navy); }
.scheduler { background: var(--cream-card); border: 1px solid var(--rule); border-radius: 10px; overflow: hidden; min-height: 560px; display: flex; }
.scheduler iframe { border: none; width: 100%; min-height: 560px; }

/* Responsive */
@media (max-width: 900px) {
  header { flex-direction: column; gap: 14px; padding: 16px 24px; }
  header nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .hero { flex-direction: column-reverse; padding: 48px 24px; gap: 36px; }
  .hero h1 { font-size: 38px; }
  .hero-art { width: min(320px, 80%); }
  .section, .split, .page-head, .contact, .bio { padding-left: 24px; padding-right: 24px; }
  .grid-3, .grid-4, .split, .contact { grid-template-columns: 1fr; }
  .bio { flex-direction: column; align-items: center; }
  .bio-copy h1, .page-head h1, .centered h1, .contact-copy h1 { font-size: 32px; }
  .band { padding: 40px 24px; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
}
