@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@600;700;800;900&family=Source+Sans+3:wght@400;500;600;700;800;900&display=swap");

:root {
  --green: #0e6b55;
  --green-dark: #083f34;
  --green-deep: #052d26;
  --gold: #d6a84d;
  --gold-light: #fff4d9;
  --orange: #e58235;
  --paper: #fbf8ef;
  --white: #ffffff;
  --ink: #14251f;
  --muted: #65736d;
  --line: #e7dfcf;
  --shadow: 0 20px 55px rgba(8, 63, 52, .13);
  --soft-shadow: 0 12px 32px rgba(8, 63, 52, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.top-contact {
  color: #fff;
  background: var(--green-deep);
  font-size: 14px;
}

.top-contact-inner,
.nav,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.top-contact-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-links a,
.contact-links span {
  color: rgba(255, 255, 255, .9);
  font-weight: 750;
}

.top-contact strong {
  color: var(--gold);
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(231, 223, 207, .82);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  flex: 0 0 auto;
}

.logo-brand {
  gap: 0;
}

.site-logo {
  display: block;
  width: clamp(116px, 11vw, 154px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 168, 77, .55);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 30px rgba(14, 107, 85, .28), inset 0 0 0 4px rgba(255, 255, 255, .08);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand span:last-child {
  display: grid;
  line-height: 1.08;
}

.brand small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #243832;
  font-family: Montserrat, "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 950;
}

.nav-links a {
  padding: 14px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #c96220);
  box-shadow: 0 16px 30px rgba(229, 130, 53, .28);
}

.button-green {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 30px rgba(14, 107, 85, .22);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
  border-color: rgba(14, 107, 85, .18);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 45, 38, .94), rgba(5, 45, 38, .72)),
    url("https://images.unsplash.com/photo-1609599006353-e629aaabfeae?auto=format&fit=crop&w=1600&q=88") center / cover;
}

.page-hero-inner {
  width: min(1180px, calc(100% - 34px));
  min-height: 340px;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 70px 0;
}

.kicker {
  margin-bottom: 10px;
  color: #ffe9ae;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

section {
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.split h2 {
  margin-bottom: 14px;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.section-heading p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

.grid-2,
.split {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 77, .58);
  box-shadow: var(--shadow);
}

.card .button {
  margin-top: 18px;
}

.card.highlight {
  border-color: rgba(214, 168, 77, .54);
  background: linear-gradient(180deg, var(--gold-light), #fff 46%);
  box-shadow: var(--shadow);
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.icon.gold {
  color: #33240d;
  background: linear-gradient(135deg, #f2da95, var(--gold));
}

.icon.orange {
  background: linear-gradient(135deg, var(--orange), #bb5d1e);
}

.icon svg {
  width: 27px;
  height: 27px;
}

.image-panel {
  min-height: 470px;
  border: 1px solid rgba(214, 168, 77, .34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 45, 38, .02), rgba(5, 45, 38, .28)),
    url("https://images.unsplash.com/photo-1599599006353-e629aaabfeae?auto=format&fit=crop&w=1200&q=88") center / cover,
    #eaf0ec;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #32443e;
  font-weight: 780;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--green);
}

.muted-band {
  background: #fff;
}

.green-band {
  color: #fff;
  background:
    linear-gradient(rgba(5, 45, 38, .93), rgba(5, 45, 38, .94)),
    url("https://images.pexels.com/photos/7249191/pexels-photo-7249191.jpeg?auto=compress&cs=tinysrgb&w=1500") center / cover;
}

.green-band p,
.green-band .check-list li {
  color: rgba(255, 255, 255, .82);
}

.green-band .check-list li::before {
  background: var(--gold);
}

.price {
  margin: 8px 0 16px;
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 750;
}

.currency-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}

.currency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #eee4d1;
  border-radius: 8px;
  padding: 9px 11px;
  background: #fffdfa;
  color: #33443e;
  font-weight: 850;
}

.currency-row span:first-child {
  color: var(--muted);
  font-weight: 800;
}

.card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  color: #33443e;
  list-style: none;
}

.card li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 8px;
  background: var(--green);
  vertical-align: middle;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: #31433e;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9d1c0;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdfa;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
}

textarea {
  min-height: 118px;
  resize: vertical;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 34px;
  padding: 58px 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  color: rgba(255, 255, 255, .72);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, .78);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding: 0 0 14px;
    font-size: 16px;
  }

  .nav-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(14, 107, 85, .14);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(5, 45, 38, .06);
  }

  .grid-2,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 1021px) and (max-width: 1180px) {
  .nav-links {
    gap: 10px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .top-contact-inner {
    justify-content: center;
    padding: 9px 0;
    text-align: center;
  }

  .contact-links {
    justify-content: center;
    gap: 10px;
  }

  .nav {
    min-height: 94px;
  }

  .site-logo {
    width: 108px;
  }

  .nav .button {
    display: none;
  }

  .nav-links {
    gap: 7px;
    font-size: 14px;
  }

  .nav-links a {
    min-height: 36px;
    padding: 7px 9px;
  }

  .page-hero-inner {
    min-height: 300px;
    padding: 54px 0;
  }

  section {
    padding: 64px 0;
  }

  .grid-3,
  .grid-4,
  .check-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
