:root {
      color-scheme: light;
      --cream-light: #ead9a5;
      --cream-mid: #b9b384;
      --cream-dark: #908b67;
      --hero-accent: #ead9a5;
      --text: #171717;
      --muted: #646464;
      --line: #e8e8e8;
    }

    * {
      box-sizing: border-box;
    }

    html {
      width: 100%;
      margin: 0;
      scroll-behavior: smooth;
      background: #070707;
    }

    body {
      width: 100%;
      min-height: 100%;
      margin: 0;
      overflow-x: hidden;
      background: #070707;
      color: #f0e7c7;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .hero-section {
      position: relative;
      width: 100%;
      height: 75vh;
      height: 75svh;
      overflow: hidden;
      background: #000;
      border-radius: 0 0 26px 26px;
      isolation: isolate;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: #000;
      pointer-events: none;
      user-select: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: grid;
      place-items: center;
      padding: clamp(20px, 4vw, 54px);
      pointer-events: none;
      isolation: isolate;
    }

    .hero-overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at center,
          rgba(0, 0, 0, 0.18) 0%,
          rgba(0, 0, 0, 0.42) 34%,
          rgba(0, 0, 0, 0.10) 67%,
          rgba(0, 0, 0, 0) 84%);
      pointer-events: none;
    }

    .hero-content {
      width: min(780px, 100%);
      text-align: center;
      transform: translateY(-0.5vh);
    }

    .hero-title {
      max-width: 760px;
      margin: 0 auto;
      color: var(--hero-accent);
      font-size: clamp(25px, 3.58vw, 55px);
      font-weight: 760;
      line-height: 1.06;
      letter-spacing: -0.035em;
      text-wrap: balance;
      text-shadow:
        0 2px 1px rgba(0, 0, 0, 0.72),
        0 0 28px rgba(185, 179, 132, 0.18);
    }

    .hero-subtitle {
      margin: clamp(8px, 1.4vh, 15px) 0 0;
      color: #d8c793;
      font-size: clamp(18px, 2vw, 32px);
      font-weight: 420;
      line-height: 1.15;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
    }

    .hero-search-form {
      --search-control-height: clamp(50px, 5.7vh, 62px);
      pointer-events: auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      width: min(560px, 84vw);
      margin: clamp(18px, 2.5vh, 28px) auto 0;
      border-radius: 16px;
      box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(185, 179, 132, 0.16);
    }

    .hero-search-field {
      min-width: 0;
      height: var(--search-control-height);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.94);
      border-right: 0;
      border-radius: 16px 0 0 16px;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.025);
      transition: box-shadow 150ms ease, border-color 150ms ease;
    }

    .hero-search-field:focus-within {
      border-color: #d4c58f;
      box-shadow:
        inset 0 0 0 2px rgba(185, 179, 132, 0.34),
        0 0 0 3px rgba(185, 179, 132, 0.18);
    }

    .hero-search-input {
      display: block;
      width: 100%;
      min-width: 0;
      height: 100%;
      padding: 0 clamp(17px, 2vw, 24px);
      -webkit-appearance: none;
      appearance: none;
      border: 0;
      border-radius: 0;
      outline: 0;
      background: transparent;
      color: #1b1b1b;
      font: inherit;
      font-size: clamp(15px, 1.15vw, 18px);
      font-weight: 520;
      line-height: normal;
      transform: translateY(-2px);
    }

    .hero-search-input::placeholder {
      color: #8a8a8a;
      opacity: 1;
    }

    .hero-search-submit {
      display: inline-grid;
      place-items: center;
      width: clamp(58px, 5.2vw, 72px);
      height: var(--search-control-height);
      padding: 0;
      border: 1px solid var(--hero-accent);
      border-radius: 0 16px 16px 0;
      background: var(--hero-accent);
      color: #211f16;
      font: inherit;
      font-size: 0;
      line-height: 0;
      cursor: pointer;
      transition: background-color 150ms ease, transform 150ms ease;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-search-arrow {
      display: block;
      width: clamp(24px, 1.85vw, 29px);
      height: clamp(24px, 1.85vw, 29px);
      overflow: visible;
      color: #211f16;
      transform: translateY(0);
    }

    .hero-search-submit:hover {
      background: var(--hero-accent);
      filter: brightness(1.04);
    }

    .hero-search-submit:active {
      transform: translateY(1px);
    }

    .hero-search-submit:focus-visible {
      outline: 3px solid #d6c77f;
      outline-offset: 4px;
    }

    .examples-section {
      width: 100%;
      background: linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
      padding: clamp(44px, 6.5vw, 84px) clamp(18px, 4vw, 56px) clamp(58px, 8vw, 104px);
    }

    .examples-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .examples-title {
      margin: 0 0 clamp(25px, 3.5vw, 40px);
      color: var(--hero-accent);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 760;
      line-height: 1.1;
      letter-spacing: -0.03em;
      text-align: center;
    }

    .maps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
      gap: clamp(18px, 2.4vw, 30px);
    }

    .map-card {
      display: block;
      min-width: 0;
      overflow: hidden;
      background: linear-gradient(180deg, #151515 0%, #101010 100%);
      color: #f0e7c7;
      text-decoration: none;
      border: 1px solid rgba(234, 217, 165, 0.18);
      border-radius: 18px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
      cursor: pointer;
    }

    .map-card:hover {
      transform: translateY(-4px);
      border-color: rgba(234, 217, 165, 0.42);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
    }

    .map-preview {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: #181818;
    }

    .map-card-body {
      display: flex;
      min-height: 83px;
      align-items: center;
      justify-content: center;
      padding: 17px 20px;
      text-align: center;
    }

    .map-card-title {
      width: 100%;
      margin: 0;
      color: var(--hero-accent);
      font-size: clamp(18px, 1.55vw, 23px);
      font-weight: 720;
      line-height: 1.22;
      letter-spacing: -0.018em;
      text-align: center;
    }

    .map-card:focus-visible {
      outline: 3px solid #d6c77f;
      outline-offset: 4px;
    }



    .authors-section {
      width: 100%;
      padding: clamp(34px, 4vw, 54px) clamp(18px, 4vw, 56px) clamp(18px, 3.2vw, 34px);
      background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    }

    .authors-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .authors-title {
      margin: 0 0 clamp(22px, 2.8vw, 34px);
      color: var(--hero-accent);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 760;
      line-height: 1.1;
      letter-spacing: -0.03em;
      text-align: center;
    }

    .authors-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(18px, 2.4vw, 28px);
    }

    .author-card {
      --author-avatar-size: clamp(96px, 8vw, 126px);
      display: grid;
      grid-template-columns: var(--author-avatar-size) minmax(0, 1fr);
      align-items: center;
      gap: clamp(18px, 2vw, 26px);
      padding: clamp(18px, 2.1vw, 26px);
      background: linear-gradient(180deg, #151515 0%, #101010 100%);
      border: 1px solid rgba(234, 217, 165, 0.16);
      border-radius: 20px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
    }

    .author-avatar {
      display: block;
      width: var(--author-avatar-size);
      height: var(--author-avatar-size);
      min-width: var(--author-avatar-size);
      min-height: var(--author-avatar-size);
      max-width: var(--author-avatar-size);
      max-height: var(--author-avatar-size);
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      flex: 0 0 var(--author-avatar-size);
      align-self: center;
      background: #f2e7bf;
      border: 1px solid #e4d8ab;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    }

    .author-meta {
      min-width: 0;
      text-align: left;
      color: #f1e7c6;
    }

    .author-label {
      margin: 0 0 8px;
      color: #b7aa7a;
      font-size: 14px;
      font-weight: 540;
      line-height: 1.25;
    }

    .author-link,
    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--hero-accent);
      font-size: clamp(22px, 1.95vw, 30px);
      font-weight: 760;
      line-height: 1.18;
      letter-spacing: -0.02em;
      text-decoration: none;
      text-underline-offset: 4px;
      transition: filter 150ms ease, text-decoration-color 150ms ease;
    }

    .channel-label {
      margin: 18px 0 8px;
      color: #b7aa7a;
      font-size: 14px;
      font-weight: 540;
      line-height: 1.25;
    }

    .channel-link {
      font-size: clamp(19px, 1.45vw, 24px);
      font-weight: 680;
    }

    .author-link:hover,
    .channel-link:hover {
      filter: brightness(0.86);
      text-decoration: underline;
      text-decoration-color: var(--hero-accent);
    }

    .author-link:focus-visible,
    .channel-link:focus-visible {
      outline: 3px solid #d6c77f;
      outline-offset: 4px;
      border-radius: 4px;
    }

    .author-external {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      color: currentColor;
    }

    .site-footer {
      width: 100%;
      padding: clamp(18px, 3vw, 30px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 60px);
      background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
      text-align: center;
    }

    .site-footer-inner {
      width: min(980px, 100%);
      margin: 0 auto;
    }

    .site-footer-note {
      max-width: 820px;
      margin: 0 auto;
      padding-top: 16px;
      border-top: 1px solid rgba(234, 217, 165, 0.14);
      color: #b6ae99;
      font-size: clamp(12px, 0.92vw, 14px);
      font-weight: 430;
      line-height: 1.6;
    }

    @media (max-width: 980px) {
      .authors-grid {
        grid-template-columns: 1fr;
        width: min(720px, 100%);
        margin: 0 auto;
      }
    }

    @media (max-width: 800px) {
      .hero-section {
        height: 75svh;
        border-radius: 0 0 20px 20px;
      }

      .hero-overlay {
        padding: 22px 18px;
      }

      .hero-title {
        font-size: clamp(23px, 6.8vw, 36px);
        line-height: 1.08;
      }

      .hero-subtitle {
        font-size: clamp(17px, 4.7vw, 23px);
      }

      .hero-search-form {
        --search-control-height: 50px;
        width: min(440px, 88vw);
      }

      .hero-search-input {
        padding-inline: 16px;
        font-size: 15px;
      }

      .hero-search-submit {
        width: 58px;
        font-size: 0;
      }

      .hero-search-arrow {
        width: 25px;
        height: 25px;
      }

      .maps-grid {
        grid-template-columns: 1fr;
        width: min(470px, 100%);
        margin: 0 auto;
      }

      .map-card-body {
        min-height: 74px;
      }

      .authors-grid {
        grid-template-columns: 1fr;
      }

      .author-card {
        --author-avatar-size: clamp(92px, 28vw, 118px);
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
      }

      .author-meta {
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .hero-search-input,
      .hero-search-submit,
      .map-card {
        transition: none;
      }
    }
