﻿:root {
  --forest: #07583b;
  --forest-deep: #043b29;
  --lime: #9ccc35;
  --paper: #f3f0e6;
  --paper-bright: #fffdf8;
  --ink: #272b27;
  --muted: #676d66;
  --rule: #c9c5b9;
  --burgundy: #782d2f;
  --gold: #a78346;
  --shadow: 0 8px 22px rgba(25, 34, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(43, 71, 54, 0.025) 0, rgba(43, 71, 54, 0.025) 1px, transparent 1px, transparent 28px),
    var(--paper);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--forest);
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--burgundy);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  color: #fff;
  background: var(--burgundy);
  transform: translateY(-150%);
}

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

.utility-bar {
  color: #fff;
  background: var(--forest-deep);
  border-bottom: 3px solid var(--lime);
  font-size: 0.82rem;
}

.utility-inner,
.masthead-inner,
.nav-inner,
.page-shell,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  color: #fff;
  font-weight: 700;
}

.masthead {
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--rule);
}

.masthead-inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.brand-mark {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 700;
}

.brand-tagline {
  margin: 9px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.masthead-actions {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  color: #fff;
  background: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  background: var(--forest-deep);
}

.button.secondary {
  color: var(--forest-deep);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.main-nav {
  position: relative;
  z-index: 10;
  color: #fff;
  background: var(--forest);
  border-bottom: 4px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.nav-list {
  min-height: 48px;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 11px 17px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-list li:first-child a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  color: var(--forest-deep);
  background: var(--lime);
}

.menu-button {
  display: none;
  width: 46px;
  min-height: 46px;
  margin: 5px 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-glyph,
.menu-glyph::before,
.menu-glyph::after {
  width: 20px;
  height: 2px;
  display: block;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-glyph {
  position: relative;
}

.menu-glyph::before {
  position: absolute;
  top: -6px;
}

.menu-glyph::after {
  position: absolute;
  top: 6px;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  padding-block: 42px 54px;
}

.page-main,
.sidebar {
  min-width: 0;
}

.page-heading {
  margin-bottom: 28px;
  padding: 24px 28px 23px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.91), rgba(255, 253, 248, 0.91)),
    repeating-linear-gradient(0deg, transparent 0, transparent 27px, rgba(7, 88, 59, 0.16) 28px);
  border-top: 5px solid var(--forest);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker {
  margin: 0 0 7px;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.2;
}

h3 {
  margin: 0;
  font-size: 1.13rem;
}

.lead {
  max-width: 760px;
  margin: 17px 0 0;
  color: #3f443f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.11rem;
  line-height: 1.75;
}

.breadcrumb {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumb a {
  font-weight: 700;
}

.section-block {
  padding: 31px 0 34px;
  border-bottom: 1px solid var(--rule);
}

.section-block:first-of-type {
  padding-top: 0;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 9px;
  border-bottom: 3px double var(--rule);
}

.section-heading .section-no {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 700;
}

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

.ledger-row {
  display: grid;
  grid-template-columns: 52px minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: start;
  padding: 18px 10px;
  border-bottom: 1px solid var(--rule);
}

.ledger-row:nth-child(even) {
  background: rgba(255, 253, 248, 0.62);
}

.ledger-no {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.ledger-row h3,
.ledger-row p {
  margin: 0;
}

.ledger-row p {
  color: #4d534d;
  font-size: 0.93rem;
}

.split-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.note-column {
  padding-left: 17px;
  border-left: 4px solid var(--gold);
}

.note-column p:last-child {
  margin-bottom: 0;
}

.practice-image {
  margin: 24px 0 0;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

.practice-image img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.94);
}

.practice-image figcaption {
  padding: 8px 5px 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.notice {
  margin: 23px 0;
  padding: 17px 20px;
  color: #343934;
  background: #fffaf0;
  border-left: 5px solid var(--gold);
  border-top: 1px solid #ddd2bc;
  border-bottom: 1px solid #ddd2bc;
}

.notice p {
  margin: 0;
}

.contact-ledger,
.product-ledger,
.plan-ledger {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 253, 248, 0.68);
}

.contact-ledger th,
.contact-ledger td,
.product-ledger th,
.product-ledger td,
.plan-ledger th,
.plan-ledger td {
  padding: 13px 15px;
  border: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.contact-ledger th,
.product-ledger th,
.plan-ledger th {
  width: 31%;
  color: var(--forest-deep);
  background: #e8eee7;
  font-family: Georgia, "Times New Roman", serif;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 21px;
}

.quote {
  margin: 0;
  padding: 22px 25px;
  color: var(--forest-deep);
  background: var(--paper-bright);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-panel {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--rule);
  box-shadow: 0 5px 15px rgba(25, 34, 27, 0.08);
}

.side-panel h2,
.side-panel h3 {
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  background: var(--forest-deep);
  border-bottom: 3px solid var(--lime);
  font-size: 1.06rem;
}

.side-content {
  padding: 17px 17px 19px;
}

.side-content p {
  margin: 0 0 13px;
}

.side-content p:last-child {
  margin-bottom: 0;
}

.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list li {
  border-bottom: 1px dotted var(--rule);
}

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

.side-list a {
  display: block;
  padding: 9px 0;
  font-weight: 700;
  text-decoration: none;
}

.side-label {
  display: block;
  margin-bottom: 2px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.referral-list li {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 2fr) auto;
  gap: 20px;
  align-items: center;
  padding: 17px 12px;
  border-bottom: 1px solid var(--rule);
}

.referral-list strong {
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
}

.compact-link {
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer {
  color: #e8eee9;
  background: var(--forest-deep);
  border-top: 5px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 38px;
  padding-block: 34px;
}

.footer-title {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0 0 7px;
  font-size: 0.86rem;
}

.site-footer a {
  color: #fff;
}

.footer-fineprint {
  padding: 13px 0;
  color: #c8d2cb;
  background: #02291d;
  text-align: center;
  font-size: 0.75rem;
}

.footer-fineprint p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

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

@media (max-width: 980px) {
  .masthead-inner {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
  }

  .brand-mark {
    width: 94px;
    height: 94px;
  }

  .masthead-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 15px;
  }

  .page-shell {
    grid-template-columns: minmax(0, 1fr) 265px;
    gap: 28px;
  }

  .nav-list a {
    padding-inline: 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 760px) {
  .utility-inner,
  .masthead-inner,
  .nav-inner,
  .page-shell,
  .footer-inner {
    width: min(100% - 28px, 620px);
  }

  .utility-inner {
    min-height: 54px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
  }

  .masthead-inner {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding-top: 10px;
  }

  .brand-mark {
    width: 78px;
    height: 78px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-tagline {
    font-size: 0.85rem;
  }

  .nav-inner {
    min-height: 56px;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-button {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 340px);
    min-height: 100vh;
    display: block;
    padding: 76px 20px 30px;
    background: var(--forest-deep);
    box-shadow: -20px 0 45px rgba(0, 0, 0, 0.28);
    transform: translateX(110%);
    transition: transform 180ms ease;
  }

  .nav-list.is-open {
    transform: translateX(0);
  }

  .nav-list a,
  .nav-list li:first-child a {
    min-height: 48px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .page-shell {
    grid-template-columns: 1fr;
    padding-block: 25px 40px;
  }

  .page-heading {
    margin-bottom: 18px;
    padding: 21px 18px;
  }

  .lead {
    font-size: 1.02rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .ledger-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .ledger-row p {
    grid-column: 2;
  }

  .split-notes,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .referral-list {
    border-top: 0;
  }

  .referral-list li {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-inline: 0;
  }

  .sidebar {
    padding-top: 4px;
  }
}

@media (max-width: 480px) {
  .masthead-actions {
    grid-template-columns: 1fr;
  }

  .contact-ledger,
  .contact-ledger tbody,
  .contact-ledger tr,
  .contact-ledger th,
  .contact-ledger td,
  .product-ledger,
  .product-ledger tbody,
  .product-ledger tr,
  .product-ledger th,
  .product-ledger td,
  .plan-ledger,
  .plan-ledger tbody,
  .plan-ledger tr,
  .plan-ledger th,
  .plan-ledger td {
    display: block;
    width: 100%;
  }

  .contact-ledger td,
  .product-ledger td,
  .plan-ledger td {
    border-top: 0;
  }
}

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

  .nav-list {
    transition: none;
  }
}


