:root {
  --bg: #faf6ee;
  --bg-2: #f1eadb;
  --ink: #1f1a17;
  --ink-2: #4a423c;
  --rule: #d8cdb6;
  --burgundy: #5c1a1b;
  --burgundy-2: #7a2528;
  --gold: #a98442;
  --cream-card: #fffaf0;
  --shadow: 0 30px 60px -30px rgba(60, 30, 20, 0.25);
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--burgundy-2); }

.wrap { width: min(1140px, 92%); margin: 0 auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.08; font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }

p { margin: 0 0 1em; color: var(--ink-2); }
.lede { font-size: 1.18rem; color: var(--ink); }

.eyebrow,
.section-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin: 0 0 1.1em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--burgundy);
  color: #f4ecd8;
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--burgundy);
  color: #fff !important;
  padding: 0.6rem 1.1rem;
  border-radius: 4px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--burgundy-2); }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.96rem;
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--burgundy); color: #fff; }
.btn-primary:hover { background: var(--burgundy-2); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Hero */
.hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(1100px 380px at 80% -10%, rgba(169, 132, 66, 0.10), transparent 60%),
    radial-gradient(900px 460px at 10% 110%, rgba(92, 26, 27, 0.06), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-marks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2.6rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--rule);
}
.hero-marks strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hero-marks span {
  font-size: 0.83rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.hero-card {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 2rem 2rem 1.6rem;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.hero-card p { font-size: 0.97rem; }
.brief {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.2rem;
  row-gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.92rem;
}
.brief dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: center;
}
.brief dd { margin: 0; color: var(--ink); font-weight: 500; }

/* Sections shared */
section { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-sub { color: var(--ink-2); font-size: 1.05rem; }

/* About */
.about { background: var(--bg-2); border-block: 1px solid var(--rule); }
.about-copy p:last-child { margin-bottom: 0; }

/* Practice cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 1.6rem; top: 0;
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #c9bb9e;
}
.card h3 { margin-top: 0.4rem; margin-bottom: 0.5rem; font-size: 1.22rem; }
.card p { font-size: 0.96rem; margin: 0; }

/* Approach */
.approach { background: var(--ink); color: #efe6d5; }
.approach h2, .approach h3 { color: #f4ecd8; }
.approach .section-label { color: var(--gold); }
.approach p { color: #c9bda5; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 2rem; }
.steps li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.step-n {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.step-body { min-width: 0; max-width: 720px; }
.step-body h3 { margin-bottom: 0.3rem; }
.step-body p { margin: 0; }
@media (max-width: 620px) {
  .steps li { grid-template-columns: 50px minmax(0, 1fr); gap: 1rem; }
  .step-n { font-size: 1.6rem; }
}

/* Practice groups */
.practice-group { margin-top: 3.5rem; }
.practice-group:first-of-type { margin-top: 0; }
.group-head {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  column-gap: 1.4rem;
  align-items: baseline;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.group-n {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.group-head h3 {
  font-size: 1.55rem;
  margin: 0;
  grid-column: 2;
}
.group-head p {
  grid-column: 2;
  margin: 0.4rem 0 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  max-width: 720px;
}
@media (max-width: 620px) {
  .group-head { grid-template-columns: 40px minmax(0, 1fr); column-gap: 1rem; }
  .group-n { font-size: 1.4rem; }
  .group-head h3 { font-size: 1.3rem; }
}

/* Voices */
.voices { background: var(--bg-2); border-block: 1px solid var(--rule); }
.voices h2 { margin-bottom: 2.5rem; max-width: 620px; }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quotes figure {
  margin: 0;
  padding: 1.8rem;
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.quotes blockquote {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}
.quotes figcaption {
  font-size: 0.83rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* Contact */
.contact .section-sub { max-width: 480px; }
.contact-list {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 1.6rem 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 1rem;
  font-size: 0.96rem;
}
.contact-list li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: baseline; }
.contact-list .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.contact-form {
  background: var(--cream-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.85rem; color: var(--ink-2); letter-spacing: 0.04em; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(92, 26, 27, 0.12);
}
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; }
.form-fine {
  font-size: 0.78rem;
  color: var(--ink-2);
  margin: 0.4rem 0 0;
  line-height: 1.55;
}
.form-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-status[data-kind="ok"]  { color: #2f6f3a; }
.form-status[data-kind="err"] { color: #8a1f23; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #c9bda5;
  padding: 4rem 0 1.6rem;
  font-size: 0.92rem;
}
.site-footer a { color: #e8ddc4; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #f4ecd8; margin-bottom: 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.brand-footer .brand-name { color: #f4ecd8; }
.brand-footer .brand-tag { color: #a39378; }
.brand-footer .brand-mark { background: #f4ecd8; color: var(--burgundy); }
.footer-blurb { color: #a39378; max-width: 420px; margin-top: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #8c7e64;
}

::selection { background: var(--burgundy); color: var(--bg); }
