:root {
  --sage-950: #1f342c;
  --sage-900: #30483e;
  --sage-800: #425f53;
  --sage-600: #718f80;
  --sage-200: #cad8cf;
  --sage-100: #e5ece6;
  --terracotta: #b96549;
  --terracotta-dark: #96503b;
  --ivory: #f6f1e7;
  --paper: #fffdf8;
  --ink: #2e302d;
  --muted: #6c716c;
  --line: rgba(48, 72, 62, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --shadow: 0 30px 75px rgba(31, 52, 44, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--sage-950);
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--sage-950);
  background: rgba(246, 241, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-initials {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--sage-900);
  border-radius: 50% 50% 6px 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 0.32rem;
  color: var(--terracotta-dark);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  content: "";
  left: 0;
}

.menu-toggle i::before {
  top: -7px;
}

.menu-toggle i::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] i {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-navigation {
  position: absolute;
  top: 76px;
  left: -1rem;
  right: -1rem;
  display: none;
  min-height: calc(100vh - 76px);
  padding: 2rem 1rem;
  color: var(--paper);
  background: var(--sage-950);
}

.site-navigation.is-open {
  display: grid;
  align-content: start;
}

.site-navigation a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  text-decoration: none;
}

.site-navigation .nav-contact {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: var(--terracotta);
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  gap: 3rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.3rem, 11vw, 8rem) 0 4rem;
}

.hero::before {
  position: absolute;
  content: "01";
  top: 2rem;
  right: 0;
  color: rgba(48, 72, 62, 0.07);
  font-family: var(--serif);
  font-size: clamp(7rem, 25vw, 15rem);
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--terracotta-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  color: var(--sage-950);
  font-size: clamp(3rem, 12vw, 6.45rem);
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.78rem 1.18rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--sage-900);
}

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

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  max-width: 410px;
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.hero-note span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  background: var(--sage-200);
  border-radius: 48% 48% 8px 8px;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  content: "";
  inset: 0;
  border: 1px solid rgba(48, 72, 62, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  min-height: 480px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0 0;
  color: var(--sage-800);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portrait-leaf {
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 75px;
  background: var(--sage-200);
  border-radius: 100% 0 100% 0;
}

.portrait-leaf-one {
  top: 15%;
  left: -7%;
  transform: rotate(-28deg);
}

.portrait-leaf-two {
  right: -8%;
  bottom: 8%;
  background: #e2a68f;
  transform: rotate(32deg);
}

@media (max-width: 699px) {
  .portrait-leaf-one {
    left: 0;
  }

  .portrait-leaf-two {
    right: 0;
  }
}

.editorial-band {
  display: flex;
  padding: 1.05rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  color: var(--paper);
  background: var(--sage-900);
}

.editorial-band span {
  position: relative;
  flex: 0 0 auto;
  padding: 0 1.6rem;
  font-family: var(--serif);
  font-size: 1.02rem;
}

.editorial-band span:first-child {
  padding-left: 0;
}

.editorial-band span::after {
  position: absolute;
  content: "·";
  right: -0.15rem;
  color: var(--terracotta);
}

.editorial-band span:last-child::after {
  content: "";
}

.opening-note {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.8rem, 11vw, 8.5rem) 0;
}

.section-number {
  margin: 0;
  color: var(--sage-600);
  font-family: var(--serif);
  font-size: 1.25rem;
}

h2 {
  margin-bottom: 1rem;
  color: var(--sage-950);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  letter-spacing: -0.045em;
}

.opening-copy {
  margin: 0;
  color: var(--muted);
}

.practice {
  padding: clamp(4.8rem, 11vw, 8.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.practice-head {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2.8rem;
}

.practice-list {
  border-top: 1px solid var(--line);
}

.practice-list article {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  min-height: 390px;
  padding: 2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.practice-index {
  padding-top: 0.15rem;
  color: var(--terracotta-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.practice-tag {
  margin: 0 0 0.8rem;
  color: var(--sage-800);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practice-copy h3 {
  margin-bottom: 1rem;
  color: var(--sage-950);
  font-size: clamp(2rem, 7vw, 3.2rem);
  letter-spacing: -0.035em;
}

.practice-copy > p:not(.practice-tag) {
  max-width: 650px;
  color: var(--muted);
}

.practice-copy ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.practice-copy li {
  position: relative;
  padding-left: 1rem;
  color: var(--sage-900);
  font-size: 0.84rem;
}

.practice-copy li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0.72em;
  left: 0;
  background: var(--terracotta);
  border-radius: 50%;
}

.practice-detail {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--sage-100);
  border-left: 3px solid var(--sage-600);
  font-size: 0.83rem;
}

.practice-mark {
  position: absolute;
  right: 0;
  bottom: -0.28em;
  color: rgba(48, 72, 62, 0.045);
  font-family: var(--serif);
  font-size: clamp(5rem, 22vw, 11rem);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.practice-disclaimer {
  max-width: 720px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.audiences {
  display: grid;
  gap: 3rem;
  padding: clamp(4.8rem, 11vw, 8.5rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 15%, rgba(202, 216, 207, 0.14), transparent 32%),
    var(--sage-950);
}

.audiences .section-number {
  color: var(--sage-200);
}

.audiences .section-label {
  color: #dda38c;
}

.audiences h2 {
  color: var(--paper);
}

.audiences-copy > p:last-child {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.62);
}

.audience-cards {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.audience-cards article {
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.audience-cards span {
  color: #dda38c;
  font-size: 0.6rem;
  font-weight: 850;
}

.audience-cards h3 {
  margin: 1.1rem 0 0.7rem;
  font-size: 1.65rem;
}

.audience-cards p {
  margin: 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.85rem;
}

.about {
  display: grid;
  background: var(--ivory);
}

.about-brand {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: 2rem;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(48, 72, 62, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(48, 72, 62, 0.06) 1px, transparent 1px),
    var(--sage-100);
  background-size: 52px 52px;
}

.about-brand::before {
  position: absolute;
  content: "";
  width: min(72vw, 370px);
  height: min(72vw, 370px);
  background: var(--paper);
  border-radius: 50% 50% 8px 50%;
  box-shadow: var(--shadow);
}

.about-brand img {
  position: relative;
  z-index: 1;
  width: min(60vw, 290px);
  height: auto;
  border-radius: 4px;
}

.about-caption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  max-width: 240px;
  padding: 1rem;
  color: var(--paper);
  background: var(--terracotta-dark);
}

.about-caption span {
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-caption p {
  margin: 0.45rem 0 0;
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.35;
}

.about-copy {
  padding: clamp(4.8rem, 11vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.about-lead {
  color: var(--sage-900);
  font-family: var(--serif);
  font-size: clamp(1.17rem, 4vw, 1.5rem);
}

.about-copy > p:not(.section-number):not(.section-label):not(.about-lead) {
  color: var(--muted);
}

.book-note {
  margin-top: 1.8rem;
  padding: 1.2rem;
  background: var(--sage-100);
  border-left: 4px solid var(--terracotta);
}

.book-note span {
  color: var(--terracotta-dark);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-note p {
  margin: 0.45rem 0 0;
  color: var(--sage-950);
  font-family: var(--serif);
}

.about-facts {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.about-facts dt {
  color: var(--terracotta-dark);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--sage-900);
  font-family: var(--serif);
}

.contact {
  display: grid;
  color: var(--paper);
  background: var(--sage-900);
}

.contact-copy,
.contact-details {
  padding: clamp(4.8rem, 11vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.contact .section-number {
  color: var(--sage-200);
}

.contact .section-label {
  color: #e6ad96;
}

.contact h2 {
  color: var(--paper);
}

.contact-copy > p:not(.section-number):not(.section-label) {
  max-width: 670px;
  color: rgba(255, 253, 248, 0.62);
}

.button-light {
  margin-top: 1rem;
  color: var(--sage-950);
  background: var(--paper);
}

.button-light:hover {
  background: #e6ad96;
}

.contact-details {
  color: var(--sage-950);
  background: var(--terracotta);
}

.contact-details > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(31, 52, 44, 0.22);
}

.contact-details span {
  color: rgba(31, 52, 44, 0.7);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  color: var(--sage-950);
  font-family: var(--serif);
  font-size: 1.07rem;
}

.map-link {
  display: flex;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--paper) !important;
  background: var(--sage-950);
  font-family: var(--sans) !important;
  font-size: 0.67rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 1.2rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  color: rgba(255, 253, 248, 0.54);
  background: var(--sage-950);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.7rem;
}

.footer-brand {
  display: inline-grid;
  justify-self: start;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.footer-brand span {
  margin-top: 0.3rem;
  color: #e6ad96;
  font-family: var(--sans);
  font-size: 0.53rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  max-width: 720px;
}

@media (min-width: 700px) {
  .opening-note {
    grid-template-columns: 0.25fr 1.2fr 0.75fr;
    gap: 2.5rem;
    align-items: start;
  }

  .practice-head {
    grid-template-columns: 0.25fr 1fr;
  }

  .practice-list article {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    padding-right: 8rem;
  }

  .audience-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-cards article {
    padding: 1.7rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .audience-cards article:last-child {
    border-right: 0;
  }

  .contact-details > div {
    grid-template-columns: 7.5rem 1fr;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 0.55fr 0.6fr 1.4fr;
    align-items: center;
  }
}

@media (min-width: 920px) {
  body.nav-open {
    overflow: auto;
  }

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

  .menu-toggle {
    display: none;
  }

  .site-navigation,
  .site-navigation.is-open {
    position: static;
    display: flex;
    min-height: 0;
    padding: 0;
    align-items: center;
    gap: 1.55rem;
    color: var(--sage-950);
    background: transparent;
  }

  .site-navigation a {
    padding: 0.4rem 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 750;
  }

  .site-navigation .nav-contact {
    margin: 0 0 0 0.3rem;
    padding: 0.72rem 0.95rem;
    color: var(--paper);
    font-size: 0.64rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    min-height: calc(100svh - 84px);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(4.15rem, 5.1vw, 4.65rem);
  }

  .portrait-frame img {
    height: 630px;
    min-height: 630px;
  }

  .practice-list article {
    grid-template-columns: 4rem minmax(0, 0.9fr);
    min-height: 420px;
    padding: 3rem 25% 3rem 0;
  }

  .practice-copy {
    max-width: 720px;
  }

  .audiences {
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(4rem, 9vw, 8rem);
    align-items: end;
  }

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

  .about-brand {
    min-height: 720px;
  }

  .about-copy {
    display: grid;
    padding-left: clamp(4rem, 7vw, 7rem);
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    align-content: center;
  }

  .contact {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .contact-copy {
    padding-right: clamp(4rem, 8vw, 8rem);
  }

  .contact-details {
    padding-left: clamp(3rem, 7vw, 6rem);
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
