﻿@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #0a0a0d;
  --bg-elev: #131317;
  --bg-soft: #1a1a20;
  --line: #262630;
  --text: #f2f2f2;
  --text-soft: #bfbfc8;
  --accent: #ff7a00;
  --accent-soft: #ffb36b;
  --title-font: "Bebas Neue", sans-serif;
  --body-font: "Poppins", sans-serif;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 120;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 143, 31, 0.55);
  background: #111522;
  color: #fff4df;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2.2vw, 1.8rem);
  z-index: 30;
  width: 4.1rem;
  height: 4.1rem;
  border: 1px solid rgba(255, 173, 92, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 158, 48, 0.98), rgba(255, 122, 0, 0.96) 58%, rgba(255, 182, 108, 0.92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 8px, rgba(0, 0, 0, 0.03) 8px 16px);
  color: #120d08;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    0 8px 18px rgba(255, 122, 0, 0.18),
    0 0 0 1px rgba(255, 243, 222, 0.12) inset,
    0 -8px 18px rgba(255, 255, 255, 0.08) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  overflow: hidden;
}

.back-to-top::before,
.back-to-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.back-to-top::before {
  inset: 0.32rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 243, 222, 0.24);
}

.back-to-top::after {
  inset: auto 22% 0.7rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(20, 14, 10, 0.35);
  box-shadow: 0 1px 0 rgba(255, 245, 225, 0.22);
}

.back-to-top span {
  font-family: var(--title-font);
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(-0.12rem);
  text-shadow: 0 1px 0 rgba(255, 244, 226, 0.16);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  filter: brightness(1.03) saturate(1.04);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(255, 149, 54, 0.24),
    0 0 0 1px rgba(255, 244, 228, 0.14) inset,
    0 -8px 18px rgba(255, 255, 255, 0.1) inset;
}

.back-to-top:active {
  transform: translateY(1px) scale(0.975);
}

@media (max-width: 640px) {
  .back-to-top {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 18px;
  }

  .back-to-top::before {
    inset: 0.28rem;
    border-radius: 13px;
  }

  .back-to-top span {
    font-size: 1.7rem;
  }
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.layout,
.album-page {
  min-height: 100dvh;
}

.container {
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 420;
  background: rgba(5, 5, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.site-header__container {
  position: relative;
  z-index: 1;
  width: min(1400px, 100% - 1.5rem);
  margin-inline: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.site-header__brand-logo {
  width: auto;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.site-header__nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(0.7rem, 1.15vw, 1.35rem);
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--title-font);
  letter-spacing: 0.04em;
  font-size: clamp(1.35rem, 1.55vw, 1.9rem);
  white-space: nowrap;
  color: #f6f0df;
}

.site-header__link--active,
.site-header__link.is-active,
.site-header__link--button.site-header__link--active {
  color: var(--accent);
}

.site-header__link--button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.site-header__brand:focus-visible,
.site-header__link:focus-visible,
.site-header__mega-item:focus-visible,
.site-header__menu-toggle:focus-visible,
.site-header__account:focus-visible,
.site-header__cart:focus-visible,
.site-header__lang:focus-visible,
.site-footer__brand-row:focus-visible,
.site-footer__link:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 143, 31, 0.88);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(10, 10, 13, 0.9);
}

.site-header__mega {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  z-index: 430;
}

.site-header__mega-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-32%);
  width: min(1120px, 88vw);
  padding: 1rem;
  z-index: 460;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(23, 27, 39, 0.98), rgba(12, 15, 24, 0.98));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.8fr);
  gap: 1rem;
}

.site-header__mega-trigger {
  position: relative;
  z-index: 3;
  border: 1px solid transparent;
  border-bottom-color: transparent;
}

.site-header__mega-trigger[aria-expanded="true"] {
  color: #fff6e6;
  transform: translateY(0);
  text-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(20, 24, 37, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-header__mega-trigger[aria-expanded="true"]::after {
  opacity: 0;
}

.site-header__mega-trigger[aria-expanded="true"]::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -2px;
  height: 14px;
  background: rgba(20, 24, 37, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.site-header__mega-panel[hidden] {
  display: none;
}

.site-header__mega-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(14, 18, 29, 0.86);
}

.site-header__mega-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-header__mega-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #fff6e6;
}

.site-header__mega-text {
  margin: 0;
  color: rgba(246, 240, 223, 0.8);
  font-size: 1rem;
  line-height: 1.55;
}

.site-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.site-header__mega-item,
.site-header__mega-card {
  min-height: 8.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(20, 24, 37, 0.92);
  color: #f6f0df;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 1rem 1.05rem;
  gap: 0.32rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header__mega-item:hover,
.site-header__mega-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 168, 72, 0.45);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 160, 48, 0.12) inset;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(20, 24, 37, 0.96);
}

.site-header__mega-card-kicker {
  color: rgba(255, 179, 102, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-header__mega-card-title {
  font-family: var(--title-font);
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #fff7ea;
}

.site-header__mega-card-text {
  color: rgba(246, 240, 223, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 1000px) and (max-width: 1220px) {
  .site-header__brand-logo {
    height: 70px;
  }
}

.site-header__menu-toggle {
  width: 3rem;
  height: 3rem;
  border: 1px solid #2f3238;
  border-radius: 8px;
  background: #0c0c10;
  color: #f2f2f2;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.site-header__menu-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1rem;
}

.site-header__account {
  display: none;
  align-items: center;
  gap: 0.48rem;
  min-height: 3.15rem;
  padding: 0 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--body-font);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header__account[hidden] {
  display: none !important;
}

.site-header__account-badge {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--title-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  line-height: 1;
}

.site-header__account-text {
  font-family: var(--body-font);
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
}

.site-header__account-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  line-height: 1;
  opacity: 0.72;
}

.site-header__account--pro {
  position: relative;
  min-height: 3.9rem;
  padding-inline: 1.15rem 1.25rem;
  border-radius: 1.2rem;
  color: #f4ead6;
  border-color: rgba(255, 143, 31, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 143, 31, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(18, 20, 28, 0.98), rgba(10, 12, 18, 0.98));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-header__account--pro:hover,
.site-header__account--pro:focus-visible {
  color: #fff3dd;
  border-color: rgba(255, 143, 31, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 143, 31, 0.22), transparent 40%),
    linear-gradient(180deg, rgba(22, 24, 34, 0.99), rgba(12, 14, 21, 0.99));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 143, 31, 0.08) inset;
}

.site-header__account--client {
  color: #101217;
  border-color: rgba(255, 179, 107, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 198, 132, 0.98), rgba(255, 155, 54, 0.96) 52%, rgba(255, 132, 20, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 233, 202, 0.56),
    0 14px 28px rgba(255, 122, 0, 0.24);
}

.site-header__account--client:hover,
.site-header__account--client:focus-visible {
  color: #0d0f14;
  border-color: rgba(255, 210, 155, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 208, 152, 1), rgba(255, 168, 70, 0.98) 52%, rgba(255, 138, 28, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 219, 0.66),
    0 16px 30px rgba(255, 122, 0, 0.3);
}

.site-header__account:active {
  transform: translateY(1px);
}

.site-header__cart {
  min-width: 7.6rem;
  height: 2.35rem;
  border: 1px solid #2f3238;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
  padding: 0 0.75rem;
}

.site-header__price {
  color: #21cc75;
  font-weight: 700;
  font-size: 0.98rem;
}

.site-header__cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #ef5b5b;
  color: #fff;
  font-size: 0.68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__lang {
  border: 1px solid #2f3238;
  background: #0c0c10;
  color: #f2f2f2;
  height: 2.35rem;
  padding: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.hh-lang-switcher {
  min-width: 7.25rem;
  font-weight: 600;
}

.hh-mail-topbar__actions .hh-lang-switcher,
.hh-admin-adminbar__right .hh-lang-switcher {
  border: 1px solid #2f3548;
  background: #141722;
  color: #f6f0df;
  border-radius: 0.45rem;
  min-height: 34px;
  height: 34px;
  padding: 0 0.45rem;
}

.hh-mail-topbar__actions .hh-lang-switcher:hover,
.hh-admin-adminbar__right .hh-lang-switcher:hover {
  border-color: #3e475f;
  background: #1a1f2b;
}

.hh-i18n-anchor {
  position: fixed;
  left: -99999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.skiptranslate {
  top: 0 !important;
}

iframe.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

#goog-gt-tt,
.goog-te-balloon-frame,
.goog-text-highlight {
  display: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.08), transparent 38%),
    linear-gradient(180deg, #0d1017, #090b10);
}

.site-footer__container {
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
  padding: 2.5rem 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.site-footer__brand-title,
.site-footer__title {
  margin: 0;
  color: #f6f0df;
  font-family: var(--title-font);
  letter-spacing: 0.04em;
}

.site-footer__brand-title {
  font-size: 2rem;
}

.site-footer__title {
  font-size: 1.35rem;
}

.site-footer__description,
.site-footer__contact,
.site-footer__copy {
  margin: 0;
  color: var(--text-soft);
}

.site-footer__contact {
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.site-footer__contact strong {
  color: #f6f0df;
  font-weight: 700;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer__link {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #f6f0df;
}

.site-footer__bottom {
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
  padding: 0 0 1.5rem;
}

.site-footer__copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

@media (min-width: 1000px) {
  .site-header__nav {
    display: inline-flex;
  }

  .site-header__account {
    display: inline-flex;
  }
}

@media (max-width: 999px) {
  .site-header {
    backdrop-filter: none;
  }

  :where(button,
    .auth-tabs__tab,
    .auth-form__btn,
    .home-btn,
    .bboys-btn,
    .bboys-filter,
    .bboys-card__cta,
    .market-product__btn,
    .market-product__link,
    .single-product__btn,
    .single-product__tab-btn,
    .bio__tab,
    .hh-admin-btn,
    .hh-admin-menu__item,
    .hh-admin-menu__subitem,
    .wc-client-btn,
    .wc-client-nav__item) {
    min-height: 2.75rem;
  }

  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
    select) {
    min-height: 2.75rem;
  }

  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
    select,
    textarea) {
    font-size: 16px;
  }

  :where(input[type="checkbox"], input[type="radio"]) {
    width: 1.125rem;
    height: 1.125rem;
  }

  .site-footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1rem;
  }

  .site-footer__brand,
  .site-footer__bottom {
    grid-column: 1 / -1;
  }

  .site-footer__container > .site-footer__column:nth-child(2) {
    grid-column: 1;
  }

  .site-footer__container > .site-footer__column:nth-child(3) {
    grid-column: 2;
  }

  .site-footer__container > .site-footer__column:nth-child(4) {
    grid-column: 1 / -1;
  }

  .site-header__container {
    min-height: 72px;
  }

  .site-header__brand-logo {
    height: 62px;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .site-header__actions {
    margin-left: auto;
    gap: 0.35rem;
  }

  .site-header__account {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.72rem;
    border-radius: 0.95rem;
  }

  .site-header__account-text {
    display: inline-flex;
    font-size: 0.8rem;
  }

  .site-header__account-badge {
    display: none;
  }

  .site-header__account-arrow {
    font-size: 0.86rem;
  }

  .site-header__account--pro {
    min-height: 3.05rem;
    padding-inline: 0.82rem 0.88rem;
    border-radius: 1rem;
  }

  .site-header__menu-toggle {
    width: 3rem;
    height: 3rem;
  }

  .site-header__cart {
    min-height: 3rem;
    min-width: 0;
    padding: 0 0.85rem;
  }

  .site-header__lang {
    min-height: 3rem;
    padding: 0 0.7rem;
  }

  .site-header__nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: calc(72px + 1.1rem) 1rem 1.25rem;
    overflow-y: auto;
    background:
      radial-gradient(circle at top, rgba(255, 143, 31, 0.18), transparent 22%),
      linear-gradient(180deg, rgba(12, 15, 23, 0.98), rgba(7, 9, 14, 0.99));
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .site-header.is-mobile-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .site-header__nav>* {
    opacity: 0;
    transform: translateY(0.45rem);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .site-header.is-mobile-open .site-header__nav>* {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header__link {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
    line-height: 1.1;
    min-height: 4.35rem;
    display: inline-flex;
    align-items: center;
  }

  .site-header__link--button {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 1.15rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 20px 38px rgba(0, 0, 0, 0.28);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
      rgba(16, 20, 31, 0.94);
  }

  .site-header__nav>.site-header__link,
  .site-header__nav>.site-header__mega>.site-header__link--button {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 20px 38px rgba(0, 0, 0, 0.28);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
      rgba(16, 20, 31, 0.94);
  }

  .site-header__nav>.site-header__link.site-header__link--active,
  .site-header__nav>.site-header__mega>.site-header__link--button.site-header__link--active {
    color: #fff3dd;
    border-color: rgba(255, 168, 72, 0.38);
    background:
      radial-gradient(circle at top left, rgba(255, 143, 31, 0.16), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
      rgba(18, 22, 33, 0.98);
  }

  .site-header__mega {
    width: 100%;
  }

  .site-header__mega-trigger::after {
    content: "›";
    font-size: 1.85rem;
    line-height: 1;
    color: rgba(246, 240, 223, 0.8);
    transition: transform 180ms ease, color 180ms ease;
  }

  .site-header__mega.is-mobile-submenu-active .site-header__mega-trigger::after {
    transform: translateX(0.2rem);
    color: #fff3dd;
  }

  .site-header__mega-trigger[aria-expanded="true"] {
    border-color: rgba(255, 168, 72, 0.38);
  }

  .site-header__mega-trigger[aria-expanded="true"]::before {
    display: none;
  }

  .site-header__mega-panel {
    display: none !important;
  }

  .site-header.is-mobile-submenu-open .site-header__nav> :not(.site-header__mobile-submenu) {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-1.35rem);
  }

  .site-header__mobile-submenu {
    position: absolute;
    inset: calc(72px + 1.1rem) 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(2rem);
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 280ms;
  }

  .site-header.is-mobile-open .site-header__mobile-submenu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(2rem);
  }

  .site-header.is-mobile-submenu-open .site-header__mobile-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      opacity 220ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .site-header__mobile-submenu-back {
    width: fit-content;
    min-height: 2.8rem;
    padding: 0 0.15rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(246, 240, 223, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .site-header__mobile-submenu-back span[aria-hidden="true"] {
    font-size: 1.6rem;
    line-height: 1;
  }

  .site-header__mobile-submenu-intro {
    display: grid;
    gap: 0.45rem;
    padding: 0.35rem 0.1rem 0.2rem;
  }

  .site-header__mobile-submenu-kicker {
    margin: 0;
    color: var(--accent);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .site-header__mobile-submenu-title {
    margin: 0;
    color: #fff6e6;
    font-family: var(--title-font);
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 0.94;
    letter-spacing: 0.03em;
  }

  .site-header__mobile-submenu-text {
    margin: 0;
    color: rgba(246, 240, 223, 0.78);
    font-size: 1rem;
    line-height: 1.5;
  }

  .site-header__mobile-submenu-list {
    display: grid;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .site-header__mobile-submenu-link {
    display: grid;
    gap: 0.22rem;
    padding: 1rem 1.1rem 1.05rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      radial-gradient(circle at top left, rgba(255, 143, 31, 0.12), transparent 40%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
      rgba(15, 19, 29, 0.95);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 18px 30px rgba(0, 0, 0, 0.24);
    color: #f6f0df;
  }

  .site-header__mobile-submenu-link-kicker {
    color: rgba(255, 183, 116, 0.9);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .site-header__mobile-submenu-link-title {
    font-family: var(--title-font);
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1;
    letter-spacing: 0.03em;
  }

  .site-header__mobile-submenu-link-text {
    color: rgba(246, 240, 223, 0.75);
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .site-footer__brand-row {
    align-items: center;
  }

  .site-footer__brand-title {
    font-size: 1.7rem;
  }
}

.hh-crosslinks {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 31, 0.18), transparent 32rem),
    linear-gradient(180deg, rgba(12, 15, 24, 0.98), rgba(18, 23, 36, 0.96));
}

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

.hh-crosslinks__header {
  max-width: 52rem;
  margin-bottom: 1.75rem;
}

.hh-crosslinks__eyebrow {
  margin: 0 0 0.5rem;
  color: #ffb35c;
  font: 700 0.9rem/1.2 "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hh-crosslinks__title {
  margin: 0;
  color: #f5f7ff;
  font: 700 clamp(1.8rem, 3vw, 2.7rem)/1.05 "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.hh-crosslinks__lead {
  margin: 0.85rem 0 0;
  max-width: 48rem;
  color: rgba(226, 232, 240, 0.86);
  font: 400 1rem/1.7 "Inter", Arial, sans-serif;
}

.hh-crosslinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.hh-crosslinks__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  color: #f5f7ff;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.hh-crosslinks__card:hover,
.hh-crosslinks__card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 92, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

.hh-crosslinks__kicker {
  color: #ffb35c;
  font: 700 0.8rem/1.2 "Inter", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hh-crosslinks__label {
  color: #ffffff;
  font: 700 1.1rem/1.3 "Inter", Arial, sans-serif;
}

.hh-crosslinks__text {
  color: rgba(226, 232, 240, 0.84);
  font: 400 0.96rem/1.55 "Inter", Arial, sans-serif;
}

@media (max-width: 720px) {
  .hh-crosslinks {
    padding-inline: 1rem;
  }

  .hh-crosslinks__grid {
    grid-template-columns: 1fr;
  }
}

.pro-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.pro-hero__inner {
  width: min(1400px, 100% - 2rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.pro-hero__content {
  max-width: 900px;
  /* augmente la largeur utile du texte */
  margin-inline: auto;
  /* recentre visuellement le bloc */
  text-align: center;
  /* optionnel si tu veux un hero plus premium */
}

.pro-hero__title {
  margin: 0 0 1rem;
  font-family: var(--title-font);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.pro-hero__text {
  margin: 0 auto;
  max-width: 780px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.pro-hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
