:root {
  color-scheme: light;
  --ink: #17201c;
  --ink-soft: #304139;
  --muted: #5e6d66;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --surface-tint: #eef4f1;
  --green: #123c36;
  --green-2: #1f6b60;
  --brass: #b78a3a;
  --claret: #7a2e37;
  --sky: #d8e4e2;
  --line: #ded8cb;
  --shadow: 0 18px 40px rgba(23, 32, 28, 0.14);
  font-family: 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(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--surface);
  border: 2px solid var(--green);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fffaf0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.brand-name {
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--green);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 42% center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 15, 0.86) 0%, rgba(10, 17, 15, 0.68) 42%, rgba(10, 17, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 17, 15, 0.5) 0%, rgba(10, 17, 15, 0.2) 45%, rgba(10, 17, 15, 0.58) 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 88svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 0 64px;
  color: #fffaf0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brass);
  color: #15120c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c49a4f;
}

.button-secondary {
  border: 1px solid rgba(255, 250, 240, 0.72);
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.intro-section,
.profile-section,
.practice-section,
.work-section,
.statement-section,
.faq-section,
.contact-section {
  padding: 72px 0;
}

.intro-section,
.profile-section,
.contact-section,
.faq-section {
  background: var(--surface);
}

.section-grid,
.section-heading,
.feature-grid,
.profile-layout,
.practice-grid,
.faq-list,
.statement-panel,
.contact-layout,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 48px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.15;
}

.intro-copy {
  max-width: 68ch;
}

.intro-copy p,
.statement-panel p,
.contact-section p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-copy p + p {
  margin-top: 16px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.stat-row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-row strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.profile-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.profile-copy {
  max-width: 72ch;
}

.profile-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.profile-copy .section-kicker {
  margin-top: 0;
}

.profile-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--claret);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 228, 226, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: var(--shadow);
  padding: 28px;
}

.profile-note > p {
  margin: 0 0 18px;
  color: var(--claret);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-note dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.profile-note div {
  display: grid;
  gap: 4px;
}

.profile-note dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-note dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.practice-section {
  background:
    linear-gradient(180deg, #f3f7f5 0%, var(--paper) 100%);
}

.section-lede {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.practice-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.practice-tag {
  margin: 0;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.practice-card:nth-child(2) {
  border-top-color: var(--claret);
}

.practice-card:nth-child(2) .practice-tag {
  color: var(--claret);
}

.practice-card:nth-child(3) {
  border-top-color: var(--green-2);
}

.practice-card:nth-child(3) .practice-tag {
  color: var(--green-2);
}

.practice-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.practice-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.practice-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.practice-list li {
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.practice-list li:last-child {
  border-bottom: 0;
}

.work-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #f3f7f5 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 278px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--surface-tint);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.statement-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green);
  color: #fffaf0;
}

.statement-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(10, 26, 22, 0.94) 0%, rgba(10, 26, 22, 0.72) 55%, rgba(10, 26, 22, 0.5) 100%),
    image-set(
      url("assets/desk-binder-strip.webp") type("image/webp"),
      url("assets/desk-binder-strip.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: center right;
}

@supports not (background-image: image-set(url("assets/desk-binder-strip.webp") type("image/webp"))) {
  .statement-backdrop {
    background-image:
      linear-gradient(90deg, rgba(10, 26, 22, 0.94) 0%, rgba(10, 26, 22, 0.72) 55%, rgba(10, 26, 22, 0.5) 100%),
      url("assets/desk-binder-strip.jpg");
  }
}

.statement-panel {
  position: relative;
  max-width: 900px;
  padding: 12px 0;
}

.statement-panel h2 {
  color: #fffaf0;
}

.statement-panel p {
  max-width: 72ch;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.82);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 4px 22px;
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-list details[open] {
  background: var(--surface-tint);
  border-color: #c8d8d2;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 18px 32px 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "\2013";
}

.faq-list details p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 68ch;
}

.contact-layout {
  align-items: center;
}

.contact-cta {
  margin-top: 22px;
}

.contact-panel a {
  color: var(--green-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section h2 {
  max-width: 620px;
}

.contact-section p {
  max-width: 64ch;
  margin-top: 18px;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-tint);
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: min(720px, calc(100% - 28px));
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 24px;
    min-width: 0;
  }

  .hero,
  .hero-inner {
    min-height: 86svh;
  }

  .hero-inner {
    width: min(720px, calc(100% - 28px));
    padding: 146px 0 56px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 17, 15, 0.88) 0%, rgba(10, 17, 15, 0.6) 100%),
      linear-gradient(180deg, rgba(10, 17, 15, 0.42) 0%, rgba(10, 17, 15, 0.68) 100%);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro-section,
  .profile-section,
  .practice-section,
  .work-section,
  .statement-section,
  .faq-section,
  .contact-section {
    padding: 56px 0;
  }

  .section-grid,
  .profile-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-row strong {
    font-size: 28px;
  }

  .faq-list summary {
    font-size: 17px;
    padding-right: 28px;
  }

  h2 {
    font-size: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-nav {
    display: flex;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 10px 18px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h1,
  .hero-copy,
  .hero-actions {
    max-width: min(100%, 360px);
  }
}

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

  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
