:root {
  --pink: #e62058;
  --pink-btn: #c10f45;
  --pink-deep: #a11041;
  --ink: #232323;
  --mute: #777;
  --line: #e7e7e7;
  --wash: #f0f0f0;
  --paper: #fff;
  --max: 1448px;
  --sat: Satoshi, Arial, sans-serif;
  --mono: IBMPlexMono, Consolas, monospace;
  --display: Manuka, Arial, sans-serif;
  --pix: PixelFace, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
}

body {
  margin: 0;
  color: var(--mute);
  background: #fff;
  font-family: var(--sat);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6rem;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1 {
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 4.32rem;
  font-weight: 500;
}

h2 {
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 3.24rem;
  letter-spacing: .04em;
  font-weight: 500;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 12px;
  z-index: 400;
  background: #fff;
  padding: 8px 12px;
}

.shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
  transition: transform .28s ease;
  overflow: hidden;
}

body[data-nav="1"] .topbar {
  overflow: visible;
}

.topbar.is-away {
  transform: translateY(-110%);
}

.topbar-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 2;
}

.brand img {
  width: 29px;
  height: 30px;
}

.brand b {
  color: var(--pink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.menu > li > button,
.menu > li > a {
  background: none;
  border: 0;
  color: var(--mute);
  font-size: .7rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
}

.menu > li > a:hover {
  color: var(--pink);
}

.menu > li > button svg {
  display: none;
}

.tools .btn {
  white-space: nowrap;
}

.tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--pink);
  display: grid;
  place-items: center;
}

.burger {
  display: none;
}

.mega {
  display: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 48px));
  z-index: 90;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px #0000001a;
  padding: 28px;
  margin-top: 12px;
}

.menu > li.open .mega {
  display: grid;
  gap: 28px;
}

.mega {
  grid-template-columns: 1.2fr 1fr .9fr;
}

.mega.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.mega.cols-prod {
  grid-template-columns: repeat(4, 1fr);
}

.mega h5 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.mega a {
  display: block;
  padding: 7px 0;
  color: var(--mute);
  font-size: .9rem;
}

.mega a:hover {
  color: var(--pink);
}

.prod-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
  min-height: 148px;
}

.prod-card:hover {
  border-color: #ffccd5;
}

.prod-card img,
.prod-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.prod-card strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: 6px;
}

.prod-card span {
  color: var(--mute);
  font-size: .8rem;
  line-height: 1.25rem;
}

.widget {
  border-radius: 14px;
  overflow: hidden;
  background: #f6f6f6;
  min-height: 180px;
  position: relative;
}

.widget img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.widget em {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  text-shadow: 0 1px 8px #0008;
}

.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: #0006;
  z-index: 70;
}

.scrim.on {
  display: block;
}

.find-layer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #fffc;
  backdrop-filter: blur(10px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 140px;
}

.find-layer.on {
  display: flex;
}

.find-box {
  width: min(640px, calc(100% - 32px));
  position: relative;
}

.find-box input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  font: 500 1.4rem/1.4 var(--sat);
  color: var(--ink);
  padding: 10px 40px 12px 0;
  outline: none;
}

.find-close {
  position: absolute;
  right: 0;
  top: 8px;
  border: 0;
  background: none;
  font-size: 1.4rem;
  color: var(--ink);
}

html {
  scroll-padding-top: 124px;
}

#mainContent {
  padding-top: 124px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-btn);
  color: #fff !important;
  border: 0;
  border-radius: 10px;
  padding: .5rem 1rem;
  font-weight: 500;
  font-size: .8rem;
  line-height: 1.2rem;
  transition: background .2s ease-in;
}

.btn:hover {
  background: var(--pink-deep);
}

.btn.pill {
  border-radius: 40px;
  background: var(--pink);
  font-size: 12px;
  line-height: 1.8;
  padding: 8px 12px;
  letter-spacing: .06em;
}

.btn.ghost {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid #d1d1d1;
}

.btn.ghost:hover {
  background: #f6f6f6;
  border-color: transparent;
}

.btn.sm {
  padding: 8px .8rem;
  font-size: .7rem;
  line-height: 1rem;
}

.foot {
  background: #fff;
  border-top: 1px solid #d1d1d1;
  padding: 2rem 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.foot-tag {
  width: min(var(--max), 100%);
  margin: 1.6rem auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.legal {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: .8rem;
}

.legal li {
  font-size: .7rem;
  line-height: 1;
}

.legal li:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 16px;
  padding-right: 16px;
}

.legal button,
.legal a {
  background: none;
  border: 0;
  padding: 0;
  color: var(--mute);
  font-size: .85rem;
}

.legal button:hover,
.legal a:hover {
  color: var(--pink);
}

.copy {
  margin-top: 18px;
  font-size: .8rem;
}

.soc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.soc a {
  width: 30px;
  height: 30px;
  opacity: .85;
}

.soc a:hover {
  opacity: 1;
}

.soc img {
  width: 30px;
  height: 30px;
}

.foot h6 {
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.foot-col a {
  display: block;
  margin: 0 0 .8rem;
  font-size: .7rem;
}

.foot-col a:hover {
  color: var(--pink);
}

.brand-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.brand-foot span {
  color: var(--ink);
  font-size: .85rem;
}

html[data-contrast="high"] {
  --mute: #414141;
  --pink-btn: #c10f45;
}

html[data-contrast="high"] body {
  color: #414141;
}

@media (max-width: 1119.98px) {
  h1 { font-size: 2.5rem; line-height: 3.375rem; }
  h2 { font-size: 1.9rem; line-height: 2.565rem; letter-spacing: 0; }
  body { font-size: .8rem; line-height: 1.2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .shell, .topbar-inner { padding: 0 18px; }
}

@media (max-width: 767.98px) {
  html { scroll-padding-top: 90px; }
  .shell, .topbar-inner { padding: 0 16px; }
  #mainContent { padding-top: 90px; }
  .topbar { padding: 32px 0; }
  .topbar .menu { display: none; }
  .burger { display: grid; }
  .tools #connect { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .legal { flex-direction: column; }
  .legal li:not(:last-child) { border-right: 0; margin: 0 0 8px; padding: 0; }
}

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #fff;
  overflow: auto;
  padding: 24px 20px 48px;
}

.drawer.on { display: block; }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.drawer .menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
}

.drawer .menu > li {
  border-bottom: 1px solid var(--line);
}

.drawer .menu > li > button,
.drawer .menu > li > a {
  width: 100%;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.drawer .menu > li > button svg {
  display: block;
}

.drawer .mega {
  position: static;
  transform: none;
  width: 100%;
  border: 0;
  box-shadow: none;
  padding: 0 0 16px;
  margin: 0;
  display: none;
  grid-template-columns: 1fr;
}

.drawer .menu > li.open .mega {
  display: grid;
}

.drawer-cta {
  margin-top: 24px;
  width: 100%;
}
