:root {
  --ink: #171c19;
  --ink-soft: #4f5853;
  --forest: #173a30;
  --forest-light: #2d5b4b;
  --sage: #dce5d9;
  --clay: #bd673f;
  --clay-dark: #9d4e2e;
  --canvas: #f3f3ee;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #d8dbd4;
  --line-dark: rgba(255, 255, 255, 0.19);
  --header-height: 78px;
  --container: 1240px;
  --radius: 6px;
  --shadow: 0 24px 70px rgba(23, 28, 25, 0.13);
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  max-width: 100%;
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  font-size: 78px;
  line-height: 0.98;
}

h2 {
  font-size: 54px;
  line-height: 1.03;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

::selection {
  color: var(--white);
  background: var(--clay);
}

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

[id] {
  scroll-margin-top: var(--header-height);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 11px 15px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  font-weight: 700;
  transform: translateY(-150%);
}

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

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

.overline {
  margin-bottom: 20px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overline-light {
  color: #efb08f;
}

.section-index {
  color: var(--clay);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-height);
  color: var(--white);
  background: rgba(18, 32, 27, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid,
.site-header.is-open,
.plain-page .site-header {
  color: var(--ink);
  background: rgba(251, 251, 248, 0.96);
  border-color: rgba(23, 28, 25, 0.11);
  box-shadow: 0 10px 34px rgba(23, 28, 25, 0.08);
}

.header-inner {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand-symbol {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.site-header.is-solid .brand-symbol,
.site-header.is-open .brand-symbol,
.plain-page .brand-symbol {
  box-shadow: 0 0 0 1px rgba(23, 28, 25, 0.1);
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  white-space: nowrap;
}

.brand-wordmark strong {
  font-size: 20px;
  font-weight: 850;
  line-height: 0.9;
}

.brand-wordmark span {
  font-size: 10px;
  font-weight: 720;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  padding: 11px 12px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 680;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.site-nav a:focus-visible {
  outline-offset: 0;
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--clay);
  border: 1px solid var(--clay);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 3px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 18px;
}

.nav-toggle span:nth-child(2) {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100svh;
  min-height: 720px;
  max-height: none;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 29, 24, 0.92) 0%, rgba(13, 29, 24, 0.79) 35%, rgba(13, 29, 24, 0.22) 70%, rgba(13, 29, 24, 0.04) 100%),
    linear-gradient(0deg, rgba(13, 29, 24, 0.68) 0%, transparent 38%);
}

.hero-content {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 122px;
}

.hero h1 {
  max-width: 840px;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-accent,
.button-primary {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.button-accent:hover,
.button-accent:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 760;
}

.text-link-light {
  color: var(--white);
}

.text-link:hover,
.text-link:focus-visible {
  color: #efb08f;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 74px;
  grid-template-columns: repeat(3, minmax(110px, 1fr)) minmax(190px, 1.5fr);
  align-items: center;
  padding: 0 max(24px, calc((100% - var(--container)) / 2));
  background: rgba(13, 29, 24, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-bottom p,
.hero-bottom span {
  margin: 0;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 720;
}

.hero-bottom p {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bottom p:first-child {
  padding-left: 0;
}

.hero-bottom span {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

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

.about-simple {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 96px;
  align-items: start;
  padding-top: 116px;
  padding-bottom: 116px;
}

.about-intro h2 {
  max-width: 580px;
  font-size: 50px;
}

.about-content {
  padding-top: 35px;
}

.about-lead {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 680;
  line-height: 1.45;
}

.about-content > p:not(.about-lead) {
  max-width: 650px;
  color: var(--ink-soft);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.about-points li {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  padding: 21px 20px 21px 0;
}

.about-points li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.about-points strong {
  color: var(--forest);
  font-size: 14px;
  font-weight: 760;
}

.about-points span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.offer {
  background: var(--canvas);
}

.offer-inner {
  padding-top: 112px;
  padding-bottom: 112px;
}

.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.offer-head > p {
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-card-type {
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 34px 0 14px;
  color: var(--forest);
  font-size: 29px;
}

.product-card > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.product-card .product-card-meta {
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.offer-price {
  align-self: flex-start;
  margin-top: 16px;
  padding: 10px 12px;
  color: var(--clay-dark);
  background: #f0ddd3;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.offer-price:hover,
.offer-price:focus-visible {
  color: var(--white);
  background: var(--clay-dark);
  transform: translateY(-2px);
}

.gallery {
  padding-top: 132px;
  padding-bottom: 132px;
}

.gallery-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 62px;
}

.gallery-head > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-item-a {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item-b,
.gallery-item-c {
  grid-column: span 3;
}

.gallery-item-d {
  grid-column: span 6;
}

.gallery-item-e,
.gallery-item-f {
  grid-column: span 3;
}

.gallery-item-g {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 29, 24, 0.78), transparent);
  pointer-events: none;
}

.gallery-item > span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  font-weight: 720;
  text-align: left;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline-offset: 4px;
}

.sales {
  color: var(--white);
  background: var(--forest);
}

.sales-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 92px;
  padding-top: 124px;
  padding-bottom: 124px;
}

.sales h2,
.sales h3 {
  color: var(--white);
}

.sales-intro > p:last-child {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.sales-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid var(--line-dark);
}

.sales-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.7fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: start;
  padding: 29px 0;
  border-top: 1px solid var(--line-dark);
}

.sales-steps span {
  color: #efb08f;
  font-size: 12px;
  font-weight: 800;
}

.sales-steps h3 {
  font-size: 20px;
}

.sales-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.promise {
  color: var(--white);
  background: var(--clay);
}

.promise-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: 56px;
  align-items: end;
  padding-top: 104px;
  padding-bottom: 104px;
}

.promise .overline {
  align-self: start;
  color: rgba(255, 255, 255, 0.7);
}

.promise h2 {
  color: var(--white);
  font-size: 60px;
}

.promise p:last-child {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: 70px minmax(280px, 0.62fr) minmax(520px, 1fr);
  gap: 58px;
  padding-top: 132px;
  padding-bottom: 132px;
}

.contact-copy > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.inquiry-form {
  position: relative;
  padding: 30px;
  background: var(--canvas);
  border-top: 3px solid var(--forest);
  border-radius: 0 0 var(--radius) var(--radius);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 11px 13px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(45, 91, 75, 0.13);
}

.form-field select.is-prefilled {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(189, 103, 63, 0.14);
}

.inquiry-form.was-validated :invalid:not(:focus) {
  border-color: var(--clay);
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--forest);
}

.form-consent a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-actions .button {
  flex: 0 0 auto;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-status {
  flex: 1 1 240px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.form-status.is-success {
  color: var(--forest);
}

.form-status.is-error {
  color: var(--clay-dark);
}

.site-footer {
  flex: 0 0 auto;
  padding: 72px max(24px, calc((100% - var(--container)) / 2)) 30px;
  color: var(--white);
  background: var(--ink);
}

.brand-footer {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(2, minmax(150px, 0.62fr)) minmax(220px, 0.85fr);
  gap: 52px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column nav a,
.footer-bottom nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.footer-column nav a:hover,
.footer-column nav a:focus-visible,
.footer-bottom nav a:hover,
.footer-bottom nav a:focus-visible {
  color: var(--white);
}

.footer-contact address {
  display: grid;
  gap: 13px;
  font-style: normal;
}

.footer-contact address p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.footer-contact address span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 650;
}

.footer-contact address strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 680;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom > p {
  margin: 0;
}

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

.footer-bottom nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 56px minmax(0, 1100px) 56px;
  gap: 20px;
  place-content: center;
  align-items: center;
  padding: 44px;
  color: var(--white);
  background: rgba(10, 14, 12, 0.95);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  min-width: 0;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.lightbox figcaption small {
  color: rgba(255, 255, 255, 0.5);
}

.lightbox-close,
.lightbox-nav {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 3px;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 25px;
  left: 14px;
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav::before {
  position: absolute;
  top: 18px;
  width: 13px;
  height: 13px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.lightbox-prev::before {
  left: 20px;
  transform: rotate(-135deg);
}

.lightbox-next::before {
  right: 20px;
  transform: rotate(45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.plain-page {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding-top: var(--header-height);
  background: var(--paper);
}

.plain-page > main {
  flex: 1 0 auto;
}

.not-found-page > main {
  display: flex;
}

.not-found-page .plain-hero {
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.plain-hero {
  padding: 92px max(24px, calc((100% - var(--container)) / 2)) 80px;
  color: var(--white);
  background: var(--forest);
}

.plain-hero .overline {
  color: #efb08f;
}

.plain-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: 64px;
}

.plain-hero > p:not(.overline) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.plain-hero .button {
  margin-top: 10px;
}

.content-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 112px;
}

.content-page article {
  color: var(--ink-soft);
}

.content-page h2 {
  margin: 48px 0 15px;
  color: var(--ink);
  font-size: 28px;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p,
.content-page li {
  line-height: 1.75;
}

.content-page ul {
  padding-left: 21px;
}

.legal-alert {
  padding: 18px 20px;
  color: var(--clay-dark);
  background: #f3e4dc;
  border-left: 3px solid var(--clay);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .product-card:nth-child(2),
.js .sales-steps li:nth-child(2) {
  transition-delay: 70ms;
}

.js .product-card:nth-child(3),
.js .sales-steps li:nth-child(3) {
  transition-delay: 140ms;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }

  .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .gallery-head,
  .contact {
    grid-template-columns: 48px minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 36px;
  }

  .about-simple {
    gap: 56px;
  }

  .about-intro h2 {
    font-size: 44px;
  }

  .product-card {
    min-height: 340px;
    padding: 26px;
  }

  .sales-inner {
    gap: 54px;
  }

  .sales-steps li {
    grid-template-columns: 42px minmax(160px, 0.65fr) minmax(200px, 1fr);
  }

  .promise-inner {
    grid-template-columns: 100px minmax(0, 1fr) minmax(260px, 0.55fr);
  }

  .promise h2 {
    font-size: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 24px 22px;
    color: var(--ink);
    background: rgba(251, 251, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(23, 28, 25, 0.1);
    transform: translateY(-125%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 4px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 15px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 12px 0 0;
    padding: 14px;
    color: var(--white);
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 128px;
  }

  .offer-head,
  .sales-inner,
  .promise-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .offer-head {
    gap: 24px;
  }

  .offer-head > p {
    max-width: 620px;
  }

  .about-simple {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-intro h2 {
    max-width: 720px;
  }

  .about-content {
    max-width: 720px;
    padding-top: 0;
  }

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

  .product-card {
    min-height: 0;
  }

  .gallery-head {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .gallery-head > p {
    grid-column: 2;
    max-width: 620px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .sales-inner {
    gap: 62px;
  }

  .promise-inner {
    gap: 24px;
  }

  .promise .overline {
    margin-bottom: 0;
  }

  .promise p:last-child {
    max-width: 620px;
  }

  .contact .section-index {
    display: none;
  }

  .contact {
    gap: 54px;
  }

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

@media (max-width: 680px) {
  .section,
  .header-inner,
  .hero-content,
  .content-page {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: 44px;
    line-height: 1.01;
  }

  h2,
  .plain-hero h1 {
    font-size: 36px;
  }

  h3 {
    font-size: 21px;
  }

  .overline {
    margin-bottom: 15px;
  }

  .header-inner {
    gap: 16px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-wordmark strong {
    font-size: 18px;
  }

  .hero {
    height: 100svh;
    min-height: 640px;
    max-height: none;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 29, 24, 0.9), rgba(13, 29, 24, 0.52)),
      linear-gradient(0deg, rgba(13, 29, 24, 0.84) 0%, rgba(13, 29, 24, 0.34) 50%, rgba(13, 29, 24, 0.08) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 150px;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 16px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-bottom {
    min-height: 112px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 16px;
  }

  .hero-bottom p,
  .hero-bottom span {
    padding: 0 8px;
    font-size: 11px;
    text-align: center;
  }

  .hero-bottom p:first-child {
    padding-left: 8px;
  }

  .hero-bottom span {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .gallery-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-simple,
  .gallery,
  .contact {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .gallery-head > p {
    grid-column: auto;
  }

  .about-intro h2 {
    font-size: 36px;
  }

  .about-simple {
    gap: 28px;
  }

  .about-lead {
    font-size: 21px;
  }

  .about-points {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .about-points li {
    padding: 18px 0;
  }

  .about-points li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .offer-inner,
  .sales-inner {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .offer-head {
    margin-bottom: 48px;
  }

  .product-card {
    padding: 24px;
  }

  .product-card h3 {
    margin-top: 28px;
    font-size: 25px;
  }

  .offer-price {
    align-self: flex-start;
  }

  .gallery-head {
    margin-bottom: 42px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .gallery-item-a,
  .gallery-item-b,
  .gallery-item-c,
  .gallery-item-d,
  .gallery-item-e,
  .gallery-item-f,
  .gallery-item-g {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .sales-inner {
    gap: 48px;
  }

  .sales-intro > p:last-child {
    font-size: 16px;
  }

  .sales-steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px 16px;
    padding: 25px 0;
  }

  .sales-steps h3 {
    font-size: 19px;
  }

  .sales-steps p {
    grid-column: 2;
  }

  .promise-inner {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .promise h2 {
    font-size: 40px;
  }

  .promise p:last-child {
    font-size: 16px;
  }

  .contact-copy > p:last-child {
    font-size: 17px;
  }

  .inquiry-form {
    padding: 22px 18px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    padding: 46px 16px 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

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

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
    padding: 70px 12px 24px;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 46px;
    height: 46px;
  }

  .lightbox-nav::before {
    top: 15px;
  }

  .lightbox-prev::before {
    left: 18px;
  }

  .lightbox-next::before {
    right: 18px;
  }

  .lightbox-close::before,
  .lightbox-close::after {
    top: 22px;
    left: 12px;
  }

  .lightbox figcaption {
    flex-direction: column;
    gap: 3px;
  }

  .plain-hero {
    padding: 72px 16px 66px;
  }

  .plain-hero > p:not(.overline) {
    font-size: 16px;
  }

  .content-page {
    padding: 64px 0 86px;
  }

  .content-page h2 {
    font-size: 25px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 39px;
  }

  h2,
  .plain-hero h1 {
    font-size: 32px;
  }

  .brand-wordmark span {
    font-size: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
