    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
      background: #ffffff;
      color: #050505;
      font-family: "Sora", Arial, Helvetica, sans-serif;
    }

    a {
      color: inherit;
    }

    img {
      max-width: 100%;
    }

    .privacy-page {
      min-height: 100vh;
      padding: 28px 38px 32px;
      background: #ffffff;
    }

    .privacy-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .privacy-brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #050505;
      text-decoration: none;
    }

    .privacy-brand span {
      font-size: 19px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1;
    }

    .privacy-brand img {
      width: 52px;
      height: auto;
      display: block;
      transform: translateY(-2px);
      pointer-events: none;
    }

    .privacy-back {
      height: 46px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #050505;
      background: #ffffff;
      color: #050505;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      transition:
        background 0.24s ease,
        color 0.24s ease,
        transform 0.24s ease;
    }

    .privacy-back:hover {
      background: #050505;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .privacy-hero {
      padding: 96px 0 56px;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    }

    .privacy-title {
      margin: 0;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(5rem, 14vw, 15rem);
      line-height: 0.78;
      font-weight: 400;
      letter-spacing: -0.035em;
      color: #050505;
    }

    .privacy-intro {
      max-width: 760px;
      margin: 32px 0 0;
      font-size: clamp(1rem, 1.35vw, 1.22rem);
      line-height: 1.58;
      font-weight: 700;
      color: rgba(5, 5, 5, 0.72);
    }

    .privacy-layout {
      display: grid;
      grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
      gap: 64px;
      align-items: start;
      padding: 52px 0 82px;
      overflow: visible;
    }

    .privacy-nav-wrap {
      position: sticky;
      top: 32px;
      align-self: start;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
      padding-right: 10px;

      /* Hide internal scrollbar while keeping sticky navigation usable */
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .privacy-nav-wrap::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .privacy-nav-title {
      margin: 0 0 18px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.5);
    }

    .privacy-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
    }

    .privacy-nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      width: fit-content;
      color: rgba(5, 5, 5, 0.42);
      text-decoration: none;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: 24px;
      line-height: 0.98;
      font-weight: 400;
      letter-spacing: 0.005em;
      transition:
        color 0.22s ease,
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .privacy-nav-link::before {
      content: "";
      width: 0;
      height: 2px;
      margin-right: 0;
      background: #050505;
      transition:
        width 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        margin-right 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.22s ease;
    }

    .privacy-nav-link:hover {
      color: #050505;
      transform: translateX(4px);
    }

    .privacy-nav-link:hover::before {
      width: 18px;
      margin-right: 8px;
    }

    .privacy-nav-link.is-active {
      color: #050505;
      transform: translateX(8px);
    }

    .privacy-nav-link.is-active::before {
      width: 24px;
      margin-right: 10px;
      background: #e5231b;
    }

    .privacy-content {
      min-width: 0;
      display: grid;
      gap: 0;
    }

    .privacy-section {
      padding: 0 0 46px;
      margin-bottom: 46px;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
      scroll-margin-top: 42px;
    }

    .privacy-section-body {
      max-width: 940px;
    }

    .privacy-section h2 {
      margin: 0 0 22px;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(2.6rem, 4.6vw, 5.2rem);
      line-height: 0.9;
      font-weight: 400;
      letter-spacing: -0.012em;
      color: #050505;
    }

    .privacy-section p {
      max-width: 840px;
      margin: 0 0 16px;
      font-size: 15px;
      line-height: 1.7;
      font-weight: 700;
      color: rgba(5, 5, 5, 0.72);
    }

    .privacy-section ul {
      max-width: 840px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .privacy-section li {
      position: relative;
      padding-left: 22px;
      font-size: 15px;
      line-height: 1.62;
      font-weight: 700;
      color: rgba(5, 5, 5, 0.72);
    }

    .privacy-section li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 8px;
      height: 8px;
      background: #e5231b;
      border-radius: 999px;
    }

    .privacy-section strong {
      color: #050505;
    }

    .privacy-section a {
      color: #050505;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .privacy-note {
      width: fit-content;
      margin-top: 22px;
      padding: 10px 12px 9px;
      background: #fff7d8;
      border: 1px solid #050505;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #050505;
    }

    .privacy-footer {
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(5, 5, 5, 0.18);
    }

    .privacy-footer p,
    .privacy-footer a {
      margin: 0;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.62);
      text-decoration: none;
    }

    .privacy-footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .privacy-footer a:hover {
      color: #050505;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* FIRST VISIT LOADER */
    .site-loader {
      position: fixed;
      inset: 0;
      z-index: 999999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: #fff7d8;
      color: #050505;
      transition:
        opacity 0.42s ease,
        visibility 0.42s ease;
    }

    html.loader-should-run .site-loader {
      display: flex;
    }

    html.loader-skip .site-loader,
    .site-loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    body.loader-active {
      overflow: hidden;
    }

    .site-loader::before {
      content: "";
      position: absolute;
      inset: 28px;
      border: 2px solid #050505;
      pointer-events: none;
    }

    .site-loader::after {
      content: "";
      position: absolute;
      right: 9vw;
      bottom: 10vh;
      width: 26vw;
      max-width: 360px;
      aspect-ratio: 1;
      background: #e5231b;
      border-radius: 999px;
      opacity: 0.12;
      pointer-events: none;
    }

    .site-loader-card {
      position: relative;
      z-index: 2;
      width: min(100%, 520px);
      padding: 28px;
      background: #ffffff;
      border: 2px solid #050505;
      box-shadow: 8px 8px 0 #050505;
      text-align: center;
    }

    .site-loader-cat {
      width: 92px;
      height: auto;
      margin-bottom: 18px;
      filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
    }

    .site-loader-kicker {
      margin: 0 0 12px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.58);
    }

    .site-loader-title {
      margin: 0;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(2.5rem, 9vw, 5.4rem);
      line-height: 0.9;
      font-weight: 400;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #050505;
    }

    .site-loader-progress {
      margin-top: 26px;
      width: 100%;
      height: 14px;
      background: #fff7d8;
      border: 2px solid #050505;
      overflow: hidden;
    }

    .site-loader-progress-fill {
      display: block;
      width: 0%;
      height: 100%;
      background: #e5231b;
      transition: width 0.16s linear;
    }

    .site-loader-row {
      margin-top: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.62);
    }

    .site-loader-row strong {
      color: #050505;
      font-weight: 800;
    }

    /* PAGE TRANSITION — no persistent transform, so sticky nav keeps working */
    body.lc-page-entering .lc-transition-target {
      animation: lcPageNewIn 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    body.lc-page-leaving {
      pointer-events: none;
    }

    body.lc-page-leaving .lc-transition-target {
      animation: lcPageOldOut 0.56s cubic-bezier(0.76, 0, 0.24, 1) both;
    }

    @keyframes lcPageOldOut {
      0% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
      }

      100% {
        opacity: 0;
        transform: translateX(8vw) scale(0.985);
        filter: blur(6px);
      }
    }

    @keyframes lcPageNewIn {
      0% {
        opacity: 0;
        transform: translateX(-7vw) scale(0.985);
        filter: blur(6px);
      }

      100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
      }
    }

    @media (max-width: 1000px) {
      .privacy-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .privacy-nav-wrap {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(5, 5, 5, 0.18);
      }

      .privacy-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
      }

      .privacy-nav-link {
        font-size: 22px;
      }

      .privacy-nav-link::before,
      .privacy-nav-link:hover::before,
      .privacy-nav-link.is-active::before {
        width: 0;
        margin-right: 0;
      }

      .privacy-nav-link.is-active {
        color: #e5231b;
        transform: translateX(0);
      }

      .privacy-nav-link:hover {
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
      .privacy-page {
        padding: 22px 24px 28px;
      }

      .privacy-brand span {
        display: none;
      }

      .privacy-brand img {
        width: 56px;
        transform: translateY(0);
      }

      .privacy-hero {
        padding: 74px 0 44px;
      }

      .privacy-title {
        font-size: clamp(4.6rem, 24vw, 9rem);
      }

      .privacy-layout {
        padding: 38px 0 66px;
      }

      .privacy-section {
        padding-bottom: 38px;
        margin-bottom: 38px;
      }

      .privacy-section h2 {
        font-size: clamp(2.4rem, 12vw, 4.8rem);
      }
    }

    @media (max-width: 520px) {
      .privacy-page {
        padding: 18px 16px 24px;
      }

      .privacy-back {
        height: 42px;
        padding: 0 14px;
        font-size: 13px;
      }

      .privacy-hero {
        padding: 58px 0 38px;
      }

      .privacy-title {
        font-size: clamp(3.8rem, 23vw, 6.4rem);
      }

      .privacy-intro {
        font-size: 1rem;
      }

      .privacy-nav-link {
        font-size: 20px;
      }

      .privacy-section p,
      .privacy-section li {
        font-size: 14px;
      }

      .site-loader-card {
        padding: 20px;
        box-shadow: 5px 5px 0 #050505;
      }

      .site-loader-cat {
        width: 74px;
      }

      .site-loader-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .site-loader,
      .site-loader *,
      body.lc-page-entering .lc-transition-target,
      body.lc-page-leaving .lc-transition-target {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
      }
    }

    /* =========================================================
       COOKIE CONSENT BANNER
       ========================================================= */
    .lc-cookie-banner {
      position: fixed;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 999998;

      display: none;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;

      max-width: 640px;
      margin: 0 auto;
      padding: 18px 20px;

      background: #ffffff;
      border: 2px solid #050505;
      box-shadow: 6px 6px 0 #e5231b;

      font-family: "Sora", Arial, Helvetica, sans-serif;
    }

    .lc-cookie-banner.is-visible {
      display: flex;
    }

    .lc-cookie-text {
      flex: 1 1 260px;
      margin: 0;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.5;
      color: rgba(5, 5, 5, 0.82);
    }

    .lc-cookie-text a {
      color: #050505;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .lc-cookie-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .lc-cookie-accept,
    .lc-cookie-decline {
      height: 42px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;

      border: 2px solid #050505;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;

      transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
    }

    .lc-cookie-accept {
      background: #050505;
      color: #ffffff;
      box-shadow: 4px 4px 0 #e5231b;
    }

    .lc-cookie-accept:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0 #e5231b;
    }

    .lc-cookie-decline {
      background: #ffffff;
      color: #050505;
    }

    .lc-cookie-decline:hover {
      background: #050505;
      color: #ffffff;
    }

    @media (max-width: 520px) {
      .lc-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 4px 4px 0 #e5231b;
      }

      .lc-cookie-text {
        flex: 0 1 auto;
      }

      .lc-cookie-actions {
        justify-content: stretch;
      }

      .lc-cookie-accept,
      .lc-cookie-decline {
        flex: 1 1 0;
      }
    }