@font-face {
  font-family: "GA Sans";
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "GA Serif";
  src: url("../fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ga-ink: #111411;
  --ga-porcelain: #f4f5f0;
  --ga-white: #ffffff;
  --ga-volt: #c7ff38;
  --ga-cobalt: #2e5bff;
  --ga-coral: #ff5b45;
  --ga-steel: #6a716b;
  --ga-line: #d7dad3;
  --ga-dark-line: #323730;
  --ga-success: #176b43;
  --ga-error: #b42318;
  --ga-shell: 1440px;
  --ga-gutter: 32px;
  --ga-header-height: 78px;
  --ga-radius: 4px;
  --ga-transition: 180ms ease;
  --ga-sans: "GA Sans", "Helvetica Neue", Arial, sans-serif;
  --ga-serif: "GA Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ga-porcelain);
  color: var(--ga-ink);
  font-family: var(--ga-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.ga-nav-open,
body.ga-search-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ga-cobalt);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ga-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--ga-white);
  color: var(--ga-ink);
  font-weight: 700;
}

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

.ga-shell {
  width: min(100%, var(--ga-shell));
  margin-inline: auto;
  padding-inline: var(--ga-gutter);
}

.ga-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ga-icon {
  width: 22px;
  height: 22px;
  flex: none;
}

.ga-announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 20px;
  background: var(--ga-volt);
  color: var(--ga-ink);
}

.ga-announcement p {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.ga-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgb(244 245 240 / 96%);
  border-bottom: 1px solid var(--ga-line);
  backdrop-filter: blur(14px);
}

.admin-bar .ga-header {
  top: 32px;
}

.ga-header__inner {
  display: grid;
  min-height: var(--ga-header-height);
  align-items: center;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
}

.ga-wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  color: var(--ga-ink);
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
}

.ga-wordmark span {
  font-family: var(--ga-serif);
}

.ga-wordmark strong {
  font-size: 20px;
  font-weight: 800;
}

.ga-nav {
  justify-self: center;
}

.ga-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ga-nav__list li {
  position: relative;
}

.ga-nav__list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ga-nav__list a:hover {
  text-decoration: underline;
}

.ga-nav__list .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  display: none;
  min-width: 240px;
  padding: 12px;
  margin: 0;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  list-style: none;
}

.ga-nav__list li:hover > .sub-menu,
.ga-nav__list li:focus-within > .sub-menu {
  display: block;
}

.ga-nav__list .sub-menu a {
  padding: 0 8px;
}

.ga-nav__mobile-head,
.ga-menu-toggle {
  display: none;
}

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

.ga-icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: none;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
}

.ga-icon-button.ga-menu-toggle {
  display: none;
}

.ga-icon-button:hover {
  background: var(--ga-white);
}

.ga-cart-count {
  position: absolute;
  top: 3px;
  right: 1px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  place-items: center;
  background: var(--ga-coral);
  border: 2px solid var(--ga-porcelain);
  border-radius: 50%;
  color: var(--ga-white);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.ga-search-panel {
  position: absolute;
  z-index: 5;
  inset: 100% 0 auto;
  background: var(--ga-white);
  border-bottom: 1px solid var(--ga-line);
}

.ga-search-panel__inner {
  display: grid;
  min-height: 170px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.ga-product-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.ga-product-search__control {
  display: grid;
  grid-template-columns: 1fr auto;
}

.ga-product-search input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  background: var(--ga-porcelain);
  border: 1px solid var(--ga-line);
  border-right: 0;
  border-radius: 0;
}

.ga-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--ga-transition), color var(--ga-transition), border-color var(--ga-transition), transform var(--ga-transition);
}

.ga-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-1px);
}

.ga-button--ink,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--ga-ink);
  color: var(--ga-white);
}

.ga-button--ink:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--ga-cobalt);
  color: var(--ga-white);
}

.ga-button--volt {
  background: var(--ga-volt);
  color: var(--ga-ink);
}

.ga-button--volt:hover {
  background: var(--ga-white);
}

.ga-button--light-outline {
  border-color: rgb(255 255 255 / 70%);
  color: var(--ga-white);
}

.ga-button--light-outline:hover {
  background: var(--ga-white);
  color: var(--ga-ink);
}

.ga-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ga-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.ga-text-link:hover span,
.ga-text-link:hover {
  text-decoration: underline;
}

.ga-hero {
  position: relative;
  min-height: 720px;
  height: 76vh;
  max-height: 900px;
  overflow: hidden;
  background: var(--ga-ink);
  color: var(--ga-white);
}

.ga-hero__media,
.ga-hero__media img,
.ga-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ga-hero__media img {
  object-fit: cover;
  object-position: center;
}

.ga-hero__veil {
  background: rgb(9 11 9 / 34%);
}

.ga-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: var(--ga-shell);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 44px;
  padding-bottom: 76px;
}

.ga-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--ga-serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.ga-hero__content > p:not(.ga-eyebrow) {
  max-width: 580px;
  margin: 24px 0 30px;
  font-size: 18px;
}

.ga-hero__product-link {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgb(17 20 17 / 82%);
  border: 1px solid rgb(255 255 255 / 28%);
  color: var(--ga-white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.ga-section {
  padding-block: 112px;
}

.ga-section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  margin-bottom: 46px;
}

.ga-section-head h2,
.ga-method h2,
.ga-footer__lead h2,
.ga-page__header h1,
.ga-empty-state h2,
.ga-error-page h1 {
  margin: 0;
  font-family: var(--ga-serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.ga-section-head > p {
  max-width: 540px;
  margin: 0;
  color: var(--ga-steel);
}

.ga-focus {
  background: var(--ga-white);
}

.ga-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ga-focus-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-rows: minmax(280px, 1fr) auto;
  border-radius: var(--ga-radius);
  color: var(--ga-ink);
  text-decoration: none;
}

.ga-focus-card--volt {
  background: var(--ga-volt);
}

.ga-focus-card--coral {
  background: var(--ga-coral);
}

.ga-focus-card--cobalt {
  background: var(--ga-cobalt);
  color: var(--ga-white);
}

.ga-focus-card--porcelain {
  background: var(--ga-porcelain);
}

.ga-focus-card__media {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
}

.ga-focus-card__image {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.ga-focus-card--cobalt .ga-focus-card__image {
  mix-blend-mode: screen;
}

.ga-focus-card:hover .ga-focus-card__image {
  transform: scale(1.025);
}

.ga-focus-card__copy {
  display: grid;
  min-height: 150px;
  align-content: start;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 22px;
  border-top: 1px solid currentColor;
}

.ga-focus-card__copy h3,
.ga-method__item h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.ga-focus-card__copy p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
}

.ga-products-section {
  background: var(--ga-porcelain);
}

.ga-product-grid,
.woocommerce ul.products {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 12px;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product,
.ga-product-card {
  float: none;
  width: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.ga-product-card__media {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  place-items: center;
  background: var(--ga-white);
  border: 1px solid transparent;
  border-radius: var(--ga-radius);
}

.ga-product-card__image,
.woocommerce ul.products li.product a img.ga-product-card__image {
  width: 86%;
  height: 86%;
  margin: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 260ms ease;
}

.ga-product-card:hover .ga-product-card__image {
  transform: scale(1.025);
}

.ga-product-card:hover .ga-product-card__media {
  border-color: var(--ga-ink);
}

.ga-product-card__body {
  padding-top: 15px;
}

.ga-product-card__category {
  display: block;
  min-height: 18px;
  margin-bottom: 5px;
  color: var(--ga-steel);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.ga-product-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title.ga-product-card__title {
  min-height: 48px;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.ga-product-card__title a {
  text-decoration: none;
}

.ga-product-card__footer {
  display: grid;
  min-height: 44px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 6px;
}

.ga-product-card__price,
.woocommerce ul.products li.product .price {
  margin: 0;
  color: var(--ga-ink);
  font-size: 14px;
  font-weight: 800;
}

.ga-product-card__price del {
  margin-right: 5px;
  color: var(--ga-steel);
  font-weight: 500;
}

.ga-product-card__price ins {
  text-decoration: none;
}

.ga-product-card__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ga-line);
  text-decoration: none;
}

.ga-product-card__arrow:hover {
  background: var(--ga-ink);
  border-color: var(--ga-ink);
  color: var(--ga-white);
}

.ga-products-section__link {
  margin-top: 38px;
}

.ga-editorial {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
}

.ga-editorial--reverse {
  grid-template-columns: minmax(420px, 0.75fr) minmax(0, 1.25fr);
}

.ga-editorial--reverse .ga-editorial__media {
  order: 2;
}

.ga-editorial--ink {
  background: var(--ga-ink);
  color: var(--ga-white);
}

.ga-editorial--volt {
  background: var(--ga-volt);
  color: var(--ga-ink);
}

.ga-editorial__media {
  min-height: 560px;
  overflow: hidden;
  background: var(--ga-white);
}

.ga-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-editorial__media .ga-editorial__product-image {
  padding: 8%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.ga-editorial__copy {
  display: flex;
  max-width: 620px;
  align-self: center;
  flex-direction: column;
  align-items: flex-start;
  padding: 72px;
}

.ga-editorial__copy h2 {
  margin: 0;
  font-family: var(--ga-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.ga-editorial__copy > p:not(.ga-eyebrow) {
  margin: 26px 0 30px;
  font-size: 17px;
}

.ga-method {
  padding-block: 120px;
  background: var(--ga-white);
}

.ga-method h2 {
  max-width: 760px;
  margin-bottom: 60px;
  font-size: 64px;
}

.ga-method__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ga-ink);
}

.ga-method__item {
  min-width: 0;
  padding: 26px 30px 0 0;
  border-right: 1px solid var(--ga-line);
}

.ga-method__item + .ga-method__item {
  padding-left: 30px;
}

.ga-method__item:last-child {
  border-right: 0;
}

.ga-method__item > span {
  display: block;
  margin-bottom: 44px;
  color: var(--ga-steel);
  font-size: 12px;
  font-weight: 800;
}

.ga-method__item p {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--ga-steel);
}

.ga-principles {
  padding-block: 30px;
  background: var(--ga-cobalt);
  color: var(--ga-white);
}

.ga-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ga-principles__grid > div {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-right: 1px solid rgb(255 255 255 / 38%);
  font-size: 13px;
  font-weight: 750;
}

.ga-principles__grid > div:first-child {
  padding-left: 0;
}

.ga-principles__grid > div:last-child {
  border-right: 0;
}

.ga-footer {
  background: var(--ga-ink);
  color: var(--ga-white);
}

.ga-footer__lead {
  display: grid;
  min-height: 360px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.ga-footer__lead h2 {
  font-size: 64px;
}

.ga-footer__lead-copy {
  max-width: 560px;
  justify-self: end;
}

.ga-footer__lead-copy p {
  margin: 0 0 24px;
  color: #bfc5bd;
}

.ga-footer__main {
  padding-block: 70px;
  border-top: 1px solid var(--ga-dark-line);
  border-bottom: 1px solid var(--ga-dark-line);
}

.ga-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(160px, 0.65fr));
  gap: 48px;
}

.ga-footer .ga-wordmark {
  color: var(--ga-white);
}

.ga-footer__brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: #bfc5bd;
  font-size: 14px;
}

.ga-footer h3 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
}

.ga-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ga-footer li + li {
  margin-top: 10px;
}

.ga-footer li a {
  color: #bfc5bd;
  font-size: 14px;
  text-decoration: none;
}

.ga-footer li a:hover {
  color: var(--ga-white);
  text-decoration: underline;
}

.ga-footer__legal {
  padding-block: 24px;
  color: #919a90;
}

.ga-footer__legal .ga-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 680px);
  justify-content: space-between;
  gap: 36px;
}

.ga-footer__legal p {
  margin: 0;
  font-size: 11px;
}

.ga-page-main,
.ga-commerce-main {
  min-height: 62vh;
  padding-block: 88px 120px;
}

.ga-page {
  max-width: 1040px;
}

.ga-page__header {
  padding-bottom: 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--ga-ink);
}

.ga-page__header h1 {
  max-width: 960px;
  font-size: 64px;
}

.ga-prose {
  max-width: 840px;
}

.ga-prose > *:first-child {
  margin-top: 0;
}

.ga-prose h2,
.ga-prose h3 {
  margin-top: 44px;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.ga-prose h2 {
  font-family: var(--ga-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
}

.ga-prose h3 {
  font-size: 19px;
}

.ga-prose p,
.ga-prose li {
  color: #353a35;
}

.ga-prose a {
  color: var(--ga-cobalt);
}

.ga-prose details {
  padding-block: 18px;
  border-top: 1px solid var(--ga-line);
}

.ga-prose details:last-of-type {
  border-bottom: 1px solid var(--ga-line);
}

.ga-prose summary {
  min-height: 44px;
  cursor: pointer;
  font-weight: 800;
}

.ga-prose details p {
  max-width: 720px;
  margin: 10px 0 4px;
}

.ga-content-index,
.ga-search-results {
  min-height: 60vh;
}

.ga-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 20px;
}

.ga-post-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  overflow: hidden;
}

.ga-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-post-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.ga-post-card h2 a {
  text-decoration: none;
}

.ga-search-results__list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ga-ink);
  list-style: none;
}

.ga-search-results__list a {
  display: grid;
  min-height: 90px;
  align-items: center;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  border-bottom: 1px solid var(--ga-line);
  text-decoration: none;
}

.ga-search-results__list a > span {
  color: var(--ga-steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ga-empty-state {
  max-width: 680px;
  padding: 56px 0;
}

.ga-empty-state p {
  margin: 20px 0 28px;
}

.ga-error-page {
  display: grid;
  min-height: 76vh;
  place-items: center;
  background: var(--ga-ink);
  color: var(--ga-white);
}

.ga-error-page__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.ga-error-page__code {
  margin: 0;
  color: var(--ga-volt);
  font-family: var(--ga-serif);
  font-size: 190px;
  line-height: 1;
}

.ga-error-page__inner > div > p:not(.ga-eyebrow) {
  max-width: 520px;
  margin: 22px 0 28px;
  color: #c7cec5;
}

/* WooCommerce surfaces */
.ga-commerce-shell {
  min-height: 60vh;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 28px;
  color: var(--ga-steel);
  font-size: 12px;
}

.woocommerce .woocommerce-breadcrumb a {
  color: inherit;
}

.woocommerce-products-header,
.woocommerce .woocommerce-products-header {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 0.6fr);
  gap: 36px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--ga-ink);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-account .entry-title {
  margin: 0;
  font-family: var(--ga-serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.ga-shop-intro {
  max-width: 520px;
  margin: 0;
  color: var(--ga-steel);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 28px;
  color: var(--ga-steel);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 28px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 44px;
  padding: 8px 34px 8px 12px;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  border-radius: 0;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 52px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  background: transparent;
  color: var(--ga-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--ga-ink);
  color: var(--ga-white);
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 80px;
}

.woocommerce div.product div.images {
  width: 58%;
}

.woocommerce div.product div.summary {
  position: sticky;
  top: 132px;
  width: 36%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  background: var(--ga-white);
}

.woocommerce div.product div.images img {
  mix-blend-mode: multiply;
}

.woocommerce div.product .product_title {
  font-size: 48px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 22px 0;
  color: var(--ga-ink);
  font-size: 22px;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: #414741;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 8px;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid var(--ga-line);
}

.woocommerce .quantity .qty {
  min-width: 64px;
  min-height: 48px;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 40px;
  border-top: 1px solid var(--ga-ink);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0 0 32px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  min-height: 44px;
  padding: 10px 0;
  color: var(--ga-steel);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ga-ink);
  text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs .panel {
  max-width: 840px;
  margin-bottom: 80px;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce .related.products > h2,
.woocommerce .up-sells > h2 {
  font-family: var(--ga-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 18px 18px 18px 54px;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  border-top: 3px solid var(--ga-cobalt);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--ga-cobalt);
}

.woocommerce-error {
  border-top-color: var(--ga-error);
}

.woocommerce-error::before {
  color: var(--ga-error);
}

.woocommerce table.shop_table {
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  border-radius: 0;
  border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-top: 1px solid var(--ga-line);
}

.woocommerce-cart table.cart img {
  width: 92px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
  padding: 24px;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: var(--ga-white);
  border: 1px solid var(--ga-line);
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 24px;
}

.woocommerce form .form-row label {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 750;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  width: 100%;
}

.woocommerce-checkout .col2-set {
  margin-bottom: 36px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 24%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 72%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ga-line);
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--ga-line);
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--ga-cobalt);
}

.ga-reveal {
  opacity: 1;
  transform: none;
}

.js .ga-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
}

.js .ga-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --ga-gutter: 24px;
  }

  .ga-header {
    background: var(--ga-porcelain);
    backdrop-filter: none;
  }

  .ga-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .ga-icon-button.ga-menu-toggle {
    display: inline-grid;
  }

  .ga-wordmark {
    justify-self: center;
  }

  .ga-nav {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(420px, 92vw);
    padding: 0 24px 34px;
    overflow-y: auto;
    transform: translateX(-104%);
    background: var(--ga-white);
    transition: transform 220ms ease;
  }

  .ga-nav.is-open {
    transform: translateX(0);
  }

  .ga-nav__mobile-head {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ga-line);
    font-weight: 800;
  }

  .ga-nav__list {
    display: block;
    padding-top: 18px;
  }

  .ga-nav__list a {
    min-height: 52px;
    justify-content: space-between;
    border-bottom: 1px solid var(--ga-line);
    font-size: 16px;
  }

  .ga-nav__list .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 16px;
    border: 0;
  }

  .ga-nav__list .sub-menu a {
    min-height: 46px;
    color: var(--ga-steel);
    font-size: 14px;
  }

  .ga-hero h1 {
    font-size: 60px;
  }

  .ga-focus-grid,
  .ga-product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-editorial,
  .ga-editorial--reverse {
    min-height: 640px;
    grid-template-columns: 1fr 1fr;
  }

  .ga-editorial__copy {
    padding: 50px;
  }

  .ga-editorial__copy h2 {
    font-size: 50px;
  }

  .ga-footer__grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 26px;
  }

  .woocommerce div.product div.images {
    width: 54%;
  }

  .woocommerce div.product div.summary {
    width: 40%;
  }
}

@media (max-width: 782px) {
  .admin-bar .ga-header {
    top: 46px;
  }

  .ga-section {
    padding-block: 76px;
  }

  .ga-hero {
    min-height: 640px;
    height: 70vh;
  }

  .ga-hero h1 {
    max-width: 620px;
    font-size: 50px;
  }

  .ga-section-head {
    display: block;
  }

  .ga-section-head > p {
    margin-top: 20px;
  }

  .ga-section-head h2,
  .ga-footer__lead h2,
  .ga-page__header h1 {
    font-size: 44px;
  }

  .ga-editorial,
  .ga-editorial--reverse {
    display: flex;
    flex-direction: column;
  }

  .ga-editorial--reverse .ga-editorial__media {
    order: 0;
  }

  .ga-editorial__media {
    min-height: 520px;
    aspect-ratio: 4 / 3;
  }

  .ga-editorial__copy {
    max-width: none;
    padding: 64px 24px 72px;
  }

  .ga-method {
    padding-block: 80px;
  }

  .ga-method h2 {
    margin-bottom: 42px;
    font-size: 50px;
  }

  .ga-method__grid {
    display: block;
  }

  .ga-method__item,
  .ga-method__item + .ga-method__item {
    padding: 22px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--ga-line);
  }

  .ga-method__item > span {
    margin-bottom: 24px;
  }

  .ga-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-principles__grid > div,
  .ga-principles__grid > div:first-child {
    padding-inline: 12px;
    border-bottom: 1px solid rgb(255 255 255 / 38%);
  }

  .ga-principles__grid > div:nth-child(2) {
    border-right: 0;
  }

  .ga-principles__grid > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .ga-footer__lead {
    display: block;
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .ga-footer__lead-copy {
    margin-top: 32px;
  }

  .ga-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .ga-footer__brand {
    grid-column: 1 / -1;
  }

  .ga-footer__legal .ga-shell {
    display: block;
  }

  .ga-footer__legal p + p {
    margin-top: 10px;
  }

  .ga-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ga-error-page__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 76px;
  }

  .ga-error-page__code {
    font-size: 120px;
  }

  .woocommerce-products-header,
  .woocommerce .woocommerce-products-header {
    display: block;
  }

  .woocommerce-products-header__title {
    font-size: 48px;
  }

  .ga-shop-intro {
    margin-top: 18px;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    position: static;
    width: 100%;
    margin-bottom: 44px;
  }

  .woocommerce div.product .product_title {
    font-size: 42px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 38px;
  }
}

@media (max-width: 640px) {
  :root {
    --ga-gutter: 16px;
    --ga-header-height: 64px;
  }

  .ga-announcement {
    min-height: 30px;
  }

  .ga-header__inner {
    gap: 4px;
  }

  .ga-wordmark {
    font-size: 22px;
  }

  .ga-wordmark strong {
    font-size: 17px;
  }

  .ga-account-link {
    display: none;
  }

  .ga-search-panel__inner {
    min-height: 150px;
    gap: 8px;
  }

  .ga-product-search__control {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ga-product-search input[type="search"] {
    border-right: 1px solid var(--ga-line);
  }

  .ga-hero {
    min-height: 590px;
    height: 68vh;
    max-height: 720px;
  }

  .ga-hero__media img {
    object-position: center top;
  }

  .ga-hero__veil {
    background: rgb(9 11 9 / 38%);
  }

  .ga-hero__content {
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .ga-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .ga-hero__content > p:not(.ga-eyebrow) {
    margin: 18px 0 22px;
    font-size: 15px;
  }

  .ga-hero .ga-button {
    min-width: 0;
    flex: 1 1 150px;
    padding-inline: 12px;
  }

  .ga-hero__product-link {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: space-between;
  }

  .ga-section {
    padding-block: 62px;
  }

  .ga-section-head {
    margin-bottom: 30px;
  }

  .ga-section-head h2,
  .ga-footer__lead h2,
  .ga-page__header h1,
  .ga-empty-state h2,
  .ga-error-page h1 {
    font-size: 36px;
  }

  .ga-focus-grid {
    grid-template-columns: 1fr;
  }

  .ga-focus-card {
    min-height: 0;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: minmax(180px, 220px);
  }

  .ga-focus-card__copy {
    min-height: 0;
    align-content: center;
    padding: 18px;
    border-top: 0;
    border-left: 1px solid currentColor;
  }

  .ga-product-grid,
  .woocommerce ul.products {
    gap: 30px 8px;
  }

  .ga-product-card__title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title.ga-product-card__title {
    min-height: 68px;
    font-size: 13px;
  }

  .ga-product-card__category {
    font-size: 10px;
  }

  .ga-product-card__footer {
    gap: 4px;
  }

  .ga-product-card__price,
  .woocommerce ul.products li.product .price {
    font-size: 13px;
  }

  .ga-product-card__arrow {
    width: 36px;
    height: 36px;
  }

  .ga-editorial__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .ga-editorial__copy h2,
  .ga-method h2 {
    font-size: 42px;
  }

  .ga-editorial__copy {
    padding: 52px 16px 62px;
  }

  .ga-principles {
    padding-block: 18px;
  }

  .ga-principles__grid > div {
    min-height: 74px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
  }

  .ga-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ga-page-main,
  .ga-commerce-main {
    padding-block: 58px 80px;
  }

  .ga-page__header {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .ga-post-grid {
    grid-template-columns: 1fr;
  }

  .ga-search-results__list a {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding-block: 14px;
  }

  .ga-search-results__list a > span {
    grid-column: 1 / -1;
  }

  .woocommerce-products-header__title {
    font-size: 40px;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    float: none;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce div.product .product_title {
    font-size: 36px;
  }

  .woocommerce div.product form.cart {
    position: static;
    z-index: auto;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    background: transparent;
    border-top: 0;
  }

  .woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    gap: 14px;
    overflow-x: auto;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    white-space: nowrap;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding: 12px;
  }

  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce table.shop_table_responsive,
  .woocommerce table.shop_table_responsive tbody,
  .woocommerce table.shop_table_responsive tr,
  .woocommerce table.shop_table_responsive td,
  .woocommerce-page table.shop_table_responsive,
  .woocommerce-page table.shop_table_responsive tbody,
  .woocommerce-page table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive td {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--ga-line);
  }

  .woocommerce table.shop_table_responsive tr:last-child,
  .woocommerce-page table.shop_table_responsive tr:last-child {
    border-bottom: 0;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    min-height: 48px;
    text-align: right;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    float: left;
    font-weight: 800;
    content: attr(data-title);
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-name {
    display: grid;
    align-items: center;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    text-align: left;
  }

  .woocommerce-cart table.shop_table_responsive tr td.product-name::before {
    display: none;
  }

  .woocommerce-cart table.shop_table_responsive .quantity {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .ga-reveal {
    opacity: 1;
    transform: none;
  }
}
