/*
Theme Name: O'Donnell 2026
Description: Modern child/teen/college practice site for Dr. Adria O'Donnell
Version: 1.0
*/

:root {
  --ink: #1b2428;
  --muted: #5b6663;
  --paper: #f4efe6;
  --card: #fffdf8;
  --teal: #2d5c5a;
  --teal-deep: #1c3f3e;
  --clay: #c25b3e;
  --line: #e2d8c8;
  --shadow: 0 18px 50px rgba(28, 40, 38, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: var(--teal-deep); }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header.site {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 24px;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560; font-size: 1.15rem;
  text-decoration: none; color: var(--ink);
  letter-spacing: -0.02em;
}
.brand span { display: block; font-family: "Source Sans 3", sans-serif; font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
nav.links { display: flex; gap: 22px; flex-wrap: wrap; }
nav.links a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
nav.links a:hover { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: white; text-decoration: none;
  border: 0; border-radius: 999px; padding: 12px 20px;
  font-weight: 600; cursor: pointer;
}
.btn.light { background: white; color: var(--teal-deep); border: 1px solid var(--line); }
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center; padding: 64px 0 40px;
}
.kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; color: var(--teal); font-weight: 700; }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; letter-spacing: -0.03em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 10px 0 16px; font-weight: 560; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 12px; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.hero-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.grid-3, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 1.35rem; }
section { padding: 28px 0 10px; }
.photo-band { margin: 36px 0; border-radius: 28px; overflow: hidden; min-height: 280px; }
.photo-band img { width: 100%; height: 320px; object-fit: cover; }
blockquote {
  margin: 0; padding: 8px 0 8px 18px;
  border-left: 3px solid var(--clay);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem; font-weight: 500;
}
footer.site { margin-top: 70px; padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; }
.note { font-size: 0.9rem; color: var(--muted); }
.gate {
  max-width: 460px; background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: 28px; box-shadow: var(--shadow);
}
input[type="password"], input[type="text"], input[type="email"], textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); font: inherit; background: white;
}
.hidden { display: none; }
.form-list { list-style: none; padding: 0; }
.form-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
@media (max-width: 860px) {
  .hero, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  nav.links { display: none; }
}
