:root {
  --ink: #2a2621;
  --muted: #6d6459;
  --forest: #877765;
  --forest-dark: #3e342b;
  --sage: #eee7de;
  --sage-strong: #d8cbbb;
  --gold: #b88955;
  --clay: #835c3f;
  --sky: #e8edf0;
  --paper: #f8f5ef;
  --panel: #fffdf9;
  --line: #ded3c6;
  --shadow: 0 18px 44px rgba(71, 55, 39, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

p {
  margin-bottom: 18px;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--forest-dark);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  min-width: 128px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a,
.footer-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--sage);
  color: var(--forest-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}

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

.hero-media img {
  object-fit: cover;
}

.hero-home .hero-media img {
  object-position: center center;
}

.hero-about .hero-media img {
  object-position: center 35%;
}

.hero-services .hero-media img {
  object-position: center center;
}

.hero-contact .hero-media img {
  object-position: center 42%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(41, 33, 26, 0.94), rgba(64, 52, 43, 0.7) 56%, rgba(64, 52, 43, 0.24)),
    linear-gradient(0deg, rgba(41, 33, 26, 0.18), rgba(41, 33, 26, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 86px 0 96px;
  color: #ffffff;
}

.hero-lede {
  max-width: 740px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.5;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
  color: #e5be85;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: var(--gold);
  color: #211b16;
}

.button-primary:hover {
  background: #d3a34b;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary.light {
  background: #ffffff;
  color: var(--forest-dark);
}

.button-dark {
  background: var(--forest-dark);
  color: #ffffff;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section {
  padding: 88px 0;
  background: var(--panel);
}

.section-intro {
  padding-top: 76px;
}

.section-muted {
  background: var(--paper);
}

.section-sage {
  background: var(--sage);
}

.section-sky {
  background: var(--sky);
}

.section-dark {
  background: var(--forest-dark);
  color: #ffffff;
}

.split,
.two-column,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 62px;
  align-items: start;
}

.profile-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.prose {
  max-width: 730px;
  color: var(--muted);
}

.prose strong {
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 120px;
  padding: 26px;
  background: #ffffff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 15px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.process-grid,
.service-grid,
.audience-grid,
.faq-grid,
.fee-grid,
.publication-grid,
.principle-grid,
.contact-card-grid {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-grid,
.faq-grid,
.fee-grid,
.principle-grid,
.contact-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.publication-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.process-step,
.service-card,
.audience-card,
.fee-card,
.contact-card,
.principle-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.card,
.process-step,
.audience-card,
.fee-card,
.contact-card,
.principle-card,
.faq-item {
  padding: 26px;
}

.process-step {
  position: relative;
  min-height: 250px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest-dark);
  font-weight: 900;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
}

.service-card img.image-bottom {
  object-position: center 72%;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.service-card h3 {
  min-height: 46px;
}

.service-card p,
.audience-card p,
.process-step p,
.fee-card p,
.contact-card p,
.principle-card p,
.faq-item p {
  color: var(--muted);
  font-size: 16px;
}

.service-card-content .text-link,
.fee-card .text-link,
.contact-card .text-link {
  margin-top: 4px;
}

.audience-card ul,
.service-list,
.check-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.audience-card li,
.service-list li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
}

.audience-card li::before,
.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.media-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.profile-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.profile-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.profile-contact a,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--forest-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.publication-grid div {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.schedule-panel,
.form-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.schedule-panel-header,
.form-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.schedule-panel-header h2,
.form-panel-header h2 {
  margin-bottom: 0;
}

.schedule-frame,
.contact-form-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #ffffff;
}

.contact-form-frame {
  min-height: 980px;
}

.schedule-fallback {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.fee-card {
  min-height: 220px;
}

.fee-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest-dark);
  font-size: 32px;
  line-height: 1;
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  padding: 0 24px 24px;
}

.callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.callout-row > div {
  max-width: 760px;
}

.section-dark p,
.section-dark .fine-print {
  color: #e5dbd0;
}

.section-dark .button-secondary.light {
  border-color: #ffffff;
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.map-link {
  margin-top: 14px;
}

.site-footer {
  padding: 48px 0 42px;
  background: #2a231d;
  color: #eef4f1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid p {
  max-width: 650px;
  color: #c9d6d0;
  font-size: 15px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-nav a {
  color: #eef4f1;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.disclosure {
  padding-top: 28px;
  color: #c9d6d0;
  font-size: 12px;
  line-height: 1.55;
}

.disclosure p {
  margin-bottom: 12px;
}

.disclosure a {
  color: #e5be85;
}

@media (max-width: 980px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 34px;
  }

  .split,
  .two-column,
  .profile-grid,
  .contact-grid,
  .media-copy,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .publication-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callout-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .container {
    width: min(1140px, calc(100% - 28px));
  }

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

  .brand {
    width: 88px;
    min-width: 88px;
  }

  .brand img {
    width: 88px;
    height: auto;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 540px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(41, 33, 26, 0.93), rgba(64, 52, 43, 0.76)),
      linear-gradient(0deg, rgba(41, 33, 26, 0.2), rgba(41, 33, 26, 0.2));
  }

  .hero-content {
    padding: 70px 0 78px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .section {
    padding: 62px 0;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .audience-grid,
  .faq-grid,
  .fee-grid,
  .publication-grid,
  .principle-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .process-step,
  .audience-card,
  .fee-card,
  .contact-card,
  .principle-card,
  .schedule-panel,
  .form-panel {
    padding: 24px;
  }

  .service-card-content {
    padding: 24px;
  }

  .service-card img {
    height: 218px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .media-frame img {
    min-height: 300px;
  }

  .schedule-panel-header,
  .form-panel-header {
    flex-direction: column;
  }

  .schedule-frame {
    min-height: 720px;
  }

  .contact-form-frame {
    min-height: 900px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(1140px, calc(100% - 24px));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .button,
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .profile-contact a,
  .pill {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
