:root {
  --ink: #1e241c;
  --forest: #31402c;
  --forest-deep: #31402c;
  --sage: #83a471;
  --sage-soft: #e8f0e3;
  --cream: #fbf8f1;
  --paper: #fffefa;
  --mist: #e8f0e3;
  --brick: #5f7d50;
  --muted: #6f735f;
  --line: rgba(131, 164, 113, 0.28);
  --shadow: 0 22px 64px rgba(49, 64, 44, 0.09);
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  display: none;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 64px;
}

h2 {
  max-width: 760px;
  font-size: 44px;
}

h3 {
  font-size: 27px;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid rgba(131, 164, 113, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid rgba(131, 164, 113, 0.3);
  border-radius: 999px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.brand span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.nav-group {
  position: relative;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-group-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.desktop-nav .nav-group.is-active > .nav-group-trigger {
  color: var(--forest-deep);
  background: var(--sage-soft);
}

.nav-submenu {
  position: absolute;
  z-index: 40;
  top: 100%;
  left: 0;
  width: 238px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.desktop-nav .nav-submenu a {
  display: block;
  padding: 10px 11px;
  font-size: 13px;
  font-weight: 650;
  white-space: normal;
}

.desktop-nav a {
  padding: 11px 10px;
  color: var(--forest-deep);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.desktop-nav .nav-cta {
  margin-left: 7px;
  padding: 11px 15px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
}

.desktop-nav .nav-cta:hover,
.desktop-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--brick);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  color: var(--forest-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.mobile-panel {
  position: absolute;
  top: 56px;
  right: 0;
  display: grid;
  width: min(310px, calc(100vw - 32px));
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-panel .mobile-parent {
  color: var(--forest-deep);
}

.mobile-panel .mobile-subitem {
  margin-left: 12px;
  padding: 9px 12px 9px 17px;
  color: var(--muted);
  border-left: 2px solid var(--sage);
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  font-weight: 650;
}

.mobile-panel a {
  padding: 12px 14px;
  color: var(--forest-deep);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: var(--sage-soft);
}

.mobile-panel .mobile-cta {
  margin-top: 4px;
  color: #fff;
  background: var(--forest);
  border-radius: 999px;
  text-align: center;
}

.mobile-panel .mobile-cta:hover {
  color: #fff;
  background: var(--brick);
}

.eyebrow {
  color: var(--brick);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  max-width: 690px;
  color: #4f5a54;
  font-size: 19px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: #fff;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--brick);
  border-color: var(--brick);
}

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

.button.secondary:hover {
  background: var(--sage-soft);
  border-color: var(--sage);
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.home-hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 56px;
  padding-top: 54px;
  padding-bottom: 64px;
}

.home-hero-copy {
  display: grid;
  gap: 24px;
}

.home-hero-media {
  position: relative;
  min-height: 560px;
}

.home-hero-media > picture > img {
  width: calc(100% - 54px);
  height: 520px;
  margin-left: 54px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-note {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  width: 260px;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-note img {
  width: 78px;
  height: 94px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 5px;
}

.portrait-note strong {
  display: block;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.portrait-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.fact-band {
  color: #fff;
  background: var(--forest-deep);
}

.fact-grid {
  display: grid;
  min-height: 116px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.fact {
  padding: 20px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.fact:first-child {
  border-left: 0;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.fact span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.tint {
  background: rgba(239, 228, 211, 0.56);
  border-block: 1px solid rgba(131, 164, 113, 0.18);
}

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

.section-heading {
  display: grid;
  max-width: 800px;
  gap: 15px;
}

.section-heading .lead {
  margin-top: 4px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.service-link {
  display: grid;
  min-height: 330px;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-link:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-link.featured {
  color: #fff;
  background: var(--forest);
}

.service-link.featured h3,
.service-link.featured .eyebrow {
  color: #fff;
}

.service-link p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.service-link.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.service-link .link-label {
  align-self: end;
  color: var(--brick);
  font-size: 14px;
  font-weight: 800;
}

.service-link.featured .link-label {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

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

.split-copy {
  display: grid;
  gap: 20px;
}

.split-copy .button-row {
  margin-top: 8px;
}

.media-frame {
  overflow: hidden;
  background: var(--sage-soft);
  border-radius: 20px;
}

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

.media-frame.portrait img {
  object-position: center 20%;
}

.video-frame {
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.step {
  padding-top: 24px;
  border-top: 2px solid var(--sage);
}

.step-number {
  display: block;
  color: var(--brick);
  font-size: 12px;
  font-weight: 800;
}

.step h3 {
  margin-top: 26px;
}

.step p {
  margin-top: 13px;
  color: var(--muted);
}

.page-hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  align-items: center;
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 68px;
}

.page-hero-copy {
  display: grid;
  gap: 22px;
}

.page-hero h1 {
  font-size: 58px;
}

.page-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.page-hero-media.portrait img {
  object-position: center 20%;
}

.breadcrumb {
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
}

.content-grid > .eyebrow {
  padding-top: 8px;
}

.prose {
  display: grid;
  gap: 22px;
}

.prose p {
  color: #4f5a54;
  font-size: 18px;
}

.prose h2 {
  margin-bottom: 10px;
}

.prose h3 {
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row strong {
  color: var(--forest-deep);
}

.detail-row p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.feature {
  min-height: 210px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.feature h3 {
  font-size: 24px;
}

.feature p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
}

.callout {
  padding: 42px;
  color: #fff;
  background: var(--forest);
  border-radius: 24px;
}

.callout h2,
.callout h3 {
  color: #fff;
}

.callout p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.callout .button-row {
  margin-top: 26px;
}

.callout .button {
  color: var(--forest-deep);
  background: #fff;
  border-color: #fff;
}

.callout .button:hover {
  color: #fff;
  background: var(--brick);
  border-color: var(--brick);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.credential {
  padding: 22px;
  background: var(--cream);
  border-left: 3px solid var(--sage);
}

.credential strong,
.credential span {
  display: block;
}

.credential strong {
  color: var(--forest-deep);
}

.credential span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.gallery-two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 40px;
}

.gallery-two img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-two img:last-child {
  object-position: center 35%;
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 0;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brick);
  font-family: Inter, Arial, sans-serif;
  font-size: 25px;
}

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

.faq-list details p {
  max-width: 760px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
}

.contact-card {
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}

.contact-card dl {
  display: grid;
  gap: 19px;
  margin: 0;
}

.contact-card dt {
  color: var(--brick);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 5px 0 0;
  color: var(--forest-deep);
  font-size: 17px;
}

.contact-card .button {
  width: 100%;
  margin-top: 26px;
}

.legal-hero {
  min-height: 0;
  grid-template-columns: minmax(0, 820px);
  padding-bottom: 48px;
}

.legal-body {
  width: min(820px, calc(100% - 48px));
}

.legal-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-block:first-child {
  padding-top: 0;
}

.legal-block h2 {
  margin-bottom: 16px;
  font-size: 30px;
}

.legal-block h3 {
  margin: 22px 0 8px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-block a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-missing {
  padding: 14px 16px;
  color: #4a392f;
  background: #f4e8d9;
  border-left: 3px solid #a56d4f;
  border-radius: 0 12px 12px 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
  padding-top: 54px;
  padding-bottom: 48px;
}

.footer-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.footer-intro {
  max-width: 380px;
  margin-top: 14px;
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .home-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .page-hero {
    grid-template-columns: 1fr 0.75fr;
  }
}

@media (max-width: 820px) {
  h1,
  .page-hero h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 37px;
  }

  .home-hero,
  .page-hero,
  .split,
  .split.reverse,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
    gap: 40px;
  }

  .home-hero-media {
    min-height: 500px;
  }

  .page-hero {
    min-height: 0;
    gap: 38px;
  }

  .page-hero-media img {
    height: 380px;
  }

  .service-links,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-link {
    min-height: 0;
  }

  .fact {
    padding: 20px;
  }

  .split,
  .split.reverse,
  .content-grid,
  .contact-layout {
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  h1,
  .page-hero h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .lead {
    font-size: 17px;
  }

  .home-hero {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .home-hero-media {
    min-height: 410px;
  }

  .home-hero-media > picture > img {
    width: calc(100% - 26px);
    height: 370px;
    margin-left: 26px;
  }

  .portrait-note {
    width: 245px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .fact,
  .fact:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .fact:first-child {
    border-top: 0;
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .page-hero-media img,
  .media-frame img {
    height: 320px;
  }

  .feature-grid,
  .credentials,
  .gallery-two {
    grid-template-columns: 1fr;
  }

  .gallery-two img {
    height: 300px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .callout,
  .contact-card {
    padding: 28px 22px;
  }

  .legal-body {
    width: min(100% - 32px, 820px);
  }

  .video-caption {
    display: grid;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Preserve the approved a2 hero while the rest of the site uses the new page system. */
.hero-stage {
  color: #1e241c;
  background:
    radial-gradient(circle at top left, rgba(214, 190, 157, 0.28), transparent 34vw),
    linear-gradient(180deg, #fbf7ed 0%, #fbf8f1 48%, #f6eddf 100%);
}

.hero {
  display: grid;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: start;
  gap: 48px;
  padding: 54px 0 74px;
}

.hero-copy {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.hero .eyebrow {
  color: #5f7d50;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  color: #31402c;
  font-size: 72px;
  line-height: 0.95;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero .lead {
  max-width: 620px;
  margin-top: 26px;
  color: #3f4739;
  font-size: 21px;
  line-height: 1.55;
}

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

.hero .button {
  min-height: 44px;
  padding: 0 18px;
  color: #fffefa;
  background: #31402c;
  border-color: #31402c;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.hero .button:hover {
  background: #5f7d50;
  border-color: #5f7d50;
}

.hero .button.secondary {
  color: #31402c;
  background: rgba(255, 254, 250, 0.72);
  border-color: rgba(131, 164, 113, 0.34);
}

.hero .button.secondary:hover {
  color: #fffefa;
  background: #5f7d50;
  border-color: #5f7d50;
}

.hero-facts {
  display: grid;
  grid-column: 1;
  grid-row: 2;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.hero-facts .fact {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(131, 164, 113, 0.24);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(49, 64, 44, 0.05);
}

.hero-facts .fact strong {
  display: block;
  color: #31402c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.hero-facts .fact span {
  display: block;
  margin-top: 8px;
  color: #6f735f;
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 690px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-photo {
  position: absolute;
  inset: 0 0 70px 68px;
  overflow: hidden;
  background: #d6be9d;
  border-radius: 22px;
  box-shadow: 0 22px 64px rgba(49, 64, 44, 0.09);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-panel {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: min(350px, 62%);
  padding: 14px;
  color: #fff;
  background: rgba(49, 64, 44, 0.94);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(49, 64, 44, 0.24);
}

.portrait-panel img {
  width: 100%;
  height: 330px;
  margin-bottom: 12px;
  object-fit: cover;
  object-position: 50% 26%;
  border-radius: 14px;
}

.portrait-panel strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.portrait-panel p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 72px;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-media {
    min-height: 590px;
    grid-column: 1;
    grid-row: 2;
  }

  .hero-facts {
    grid-column: 1;
    grid-row: 3;
    margin-top: 10px;
  }
}

@media (max-width: 680px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
    display: block;
    width: 100%;
    min-height: 520px;
  }

  .hero-facts {
    order: 3;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .hero-photo {
    position: absolute;
    inset: 0 0 86px;
    min-height: 0;
  }

  .portrait-panel {
    right: 14px;
    bottom: 0;
    left: 14px;
    display: grid;
    width: auto;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .portrait-panel img {
    width: 120px;
    height: 120px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .portrait-panel strong {
    align-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .portrait-panel p {
    align-self: start;
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 40px;
  }
}
