:root {
  color: #163d2b;
  background: #fdfaf4;
  font-family: "DM Sans", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: #fdfaf4;
}
a {
  color: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.site-header {
  width: min(1180px, calc(100% - 64px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #163d2b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-decoration: none;
}
.brand svg {
  width: 29px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.brand svg circle {
  fill: currentColor;
  stroke: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.93rem;
  font-weight: 600;
}
.site-nav > a:not(.button),
.site-footer > a:not(.brand) {
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav > a:not(.button):hover,
.site-footer > a:not(.brand):hover,
.text-link:hover {
  color: #d36c5c;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 6px;
  background: #124b36;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 9px 18px rgba(18, 75, 54, 0.14);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.button:hover {
  background: #0b3928;
  transform: translateY(-2px);
}
.button--small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
}
.menu-toggle {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 64px;
  min-height: 690px;
  padding: 56px 0 88px;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 34px 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}
h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 5.6vw, 5.65rem);
  line-height: 0.98;
}
.hero-copy > p {
  max-width: 480px;
  margin-bottom: 32px;
  color: #496154;
  font-size: 1.1rem;
  line-height: 1.75;
}
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 526px;
  border-radius: 28px;
  background: #fdfaf4;
  box-shadow: 0 25px 60px rgba(43, 62, 46, 0.12);
}
.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 100% center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 29%, #000 49%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 29%, #000 49%);
}
.route-line {
  position: absolute;
  z-index: 0;
  bottom: 14px;
  left: -5%;
  width: 56%;
  height: 148px;
  fill: none;
  stroke: #5e896d;
  stroke-linecap: round;
  stroke-width: 1.4;
}
.route-line circle {
  fill: #e98572;
  stroke: #fdfaf4;
  stroke-width: 3;
}

.feature-band {
  background: #edf2e7;
  border-top: 1px solid #dce6d9;
  border-bottom: 1px solid #dce6d9;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-grid article {
  min-height: 264px;
  padding: 52px 46px 42px;
  border-right: 1px solid #d4e0d2;
  text-align: center;
}
.feature-grid article:last-child {
  border-right: 0;
}
.feature-icon {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  border: 1px solid #5f836b;
  border-radius: 50%;
}
.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}
.feature-icon--route::before {
  width: 20px;
  height: 20px;
  top: 13px;
  left: 18px;
  border: 2px solid #27543e;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.feature-icon--route::after {
  width: 5px;
  height: 5px;
  top: 19px;
  left: 25px;
  background: #27543e;
  border-radius: 50%;
}
.feature-icon--customer::before {
  width: 13px;
  height: 13px;
  top: 13px;
  left: 20px;
  border: 2px solid #27543e;
  border-radius: 50%;
  box-shadow:
    16px 7px 0 -2px #edf2e7,
    16px 7px 0 0 #27543e;
}
.feature-icon--customer::after {
  width: 27px;
  height: 13px;
  bottom: 12px;
  left: 14px;
  border: 2px solid #27543e;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}
.feature-icon--delivery::before {
  width: 25px;
  height: 17px;
  top: 18px;
  left: 14px;
  border: 2px solid #27543e;
  border-radius: 2px;
}
.feature-icon--delivery::after {
  width: 6px;
  height: 6px;
  bottom: 12px;
  left: 19px;
  border: 2px solid #27543e;
  border-radius: 50%;
  box-shadow:
    19px 0 0 -2px #edf2e7,
    19px 0 0 0 #27543e;
}
.feature-grid h2 {
  margin-bottom: 13px;
  font-size: 1.66rem;
  line-height: 1.1;
}
.feature-grid p {
  margin-bottom: 0;
  color: #52685a;
  font-size: 0.96rem;
  line-height: 1.65;
}

.process {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  column-gap: 120px;
  padding: 138px 0;
}
.section-label {
  margin-bottom: 16px;
  color: #365b47;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.process h2,
.closing h2 {
  font-size: clamp(2.55rem, 4vw, 4.2rem);
  line-height: 1.03;
}
.process-list {
  grid-column: 1;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 0 0 34px;
}
.process-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 21px;
  height: calc(100% - 14px);
  border-left: 1px dashed #6a9477;
}
.process-list span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #124b36;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.process-list h3 {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.33rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.process-list p {
  margin-bottom: 0;
  color: #53695a;
  font-size: 0.95rem;
  line-height: 1.6;
}
.process-note {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: 470px;
  padding: 70px;
  background: #1e4d38;
  color: #fdfaf4;
  border-radius: 26px;
  display: flex;
  align-items: end;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
}
.process-note p {
  max-width: 340px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 68px;
  padding: 88px 0;
  border-top: 1px solid #d9e0d4;
}
.closing > div:first-child {
  max-width: 630px;
}
.closing h2 {
  margin-bottom: 22px;
}
.closing p:not(.section-label) {
  margin-bottom: 0;
  color: #516759;
  line-height: 1.7;
}
.closing-action {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.text-link {
  color: #c95f51;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 36px;
  padding: 44px 0 52px;
  border-top: 1px solid #d9e0d4;
  color: #45604f;
}
.site-footer p {
  margin: 0;
  grid-column: 1;
  font-size: 0.9rem;
}
.site-footer > a:not(.brand) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 32px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero-media {
    min-height: 430px;
  }
  .route-line {
    bottom: 8px;
    left: 24%;
    width: 74%;
    opacity: 0.68;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 96px 0;
  }
  .process-list {
    grid-column: auto;
    margin-top: 38px;
  }
  .process-note {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
    margin-top: 14px;
  }
}

@media (max-width: 700px) {
  .section-shell,
  .site-header {
    width: min(100% - 40px, 1180px);
  }
  .site-header {
    min-height: 76px;
    position: relative;
  }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid #bed0c0;
    border-radius: 5px;
    background: transparent;
    color: #163d2b;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 19px;
    border-top: 2px solid currentColor;
    transition: transform 0.2s ease;
  }
  .site-nav {
    display: none;
    position: absolute;
    z-index: 4;
    top: 68px;
    right: 0;
    left: 0;
    padding: 22px;
    border: 1px solid #d8e2d7;
    border-radius: 10px;
    background: #fdfaf4;
    box-shadow: 0 16px 40px rgba(26, 53, 38, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav .button {
    text-align: center;
  }
  .hero {
    padding: 28px 0 66px;
  }
  h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }
  .hero-copy > p {
    font-size: 1rem;
  }
  .hero-media {
    min-height: 328px;
    border-radius: 18px;
  }
  .route-line {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    min-height: auto;
    padding: 43px 28px;
    border-right: 0;
    border-bottom: 1px solid #d4e0d2;
  }
  .feature-grid article:last-child {
    border-bottom: 0;
  }
  .process {
    padding: 78px 0;
  }
  .process h2,
  .closing h2 {
    font-size: 2.7rem;
  }
  .process-note {
    min-height: 235px;
    padding: 35px;
    border-radius: 18px;
  }
  .closing {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
    padding: 68px 0;
  }
  .closing-action {
    align-items: flex-start;
  }
  .text-link {
    text-align: left;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
  .site-footer > a:not(.brand) {
    grid-column: 1;
    grid-row: auto;
    margin-top: 16px;
  }
}
