    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background: #ffffff;
      color: #050505;
      font-family: "Sora", Arial, Helvetica, sans-serif;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
    }

    a {
      color: inherit;
    }

    .about-page {
      min-height: 100vh;
      padding: 28px 38px 32px;
      overflow-x: hidden;
    }

    /* TOP */
    .about-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
      z-index: 10;
    }

    .about-brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #050505;
      text-decoration: none;
    }

    .about-brand span {
      font-size: 19px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1;
    }

    .about-brand img {
      width: 52px;
      height: auto;
      display: block;
      transform: translateY(-2px);
      pointer-events: none;
    }

    .about-back {
      min-width: 82px;
      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;
    }

    .about-back:hover {
      background: #050505;
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* HERO */
    .about-hero {
      min-height: calc(100vh - 86px);
      padding: 82px 0 64px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
      gap: 54px;
      align-items: center;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    }

    .about-kicker {
      margin: 0 0 18px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.56);
    }

    .about-title {
      margin: 0;
      max-width: 9.4ch;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(5rem, 12.5vw, 14.5rem);
      line-height: 0.78;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: #050505;
    }

    .about-title mark {
      color: #e5231b;
      background: transparent;
    }

    .about-intro {
      max-width: 690px;
      margin: 30px 0 0;
      font-size: clamp(1rem, 1.35vw, 1.24rem);
      line-height: 1.58;
      font-weight: 700;
      color: rgba(5, 5, 5, 0.72);
    }

    .about-photo-card {
      position: relative;
      padding: 16px;
      background: #fff7d8;
      border: 2px solid #050505;
      box-shadow: 10px 10px 0 #050505;
      transform: rotate(1.2deg);
    }

    .about-photo-label {
      position: absolute;
      left: 18px;
      top: -18px;
      z-index: 2;
      padding: 9px 13px 8px;
      background: #e5231b;
      color: #ffffff;
      border: 2px solid #050505;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transform: rotate(-5deg);
      box-shadow: 4px 4px 0 #050505;
    }

    .about-photo {
      aspect-ratio: 4 / 5;
      border: 2px solid #050505;
      background:
        linear-gradient(135deg, rgba(5, 5, 5, 0.06), transparent 38%),
        #ffffff;
      overflow: hidden;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .about-photo-note {
      margin: 14px 0 0;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.55);
    }

    /* SIMPLE CONTENT */
    .about-simple {
      padding: 54px 0 74px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 54px;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    }

    .about-section-title {
      margin: 0;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(3.1rem, 6.8vw, 7.4rem);
      line-height: 0.86;
      font-weight: 400;
      letter-spacing: -0.025em;
      color: #050505;
    }

    .about-text-block {
      display: grid;
      gap: 18px;
      align-self: start;
    }

    .about-text-block p {
      margin: 0;
      max-width: 760px;
      font-size: 16px;
      line-height: 1.7;
      font-weight: 700;
      color: rgba(5, 5, 5, 0.72);
    }

    .about-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    }

    .about-fact {
      min-height: 120px;
      padding: 18px;
      border: 1px solid #050505;
      background: #ffffff;
    }

    .about-fact span {
      display: block;
      margin-bottom: 16px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(5, 5, 5, 0.5);
    }

    .about-fact strong {
      display: block;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(1.8rem, 3vw, 3.3rem);
      line-height: 0.92;
      font-weight: 400;
      color: #050505;
    }

    .about-cta {
      padding: 58px 0 66px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      border-bottom: 1px solid rgba(5, 5, 5, 0.18);
    }

    .about-cta h2 {
      margin: 0;
      max-width: 720px;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: clamp(3.2rem, 7.5vw, 8rem);
      line-height: 0.84;
      font-weight: 400;
      letter-spacing: -0.03em;
      color: #050505;
    }

    .about-cta-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .about-button {
      min-width: 150px;
      height: 54px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #050505;
      background: #050505;
      color: #ffffff;
      font-family: "Anton", "Arial Narrow", Arial, sans-serif;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.075em;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 5px 5px 0 #e5231b;
      transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .about-button:hover {
      transform: translate(-2px, -2px);
      box-shadow: 7px 7px 0 #e5231b;
    }

    .about-footer {
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .about-footer p,
    .about-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;
    }

    .about-footer a:hover {
      color: #050505;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* PAGE TRANSITION */
    html,
    body {
      overflow-x: hidden;
    }

    body.lc-page-leaving {
      pointer-events: none;
    }

    body:not(.lc-page-loaded):not(.lc-page-leaving)
      > *:not(script):not(style):not(link):not(.site-loader) {
      opacity: 0;
      transform: translateX(-7vw) scale(0.985);
      filter: blur(6px);
    }

    body.lc-page-loaded
      > *:not(script):not(style):not(link):not(.site-loader) {
      opacity: 1;
      transform: translateX(0) scale(1);
      filter: blur(0);
      transition:
        opacity 0.58s ease,
        transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.58s ease;
    }

    body.lc-page-leaving
      > *:not(script):not(style):not(link):not(.site-loader) {
      opacity: 0;
      transform: translateX(8vw) scale(0.985);
      filter: blur(6px);
      transition:
        opacity 0.42s ease,
        transform 0.56s cubic-bezier(0.76, 0, 0.24, 1),
        filter 0.42s ease;
    }

    @media (max-width: 980px) {
      .about-page {
        padding: 26px 28px 28px;
      }

      .about-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 48px;
        padding: 70px 0 58px;
      }

      .about-title {
        max-width: 100%;
      }

      .about-photo-card {
        max-width: 560px;
        transform: rotate(0deg);
      }

      .about-photo {
        aspect-ratio: 16 / 10;
      }

      .about-simple,
      .about-cta {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .about-facts {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .about-page {
        padding: 22px 24px 28px;
      }

      .about-brand span {
        display: none;
      }

      .about-brand img {
        width: 56px;
        transform: translateY(0);
      }

      .about-back {
        height: 44px;
        padding: 0 16px;
        font-size: 14px;
      }

      .about-hero {
        padding: 58px 0 50px;
      }

      .about-title {
        font-size: clamp(4.2rem, 21vw, 8.2rem);
        line-height: 0.82;
      }

      .about-photo-card {
        box-shadow: 7px 7px 0 #050505;
      }

      .about-simple {
        padding: 46px 0 58px;
      }

      .about-section-title,
      .about-cta h2 {
        font-size: clamp(2.9rem, 12vw, 5.8rem);
      }

      .about-text-block p {
        font-size: 15px;
      }
    }

    @media (max-width: 520px) {
      .about-page {
        padding: 18px 16px 24px;
      }

      .about-brand img {
        width: 50px;
      }

      .about-back {
        min-width: 72px;
        height: 42px;
        padding: 0 14px;
        font-size: 13px;
      }

      .about-hero {
        padding: 44px 0 44px;
      }

      .about-title {
        font-size: clamp(3.55rem, 21.5vw, 6.25rem);
        line-height: 0.86;
      }

      .about-intro {
        margin-top: 22px;
        font-size: 0.96rem;
      }

      .about-photo-card {
        padding: 12px;
        box-shadow: 5px 5px 0 #050505;
      }

      .about-photo-label {
        left: 14px;
        top: -14px;
        font-size: 9px;
        box-shadow: 3px 3px 0 #050505;
      }

      .about-photo {
        aspect-ratio: 1 / 1;
      }

      .about-simple {
        padding: 42px 0 50px;
      }

      .about-section-title,
      .about-cta h2 {
        font-size: clamp(2.55rem, 13vw, 4.65rem);
      }

      .about-fact {
        min-height: 100px;
      }

      .about-button {
        width: 100%;
      }

      .about-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
      }

      .about-footer p,
      .about-footer a {
        font-size: 10px;
        letter-spacing: 0.1em;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      body:not(.lc-page-loaded):not(.lc-page-leaving)
        > *:not(script):not(style):not(link):not(.site-loader),
      body.lc-page-loaded
        > *:not(script):not(style):not(link):not(.site-loader),
      body.lc-page-leaving
        > *:not(script):not(style):not(link):not(.site-loader) {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

/* =========================================================
   FIRST VISIT LOADER - STABLE
   ========================================================= */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  color: #050505;
  overflow: hidden;
}

html.loader-should-run .site-loader {
  display: flex;
}

html.loader-skip .site-loader {
  display: none !important;
}

.site-loader.is-hidden {
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.42s ease,
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.42s ease;
}

body.loader-active {
  overflow: hidden;
}

.site-loader::before {
  content: "";
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  right: -16vmax;
  top: -18vmax;
  border-radius: 999px;
  background: rgba(229, 35, 27, 0.12);
}

.site-loader::after {
  content: "";
  position: absolute;
  width: 32vmax;
  height: 32vmax;
  left: -14vmax;
  bottom: -16vmax;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.06);
}

.site-loader-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 24px;
  background: #fff7d8;
  border: 2px solid #050505;
  box-shadow: 8px 8px 0 #050505;
  text-align: center;
  transform: rotate(-1deg);
}

.site-loader-cat {
  width: 88px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 20px 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.56);
}

.site-loader-title {
  margin: 0;
  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.4rem, 10vw, 4.6rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #050505;
}

.site-loader-progress {
  width: 100%;
  height: 14px;
  margin-top: 22px;
  border: 2px solid #050505;
  background: #ffffff;
  overflow: hidden;
}

.site-loader-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: #e5231b;
  transition: width 0.18s linear;
}

.site-loader-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  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;
}

/* =========================================================
   PAGE TRANSITION - STABLE
   old page fades right / new page comes from left
   ========================================================= */
@view-transition {
  navigation: none;
}

html,
body {
  overflow-x: hidden;
}

body.lc-page-leaving {
  pointer-events: none;
}

body:not(.lc-page-loaded):not(.lc-page-leaving)
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 0;
  transform: translateX(-7vw) scale(0.985);
  filter: blur(6px);
}

body.lc-page-loaded
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.58s ease,
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s ease;
}

body.lc-page-leaving
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 0;
  transform: translateX(8vw) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.42s ease,
    transform 0.56s cubic-bezier(0.76, 0, 0.24, 1),
    filter 0.42s ease;
}

@media (max-width: 520px) {
  .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:not(.lc-page-loaded):not(.lc-page-leaving)
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-loaded
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-leaving
    > *:not(script):not(style):not(link):not(.site-loader) {
    animation: none !important;
    transition: none !important;
  }

  body:not(.lc-page-loaded):not(.lc-page-leaving)
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-loaded
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-leaving
    > *:not(script):not(style):not(link):not(.site-loader) {
    opacity: 1 !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;
  }
}
