:root {
  --green-dark: #003f24;
  --green: #006536;
  --green-soft: #eef7f0;
  --gold: #f2b600;
  --gold-dark: #d79a00;
  --text: #111111;
  --muted: #5f635f;
  --line: rgba(0, 0, 0, .12);
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fffaf0;
}

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

img {
  display: block;
}

.container {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.top-line {
  height: 8px;
  background: linear-gradient(90deg, var(--green-dark) 0 44%, var(--gold) 44% 56%, var(--green-dark) 56% 100%);
}

.btv-header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo img {
  width: 92px;
  height: auto;
}

.links {
  display: flex;
  align-items: center;
  gap: 42px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
}

.links a {
  position: relative;
  padding: 43px 0;
}

.links a.active,
.links a:hover {
  color: var(--gold-dark);
}

.links a.active::after,
.links a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 30px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--gold);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials a,
.socials button,
.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.socials button {
  background: var(--gold);
  border-color: var(--gold);
}

.socials img {
  width: 18px;
  height: 18px;
}

.contact-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background:
    radial-gradient(circle at 0% 45%, rgba(0,101,54,.10), transparent 18%),
    radial-gradient(circle at 88% 48%, rgba(242,182,0,.20), transparent 15%),
    linear-gradient(90deg, #fff 0%, #fffdf8 50%, #fff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.92)),
    repeating-linear-gradient(45deg, rgba(0,101,54,.045) 0 2px, transparent 2px 20px);
}

.contact-hero::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 0;
  width: 410px;
  height: 190px;
  opacity: .15;
  background:
    radial-gradient(ellipse at bottom, var(--green-dark) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 0 10%, var(--green-dark) 10% 12%, transparent 12% 18%, var(--green-dark) 18% 20%, transparent 20%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -80px;
  width: 330px;
  height: 430px;
  border-radius: 0 0 0 180px;
  border-left: 14px solid var(--gold);
  background: var(--green-dark);
  transform: rotate(10deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.ornament-line {
  width: 110px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  position: relative;
}

.ornament-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  top: -4px;
  transform: translateX(-50%) rotate(45deg);
}

.ornament-line.small {
  margin: 18px auto;
}

.contact-hero h1 {
  margin: 0;
  text-transform: uppercase;
  color: var(--green-dark);
  font-size: clamp(44px, 5vw, 62px);
  letter-spacing: 1px;
}

.contact-hero p {
  margin: 8px 0;
  font-size: 20px;
}

.contact-main {
  padding: 34px 0 10px;
  display: grid;
  grid-template-columns: 1.15fr .68fr .55fr;
  gap: 40px;
  align-items: start;
}

.message-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 56px 30px;
}

.message-card h2,
.info-card h2 {
  margin: 0 0 28px;
  color: var(--green-dark);
  text-transform: uppercase;
  font-size: 25px;
  position: relative;
}

.message-card h2::after,
.info-card h2::after {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

label img {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 19px;
  height: 19px;
  opacity: .52;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 7px;
  min-height: 54px;
  padding: 0 16px 0 48px;
  outline: none;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 18px;
}

button[type="submit"] {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold), #eda900);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button[type="submit"] img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.form-status {
  margin: 14px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.info-card {
  padding: 34px 0 0;
}

.info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 0 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-item span,
.value-item span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0,63,36,.22);
}

.info-item img,
.value-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.info-item strong,
.value-item h3 {
  display: block;
  font-size: 16px;
  margin: 0 0 3px;
}

.info-item p,
.value-item p {
  margin: 0;
  color: #202020;
  font-size: 15px;
}

.quote-card {
  min-height: 365px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,.12), transparent 22%),
    linear-gradient(145deg, #006b39, #003f24);
  color: #fff;
  padding: 34px 34px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.quote-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  background:
    radial-gradient(ellipse at bottom, rgba(255,255,255,.18) 0 24%, transparent 25%);
}

.quote-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}

.quote-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

blockquote {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
}

.quote-card strong {
  display: block;
  color: var(--gold);
  margin-top: 18px;
}

.quote-line {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
}

.values {
  margin-top: 0;
  background: rgba(255,255,255,.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.value-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.btv-footer {
  color: #fff;
  background:
    radial-gradient(circle at 18% 110%, rgba(255,255,255,.10), transparent 22%),
    linear-gradient(135deg, #003a21, #006232, #003a21);
  border-top: 4px solid var(--gold);
}

.footer-grid {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.2fr 1.25fr 1.25fr 1.5fr;
  gap: 42px;
}

.footer-brand img {
  width: 92px;
  height: auto;
}

.footer-brand p,
.newsletter p {
  line-height: 1.5;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.38);
}

.btv-footer h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 15px;
}

.two-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.two-links a {
  color: #fff;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 120px;
  margin-top: 18px;
}

.newsletter input {
  border: 0;
  border-radius: 8px 0 0 8px;
  padding-left: 20px;
}

.newsletter button {
  border-radius: 0 8px 8px 0;
  background: var(--gold);
  color: #000;
}

.newsletter small {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  min-height: 62px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

@media (max-width: 1100px) {
  .links {
    gap: 18px;
    font-size: 13px;
  }

  .contact-main,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 0;
  }

  .value-item {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1380px);
  }

  .nav {
    height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .links a {
    white-space: nowrap;
    padding: 12px 0;
  }

  .contact-main {
    gap: 20px;
  }

  .message-card {
    padding: 26px 20px;
  }

  .form-row,
  .value-grid,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    text-align: center;
  }
}
