@import url("/assets/fonts/fonts.css");

:root {
  --teal: #70b6bb;
  --teal-dark: #4e979c;
  --orange: #f1562a;
  --gold: #ca9e55;
  --ink: #000;
  --body: #1c1c1c;
  --muted: #5a5a5a;
  --gray: #f4f4f4;
  --line: #e2e2e2;
  --brand-gradient: linear-gradient(
    90deg,
    #586b15 0%,
    #8ea377 22%,
    #b8cc86 40%,
    #c2cfc6 60%,
    #e8b9a4 82%,
    #f4ae76 100%
  );
  --shell: 1200px;
  --head-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Mulish, "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: Poppins, "Avenir Next", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

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

a { color: inherit; }

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}
.skip:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 1.5px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn--ink { background: #000; color: #fff; }
.btn--ink:hover { background: #222; }
.btn--light { background: #f0f0f0; color: #000; }
.btn--light:hover { background: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: #d94722; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #b48941; }
.btn--outline { background: transparent; color: #000; border-color: #000; }
.btn--outline:hover { background: #000; color: #fff; }

/* ---------- header ---------- */
.head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.head__in {
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.head__logo img { height: 46px; width: auto; }
.head__nav { display: flex; align-items: stretch; gap: 0; height: var(--head-h); }
.head__nav .btn {
  padding-inline: 26px;
  font-size: 12px;
  letter-spacing: 0.11em;
}
.head__nav .btn:hover { transform: none; }
.navtoggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border: 0;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding-inline: 24px;
  cursor: pointer;
}
.navtoggle svg { width: 18px; height: 18px; }

/* ---------- announcement ---------- */
.announce {
  background: var(--brand-gradient);
  padding: 22px 0;
}
.announce__in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.announce img {
  width: 168px;
  height: 108px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
}
.announce h2 {
  font-size: clamp(19px, 2.1vw, 29px);
  max-width: 620px;
  text-align: left;
}
.announce .btn { padding: 12px 30px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(74vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.46) 45%,
    rgba(0, 0, 0, 0.14) 100%
  );
}
.hero__in { position: relative; z-index: 2; padding: 76px 0; }
.hero__rule {
  width: 108px;
  height: 15px;
  background: var(--teal);
  margin-bottom: 26px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(52px, 8.4vw, 118px);
  max-width: 8ch;
  margin-bottom: 34px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hero__cta .btn { width: 232px; }

/* ---------- sections ---------- */
.sec { padding: 96px 0; }
.sec--gray { background: var(--gray); }
.sec__title {
  text-align: center;
  color: var(--teal);
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 34px;
}
.lede {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
  font-size: 19px;
  color: var(--body);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 1020px;
  margin-inline: auto;
}
.card { text-align: center; }
.card img { width: 66px; height: 66px; margin: 0 auto 22px; object-fit: contain; }
.card h3 {
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.card p { font-size: 16px; margin: 0; color: var(--muted); }

.sec__foot { text-align: center; margin-top: 60px; }

/* ---------- partners ---------- */
.partners__top {
  display: grid;
  grid-template-columns: minmax(240px, 400px) 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 52px;
}
.partners__word {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.partners__word span { color: var(--teal); }
.partners__top p { margin: 0; font-size: 17px; color: var(--muted); }

.fiscal {
  background: var(--teal);
  color: #fff;
  padding: 46px 52px;
  max-width: 920px;
  margin-inline: auto;
}
.fiscal h3 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
.fiscal p { font-size: 17px; margin: 0 0 16px; }
.fiscal details summary {
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: none;
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  padding-bottom: 3px;
}
.fiscal details summary::-webkit-details-marker { display: none; }
.fiscal details[open] summary { margin-bottom: 16px; }
.fiscal details p:last-child { margin-bottom: 0; }

/* ---------- social ---------- */
.social { text-align: center; padding: 92px 0; }
.social h2 {
  color: var(--teal);
  font-size: clamp(36px, 5vw, 60px);
  max-width: 12ch;
  margin: 0 auto 38px;
}
.social__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2px;
  max-width: 820px;
  margin: 0 auto 38px;
}

/* ---------- questions band ---------- */
.band {
  background: var(--brand-gradient);
  padding: 56px 0;
  text-align: center;
}
.band h2 { color: #fff; font-size: clamp(34px, 4.6vw, 54px); text-shadow: 0 2px 18px rgba(0,0,0,0.18); }

/* ---------- contact ---------- */
.contact { padding: 78px 0 92px; }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 460px);
  gap: 72px;
}
.contact h2 { font-size: 34px; margin-bottom: 30px; }
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9a9a9a;
  background: transparent;
  font: inherit;
  font-size: 17px;
  padding: 8px 0;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
  box-shadow: 0 1px 0 0 var(--teal);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.formmsg {
  margin-top: 18px;
  font-size: 16px;
  min-height: 24px;
}
.formmsg[data-state="ok"] { color: #17795e; }
.formmsg[data-state="err"] { color: #b3261e; }

.details { display: grid; grid-template-columns: 1fr; gap: 30px; padding-top: 68px; }
.details h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.details p, .details a { font-size: 16px; margin: 0; color: var(--muted); text-decoration: none; }
.details a:hover { color: var(--teal); text-decoration: underline; }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.foot a { color: var(--muted); }
.foot__top {
  display: inline-block;
  margin-bottom: 14px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- inner page hero ---------- */
.phero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: #111;
  overflow: hidden;
}
.phero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
}
.phero__in { position: relative; z-index: 2; padding: 70px 0; }
.phero h1 { color: #fff; font-size: clamp(38px, 6vw, 78px); line-height: 1.02; }
.phero .kicker {
  color: var(--teal);
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.prose { max-width: 780px; }
.prose h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 54px 0 18px; }
.prose h3 { font-size: 20px; margin: 32px 0 8px; color: var(--teal-dark); }
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 20px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal-dark); }

.split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 64px;
  align-items: start;
}
.split img { width: 100%; height: auto; }
.split > div:last-child { position: sticky; top: calc(var(--head-h) + 28px); }

/* ---------- mobile ---------- */
.drawer {
  position: fixed;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 80;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 40px 32px;
}
.drawer[data-open="true"] { display: flex; }
.drawer a {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.drawer__close {
  position: absolute;
  top: 24px;
  right: 26px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; gap: 46px; max-width: 460px; }
  .partners__top { grid-template-columns: 1fr; gap: 22px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split > div:last-child { position: static; }
  .announce h2 { text-align: center; }
}

@media (max-width: 760px) {
  :root { --head-h: 66px; }
  body { font-size: 17px; }
  .shell { width: calc(100% - 36px); }
  .head__nav .btn:not(.navtoggle) { display: none; }
  .navtoggle { display: inline-flex; }
  .head__logo img { height: 38px; }
  .sec { padding: 64px 0; }
  .hero__in { padding: 58px 0; }
  .hero__cta .btn { width: 100%; max-width: 300px; }
  .announce img { width: 132px; height: 88px; }
  .fiscal { padding: 32px 26px; }
  .details { grid-template-columns: 1fr; gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
