:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --mist: #f3f3f1;
  --line: #d8d8d4;
  --quiet: #676762;
  --signal: #16755f;
  --focus: #2563eb;
  --header-height: 92px;
  --announcement-height: 32px;
  --page: min(100% - 48px, 1240px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 450;
  line-height: 1.08;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(42px, 5.4vw, 78px);
}
h2 {
  font-size: clamp(32px, 4vw, 56px);
}
h3 {
  font-size: 22px;
}
p {
  margin-bottom: 1rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.announcement {
  min-height: var(--announcement-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 48px;
  color: #fff;
  background: #121212;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
  transition:
    transform 260ms var(--ease),
    border-color 180ms ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  width: var(--page);
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-group--right {
  justify-content: flex-end;
}
.nav-trigger,
.nav-link {
  border: 0;
  padding: 12px 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-trigger svg {
  width: 12px;
  transition: transform 180ms ease;
}
.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.brand {
  min-width: 156px;
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--ink);
}
.brand-lockup {
  display: grid;
  line-height: 1;
}
.brand-lockup strong {
  font-size: 18px;
  font-weight: 560;
}
.brand-lockup small {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 9px;
  text-transform: uppercase;
}
.icon-link,
.menu-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
}
.icon-link svg,
.menu-button svg {
  width: 21px;
  height: 21px;
}
.icon-link--portal {
  width: auto;
  grid-auto-flow: column;
  gap: 7px;
  font-size: 12px;
}
.header-mobile-portal {
  display: none;
}
.menu-button {
  display: none;
  cursor: pointer;
}
.mega-menu {
  position: fixed;
  z-index: 90;
  top: calc(var(--announcement-height) + var(--header-height));
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease),
    visibility 0s 220ms;
}
.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.site-header.is-scrolled ~ .mega-menu {
  top: var(--header-height);
}
.site-header.is-scrolled ~ .menu-backdrop {
  top: var(--header-height);
}
.mega-menu__inner {
  width: var(--page);
  min-height: 350px;
  margin: auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.2fr;
  gap: 44px;
}
.mega-menu__group,
.mega-menu__image,
.mega-menu__image-pair {
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 160ms ease,
    transform 200ms var(--ease);
}
.mega-menu.is-open .mega-menu__group,
.mega-menu.is-open .mega-menu__image,
.mega-menu.is-open .mega-menu__image-pair {
  opacity: 1;
  transform: translateY(0);
}
.mega-menu.is-open .mega-menu__group:nth-child(2) {
  transition-delay: 35ms;
}
.mega-menu.is-open .mega-menu__group:nth-child(3) {
  transition-delay: 70ms;
}
.mega-menu.is-open .mega-menu__image,
.mega-menu.is-open .mega-menu__image-pair {
  transition-delay: 80ms;
}
.mega-menu__group span {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}
.mega-menu__group a {
  display: block;
  padding: 5px 0;
  font-size: 17px;
}
.mega-menu__group a:hover,
.mega-menu__group a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mega-menu__image {
  min-height: 250px;
  object-fit: cover;
}
.mega-menu__image-pair {
  min-height: 250px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}
.mega-menu__image-pair img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}
.menu-backdrop {
  position: fixed;
  z-index: 80;
  inset: calc(var(--announcement-height) + var(--header-height)) 0 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.28);
  transition:
    opacity 180ms ease,
    visibility 0s 180ms;
}
.menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.mobile-drawer {
  display: none;
}

.page-shell {
  width: var(--page);
  margin: auto;
}
.eyebrow {
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}
.lede {
  max-width: 760px;
  color: #363633;
  font-size: clamp(18px, 2vw, 25px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.text-link svg {
  width: 16px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}
.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--ink);
}
.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
.button--light:hover,
.button--light:focus-visible {
  background: transparent;
  color: #fff;
}
.button--outline {
  background: transparent;
  color: var(--ink);
}
.button--outline:hover,
.button--outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
}
.has-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 800ms var(--ease);
}
.has-motion .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #111;
  color: #fff;
}
.footer-inner {
  width: var(--page);
  margin: auto;
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
}
.footer-brand {
  max-width: 340px;
}
.footer-brand .brand {
  margin-bottom: 24px;
}
.footer-brand .brand-mark,
.footer-brand .brand-lockup small {
  color: #fff;
}
.footer-brand p {
  color: #b8b8b2;
  font-size: 14px;
}
.footer-column h2 {
  margin-bottom: 18px;
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-column a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #aaa;
  font-size: 12px;
}
.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #16755f;
  color: #fff;
}
.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
