:root {
  --ink: #16201d;
  --muted: #5d6964;
  --paper: #f8f7f1;
  --white: #ffffff;
  --line: #dfe3dc;
  --solar: #f4b83f;
  --solar-deep: #c97815;
  --teal: #1d7874;
  --green: #4b7f52;
  --clay: #bd6b4f;
  --night: #20312c;
  --shadow: 0 18px 45px rgba(22, 32, 29, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(248, 247, 241, 0.94);
  box-shadow: 0 8px 24px rgba(22, 32, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-logo,
.brand-mark-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.38));
}

.brand-mark-fallback {
  display: none;
}

.brand-mark-fallback-active .brand-mark-fallback {
  display: block;
}

.brand-name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: currentColor;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.site-header.scrolled .brand-name,
.site-header.open .brand-name {
  text-shadow: none;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.open .site-nav a:hover,
.site-header.open .site-nav a:focus-visible {
  background: rgba(29, 120, 116, 0.12);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .language-switch,
.site-header.open .language-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.language-option {
  min-width: 38px;
  min-height: 32px;
  padding: 6px 8px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-option.active,
.language-option:hover,
.language-option:focus-visible {
  outline: 0;
  color: #1f1708;
  background: var(--solar);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(540px, 82svh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(244, 184, 63, 0.38), rgba(244, 184, 63, 0) 34%),
    linear-gradient(135deg, #14231f 0%, #20312c 52%, #365344 100%);
}

.hero-video,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
}

.hero-video {
  z-index: -2;
}

.hero-image {
  z-index: -3;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 25, 22, 0.82) 0%, rgba(18, 25, 22, 0.54) 44%, rgba(18, 25, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(22, 32, 29, 0.24), rgba(22, 32, 29, 0.1));
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffe0a1;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.button-primary {
  color: #1f1708;
  background: var(--solar);
  box-shadow: 0 14px 30px rgba(244, 184, 63, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd166;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.message-strip {
  padding: 22px 0;
  color: var(--white);
  background: var(--night);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strip-grid p {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 800;
}

.strip-grid p:nth-child(2) {
  color: #ffd166;
}

.strip-grid p:nth-child(3) {
  color: #bde6c1;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.section-kicker {
  color: var(--teal);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead-block {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
  color: var(--muted);
}

.lead-block p,
.audience-copy {
  margin: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.value-card,
.benefit-card,
.pillar-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card {
  min-height: 246px;
  padding: 24px;
}

.card-number {
  display: block;
  color: var(--solar-deep);
  font-weight: 800;
  margin-bottom: 40px;
}

h3,
h4 {
  margin: 0;
  line-height: 1.2;
}

.value-card h3,
.benefit-card h3,
.pillar-grid h3 {
  font-size: 1.15rem;
}

.value-card p,
.benefit-card p,
.pillar-grid p,
.audience-copy {
  color: var(--muted);
}

.value-card p,
.benefit-card p,
.pillar-grid p {
  margin: 12px 0 0;
}

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

.section-heading {
  max-width: 870px;
  margin-bottom: 40px;
}

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

.benefit-card {
  min-height: 256px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(22, 32, 29, 0.06);
}

.benefit-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #eef5ee;
}

.benefit-icon::before,
.benefit-icon::after {
  position: absolute;
  content: "";
}

.benefit-icon.solar::before {
  inset: 13px;
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 0 8px rgba(244, 184, 63, 0.28);
}

.benefit-icon.leaf::before {
  inset: 12px 13px 11px 12px;
  border-radius: 100% 0 100% 0;
  background: var(--green);
  transform: rotate(-18deg);
}

.benefit-icon.grid::before {
  inset: 12px;
  border: 2px solid var(--teal);
}

.benefit-icon.grid::after {
  inset: 22px 10px auto;
  height: 2px;
  background: var(--teal);
  box-shadow: 0 8px 0 var(--teal);
}

.benefit-icon.people::before {
  width: 13px;
  height: 13px;
  left: 11px;
  top: 13px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 14px 0 0 var(--solar);
}

.benefit-icon.people::after {
  left: 8px;
  top: 29px;
  width: 34px;
  height: 8px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
}

.benefit-icon.work::before {
  left: 11px;
  top: 17px;
  width: 26px;
  height: 19px;
  border: 2px solid var(--solar-deep);
  border-radius: 4px;
}

.benefit-icon.work::after {
  left: 18px;
  top: 13px;
  width: 12px;
  height: 7px;
  border: 2px solid var(--solar-deep);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.benefit-icon.future::before {
  left: 13px;
  top: 12px;
  width: 18px;
  height: 24px;
  border: 2px solid var(--teal);
  border-radius: 4px;
}

.benefit-icon.future::after {
  left: 23px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--solar);
  border-bottom: 3px solid var(--solar);
  transform: rotate(45deg);
}

.applications {
  color: var(--white);
  background: var(--teal);
}

.applications .section-kicker {
  color: #ffe0a1;
}

.applications-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.application-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.content-section {
  background: #f2f4ef;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pillar-grid article {
  min-height: 170px;
  padding: 20px;
}

.social-hub {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(244, 184, 63, 0.3);
  background:
    linear-gradient(135deg, rgba(244, 184, 63, 0.17) 0%, rgba(244, 184, 63, 0.03) 34%, rgba(24, 44, 39, 0.95) 100%),
    var(--night);
  box-shadow: 0 28px 80px rgba(8, 20, 17, 0.24);
}

.social-hub::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #f4b83f, #21b4ad);
}

.social-hub-copy {
  position: relative;
  display: grid;
  align-content: center;
}

.social-hub-copy .section-kicker {
  color: #ffe0a1;
}

.social-hub h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  letter-spacing: 0;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.social-hub-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.social-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.social-link {
  --platform: #f4b83f;
  position: relative;
  min-height: 120px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-left: 4px solid var(--platform);
  pointer-events: none;
}

.social-link:hover,
.social-link:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--platform) 70%, white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 36px rgba(0, 0, 0, 0.16);
}

.social-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--platform);
  background: color-mix(in srgb, var(--platform) 18%, rgba(255, 255, 255, 0.1));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--platform) 44%, rgba(255, 255, 255, 0.24));
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.youtube .social-icon svg path {
  fill: currentColor;
}

.social-meta {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.social-meta span {
  color: #ffe0a1;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-meta strong {
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.instagram {
  --platform: #f4b83f;
}

.tiktok {
  --platform: #21b4ad;
}

.linkedin {
  --platform: #4aa3ff;
}

.youtube {
  --platform: #ff4d4d;
}

.audience-section {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.audience-copy {
  max-width: 650px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.audience-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: #121916;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:first-child {
  font-weight: 800;
}

@media (max-width: 980px) {
  .value-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column,
  .applications-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 64px;
    padding: 11px 14px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand-name {
    max-width: clamp(112px, 40vw, 170px);
  }

  .brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .language-switch {
    padding: 2px;
  }

  .language-option {
    min-width: 34px;
    min-height: 32px;
    padding: 5px 7px;
  }

  .nav-toggle {
    display: grid;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    position: fixed;
    inset: 64px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(248, 247, 241, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 25, 22, 0.88) 0%, rgba(18, 25, 22, 0.63) 70%, rgba(18, 25, 22, 0.38) 100%),
      linear-gradient(0deg, rgba(22, 32, 29, 0.24), rgba(22, 32, 29, 0.1));
  }

  .strip-grid,
  .value-grid,
  .benefit-grid,
  .pillar-grid,
  .social-hub,
  .social-links {
    grid-template-columns: 1fr;
  }

  .social-hub {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-image {
    z-index: -2;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
