:root {
  --site-header-height: 88px;
  --site-header-bg: #ffffff;
  --site-ink: #171719;
  --site-muted: #626269;
  --site-line: #dedee2;
  --site-red: #e6001a;
  --site-green: #278b68;
  --site-layer-header: 1800;
  --site-layer-panel: 1700;
  --site-layer-overlay: 1600;
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header [hidden],
.site-nav__overlay[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--site-layer-header);
  display: block;
  width: 100%;
  height: var(--site-header-height);
  padding: 0;
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 23, 25, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 20, 24, 0.09);
}

.site-header__spacer {
  width: 100%;
  height: var(--site-header-height);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 46px);
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 58px);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  width: 122px;
  height: 68px;
  padding: 6px 0;
}

.site-header__logo img {
  display: block;
  width: 112px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.site-nav--desktop {
  min-width: 0;
  height: 100%;
}

.site-nav__primary {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(2px, 0.7vw, 16px);
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__primary > li {
  display: flex;
  align-items: stretch;
}

.site-nav__trigger,
.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 100%;
  margin: 0;
  padding: 2px clamp(8px, 0.75vw, 15px) 0;
  color: #27272b;
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav__trigger::after,
.site-nav__link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--site-red);
  transition: right 180ms ease, left 180ms ease;
}

.site-nav__trigger:hover::after,
.site-nav__trigger.is-active::after,
.site-nav__trigger[aria-expanded="true"]::after,
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  right: 10px;
  left: 10px;
}

.site-nav__trigger:focus-visible,
.site-nav__link:focus-visible,
.site-header__contact:focus-visible,
.site-header__menu-button:focus-visible,
.site-nav__panel a:focus-visible,
.site-drawer button:focus-visible,
.site-drawer a:focus-visible {
  outline: 3px solid rgba(230, 0, 26, 0.55);
  outline-offset: 3px;
}

.site-nav__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.site-nav__trigger[aria-expanded="true"] .site-nav__chevron {
  transform: translateY(2px) rotate(225deg);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.site-header a.site-header__contact,
.site-header a.site-header__contact:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: var(--site-green);
  border: 1px solid var(--site-green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-header a.site-header__contact:hover {
  color: var(--site-green);
  background: #fff;
  transform: translateY(-1px);
}

.site-header__menu-button {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid #d9d9dd;
  border-radius: 50%;
  cursor: pointer;
}

.site-header__menu-button span {
  position: absolute;
  left: 12px;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--site-ink);
  border-radius: 2px;
  transform-origin: center;
}

.site-header__menu-button span:nth-child(1) { top: 15px; }
.site-header__menu-button span:nth-child(2) { top: 22px; }
.site-header__menu-button span:nth-child(3) { top: 29px; }

.site-header__menu-button[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.site-header__menu-button[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.site-nav__panel {
  position: fixed;
  z-index: var(--site-layer-panel);
  top: var(--site-header-height);
  right: 0;
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--site-header-height) - 22px);
  overflow: auto;
  color: var(--site-ink);
  background: #fff;
  border-top: 1px solid #e8e8eb;
  box-shadow: 0 28px 60px rgba(12, 12, 16, 0.14);
  visibility: visible;
}

.site-nav__panel-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(480px, 1.75fr) minmax(220px, 0.75fr);
  gap: clamp(32px, 4vw, 70px);
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 0 clamp(38px, 4.4vw, 68px);
}

.site-nav__intro {
  position: relative;
  padding-right: clamp(22px, 2.8vw, 48px);
  border-right: 1px solid var(--site-line);
}

.site-nav__index {
  margin: 0 0 20px;
  color: var(--site-red);
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav__intro h2 {
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

.site-nav__intro > p:not(.site-nav__index) {
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.9;
}

.site-nav__overview {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 7px;
  color: var(--site-ink);
  border-bottom: 1px solid #a9a9ae;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__overview span {
  color: var(--site-red);
  transition: transform 180ms ease;
}

.site-nav__overview:hover span { transform: translateX(5px); }

.site-nav__group h3 {
  margin: 0 0 18px;
  color: #77777e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-nav__links {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links--two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 48px);
}

.site-nav__links li { border-top: 1px solid var(--site-line); }
.site-nav__links li:last-child { border-bottom: 1px solid var(--site-line); }
.site-nav__links--two-columns li:nth-last-child(2) { border-bottom: 1px solid var(--site-line); }

.site-nav__links a {
  position: relative;
  display: block;
  min-height: 68px;
  padding: 14px 30px 12px 0;
  color: #2b2b30;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.site-nav__links a:hover {
  padding-left: 8px;
  color: var(--site-red);
}

.site-nav__links small {
  display: block;
  margin-top: 4px;
  color: #85858b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.site-nav__shop-item { background: #fafafa; }

.site-nav__links a.site-nav__shop-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 10px 30px 10px 0;
}

.site-nav__shop-link > span:last-child { min-width: 0; }
.site-nav__shop-link strong { display: block; }

.site-nav__shop-brand {
  display: inline-flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 48px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 7px;
}

.site-nav__shop-brand img {
  display: block;
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.site-nav__shop-link:hover { padding-left: 8px !important; }

.site-nav__support-copy {
  margin: 0 0 22px;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-nav__panel a.site-nav__feature,
.site-nav__panel a.site-nav__feature:visited {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 118px;
  margin-top: 22px;
  padding: 22px;
  color: #fff;
  background: #25252a;
  border-left: 4px solid var(--site-red);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-nav__panel a.site-nav__feature--contact { background: var(--site-green); border-left-color: #0f5f47; }
.site-nav__panel a.site-nav__feature:hover { color: #fff; background: #111115; transform: translateY(-2px); }
.site-nav__panel a.site-nav__feature--contact:hover { background: #1e7559; }

.site-nav__feature span {
  margin-bottom: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.75;
}

.site-nav__feature strong { font-size: 14px; line-height: 1.5; }

.site-nav__overlay {
  position: fixed;
  z-index: var(--site-layer-overlay);
  inset: var(--site-header-height) 0 0;
  background: rgba(10, 10, 13, 0.46);
  backdrop-filter: blur(2px);
}

.site-drawer { display: none; }

html.site-menu-locked,
html.site-menu-locked body {
  overscroll-behavior: none;
}

@media (max-width: 1260px) and (min-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 0 24px;
  }

  .site-header__logo { width: 106px; }
  .site-header__logo img { width: 102px; }
  .site-nav__primary { gap: 0; }
  .site-nav__trigger,
  .site-nav__link { padding-right: 8px; padding-left: 8px; font-size: 12px; }
  .site-header__contact { min-width: 112px; padding: 0 15px; font-size: 13px; }
}

@media (max-width: 1099px) {
  :root { --site-header-height: 72px; }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 clamp(18px, 4vw, 38px);
  }

  .site-header__logo { width: 100px; height: 60px; }
  .site-header__logo img { width: 94px; max-height: 56px; }
  .site-nav--desktop,
  .site-header__contact { display: none; }
  .site-header__actions { margin-left: auto; }
  .site-header__menu-button { display: block; }
  .site-nav__panel { display: none !important; }

  .site-drawer {
    position: fixed;
    z-index: var(--site-layer-panel);
    top: var(--site-header-height);
    right: 0;
    bottom: 0;
    display: block;
    width: min(520px, 100%);
    color: #fff;
    background: #18181c;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.24);
    visibility: visible;
  }

  .site-drawer__scroll {
    height: 100%;
    padding: 30px clamp(22px, 6vw, 46px) max(38px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-drawer__label {
    margin: 0 0 20px;
    color: #ff6778;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .site-drawer__list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-drawer__list > li { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }

  .site-drawer__category > button,
  .site-drawer__direct {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 14px 2px;
    color: #fff;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.035em;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }

  .site-drawer__direct,
  .site-drawer__direct:visited,
  .site-drawer__direct:hover,
  .site-drawer__direct:focus-visible {
    color: #fff !important;
  }

  .site-drawer__category > button span {
    position: relative;
    width: 18px;
    height: 18px;
  }

  .site-drawer__category > button span::before,
  .site-drawer__category > button span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #fff;
    transform: translate(-50%, -50%);
  }

  .site-drawer__category > button span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
  }

  .site-drawer__category > button[aria-expanded="true"] { color: #ff7b89; }
  .site-drawer__category > button[aria-expanded="true"] span::after { transform: translate(-50%, -50%) rotate(0deg); }

  .site-drawer__accordion {
    display: grid;
    gap: 0;
    padding: 2px 0 18px 16px;
    overflow: hidden;
  }

  .site-drawer__accordion a {
    position: relative;
    display: block;
    min-height: 44px;
    padding: 12px 24px 10px 13px;
    color: #d4d4d8;
    border-left: 1px solid rgba(230, 0, 26, 0.72);
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
  }

  .site-drawer__accordion a::after,
  .site-drawer__direct::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }

  .site-drawer__accordion a:hover,
  .site-drawer__accordion a[aria-current="page"],
  .site-drawer__direct:hover,
  .site-drawer__direct[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, 0.055); }

  .site-drawer__accordion .site-drawer__overview { color: #fff; font-weight: 700; }

  .site-drawer__utilities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.14);
  }

  .site-drawer__utilities a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 13px;
    color: #dddde1;
    background: #202026;
    font-size: 11px;
    line-height: 1.45;
    text-decoration: none;
  }

  .site-header a.site-drawer__contact,
  .site-header a.site-drawer__contact:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 20px;
    color: #fff;
    background: var(--site-green);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .site-header__inner { padding: 0 16px; }
  .site-drawer__scroll { padding-top: 24px; }
  .site-drawer__utilities { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header *,
  .site-nav__overlay {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
