:root {
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #282723;
  --graphite: #35342f;
  --muted: #6d6a61;
  --line: #d9d5cb;
  --gold: #c2af60;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: 84rem;
  --measure: 38rem;
  --section-space: clamp(7rem, 10vw, 10rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: .28em; text-decoration-thickness: 1px; }
a:hover { color: #746526; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 6rem, var(--page));
  margin: 0 auto;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(40,39,35,.14);
  font-family: var(--sans);
}

.site-name {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration: none;
}

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  font-size: .875rem;
  letter-spacing: .07em;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(22rem, 44fr);
  min-height: calc(100vh - 76px);
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(3.75rem, 7vh, 5.75rem) clamp(3rem, 6vw, 6.5rem) clamp(4.5rem, 8vh, 7rem) max(3rem, calc((100vw - var(--page)) / 2));
}

.eyebrow {
  margin: 0 0 1.4rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.hero h1 {
  max-width: 10ch;
  margin: 0 0 1.1rem;
  font-size: clamp(4.25rem, 6.7vw, 7rem);
  line-height: .93;
  letter-spacing: -.045em;
}

.brokerage {
  margin: 0 0 clamp(2.5rem, 5vh, 3.75rem);
  color: var(--muted);
  font-family: var(--sans);
  font-size: .77rem;
  letter-spacing: .06em;
}

.hero-statement {
  max-width: 29rem;
  margin: 0;
  font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  line-height: 1.42;
}

.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  margin-top: 1.85rem;
  font-family: var(--sans);
  font-size: .92rem;
  letter-spacing: .045em;
}

.action-link {
  display: inline-block;
  padding: .62rem 0 .38rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}
.action-link::after {
  display: inline-block;
  margin-left: .55em;
  content: "→";
  transition: transform 180ms ease;
}
.action-link:hover::after { transform: translateX(.18rem); }

.hero-image {
  min-height: 38rem;
  overflow: hidden;
  background: #161616;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(1) contrast(1.02);
}

.content-section {
  width: min(100% - 6rem, var(--page));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.reading-copy { max-width: var(--measure); margin: 0; }
.content-section > .reading-copy { margin-left: auto; margin-right: 7%; }
.reading-copy p { margin: 0 0 1.45em; }
.reading-copy p:last-child { margin-bottom: 0; }

.pause {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding: 8rem 3rem;
  background: var(--graphite);
  color: var(--white);
}
.pause blockquote {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}
.pause blockquote::before {
  display: block;
  width: 3.5rem;
  height: 2px;
  margin: 0 auto 3rem;
  background: var(--gold);
  content: "";
}

.human-passage { font-size: inherit; line-height: inherit; }

.principles {
  width: min(100% - 6rem, var(--page));
  margin: 0 auto;
  padding: clamp(7rem, 10vw, 10rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles p {
  max-width: 47rem;
  margin: 0 7% 0 auto;
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.principles p + p { margin-top: .7em; }
.principles strong { font-weight: 400; }

.invitation-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 4fr) minmax(0, 6fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: baseline;
}
.section-label {
  margin: .2rem 0 1.4rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.invitation-grid h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.8rem, 3.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.connect-section {
  background: var(--gold);
  color: #211f18;
}
.connect-inner {
  display: grid;
  grid-template-columns: minmax(18rem, 4fr) minmax(0, 6fr);
  grid-template-rows: auto auto;
  column-gap: clamp(4rem, 7vw, 7rem);
  width: min(100% - 6rem, var(--page));
  margin: 0 auto;
  padding: clamp(6rem, 9vw, 8rem) 0;
}
.connect-inner h2 {
  grid-column: 1;
  margin: 0 0 2.2rem;
  font-size: clamp(3.3rem, 4.8vw, 4.9rem);
  line-height: 1;
  letter-spacing: -.035em;
}
.connect-inner > p { grid-column: 1; max-width: 25rem; margin: 0; font-size: 1.08rem; }
.contact-list { grid-column: 2; grid-row: 1 / span 2; align-self: center; margin: 0; }
.contact-list a { display: block; width: fit-content; margin-bottom: .7rem; font-size: clamp(1.18rem, 1.7vw, 1.45rem); }
.contact-list .brokerage { margin: 2rem 0 0; color: inherit; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: min(100% - 6rem, var(--page));
  margin: 0 auto;
  padding: 3.5rem 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .75rem;
  line-height: 1.8;
}
.site-footer p { margin: 0; }

/* Practice reading page */
.practice-hero {
  width: min(100% - 2.5rem, 88rem);
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) 0 clamp(5rem, 10vw, 9rem);
}
.practice-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 9rem);
  line-height: .91;
  letter-spacing: -.05em;
}
.practice-intro {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-top: clamp(5rem, 10vw, 10rem);
}
.practice-intro .intro-copy { max-width: 35rem; font-size: 1.22rem; }
.practice-intro .intro-copy p { margin: 0; }

.contents {
  width: min(100% - 2.5rem, 88rem);
  margin: 0 auto;
  padding: 2.5rem 0 5rem;
  border-top: 1px solid var(--line);
}
.contents .section-label { margin-bottom: 1.8rem; }
.contents ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: section;
}
.contents li { counter-increment: section; }
.contents a {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  padding: .65rem 0;
  text-decoration: none;
}
.contents a::before {
  color: var(--gold);
  font-family: var(--sans);
  font-size: .75rem;
  content: "0" counter(section);
}

.practice-section {
  scroll-margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.practice-section-inner {
  display: grid;
  grid-template-columns: minmax(13rem, .42fr) minmax(0, .58fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(100% - 2.5rem, 88rem);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}
.practice-section h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.45rem, 4.5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.practice-body { max-width: var(--measure); }
.practice-body p { margin: 0 0 1.45em; }
.practice-body p:last-child { margin-bottom: 0; }
.practice-body .question {
  margin: 2.25rem 0;
  font-size: 1.26rem;
  font-style: italic;
}
.practice-body .pillar { margin-top: 2.4rem; }
.practice-body .pillar strong {
  display: block;
  margin-bottom: .35rem;
  color: #88782f;
  font-weight: 400;
  font-size: 1.35rem;
  font-style: italic;
}
.practice-body .living-question {
  margin: 4rem 0;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-style: italic;
  line-height: 1.35;
}
.practice-dark { background: var(--graphite); color: var(--white); border-top: 0; }
.practice-dark .section-label { color: #d2cdbf; }
.practice-dark .practice-body strong { color: #e1cf7b; }
.practice-gold { background: var(--gold); color: #211f18; border-top: 0; }
.practice-gold .section-label { color: #4d482f; }
.promise-lines {
  margin: 3rem 0;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.6;
}
.core-lines { margin-top: 4rem; }
.core-lines p { margin: 0 0 .45rem; font-size: clamp(1.4rem, 2.6vw, 2.15rem); line-height: 1.35; }
.booklet-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 2.5rem, 88rem);
  margin: 0 auto;
  padding: 2.8rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .04em;
}

/* Draft 3: desktop-only homepage composition refinement. */
@media (min-width: 781px) {
  .home-page .site-name {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .045em;
  }

  .home-page .site-nav a {
    font-size: .84rem;
    letter-spacing: .065em;
  }

  .home-page .hero {
    grid-template-columns: minmax(0, 56fr) minmax(22rem, 44fr);
    height: clamp(39rem, 76vh, 45rem);
    min-height: 0;
  }

  .home-page .hero-copy {
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 3.75rem;
  }

  .home-page .hero-image {
    min-height: 0;
    height: 100%;
  }

  .home-page .hero-image img {
    object-position: 50% 45%;
  }

  .home-page .content-section:not(.invitation-grid) {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2vw, 2rem);
    padding-top: clamp(7.5rem, 9vw, 9rem);
    padding-bottom: clamp(7.5rem, 9vw, 9rem);
  }

  .home-page .content-section:not(.invitation-grid) > .reading-copy {
    grid-column: 3 / span 6;
    max-width: 41rem;
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.72;
  }

  .home-page .principles {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.25rem, 2vw, 2rem);
    padding-top: clamp(8.5rem, 10vw, 10rem);
    padding-bottom: clamp(8.5rem, 10vw, 10rem);
  }

  .home-page .principles p {
    grid-column: 3 / span 9;
    max-width: none;
    margin-right: 0;
    font-size: clamp(2.35rem, 3.25vw, 3.15rem);
    line-height: 1.16;
    letter-spacing: -.025em;
    text-wrap: balance;
  }

  .home-page .principles p + p {
    margin-top: .72em;
  }

  .home-page .invitation-grid {
    grid-template-columns: minmax(19rem, 5fr) minmax(0, 7fr);
    gap: clamp(4.5rem, 7vw, 7.5rem);
    align-items: start;
    padding-top: clamp(8rem, 9.5vw, 9.5rem);
    padding-bottom: clamp(8rem, 9.5vw, 9.5rem);
  }

  .home-page .invitation-grid .reading-copy {
    max-width: 41rem;
    font-size: 1.2rem;
    line-height: 1.68;
  }

  .home-page .invitation-grid .section-actions {
    gap: .8rem 2.5rem;
    margin-top: 2.15rem;
    font-size: .98rem;
    font-weight: 500;
  }

  .home-page .connect-inner {
    grid-template-columns: minmax(19rem, 5fr) minmax(0, 7fr);
    column-gap: clamp(4.5rem, 7vw, 7.5rem);
    padding-top: clamp(7rem, 8.5vw, 8.5rem);
    padding-bottom: clamp(7rem, 8.5vw, 8.5rem);
  }

  .home-page .connect-inner h2 {
    margin-bottom: 1.75rem;
    font-size: clamp(2.8rem, 3.8vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -.03em;
  }

  .home-page .connect-inner > p {
    max-width: 28rem;
    font-size: 1.14rem;
    line-height: 1.68;
  }

  .home-page .contact-list {
    align-self: start;
    padding-top: .4rem;
  }

  .home-page .contact-list a {
    margin-bottom: .85rem;
    font-size: clamp(1.28rem, 1.65vw, 1.48rem);
  }

  .home-page .contact-list .brokerage {
    margin-top: 2.25rem;
  }
}

/* Drafts 5 and 6: refined shared desktop comparison baseline. */
@media (min-width: 781px) {
  .home-page {
    --editorial-columns: minmax(19rem, 5fr) minmax(0, 7fr);
    --editorial-gap: clamp(4.5rem, 7vw, 7.5rem);
    --editorial-depth: clamp(35rem, 64vh, 40rem);
  }

  .home-page .hero {
    height: clamp(35rem, 68.5vh, 40.5rem);
  }

  .home-page .hero-copy {
    justify-content: center;
    padding-top: 2.4rem;
    padding-bottom: 4.4rem;
  }

  .home-page .hero-image img {
    object-position: 50% 42%;
  }

  .home-page .content-section:not(.invitation-grid) {
    display: flex;
    align-items: center;
    width: min(100% - 6rem, 78rem);
    min-height: var(--editorial-depth);
    padding: clamp(6.5rem, 8vw, 8rem) clamp(0rem, 8vw, 6rem) clamp(6.5rem, 8vw, 8rem) clamp(0rem, 4vw, 3rem);
  }

  .home-page .content-section:not(.invitation-grid) > .reading-copy {
    max-width: 47rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.28rem;
    line-height: 1.54;
    text-align: left;
    text-wrap: pretty;
  }

  .home-page .narrative-lead p:first-child::first-letter {
    float: left;
    margin: .08em .1em 0 0;
    color: var(--gold);
    font-size: 4.1em;
    line-height: .78;
  }

  .home-page .pause {
    min-height: var(--editorial-depth);
  }

  .home-page .principles {
    display: flex;
    align-items: center;
    min-height: var(--editorial-depth);
    padding-top: clamp(4.5rem, 6vw, 6rem);
    padding-bottom: clamp(4.5rem, 6vw, 6rem);
  }

  .home-page .principles p {
    grid-column: auto;
    max-width: none;
    margin: 0;
    font-size: clamp(2rem, 2.3vw, 2.18rem);
    line-height: 1.25;
    letter-spacing: -.018em;
    text-wrap: balance;
  }

  .home-page .principles p + p {
    margin-top: .95em;
  }

  .home-page .principles-stack {
    width: min(100% - 6rem, 78rem);
    padding-right: clamp(0rem, 8vw, 6rem);
    padding-left: clamp(0rem, 4vw, 3rem);
  }

  .home-page .principles-stack .principles-inner {
    position: relative;
    width: 100%;
    max-width: 47rem;
    margin: 0 auto;
  }

  .home-page .principles-stack .principles-inner::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2.25rem;
    width: 1px;
    background: var(--gold);
    content: "";
  }

  .home-page .principles-triptych .principles-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    width: 100%;
  }

  .home-page .principles-triptych p {
    grid-column: auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    font-size: clamp(1.82rem, 2vw, 2rem);
    line-height: 1.24;
  }

  .home-page .principles-triptych p:first-child {
    padding-left: 0;
  }

  .home-page .principles-triptych p:last-child {
    padding-right: 0;
  }

  .home-page .principles-triptych p + p {
    margin-top: 0;
    border-left: 1px solid rgba(194, 175, 96, .62);
  }

  .home-page .invitation-grid {
    grid-template-columns: var(--editorial-columns);
    column-gap: var(--editorial-gap);
    min-height: var(--editorial-depth);
    align-content: center;
    padding-top: clamp(6.75rem, 8vw, 8rem);
    padding-bottom: clamp(6.75rem, 8vw, 8rem);
  }

  .home-page .connect-inner {
    grid-template-columns: var(--editorial-columns);
    grid-template-rows: auto auto;
    column-gap: var(--editorial-gap);
    min-height: var(--editorial-depth);
    align-content: center;
    padding-top: clamp(6.75rem, 8vw, 8.25rem);
    padding-bottom: clamp(6.75rem, 8vw, 8.25rem);
  }

  .home-page .connect-inner h2 {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: clamp(2.65rem, 3.5vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -.03em;
  }

  .home-page .connect-inner > p {
    grid-column: 2;
    grid-row: 1;
    max-width: 34rem;
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.68;
    text-wrap: pretty;
  }

  .home-page .contact-list {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 1.65rem;
    padding-top: 0;
  }

  .home-page .contact-list a {
    margin-bottom: .55rem;
    font-size: clamp(1.24rem, 1.55vw, 1.42rem);
  }

  .home-page .contact-list .brokerage {
    margin-top: 1.4rem;
  }
}

@media (max-width: 780px) {
  .home-page { --mobile-editorial-depth: clamp(28.75rem, 78svh, 42.5rem); }
  body { font-size: 1.03rem; line-height: 1.68; }
  .site-header { align-items: center; width: min(100% - 2.5rem, var(--page)); }
  .home-page .site-header { padding-top: .75rem; padding-bottom: .75rem; }
  .home-page .site-header a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
  }
  .site-nav { gap: 1rem; }
  .site-nav a { font-size: .75rem; }
  .site-nav a:first-child { display: none; }
  .hero { display: block; min-height: auto; }
  .home-page .hero-copy {
    min-height: 32rem;
    min-height: clamp(32rem, 68svh, 36rem);
    padding: clamp(4.25rem, 16vw, 5rem) 1.25rem clamp(3.75rem, 14vw, 4.5rem);
  }
  .home-page .hero h1 { font-size: clamp(3.5rem, 17vw, 5.8rem); }
  .home-page .brokerage { margin-bottom: 2.5rem; }
  .home-page .hero-actions {
    gap: .5rem 1.25rem;
    margin-top: 1.75rem;
  }
  .home-page .action-link {
    min-height: 2.75rem;
    padding-top: .68rem;
    padding-bottom: .42rem;
  }
  .home-page .hero-image {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1004 / 1418;
  }
  .home-page .hero-image img { object-position: 50% 43%; }
  .home-page .content-section {
    width: min(100% - 2.5rem, var(--page));
    min-height: var(--mobile-editorial-depth);
    padding: clamp(5.25rem, 22vw, 6.5rem) 0;
  }
  .home-page .content-section:not(.invitation-grid) {
    display: grid;
    align-content: center;
  }
  .home-page .content-section > .reading-copy { margin-left: auto; margin-right: auto; }
  .home-page .content-section:not(.invitation-grid) > .reading-copy {
    max-width: 35rem;
    font-size: 1.08rem;
    line-height: 1.65;
    text-align: left;
    text-wrap: pretty;
  }
  .home-page .content-section:not(.invitation-grid) .reading-copy p {
    margin-bottom: 1.65em;
  }
  .home-page .content-section:not(.invitation-grid) .reading-copy p:last-child {
    margin-bottom: 0;
  }
  .home-page .narrative-lead p:first-child::first-letter {
    float: left;
    margin: .08em .11em 0 0;
    color: var(--gold);
    font-size: 3.55em;
    line-height: .8;
  }
  .home-page .pause {
    min-height: var(--mobile-editorial-depth);
    padding: clamp(6.25rem, 26vw, 7.5rem) 1.4rem;
  }
  .home-page .pause blockquote {
    max-width: 32rem;
    font-size: clamp(1.55rem, 6.7vw, 1.95rem);
    line-height: 1.38;
  }
  .home-page .pause blockquote::before { margin-bottom: 2.25rem; }
  .home-page .principles {
    display: grid;
    align-content: center;
    width: min(100% - 2.5rem, var(--page));
    min-height: var(--mobile-editorial-depth);
    padding: clamp(6.25rem, 25vw, 7.25rem) 0;
  }
  .home-page .principles p {
    margin: 0;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.24;
    text-wrap: balance;
  }
  .home-page .principles p + p { margin-top: 1.35em; }
  .invitation-grid, .practice-intro, .practice-section-inner { grid-template-columns: 1fr; }
  .home-page .invitation-grid {
    row-gap: 3rem;
    align-content: center;
    align-items: start;
  }
  .home-page .invitation-grid h2 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 3.3rem);
  }
  .home-page .invitation-grid .reading-copy { font-size: 1.08rem; line-height: 1.65; }
  .home-page .invitation-grid .section-actions {
    gap: .55rem 1.5rem;
    margin-top: 2rem;
  }
  .home-page .connect-inner {
    display: block;
    width: min(100% - 2.5rem, var(--page));
    min-height: var(--mobile-editorial-depth);
    padding: clamp(6.25rem, 25vw, 7.5rem) 0;
  }
  .home-page .connect-inner h2 {
    margin-bottom: 2rem;
    font-size: clamp(2.75rem, 12vw, 3.25rem);
  }
  .home-page .connect-inner > p {
    max-width: 32rem;
    font-size: 1.08rem;
    line-height: 1.62;
    text-wrap: pretty;
  }
  .home-page .contact-list { margin-top: 2.35rem; }
  .home-page .contact-list a {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 2.75rem;
    margin-bottom: .35rem;
    overflow-wrap: anywhere;
    font-size: clamp(1.02rem, 4.4vw, 1.18rem);
    line-height: 1.35;
  }
  .home-page .contact-list .brokerage { margin-top: 1.25rem; }
  .home-page .site-footer {
    display: block;
    width: min(100% - 2.5rem, var(--page));
    padding: 3.25rem 0 3.5rem;
  }
  .home-page .site-footer p + p { margin-top: 1rem; }
  .practice-hero { padding-top: 5rem; }
  .practice-hero h1 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .practice-intro { margin-top: 5rem; }
  .contents ol { grid-template-columns: 1fr; }
  .practice-section-inner { padding: 6rem 0; }
  .practice-section h2 { max-width: 13ch; font-size: clamp(2.5rem, 11vw, 4rem); }
  .booklet-strip { align-items: flex-start; flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .contents, .booklet-strip, .skip-link { display: none; }
  body { background: white; font-size: 11pt; }
  .practice-section, .practice-dark, .practice-gold { background: white; color: black; break-inside: avoid; }
}
