:root {
  --ink: #17211d;
  --ink-soft: #45514b;
  --forest: #174f3d;
  --forest-dark: #0f352a;
  --sage: #a9bdb2;
  --mist: #eef3f0;
  --paper: #fbfcfb;
  --white: #ffffff;
  --warm: #cba56d;
  --line: #d7dfda;
  --shadow: 0 18px 55px rgba(20, 45, 35, 0.14);
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest-dark);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(11, 41, 32, 0.42);
  backdrop-filter: blur(7px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(15, 53, 42, 0.98);
  box-shadow: 0 8px 24px rgba(8, 32, 24, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 700;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

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

.desktop-nav a,
.header-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--warm);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--warm);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: min(88vh, 900px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 10%;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 33, 26, 0.96) 0%, rgba(8, 33, 26, 0.82) 40%, rgba(8, 33, 26, 0.22) 70%, rgba(8, 33, 26, 0.06) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 84px;
}

.hero-copy {
  width: min(620px, 56%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.service-item-cta .eyebrow {
  color: #d9bc8f;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  font-size: 82px;
}

h2 {
  font-size: 56px;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.28;
}

.hero-description {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--warm);
  color: #1f2a24;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  color: var(--warm);
}

.hero-next {
  position: absolute;
  right: 32px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-next svg {
  width: 17px;
}

.section {
  padding: 112px 0;
}

.services {
  padding-top: 48px;
}

.launch-notice {
  padding: 26px 0;
  border-bottom: 1px solid #d2dce3;
  background: #edf2f6;
  color: #283e4b;
}

.launch-notice-inner {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.launch-notice svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.launch-notice strong {
  font-size: 17px;
}

.launch-notice p {
  max-width: 980px;
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 68px;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 300px;
  padding: 34px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  background: var(--mist);
  color: var(--forest);
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-number {
  position: absolute;
  top: 34px;
  right: 32px;
  color: #89958f;
  font-size: 12px;
  font-weight: 700;
}

.service-item h3 {
  margin-bottom: 12px;
}

.service-item > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-item-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--forest);
  color: var(--white);
}

.service-item-cta h3 {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.pricing-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.pricing-layout h2 {
  max-width: 420px;
  font-size: 42px;
  line-height: 1.15;
}

.pricing-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.pricing-copy .button {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding: 48px 0;
  }

  .pricing-layout h2 {
    font-size: 34px;
  }
}

.section-dark {
  padding: 90px 0;
  background: var(--forest-dark);
  color: var(--white);
}

.for-whom-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 90px;
}

.for-whom-copy h2 {
  max-width: 690px;
  font-size: 56px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-list div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-list svg {
  width: 24px;
  height: 24px;
  color: var(--warm);
}

.audience-list span {
  font-size: 14px;
  font-weight: 600;
}

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

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

.process-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0 34px;
  border-bottom: 1px solid #c9d3cd;
}

.process-list li:first-child {
  border-top: 1px solid #c9d3cd;
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--sage);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 92px;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
}

.about-copy h2 {
  max-width: 710px;
}

.about-copy > p {
  max-width: 700px;
  color: var(--ink-soft);
}

.about-copy .about-lead {
  margin-top: 30px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-list div {
  min-height: 132px;
  padding: 22px;
  background: var(--paper);
}

.experience-list dt {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.experience-list dd {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.contact {
  background: #e3ebe6;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-details {
  border-top: 1px solid #b8c8bf;
}

.contact-details > a,
.contact-details > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  border-bottom: 1px solid #b8c8bf;
  text-decoration: none;
}

.contact-details > a:hover strong,
.contact-details > a:focus-visible strong {
  color: var(--forest);
}

.contact-details svg {
  width: 23px;
  height: 23px;
  color: var(--forest);
}

.contact-details span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-details small {
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-details strong {
  font-size: 22px;
  overflow-wrap: anywhere;
  transition: color 150ms ease;
}

.site-footer {
  padding: 52px 0 24px;
  background: #0b2920;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr 44px;
  align-items: center;
  gap: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-align: center;
}

.footer-main > a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-main > a svg {
  width: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

:focus-visible {
  outline: 3px solid #e2bc84;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 780px);
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: 86px;
    right: 0;
    left: 0;
    display: grid;
    padding: 16px 18px 26px;
    background: var(--forest-dark);
    box-shadow: 0 20px 36px rgba(5, 28, 20, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
  }

  .hero {
    min-height: 700px;
    height: min(900px, 92svh);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-media {
    top: 86px;
    bottom: auto;
    height: calc(100% - 370px);
    max-height: 450px;
  }

  .hero-media img {
    object-position: 95% 28%;
  }

  .hero-shade {
    background: linear-gradient(0deg, #0f352a 0%, #0f352a 37%, rgba(15, 53, 42, 0) 65%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 64px;
  }

  h2,
  .for-whom-copy h2 {
    font-size: 48px;
  }

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

  .split-heading,
  .for-whom-inner,
  .process-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .for-whom-inner,
  .process-layout,
  .about-layout,
  .contact-layout {
    gap: 44px;
  }

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

  .for-whom-inner {
    max-width: 780px;
  }

  .process-intro {
    position: static;
  }

  .about-photo {
    width: min(460px, 75%);
  }

  .contact-details {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

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

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

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    display: none;
  }

  .mobile-nav {
    top: 74px;
  }

  .hero {
    min-height: min(660px, calc(100svh - 28px));
    height: min(760px, 86svh);
  }

  .hero-media {
    top: 74px;
    bottom: auto;
    height: calc(100% - 380px);
    min-height: 170px;
    max-height: 320px;
  }

  .hero-media img {
    object-position: 95% 28%;
  }

  .hero-shade {
    background: linear-gradient(0deg, #0f352a 0%, #0f352a 43%, rgba(15, 53, 42, 0) 62%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

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

  .hero-description {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    gap: 10px 18px;
    margin-top: 22px;
  }

  .hero-next {
    display: none;
  }

  .hero-actions .button-secondary,
  .hero .trust-row {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .service-item {
    min-height: 260px;
    padding: 28px 24px;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .section-dark {
    padding: 72px 0;
  }

  .audience-list div {
    min-height: 104px;
    padding: 18px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .process-list li > span {
    width: 42px;
    height: 42px;
  }

  .about-photo {
    width: 100%;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .experience-list div {
    min-height: auto;
  }

  .contact-details > a,
  .contact-details > div {
    grid-template-columns: 40px 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 28px;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}

@media (max-width: 640px) and (max-height: 740px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 20px;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-inner {
    padding-bottom: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
/* Launch additions */
button,
input,
textarea {
  font: inherit;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: start;
}

.contact-details {
  margin-top: 34px;
}

.contact-details strong {
  font-size: 19px;
}

.contact-details > a {
  padding-block: 16px;
}

.contact-details .callback-note {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.contact-form {
  padding: 38px;
  border: 1px solid #b8c8bf;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 79, 61, 0.1);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading .eyebrow {
  margin-bottom: 10px;
}

.form-heading h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
}

.form-heading > p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field > span,
.field > label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.budget-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 10px;
}

.budget-inputs > * {
  min-width: 0;
}

@media (max-width: 420px) {
  .budget-inputs {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  border: 1px solid #afbeb6;
  border-radius: 0;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input,
.field select {
  min-height: 48px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 79, 61, 0.13);
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--forest);
}

.privacy-check a,
.footer-bottom a {
  text-underline-offset: 3px;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom a {
  color: inherit;
}

.legal-page {
  min-height: 100vh;
  background: var(--mist);
}

.legal-header {
  padding: 24px 0;
  background: var(--forest-dark);
  color: var(--white);
}

.legal-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header > .shell > a:last-child {
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-main {
  padding: 72px 0 90px;
}

.legal-content {
  max-width: 820px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-content h1 {
  max-width: none;
  color: var(--forest-dark);
  font-size: 48px;
}

.legal-content h2 {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--forest);
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .contact-form,
  .legal-content {
    padding: 28px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-header .brand-text small {
    display: block;
  }

  .legal-content h1 {
    font-size: 38px;
  }
}
