:root {
  --burgundy: #903749;
  --burgundy-dark: #7a2d3d;
  --burgundy-deep: #5c1f2c;
  --cream: #faf1e4;
  --cream-deep: #f5e7d0;
  --ink: #2a1116;
  --nav-h: 68px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: "Mulish", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--burgundy);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 900; letter-spacing: -0.01em; margin: 0; }

/* ---------- nav ---------- */
.nav {
  background: var(--burgundy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  min-height: var(--nav-h);
}
.brand { justify-self: start; display: inline-block; }
.brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  gap: 26px;
  justify-self: center;
  justify-content: center;
}
.nav-inner > .btn { justify-self: end; }
.nav-links a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
.nav-links a:hover { opacity: 1; text-decoration: underline; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 800;
  text-align: center;
  border-radius: 14px;
  padding: 10px 18px;
  line-height: 1.2;
  transition: transform .08s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  font-size: 15px;
}
.btn:active { transform: translateY(1px); }
.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.18); }
.btn-solid-dark {
  background: var(--burgundy);
  color: #fff;
}
.btn-solid-dark:hover { background: var(--burgundy-dark); }
.btn-outline-dark {
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--burgundy); color: #fff; }
.btn-lg { font-size: 18px; padding: 16px 26px; border-radius: 18px; }

/* ---------- hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  background: linear-gradient(to bottom, rgba(144,55,73,0) 0%, rgba(144,55,73,0) 55%, rgba(144,55,73,1) 100%);
  min-height: 820px;
  display: flex;
  align-items: flex-start;
}
.hero-content {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 56px 28px 72px;
  display: block;
  text-align: center;
}
.hero-content h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  max-width: 1000px;
  margin: 0 auto;
}
.hero-sub {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 28px);
  margin: 22px auto 0;
  max-width: 780px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.65), 0 1px 1px rgba(0,0,0,1);
}

/* ---------- intro band ---------- */
.intro-band {
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  padding: 40px 20px 12px;
}
.intro-band p {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 auto;
  max-width: 960px;
}

/* ---------- pillars ---------- */
.pillars {
  background: var(--burgundy);
  color: #fff;
  padding: 28px 28px 56px;
}
.pillars-grid {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}
.pillar h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
  opacity: 0.97;
  max-width: 260px;
  margin: 0 auto;
}
.pillars-cta {
  text-align: center;
  margin-top: 36px;
}
.pillars-cta .btn {
  background: var(--cream);
  color: var(--burgundy);
  border: none;
}
.pillars-cta .btn:hover { background: #fff; }

/* ---------- bio ---------- */
.bio {
  background: var(--cream);
  color: var(--ink);
  padding: 72px 28px;
}
.bio-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 52px;
  align-items: center;
}
.bio-text h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 22px;
}
.bio-text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--burgundy-deep);
  margin: 0 0 14px;
}
.bio-ctas {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.bio-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(92, 31, 44, 0.18);
}

/* ---------- testimonials ---------- */
.testimonials {
  background: var(--burgundy);
  color: #fff;
  padding: 80px 28px 64px;
}
.t-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.testimonials blockquote {
  margin: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 36px 26px 22px;
  font-size: 17px;
  line-height: 1.55;
  grid-column: span 2;
}
.testimonials blockquote::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: 16px;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.testimonials blockquote p {
  margin: 0 0 14px;
  font-weight: 700;
}
.testimonials cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.9;
}
.testimonials blockquote:nth-child(4) { grid-column: 2 / span 2; }
.testimonials blockquote:nth-child(5) { grid-column: 4 / span 2; }
.t-cta { text-align: center; margin-top: 48px; }

/* ---------- practice ---------- */
.practice {
  background: var(--cream);
  color: var(--burgundy-deep);
  padding: 72px 28px;
}
.practice-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.practice-text { width: 100%; }
.practice-text h2 {
  font-size: clamp(30px, 3vw, 42px);
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 16px;
}
.practice-text p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: center;
}
.practice-text ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.practice-text li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}
.practice-text li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--burgundy);
}
.practice-cta { margin-top: 4px; }

/* ---------- bio page ---------- */
.bio-page {
  background: var(--cream);
  color: var(--burgundy-deep);
  padding: 72px 28px 96px;
}
.bio-page-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.bio-page-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--burgundy);
  text-align: center;
  margin: 0 0 40px;
}
.bio-flow::after {
  content: "";
  display: block;
  clear: both;
}
.bio-flow a,
.bio-bottom-text a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.bio-flow a:hover,
.bio-bottom-text a:hover { opacity: 0.8; }
.bio-flow p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--burgundy-deep);
  margin: 0 0 14px;
}
.bio-float-left,
.bio-float-right {
  width: 44%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(92, 31, 44, 0.18);
  margin-bottom: 18px;
}
.bio-float-left {
  float: left;
  margin-right: 28px;
  margin-top: 6px;
}
.bio-float-right {
  float: right;
  margin-left: 28px;
  margin-top: 6px;
}
.bio-bottom-row {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-top: 8px;
}
.bio-bottom-text { flex: 1; min-width: 0; }
.bio-bottom-text p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--burgundy-deep);
  margin: 0 0 14px;
}
.bio-bottom-text p:last-child { margin-bottom: 0; }
.bio-bottom-img {
  width: 44%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(92, 31, 44, 0.18);
  display: block;
}
.bio-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--burgundy);
  color: #fff;
  padding: 44px 28px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.socials {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
}
.socials a:hover { text-decoration: underline; }
.footer-logo { text-align: center; }
.footer-logo img { height: 42px; display: inline-block; }
.contact { text-align: right; }
.contact p { margin: 0; font-weight: 700; line-height: 1.5; }
.contact a { text-decoration: underline; }
.contact a:hover { opacity: 0.85; }

/* ---------- under construction page ---------- */
.uc {
  background: var(--burgundy);
  color: #fff;
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 28px;
}
.uc-inner { text-align: center; max-width: 640px; }
.uc-symbol { width: 64px; margin: 0 auto 24px; opacity: 0.9; filter: brightness(0) invert(1); }
.uc h1 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; }
.uc p { font-size: 18px; margin-bottom: 28px; opacity: 0.95; }
.uc a { color: #fff; text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    padding: 10px 14px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .brand img { height: 24px; }
  .nav-inner > .btn-outline-light {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    padding: 6px 10px;
    font-size: 11px;
    border-width: 1.5px;
    border-radius: 10px;
    line-height: 1.15;
  }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    justify-self: center;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .nav-links a {
    font-size: 12px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0;
  }
  .hero-content { grid-template-columns: 1fr; }
  .hero-sub { text-align: left; }
  .pillars-grid { grid-template-columns: 1fr; gap: 28px; }
  .bio-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .testimonials blockquote,
  .testimonials blockquote:nth-child(4),
  .testimonials blockquote:nth-child(5) { grid-column: 1 / -1; }
  .practice-grid { grid-template-columns: 1fr; text-align: center; }
  .practice-text ul { display: inline-block; text-align: left; }
  .bio-float-left,
  .bio-float-right {
    float: none;
    width: 100%;
    margin: 0 0 22px;
  }
  .bio-bottom-row { flex-direction: column; align-items: stretch; gap: 22px; }
  .bio-bottom-img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .socials { flex-direction: row; justify-content: center; gap: 18px; }
  .contact { text-align: center; }
}
