:root {
  --background: #f7f5ef;
  --soft-section: #efeae1;
  --ink: #30362f;
  --muted-text: #646a61;
  --olive: #586253;
  --clay: #a46f5b;
  --quiet-gold: #b79a5a;
  --line: rgba(48, 54, 47, 0.16);
  --footer: #272b26;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--muted-text);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--quiet-gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--olive);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 560;
  line-height: 1.32;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 3vw, 2.125rem);
  line-height: 1.25;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.42rem);
  line-height: 1.28;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, 840px);
}

.section {
  padding: clamp(3.4rem, 6vw, 5.8rem) 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 0.75rem clamp(1rem, 4vw, 2.4rem);
  border-bottom: 1px solid rgba(48, 54, 47, 0.1);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 230px;
}

.brand__mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.brand__logo {
  width: 238px;
  height: auto;
  object-fit: contain;
}

.brand__tagline {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.15;
  white-space: nowrap;
}

.brand__fallback {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 720;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 560;
}

.site-nav a,
.text-link {
  position: relative;
  width: fit-content;
}

.site-nav a {
  padding: 0.35rem 0;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--quiet-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 170ms ease, opacity 170ms ease;
}

.hero {
  position: relative;
  padding-top: clamp(2.5rem, 5vw, 4.2rem);
  padding-bottom: clamp(2.8rem, 5vw, 4.6rem);
  border-bottom: 1px solid rgba(183, 154, 90, 0.24);
  background:
    radial-gradient(circle at 82% 16%, rgba(183, 154, 90, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 38%),
    var(--background);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(48, 54, 47, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 54, 47, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.hero__content {
  max-width: 940px;
}

.practice-title {
  max-width: 940px;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.4vw, 3.4rem);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.08;
}

.person-line {
  margin-bottom: 0.08rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 620;
}

.role-line {
  margin-bottom: 1.8rem;
  color: var(--olive);
  font-size: 0.97rem;
}

.hero__lead {
  max-width: 740px;
  margin-bottom: 1.35rem;
  color: var(--muted-text);
  font-size: 1rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.2;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.button--primary {
  background: var(--ink);
  color: var(--background);
}

.button--primary:hover {
  background: var(--olive);
}

.button--secondary,
.button--outline-light {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover,
.button--outline-light:hover {
  border-color: rgba(88, 98, 83, 0.42);
  background: rgba(88, 98, 83, 0.06);
}

.button--light {
  background: var(--ink);
  color: var(--background);
}

.button--light:hover {
  background: var(--olive);
}

.intro {
  border-top: 0;
  border-bottom: 0;
  background: var(--soft-section);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.intro__grid {
  display: grid;
  width: min(100% - 2rem, 900px);
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.intro__image {
  position: relative;
  margin: 0;
  max-width: 300px;
  border: 1px solid rgba(164, 111, 91, 0.24);
  border-radius: 4px;
  padding: 0.75rem 0.75rem 0.85rem;
}

.intro__image::before {
  display: none;
}

.intro__image img {
  position: relative;
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: saturate(0.72) contrast(0.9) brightness(1.04);
  height: auto;
}

.intro__image figcaption {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 0.1rem;
  color: var(--olive);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.4;
}

.intro__text h2 {
  max-width: 500px;
}

.intro__copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  color: var(--muted-text);
  font-size: 1.02rem;
}

.intro__copy p:first-child {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.6;
}

.reach {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  background: rgba(231, 235, 221, 0.46);
}

.reach__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 1.15rem 2rem;
  align-items: center;
}

.reach__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem;
}

.reach__stats div {
  border-left: 1px solid rgba(164, 111, 91, 0.28);
  padding-left: 1rem;
}

.reach__stats strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 660;
  line-height: 1;
}

.reach__stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.35;
}

.reach__link {
  justify-self: end;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(1.7rem, 3.5vw, 2.5rem);
}

.section-intro {
  max-width: 760px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 1.6rem;
  max-width: none;
  align-items: end;
}

.section-heading--wide p:last-child {
  color: var(--muted-text);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card p {
  flex: 1;
  margin-bottom: 1.2rem;
}

.text-link {
  display: inline-flex;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 640;
  padding-bottom: 0.18rem;
}

.text-link:hover {
  color: var(--olive);
}

.section--sand {
  border-top: 1px solid rgba(48, 54, 47, 0.1);
  background: var(--soft-section);
  padding-top: clamp(2.2rem, 4.5vw, 3.4rem);
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.approach-grid::before {
  display: none;
}

.approach-step {
  position: relative;
  min-height: 260px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
  background: #f7f1e6;
}

.approach-step:last-child {
  border-right: 0;
}

.approach-step:nth-child(2) {
  background: #f1e2d8;
}

.approach-step:nth-child(3) {
  background: #e7ebdd;
}

.approach-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(48, 54, 47, 0.18);
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.5);
  color: var(--olive);
}

.approach-step__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.approach-step:nth-child(2) .approach-step__icon {
  color: var(--clay);
}

.approach-step:nth-child(3) .approach-step__icon {
  color: var(--olive);
}

.approach-step span {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-bottom: 1.15rem;
  color: var(--quiet-gold);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 560;
  line-height: 1;
}

.approach-step:nth-child(2) span {
  color: var(--clay);
}

.approach-step:nth-child(3) span {
  color: var(--olive);
}

.approach-step h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2vw, 1.65rem);
}

.approach-step p {
  max-width: 300px;
  margin-bottom: 0;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.workshop-panel {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: rgba(239, 234, 225, 0.5);
}

.workshop-panel__subtitle {
  width: fit-content;
  margin-bottom: 0.7rem;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1.45;
}

.workshop-panel p:not(.workshop-panel__subtitle) {
  flex: 1;
  margin-bottom: 1.25rem;
}

.workshop-panel .button {
  width: fit-content;
}

.school-note {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.55rem;
}

.school-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 620;
  line-height: 1.45;
}

.about {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--background) 0%, rgba(231, 235, 221, 0.46) 100%);
}

.about__grid {
  max-width: 860px;
}

.about__grid::after {
  display: block;
  clear: both;
  content: "";
}

.portrait-space {
  float: left;
  margin: 0;
  width: 218px;
  height: 218px;
  margin-right: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  border-radius: 4px;
  background: var(--soft-section);
  overflow: hidden;
}

.portrait-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center;
}

.about__copy {
  color: var(--muted-text);
}

.about__eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.sun-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--quiet-gold);
}

.sun-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.about__statement {
  max-width: 680px;
  margin-bottom: 1.3rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 560;
  line-height: 1.45;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.45rem;
}

.about__credentials span {
  border: 1px solid rgba(88, 98, 83, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  background: rgba(247, 245, 239, 0.58);
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.final-cta {
  border-top: 1px solid var(--line);
  background: var(--soft-section);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.final-cta p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.site-footer {
  padding: 2.4rem 0;
  background: var(--footer);
  color: rgba(247, 245, 239, 0.72);
}

.site-footer h2 {
  margin-bottom: 0.35rem;
  color: var(--background);
  font-size: 1.12rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
}

.site-footer__contact {
  text-align: right;
}

.site-footer a {
  color: var(--background);
}

.academy-line {
  max-width: 560px;
  margin-bottom: 0.65rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 96px;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0.4rem;
    background: var(--background);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.75rem 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .intro__copy,
  .intro__grid,
  .reach__inner,
  .section-heading--wide,
  .final-cta__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .reach__inner {
    align-items: start;
  }

  .reach__link {
    justify-self: start;
  }

  .intro__image {
    max-width: 320px;
  }

  .intro__text {
    order: 1;
  }

  .intro__image {
    order: 2;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid::before {
    display: none;
  }

  .service-card,
  .service-card:last-child,
  .approach-step,
  .approach-step:last-child {
    border-right: 0;
  }

  .service-card,
  .approach-step {
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .approach-step {
    border-right: 0;
    padding-left: clamp(1.5rem, 3vw, 2.2rem);
  }

  .approach-step span {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0;
    font-size: 1.55rem;
  }

  .service-card:last-child,
  .approach-step:last-child {
    border-bottom: 0;
  }

  .approach-grid {
    border-bottom: 1px solid var(--line);
  }

  .site-footer__contact {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container,
  .container--narrow {
    width: min(100% - 1.25rem, 1080px);
  }

  .intro__grid {
    width: min(100% - 1.25rem, 900px);
  }

  .site-header {
    min-height: 84px;
  }

  .brand {
    min-width: 180px;
  }

  .brand__logo {
    width: 188px;
  }

  .brand__tagline {
    font-size: 0.72rem;
  }

  .site-nav {
    top: 84px;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 2.8rem;
  }

  .hero__content {
    padding-left: 1rem;
  }

  .intro__image {
    max-width: none;
    padding: 0.6rem 0.6rem 0.75rem;
  }

  .intro__image img {
    aspect-ratio: auto;
  }

  .intro__image figcaption {
    margin-top: 0.7rem;
    font-size: 0.82rem;
  }

  .button-row,
  .button,
  .school-note .button {
    width: 100%;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .workshop-panel {
    min-height: auto;
  }

  .portrait-space {
    float: none;
    width: 190px;
    height: 190px;
    margin: 0 0 1.25rem;
  }

  .final-cta .button-row {
    margin-top: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
