@import url("fonts.css");
:root {
  --ink: #243c30;
  --green: #476b3d;
  --green-dark: #243f32;
  --sage: #e9eddf;
  --cream: #faf9f4;
  --white: #fff;
  --muted: #60695e;
  --line: #e0e3d8;
  --gold: #c7a875;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.12;
}
h1,
h2,
h3 {
  font-family: var(--serif);
}
h1 {
  font-size: 72px;
  letter-spacing: -2px;
}
h2 {
  font-size: 46px;
  letter-spacing: -1.2px;
}
h3 {
  font-size: 27px;
  letter-spacing: -0.3px;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 16px;
}
::selection {
  background: #dbe4ca;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid #a5834c;
  outline-offset: 5px;
}
.container {
  max-width: 1224px;
  padding-right: 28px;
  padding-left: 28px;
}
.row {
  --bs-gutter-x: 28px;
  --bs-gutter-y: 28px;
}
.section {
  padding: 96px 0;
}
.section-small {
  padding: 65px 0;
}
.bg-white {
  background: #fff;
}
.bg-sage {
  background: var(--sage);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow svg {
  width: 17px;
  height: 17px;
}
.eyebrow.center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
.section-heading p {
  max-width: 440px;
  margin-top: 16px;
}
.section-heading .btn {
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 14px 25px;
  min-height: 50px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
.btn svg {
  width: 17px;
  height: 17px;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: #35532d;
  transform: translateY(-2px);
}
.btn-outline {
  border-color: #b7c3af;
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--sage);
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover {
  background: #e4e9da;
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
}
.text-link:hover {
  color: var(--green);
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  background: white;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.topbar {
  font-size: 11px;
  letter-spacing: 0.35px;
  text-align: center;
  padding: 8px;
  background: var(--sage);
  color: #52634a;
}
.topbar span {
  margin: 0 10px;
  color: #8a977e;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 244, 0.97);
  border-bottom: 1px solid #e5e7dd;
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-shrink: 0;
}
.brand-symbol {
  width: 41px;
  height: 49px;
  color: var(--green);
}
.brand-wordmark {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.06;
  letter-spacing: -0.4px;
}
.brand-wordmark span {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 4px;
  line-height: 2.2;
  padding-left: 2px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links > a:not(.btn) {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 9px 0;
}
.nav-links > a.active {
  color: var(--green);
}
.nav-links > a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: var(--green);
}
.nav-links > a:hover {
  color: var(--green);
}
.nav-links .btn {
  margin-left: 10px;
  min-height: 44px;
  padding: 11px 20px;
  font-size: 12px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  color: var(--ink);
  line-height: 0;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}
.hero {
  padding: 55px 0 66px;
  overflow: hidden;
}
.hero .row {
  align-items: center;
}
.hero-copy {
  padding-right: 42px;
}
.hero h1 {
  font-size: 76px;
  line-height: 1.075;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-copy > p {
  font-size: 15px;
  max-width: 400px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 29px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 35px;
}
.hero-note svg {
  width: 29px;
  height: 29px;
  color: var(--green);
  padding: 5px;
  background: var(--sage);
  border-radius: 50%;
}
.hero-visual {
  position: relative;
  margin-left: 26px;
  margin-right: 0;
}
.hero-image {
  width: 100%;
  height: 535px;
  border-radius: 140px 12px 12px 12px;
  object-position: center 41%;
}
.hero-visual:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid #b8c4a3;
  border-radius: 50%;
  z-index: -1;
  right: -24px;
  top: -24px;
}
.hero-stamp {
  position: absolute;
  top: 28px;
  left: -32px;
  width: 93px;
  height: 93px;
  background: var(--cream);
  border: 1px solid #ccd4bf;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transform: rotate(-12deg);
  box-shadow: 0 0 0 6px #faf9f460;
}
.hero-stamp svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}
.hero-stamp span {
  font-size: 8px;
  letter-spacing: 1.7px;
  font-weight: 600;
}
.hero-card {
  position: absolute;
  bottom: 27px;
  left: -27px;
  right: 40px;
  background: rgba(255, 255, 250, 0.93);
  backdrop-filter: blur(8px);
  padding: 20px 23px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ffffffa0;
  border-radius: 9px;
  box-shadow: 0 8px 40px #243c3010;
}
.hero-card .circle-icon {
  background: #e7ecdd;
}
.hero-card strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.hero-card p {
  font-size: 11px;
  margin-top: 3px;
}
.circle-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--green);
  flex-shrink: 0;
}
.circle-icon svg {
  width: 24px;
  height: 24px;
}
.values-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  background: #f0f2e9;
}
.values-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
}
.value-item svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}
.value-divider {
  height: 24px;
  width: 1px;
  background: #d3d9c9;
}
.about-visual {
  position: relative;
  padding-right: 50px;
}
.about-visual > img {
  width: 100%;
  height: 443px;
  object-position: 50% 50%;
  border-radius: 12px 12px 110px 12px;
}
.about-mini {
  position: absolute;
  bottom: 25px;
  right: 18px;
  background: var(--cream);
  width: 190px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 30px #233c3010;
}
.about-mini svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--green);
}
.about-mini h3 {
  font-size: 26px;
  line-height: 1.25;
}
.about-copy {
  padding-left: 26px;
}
.about-copy h2 {
  margin-bottom: 23px;
}
.about-copy > p {
  max-width: 475px;
  font-size: 14px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.check-list svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  flex-shrink: 0;
}
.service-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px #263d3010;
}
.service-card > img {
  width: 100%;
  height: 217px;
  transition: transform 0.6s;
}
.service-card:hover > img {
  transform: scale(1.025);
}
.service-card-body {
  padding: 25px 25px 21px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 18px;
}
.service-card .text-link {
  border-top: 1px solid #edf0e6;
  padding-top: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--green);
}
.service-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.service-bottom a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.why-section {
  background: var(--green-dark);
  color: #f6f6ed;
  position: relative;
  overflow: hidden;
}
.why-section:after {
  content: "";
  width: 500px;
  height: 500px;
  border: 1px solid #ffffff09;
  border-radius: 50%;
  position: absolute;
  left: -200px;
  bottom: -360px;
  box-shadow:
    0 0 0 65px #ffffff03,
    0 0 0 130px #ffffff02;
  pointer-events: none;
}
.why-section .eyebrow {
  color: #c2d2ab;
}
.why-section h2 {
  font-size: 46px;
  max-width: 350px;
  margin-bottom: 21px;
}
.why-intro p {
  color: #c0cdc1;
  font-size: 14px;
  max-width: 330px;
  margin-bottom: 27px;
}
.why-intro .text-link {
  color: #d8e4cb;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 35px;
  padding-left: 25px;
}
.why-item svg {
  width: 28px;
  height: 28px;
  color: #c1d3a9;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.why-item p {
  font-size: 12px;
  line-height: 1.85;
  color: #bdcbbf;
}
.quote-card {
  height: 100%;
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  color: #a1b28d;
  line-height: 0.8;
  margin-bottom: 12px;
}
.quote-card blockquote {
  font-size: 14px;
  color: #52604f;
  line-height: 1.9;
  margin: 0 0 23px;
  flex: 1;
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-avatar {
  background: var(--sage);
  color: var(--green);
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
}
.quote-person strong {
  font-size: 12px;
  font-weight: 500;
}
.quote-person small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.fine-print {
  font-size: 11px !important;
  line-height: 1.7 !important;
  color: var(--muted);
}
.quotes-note {
  margin-top: 23px;
  text-align: center;
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-image-link {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  margin-bottom: 23px;
}
.blog-card img {
  width: 100%;
  height: 244px;
  transition: transform 0.45s;
}
.blog-card:hover img {
  transform: scale(1.045);
}
.blog-card h3 {
  font-size: 27px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card h3 a:hover {
  color: var(--green);
}
.blog-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card .text-link {
  color: var(--green);
  font-size: 12px;
  align-self: flex-start;
}
.faq-copy {
  padding-right: 65px;
}
.faq-copy > p {
  font-size: 14px;
  margin-top: 22px;
  margin-bottom: 20px;
}
.faq-list details {
  border-bottom: 1px solid #d5dbcb;
  padding: 0 0 20px;
  margin-bottom: 22px;
}
.faq-list summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 15px;
  padding-right: 28px;
}
.cta-section {
  padding: 75px 0;
}
.cta-box {
  background: #e7ecdc;
  border: 1px solid #dfe5d3;
  border-radius: 14px;
  padding: 49px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: 40px;
  margin-bottom: 12px;
  position: relative;
}
.cta-box p {
  font-size: 13px;
  position: relative;
}
.cta-box .btn {
  flex-shrink: 0;
  position: relative;
}
.cta-box:before {
  content: "";
  position: absolute;
  right: 130px;
  top: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid #58744410;
  border-radius: 50%;
  box-shadow:
    0 0 0 35px #58744405,
    0 0 0 75px #58744403;
}
.site-footer {
  background: var(--green-dark);
  color: #edf0e7;
  padding: 64px 0 0;
}
.footer-top {
  padding-bottom: 42px;
  border-bottom: 1px solid #ffffff20;
}
.site-footer .brand-symbol {
  color: #bfd0a6;
}
.site-footer .brand-wordmark {
  font-size: 25px;
}
.footer-about {
  max-width: 280px;
  font-size: 12px;
  color: #bdc9be;
  margin-top: 20px;
  line-height: 1.9;
}
.footer-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  margin: 7px 0 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
  line-height: 1.8;
}
.footer-links a {
  font-size: 12px;
  color: #bdc9be;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #bdc9be;
  font-size: 12px;
  margin-bottom: 15px;
  max-width: 210px;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-newsletter-note {
  font-size: 12px;
  color: #bdc9be;
  max-width: 230px;
  margin-bottom: 17px;
}
.newsletter-link {
  color: #ecf1e4;
  border: 1px solid #728269;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
.newsletter-link svg {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  font-size: 10px;
  color: #bcc8bb;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-disclaimer {
  border-top: 1px solid #ffffff10;
  padding: 17px 0 23px;
  font-size: 9px;
  color: #a9b8ac;
  line-height: 1.7;
}
.page-hero {
  padding: 65px 0 61px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: #f1f3e9;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: 58px;
  margin-bottom: 19px;
}
.page-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 10px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--muted);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb svg {
  height: 12px;
  width: 12px;
}
.page-hero .eyebrow {
  justify-content: center;
}
.mission-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 100%;
  background: white;
}
.mission-card .circle-icon {
  margin-bottom: 23px;
}
.mission-card h3 {
  margin-bottom: 13px;
}
.mission-card p {
  font-size: 13px;
}
.about-detail-img {
  width: 100%;
  height: 500px;
  border-radius: 110px 10px 10px 10px;
}
.search-box {
  position: relative;
  width: 300px;
  max-width: 100%;
}
.search-box svg {
  position: absolute;
  left: 16px;
  top: 15px;
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.search-box input {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  padding: 12px 14px 12px 44px;
  font-size: 12px;
  color: var(--ink);
}
.empty-search {
  padding: 35px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
}
.contact-layout {
  align-items: start;
}
.contact-info {
  padding-right: 55px;
}
.contact-info h2 {
  font-size: 39px;
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 14px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.contact-detail .circle-icon {
  width: 43px;
  height: 43px;
}
.contact-detail h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.contact-detail p,
.contact-detail a {
  font-size: 13px;
  color: var(--muted);
}
.contact-detail a:hover {
  color: var(--green);
  text-decoration: underline;
}
.contact-note {
  padding: 19px 22px;
  background: var(--sage);
  border-left: 3px solid #9ab184;
  margin-top: 30px;
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  color: #59664f;
}
.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 37px;
  box-shadow: 0 10px 35px #243c3003;
}
.form-card h2 {
  font-size: 30px;
  margin-bottom: 9px;
}
.form-card > p {
  font-size: 13px;
  margin-bottom: 26px;
}
.form-card .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 19px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}
.form-field label span {
  color: var(--green);
}
input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe3d7;
  border-radius: 5px;
  background: #fdfdfb;
  color: var(--ink);
  font-size: 13px;
  min-height: 46px;
}
input::placeholder,
textarea::placeholder {
  color: #90968d;
}
textarea {
  resize: vertical;
  min-height: 125px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #80966e;
  outline: 2px solid #8b9e7525;
  outline-offset: 1px;
}
.check-field {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 22px 0;
}
input[type="checkbox"] {
  accent-color: var(--green);
  height: 15px;
  width: 15px;
  flex-shrink: 0;
  margin: 3px 0 0;
}
.check-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #b4ca9e;
  background: #edf4e5;
  border-radius: 6px;
  font-size: 13px;
  color: #355526;
}
.form-status.error {
  background: #fff1ee;
  border-color: #e5b7a9;
  color: #873d2d;
}
[hidden] {
  display: none !important;
}
.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-bottom-note {
  margin-top: 16px;
  font-size: 10px;
}
.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 33px 38px;
  background: #edf0e5;
}
.location-panel h3 {
  font-size: 26px;
  margin-bottom: 7px;
}
.location-panel p {
  font-size: 13px;
}
.location-intro {
  display: flex;
  gap: 22px;
  align-items: center;
}
.location-intro > .circle-icon {
  background: white;
  width: 59px;
  height: 59px;
}
.newsletter-wrap {
  max-width: 1020px;
  margin: auto;
}
.newsletter-copy {
  padding: 20px 60px 20px 0;
}
.newsletter-copy h2 {
  font-size: 43px;
  margin-bottom: 20px;
}
.newsletter-copy > p {
  font-size: 14px;
}
.newsletter-copy .check-list {
  margin: 27px 0;
}
.newsletter-art {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: var(--green);
}
.newsletter-art svg {
  width: 42px;
  height: 42px;
}
.newsletter-form .form-field {
  margin-bottom: 18px;
}
.newsletter-form .btn {
  width: 100%;
}
.form-alternative {
  text-align: center;
  margin-top: 22px !important;
  font-size: 12px !important;
}
.form-alternative a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--green);
}
.legal-wrap {
  max-width: 810px;
  margin: auto;
}
.legal-wrap h2 {
  font-family: var(--sans);
  font-size: 21px;
  letter-spacing: -0.3px;
  font-weight: 500;
  margin: 34px 0 14px;
}
.legal-wrap p,
.legal-wrap li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.legal-wrap a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-wrap ul {
  padding-left: 21px;
}
.legal-summary {
  padding: 25px 29px;
  background: var(--sage);
  border-radius: 9px;
  margin-bottom: 35px;
}
.legal-summary p {
  color: #516348;
}
.article-hero {
  padding: 55px 0 44px;
  text-align: center;
}
.article-hero h1 {
  max-width: 830px;
  margin: 0 auto 20px;
  font-size: 58px;
  line-height: 1.15;
}
.article-hero > p {
  max-width: 620px;
  margin: auto;
}
.article-cover {
  width: 100%;
  height: 455px;
  border-radius: 14px;
  object-position: center;
}
.article-content {
  max-width: 760px;
  margin: 45px auto 0;
}
.article-content h2 {
  font-size: 32px;
  margin: 36px 0 18px;
}
.article-content p,
.article-content li {
  font-size: 15px;
  line-height: 1.9;
  color: #697168;
}
.article-content ul,
.article-content ol {
  padding-left: 23px;
}
.article-content li {
  margin: 10px 0;
}
.article-callout {
  background: var(--sage);
  border-left: 3px solid #8ca579;
  padding: 23px 27px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.article-callout p {
  color: #4c6241;
}
.article-disclaimer {
  font-size: 11px !important;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 35px !important;
}
.article-end {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.article-end .text-link:first-child svg {
  transform: rotate(180deg);
}
.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 80px 25px;
}
.not-found h1 {
  margin-bottom: 25px;
}
.not-found p {
  margin-bottom: 25px;
}
.reveal {
  animation: fade-in 0.65s ease both;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1270px;
  }
  .hero-image {
    height: 565px;
  }
  .hero {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: 81px;
  }
}
@media (max-width: 1199px) {
  .nav-links {
    gap: 23px;
  }
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-image {
    height: 500px;
  }
  .hero-copy {
    padding-right: 18px;
  }
  .hero-visual {
    margin-left: 10px;
  }
  .hero-card {
    right: 20px;
  }
  .about-visual {
    padding-right: 25px;
  }
  .about-copy {
    padding-left: 10px;
  }
  .why-grid {
    padding-left: 0;
  }
  .footer-top .row {
    --bs-gutter-x: 20px;
  }
  .value-item {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 40px;
  }
  .header-inner {
    height: 78px;
  }
  .nav-links {
    gap: 17px;
  }
  .nav-links > a:not(.btn) {
    font-size: 11px;
  }
  .nav-links .btn {
    margin-left: 0;
    padding: 10px 14px;
  }
  .brand-wordmark {
    font-size: 21px;
  }
  .brand-symbol {
    width: 34px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-copy {
    padding-right: 0;
  }
  .hero-visual {
    margin-left: 5px;
  }
  .hero-image {
    height: 485px;
    border-top-left-radius: 110px;
  }
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    padding: 13px 19px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-card {
    left: -15px;
    right: 15px;
    padding: 17px 15px;
    gap: 10px;
  }
  .hero-card strong {
    font-size: 12px;
  }
  .hero-card p {
    font-size: 10px;
  }
  .hero-stamp {
    width: 76px;
    height: 76px;
    left: -20px;
  }
  .hero-stamp span {
    font-size: 6px;
  }
  .section {
    padding: 76px 0;
  }
  .values-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 40px;
  }
  .value-divider {
    display: none;
  }
  .value-item {
    font-size: 12px;
  }
  .about-copy {
    padding-left: 0;
  }
  .about-visual {
    margin-bottom: 15px;
  }
  .about-visual > img {
    height: 400px;
  }
  .why-intro {
    margin-bottom: 38px;
  }
  .why-section h2,
  .why-intro p {
    max-width: 550px;
  }
  .why-grid {
    gap: 32px;
  }
  .quote-card {
    padding: 23px;
  }
  .blog-card img {
    height: 205px;
  }
  .blog-card h3 {
    font-size: 24px;
  }
  .cta-box {
    padding: 37px;
  }
  .cta-box h2 {
    font-size: 35px;
  }
  .footer-top .row {
    --bs-gutter-y: 32px;
  }
  .faq-copy {
    padding-right: 25px;
  }
  .contact-info {
    padding-right: 15px;
  }
  .form-card {
    padding: 28px;
  }
  .newsletter-copy {
    padding-right: 25px;
  }
  .page-hero h1 {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 23px;
    padding-right: 23px;
  }
  .topbar {
    font-size: 9px;
    padding: 7px;
  }
  .header-inner {
    height: 73px;
  }
  .brand-wordmark {
    font-size: 22px;
  }
  .brand-symbol {
    height: 42px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 22px 25px;
    box-shadow: 0 10px 20px #243c3010;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
    gap: 9px;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
  }
  .nav-links > a:not(.btn) {
    font-size: 14px;
    padding: 9px 6px;
  }
  .nav-links > a.active:after {
    display: none;
  }
  .nav-links .btn {
    margin-top: 8px;
    align-self: flex-start;
  }
  .hero {
    padding: 39px 0 45px;
  }
  .hero h1 {
    font-size: 60px;
    max-width: 480px;
    letter-spacing: -1.6px;
    margin-bottom: 21px;
  }
  .hero-copy > p {
    font-size: 14px;
    max-width: 400px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 25px;
  }
  .hero-note {
    margin-top: 24px;
  }
  .hero .row {
    --bs-gutter-y: 34px;
  }
  .hero-visual {
    margin: 0 0 0 16px;
  }
  .hero-image {
    height: 450px;
    border-top-left-radius: 115px;
    object-position: center 38%;
  }
  .hero-stamp {
    left: -15px;
    top: 24px;
    width: 82px;
    height: 82px;
  }
  .hero-stamp span {
    font-size: 7px;
  }
  .hero-card {
    left: -16px;
    bottom: 23px;
    right: 24px;
    padding: 20px;
    gap: 14px;
  }
  .hero-card strong {
    font-size: 14px;
  }
  .hero-card p {
    font-size: 11px;
  }
  .values-strip {
    padding: 24px 0;
  }
  .values-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 15px;
  }
  .value-item {
    font-size: 10px;
    gap: 9px;
    align-items: center;
  }
  .value-item svg {
    width: 19px;
    flex-shrink: 0;
  }
  .section {
    padding: 62px 0;
  }
  .section-small {
    padding: 45px 0;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -0.8px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.7px;
    margin-bottom: 15px;
  }
  .about-visual {
    padding-right: 20px;
    margin-bottom: 24px;
  }
  .about-visual > img {
    height: 370px;
  }
  .about-mini {
    right: 0;
    width: 177px;
    padding: 21px;
  }
  .about-mini h3 {
    font-size: 25px;
  }
  .about-copy h2 {
    margin-bottom: 20px;
  }
  .section-heading {
    align-items: start;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .section-heading .btn {
    padding: 11px 19px;
    min-height: 44px;
  }
  .section-heading p {
    font-size: 13px;
  }
  .service-card > img {
    height: 230px;
  }
  .service-card h3 {
    font-size: 26px;
  }
  .service-bottom {
    flex-direction: column;
    gap: 3px;
    text-align: center;
    font-size: 11px;
  }
  .why-section h2 {
    font-size: 39px;
  }
  .why-grid {
    gap: 29px 24px;
  }
  .why-item h3 {
    font-size: 15px;
  }
  .why-item p {
    font-size: 12px;
  }
  .quote-card {
    padding: 26px;
  }
  .blog-card img {
    height: 245px;
  }
  .blog-card {
    margin-bottom: 14px;
  }
  .blog-card h3 {
    font-size: 27px;
  }
  .faq-copy {
    padding-right: 0;
    margin-bottom: 18px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .cta-section {
    padding: 49px 0;
  }
  .cta-box {
    padding: 35px 27px;
    flex-direction: column;
    align-items: start;
    gap: 26px;
  }
  .cta-box h2 {
    font-size: 35px;
  }
  .cta-box p {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 46px;
  }
  .footer-about {
    max-width: 320px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
    gap: 11px;
    padding: 22px 0;
  }
  .footer-legal {
    gap: 22px;
  }
  .footer-title {
    margin-bottom: 15px;
  }
  .page-hero {
    padding: 44px 0 40px;
  }
  .page-hero h1 {
    font-size: 44px;
    letter-spacing: -1px;
  }
  .page-hero p {
    font-size: 13px;
  }
  .breadcrumb {
    margin-bottom: 18px;
  }
  .about-detail-img {
    height: 410px;
    margin-bottom: 18px;
  }
  .contact-info {
    padding-right: 0;
    margin-bottom: 15px;
  }
  .contact-info h2 {
    font-size: 36px;
  }
  .form-card {
    padding: 27px 23px;
  }
  .form-card .btn {
    width: 100%;
  }
  .location-panel {
    padding: 26px;
    flex-direction: column;
    align-items: start;
  }
  .location-intro {
    gap: 15px;
  }
  .location-intro > .circle-icon {
    width: 44px;
    height: 44px;
  }
  .location-panel h3 {
    font-size: 22px;
  }
  .location-panel p {
    font-size: 12px;
  }
  .newsletter-copy {
    padding: 0 0 10px;
  }
  .newsletter-copy h2 {
    font-size: 37px;
  }
  .article-hero {
    padding: 39px 0 30px;
  }
  .article-hero h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }
  .article-cover {
    height: 290px;
  }
  .article-content {
    margin-top: 30px;
  }
  .article-content h2 {
    font-size: 29px;
  }
  .article-content p,
  .article-content li {
    font-size: 14px;
  }
  .article-end {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }
  .article-callout {
    padding: 20px;
  }
  .search-box {
    width: 100%;
  }
  .legal-summary {
    padding: 23px;
  }
  .legal-wrap h2 {
    font-size: 19px;
  }
}
@media (max-width: 375px) {
  .hero h1 {
    font-size: 52px;
  }
  .hero-image {
    height: 390px;
  }
  .hero-card {
    right: 10px;
    padding: 14px;
  }
  .hero-card strong {
    font-size: 12px;
  }
  .value-item {
    font-size: 9px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .brand-wordmark {
    font-size: 20px;
  }
  .container {
    padding-left: 19px;
    padding-right: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(41px, 12.5vw, 58px);
    line-height: 1.1;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .btn {
    font-size: 12px;
    padding: 13px 17px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
}
