    :root {
      --brand-primary: #384b38;
      --brand-primary-hover: #2d3d2d;
      --brand-mint: #afdfaa;
      --forest-200: #bee8b8;
      --forest-300: #8fd084;
      --wood-300: #e5a07a;
      --white-soft: rgba(255, 255, 255, 0.8);
      --font-serif: "freight-big-pro", serif;
      --font-sans: "aktiv-grotesk", sans-serif;
      --font-label: "aktiv-grotesk", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      overflow-x: clip;
    }

    body {
      font-family: var(--font-sans);
      font-weight: 400;
      font-style: normal;
      background: #ffffff;
      color: #0e0e0e;
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-serif);
      font-weight: 700;
      font-style: normal;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      isolation: isolate;
    }

    .vid-wrap {
      position: absolute;
      inset: 0;
      z-index: -3;
      overflow: hidden;
    }

    .vid-wrap video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 177.78vh;
      height: 100vh;
      min-width: 100vw;
      min-height: 56.25vw;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: linear-gradient(
        160deg,
        rgba(13, 30, 12, 0.22) 0%,
        rgba(13, 30, 12, 0.48) 42%,
        rgba(13, 30, 12, 0.9) 100%
      );
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 18% 22%, rgba(175, 223, 170, 0.15), transparent 34%),
        radial-gradient(circle at 85% 70%, rgba(229, 160, 122, 0.15), transparent 36%);
    }

    .navbar {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 2rem 3rem;
    }

    .nav-cluster {
      display: flex;
      align-items: center;
      gap: clamp(1rem, 2.5vw, 1.75rem);
    }

    .lang-switch {
      position: relative;
    }

    .lang-switch summary {
      list-style: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.38rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.06);
      font-family: var(--font-label);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: #fff;
      transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
      user-select: none;
    }

    .lang-switch summary::-webkit-details-marker {
      display: none;
    }

    .lang-switch summary iconify-icon {
      font-size: 0.65rem;
      opacity: 0.75;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .lang-switch[open] summary {
      color: rgba(255, 255, 255, 0.92);
      border-color: rgba(255, 255, 255, 0.38);
      background: rgba(255, 255, 255, 0.1);
    }

    .lang-switch[open] summary iconify-icon {
      transform: rotate(180deg);
      opacity: 0.95;
    }

    .lang-switch-panel {
      position: absolute;
      top: calc(100% + 0.4rem);
      right: 0;
      z-index: 6;
      min-width: 10.5rem;
      padding: 0.35rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(18, 32, 18, 0.94);
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    }

    .lang-switch-option {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.55rem 0.65rem;
      border: none;
      border-radius: 8px;
      background: transparent;
      cursor: pointer;
      font-family: var(--font-sans);
      font-size: 0.8125rem;
      font-weight: 500;
      color: #fff;
      text-align: left;
      transition: background-color 0.18s ease, color 0.18s ease;
    }

    .lang-switch-option:hover,
    .lang-switch-option:focus-visible {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      outline: none;
    }

    .lang-switch-option.is-active {
      background: rgba(175, 223, 170, 0.12);
      color: #fff;
    }

    .lang-switch-option-code {
      font-family: var(--font-label);
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
    }

    .lang-switch-option.is-active .lang-switch-option-code {
      color: rgba(190, 232, 184, 0.95);
    }

    a.lang-switch-option--link {
      text-decoration: none;
      color: #fff;
      display: flex;
      box-sizing: border-box;
    }

    a.lang-switch-option--link:visited {
      color: #fff;
    }

    a.lang-switch-option--link:hover,
    a.lang-switch-option--link:focus-visible {
      color: #fff;
    }

    a.lang-switch-option--link .lang-switch-option-code {
      color: rgba(255, 255, 255, 0.55);
    }

    a.lang-switch-option--link.is-active .lang-switch-option-code {
      color: rgba(190, 232, 184, 0.95);
    }

    .brand {
      font-family: var(--font-serif);
      font-size: 1.7rem;
      letter-spacing: 0.015em;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-family: var(--font-label);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s ease;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: background-color 0.25s ease, border-color 0.25s ease;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.46);
    }

    .menu-toggle span {
      width: 18px;
      height: 1.6px;
      background: #fff;
      border-radius: 999px;
      transition: transform 0.25s ease, opacity 0.25s ease;
      transform-origin: center;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 30;
      background: linear-gradient(
        150deg,
        rgba(13, 30, 12, 0.98) 0%,
        rgba(29, 51, 29, 0.98) 48%,
        rgba(24, 41, 24, 0.98) 100%
      );
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
      opacity: 0;
      pointer-events: none;
      transform: scale(1);
      transition: opacity 0.3s ease;
    }

    .mobile-menu.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .mobile-menu-main {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
    }

    .mobile-menu-close {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 1.4rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      flex: 1;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .mobile-menu-links a {
      display: block;
      font-family: var(--font-serif);
      font-size: clamp(2rem, 11vw, 3.2rem);
      line-height: 1.02;
      font-weight: 400;
      letter-spacing: -0.012em;
      color: #fff;
      text-decoration: none;
      padding: 0.35rem 0;
    }

    .mobile-menu-links a:hover {
      color: var(--forest-300);
    }

    .mobile-menu-footer {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-chip {
      width: fit-content;
      border: 1px solid rgba(175, 223, 170, 0.46);
      border-radius: 9999px;
      padding: 0.45rem 0.9rem;
      color: var(--forest-200);
      font-family: var(--font-label);
      font-size: 0.64rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .mobile-cta {
      width: 100%;
      justify-content: center;
    }

    .hero-content {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 3rem 5.5rem;
      color: #fff;
      z-index: 3;
    }

    .hero-label {
      font-family: var(--font-label);
      font-size: 0.7rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--forest-300);
      margin-bottom: 1.4rem;
      display: inline-block;
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 8vw, 8rem);
      line-height: 0.88;
      letter-spacing: -0.024em;
      font-weight: 700;
      max-width: 930px;
      margin-bottom: 2.25rem;
    }

    .hero-title em {
      color: var(--forest-300);
      font-style: italic;
    }

    .hero-title span {
      color: var(--wood-300);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 3rem;
      max-width: 860px;
      margin-bottom: 3rem;
    }

    #sobre-hero .hero-grid {
      align-items: start;
    }

    #sobre-hero .stats {
      align-self: start;
      padding-top: 0.2rem;
    }

    .hero-description {
      color: var(--white-soft);
      font-size: 1.1rem;
      line-height: 1.75;
      max-width: 520px;
    }

    .stats {
      display: flex;
      gap: 2.6rem;
      border-left: 1px solid rgba(255, 255, 255, 0.18);
      padding-left: 2.6rem;
    }

    .stat-number {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--wood-300);
      line-height: 1;
      text-align: center;
    }

    .stat-label {
      font-family: var(--font-label);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.62rem;
      margin-top: 0.45rem;
      text-align: center;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      padding: 1.1rem 2.55rem;
      border-radius: 9999px;
      font-family: var(--font-label);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 0.86rem;
      font-weight: 500;
      border: 1px solid transparent;
      transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease,
        border-color 0.25s ease;
    }

    .btn-primary {
      background: var(--brand-primary);
      color: #fff;
      border-color: var(--brand-primary);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #fff;
      color: var(--brand-primary);
    }

    .btn-light {
      background: #fff;
      color: var(--brand-primary);
      border-color: #fff;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
    }

    .btn-light:hover {
      transform: translateY(-2px);
      background: var(--brand-primary-hover);
      border-color: var(--brand-primary-hover);
      color: #fff;
    }

    .scroll-hint {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      z-index: 3;
    }

    .scroll-hint span {
      font-family: var(--font-label);
      font-size: 0.62rem;
      letter-spacing: 0.11em;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.48), transparent);
      animation: float 2.2s ease-in-out infinite;
    }

    .hero--about .hero-title {
      font-size: clamp(2.35rem, 5.2vw, 5.25rem);
      max-width: 1050px;
    }

    .nav-links a[aria-current="page"] {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 0.35rem;
      text-decoration-thickness: 1px;
    }

    @keyframes float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-11px);
      }
    }

    @media (max-width: 980px) {
      .navbar {
        padding: 1.5rem 1.25rem;
      }

      .nav-cluster {
        gap: 0.65rem;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-links {
        display: none;
      }

      .hero-content {
        padding: 0 1.25rem 4.5rem;
      }

      .hero-title {
        font-size: clamp(2.4rem, 13vw, 4.2rem);
        line-height: 0.93;
      }

      .hero--about .hero-title {
        font-size: clamp(2.05rem, 9.2vw, 3.35rem);
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .stats {
        border-left: 0;
        padding-left: 0;
        gap: 1.4rem;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .scroll-line {
        animation: none;
      }

      .btn {
        transition: none;
      }

      .mobile-menu {
        transition: none;
      }

      .lang-switch summary iconify-icon {
        transition: none;
      }
    }
