.w1919s,
.w1919s * {
  box-sizing: border-box;
}

.w1919s {
  --w1919s-max: 1180px;
  --w1919s-pad: 46px;
  --w1919s-pad-mobile: 18px;
  --w1919s-gap: 82px;
  --w1919s-map-height: 430px;
  --w1919s-green-dark: #24382b;
  --w1919s-green: #4f6f46;
  --w1919s-brown: #8a5a35;
  --w1919s-cream: #f6f0e6;
  --w1919s-cream-light: #fbf7ef;
  --w1919s-white: #ffffff;
  --w1919s-text: #2b2b2b;
  color: var(--w1919s-text);
  font-family: inherit;
  line-height: 1.5;
}

.w1919s-layout-full {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}

.w1919s-layout-boxed {
  width: 100%;
  max-width: var(--w1919s-max);
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

.w1919s-section {
  padding: var(--w1919s-gap) 0;
}

.w1919s-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: var(--w1919s-pad);
  padding-right: var(--w1919s-pad);
}

.w1919s-layout-boxed .w1919s-inner {
  max-width: var(--w1919s-max);
}

.w1919s-layout-full .w1919s-inner {
  max-width: none;
}

.w1919s h2,
.w1919s h3,
.w1919s p {
  margin-top: 0;
}

.w1919s h2 {
  color: var(--w1919s-green-dark);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
}

.w1919s h3 {
  color: var(--w1919s-green-dark);
  font-size: 23px;
  line-height: 1.25;
  margin-bottom: 12px;
  font-weight: 800;
}

.w1919s p {
  margin-bottom: 18px;
}

.w1919s p:last-child {
  margin-bottom: 0;
}

.w1919s-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--w1919s-brown);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.w1919s-overline:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--w1919s-brown);
}

.w1919s-text {
  color: var(--w1919s-text);
  font-size: 18px;
  line-height: 1.78;
}

.w1919s-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.w1919s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.w1919s-btn:hover,
.w1919s-btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.w1919s-btn-primary {
  color: var(--w1919s-white) !important;
  background: var(--w1919s-brown);
  box-shadow: 0 14px 28px rgba(138, 90, 53, 0.22);
}

.w1919s-btn-secondary {
  color: var(--w1919s-green-dark) !important;
  background: var(--w1919s-cream);
  box-shadow: inset 0 0 0 1px rgba(36, 56, 43, 0.12);
}

.w1919s-intro-section {
  background: linear-gradient(180deg, var(--w1919s-cream-light), var(--w1919s-white));
}

.w1919s-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.w1919s-copy {
  position: relative;
  z-index: 2;
}

.w1919s-intro-image-wrap {
  position: relative;
  min-height: 480px;
}

.w1919s-intro-image,
.w1919s-feature-image {
  width: 100%;
  min-height: 480px;
  border-radius: 34px;
  background: radial-gradient(circle at 20% 20%, rgba(246, 240, 230, 0.94), rgba(79, 111, 70, 0.52)), linear-gradient(135deg, var(--w1919s-green-dark), var(--w1919s-green));
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 70px rgba(36, 56, 43, 0.16);
  overflow: hidden;
}

.w1919s-intro-image:before,
.w1919s-feature-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(180deg, rgba(36, 56, 43, 0), rgba(36, 56, 43, 0.22));
}

.w1919s-floating-note {
  position: absolute;
  left: -24px;
  bottom: 28px;
  max-width: 260px;
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--w1919s-white);
  box-shadow: 0 20px 44px rgba(36, 56, 43, 0.18);
}

.w1919s-floating-note span {
  display: block;
  color: var(--w1919s-brown);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.w1919s-floating-note strong {
  display: block;
  color: var(--w1919s-green-dark);
  font-size: 22px;
  line-height: 1.2;
}

.w1919s-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.w1919s-quickfact {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 56, 43, 0.10);
  box-shadow: 0 12px 30px rgba(36, 56, 43, 0.06);
}

.w1919s-quickfact strong {
  display: block;
  color: var(--w1919s-green-dark);
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.w1919s-quickfact span {
  display: block;
  color: var(--w1919s-text);
  font-size: 14px;
  line-height: 1.35;
}

.w1919s-cards-section {
  background: var(--w1919s-white);
}

.w1919s-section-head {
  max-width: 830px;
  margin-bottom: 38px;
}

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

.w1919s-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border-radius: 28px;
  background: var(--w1919s-cream-light);
  border: 1px solid rgba(36, 56, 43, 0.10);
  overflow: hidden;
}

.w1919s-card:after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(79, 111, 70, 0.10);
}

.w1919s-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--w1919s-white);
  font-size: 30px;
  box-shadow: 0 12px 28px rgba(36, 56, 43, 0.08);
}

.w1919s-card div:not(.w1919s-card-icon) {
  position: relative;
  z-index: 2;
  color: var(--w1919s-text);
  font-size: 16px;
  line-height: 1.65;
}

.w1919s-feature-section {
  background: linear-gradient(180deg, var(--w1919s-white), var(--w1919s-cream-light));
}

.w1919s-feature-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.w1919s-feature-image {
  position: relative;
  min-height: 520px;
}

.w1919s-feature-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: calc(100% - 56px);
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--w1919s-green-dark);
  background: var(--w1919s-cream);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(36, 56, 43, 0.18);
}

.w1919s-feature-copy {
  padding: 18px 0;
}

.w1919s-info-section {
  background: var(--w1919s-green-dark);
}

.w1919s-info-section .w1919s-overline,
.w1919s-map-section .w1919s-overline {
  color: var(--w1919s-cream);
}

.w1919s-info-section .w1919s-overline:before,
.w1919s-map-section .w1919s-overline:before {
  background: var(--w1919s-cream);
}

.w1919s-info-section h2,
.w1919s-map-section h2 {
  color: var(--w1919s-cream);
}

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

.w1919s-info-box {
  padding: 30px;
  border-radius: 28px;
  color: var(--w1919s-cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 240, 230, 0.18);
}

.w1919s-info-box h3 {
  color: var(--w1919s-cream);
}

.w1919s-info-box div {
  color: rgba(246, 240, 230, 0.90);
  font-size: 17px;
  line-height: 1.65;
}

.w1919s-map-section {
  background: var(--w1919s-green-dark);
  padding-top: 0;
}

.w1919s-map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.w1919s-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--w1919s-map-height);
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 240, 230, 0.18);
}

.w1919s-map-copy .w1919s-text {
  color: rgba(246, 240, 230, 0.90);
}

.w1919s-map-card {
  min-height: var(--w1919s-map-height);
  border-radius: 32px;
  overflow: hidden;
  background: var(--w1919s-cream-light);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
}

.w1919s-map-card iframe {
  display: block;
  width: 100%;
  height: var(--w1919s-map-height);
  border: 0;
}

@media (max-width: 1100px) {
  .w1919s-intro-grid,
  .w1919s-feature-grid,
  .w1919s-map-grid {
    grid-template-columns: 1fr;
  }

  .w1919s-feature-grid .w1919s-feature-image {
    order: 2;
  }

  .w1919s-feature-grid .w1919s-feature-copy {
    order: 1;
  }

  .w1919s-floating-note {
    left: 24px;
  }
}

@media (max-width: 980px) {
  .w1919s-card-grid,
  .w1919s-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .w1919s-quickfacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .w1919s-inner {
    padding-left: var(--w1919s-pad-mobile);
    padding-right: var(--w1919s-pad-mobile);
  }

  .w1919s-section {
    padding: 58px 0;
  }

  .w1919s-map-section {
    padding-top: 0;
  }

  .w1919s h2 {
    font-size: 32px;
  }

  .w1919s-text {
    font-size: 16px;
    line-height: 1.72;
  }

  .w1919s-card-grid,
  .w1919s-info-grid {
    grid-template-columns: 1fr;
  }

  .w1919s-card,
  .w1919s-info-box,
  .w1919s-map-copy {
    border-radius: 24px;
    padding: 24px;
  }

  .w1919s-intro-image,
  .w1919s-feature-image,
  .w1919s-intro-image-wrap {
    min-height: 340px;
  }

  .w1919s-actions {
    flex-direction: column;
  }

  .w1919s-btn {
    width: 100%;
  }

  .w1919s-floating-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .w1919s-map-card,
  .w1919s-map-card iframe,
  .w1919s-map-copy {
    min-height: 340px;
  }

  .w1919s-map-card iframe {
    height: 340px;
  }
}
