:root {
  --frey-ink: var(--wp--preset--color--frey-ink, #1e1e13);
  --frey-deep: var(--wp--preset--color--frey-deep, #12130d);
  --frey-lime: var(--wp--preset--color--frey-lime, #b7c760);
  --frey-paper: var(--wp--preset--color--frey-paper, #fcfcf9);
  --frey-slate: var(--wp--preset--color--frey-slate, #686c65);
  --frey-header-height: 78px;
  --frey-announcement-height: 0px;
  --frey-wide: min(1240px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--frey-paper);
  color: var(--frey-ink);
  font-family: var(--wp--preset--font-family--frey-sans, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

body.frey-menu-open {
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--frey-lime);
  outline-offset: 3px;
}

.frey-skip-link {
  position: fixed;
  z-index: 100001;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--frey-deep);
  background: var(--frey-lime);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.frey-site-chrome {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  --frey-announcement-height: 0px;
}

.frey-site-chrome.has-announcement {
  --frey-announcement-height: 40px;
}

.admin-bar .frey-site-chrome {
  top: 32px;
}

.frey-announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--frey-announcement-height);
  padding: 0 24px;
  gap: 18px;
  color: var(--frey-deep);
  background: var(--frey-lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.frey-announcement p {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.frey-announcement a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  text-underline-offset: 3px;
}

.frey-site-header {
  position: relative;
  width: 100%;
  height: var(--frey-header-height);
  color: var(--frey-paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 19, 13, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.frey-header-inner {
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1440px);
  height: 100%;
  margin: 0 auto;
  gap: clamp(18px, 2vw, 36px);
}

.frey-site-brand {
  flex: 0 0 auto;
}

.frey-site-brand .custom-logo-link,
.frey-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--frey-paper);
  text-decoration: none;
}

.frey-site-brand .custom-logo {
  display: block;
  width: 118px;
  max-height: 44px;
  object-fit: contain;
}

.frey-wordmark,
.frey-footer-wordmark {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
}

.frey-site-nav {
  min-width: 0;
  margin-right: auto;
}

.frey-menu,
.frey-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.frey-primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.65vw, 28px);
}

.frey-primary-menu > .menu-item {
  position: relative;
}

.frey-primary-menu > .menu-item > a {
  display: flex;
  align-items: center;
  min-height: var(--frey-header-height);
  color: rgba(252, 252, 249, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.frey-primary-menu > .current-menu-item > a,
.frey-primary-menu > .current-menu-ancestor > a,
.frey-primary-menu > .menu-item > a:hover {
  color: var(--frey-lime);
}

.frey-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  display: none;
  width: max-content;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid rgba(183, 199, 96, 0.34);
  background: var(--frey-deep);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.frey-primary-menu .menu-item:hover > .sub-menu,
.frey-primary-menu .menu-item:focus-within > .sub-menu {
  display: grid;
}

.frey-primary-menu .sub-menu a {
  display: block;
  padding: 12px 14px;
  color: rgba(252, 252, 249, 0.82);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.frey-primary-menu .sub-menu a:hover,
.frey-primary-menu .sub-menu a:focus-visible {
  color: var(--frey-deep);
  background: var(--frey-lime);
}

.frey-commerce-nav {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.frey-commerce-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(252, 252, 249, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.frey-cart-link {
  gap: 6px;
}

.frey-cart-count {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--frey-deep);
  background: var(--frey-lime);
  font-size: 9px;
}

.frey-commerce-nav .frey-shop-link,
.frey-mobile-commerce .frey-shop-link {
  gap: 16px;
  padding: 0 15px;
  border: 1px solid rgba(183, 199, 96, 0.62);
  color: #dce991;
}

.frey-commerce-nav .frey-shop-link:hover {
  color: var(--frey-deep);
  background: var(--frey-lime);
}

.frey-mobile-menu {
  display: none;
}

.frey-site-main {
  min-height: 60vh;
  padding: clamp(3rem, 7vw, 7rem) max(20px, calc((100vw - 1240px) / 2));
}

.frey-site-main > * {
  margin-inline: auto;
  max-width: var(--wp--style--global--content-size, 760px);
}

.frey-front-page {
  padding: 0;
}

.frey-front-page > article,
.frey-woocommerce-main > * {
  max-width: none;
}

.frey-woocommerce-main {
  width: var(--frey-wide);
  margin: 0 auto;
  padding-inline: 0;
}

.frey-product-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  width: 100%;
  margin: clamp(72px, 9vw, 144px) 0;
  overflow: hidden;
  color: var(--frey-paper);
  background: var(--frey-deep);
}

.frey-product-experience__media {
  min-height: 100%;
  margin: 0;
  background: #25271d;
}

.frey-product-experience__media picture,
.frey-product-experience__image {
  display: block;
  width: 100%;
  height: 100%;
}

.frey-product-experience__image {
  min-height: 620px;
  object-fit: cover;
}

.frey-product-experience__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 92px);
}

.frey-product-experience__eyebrow {
  margin: 0 0 18px;
  color: var(--frey-lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.frey-product-experience h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5.2vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.frey-product-experience__summary {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(252, 252, 249, 0.74);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.frey-product-experience__story {
  max-width: 660px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid rgba(183, 199, 96, 0.36);
}

.frey-product-experience__story h3 {
  margin: 0 0 15px;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.025em;
}

.frey-product-experience__story p {
  margin: 0 0 16px;
  color: rgba(252, 252, 249, 0.68);
  line-height: 1.75;
}

.frey-product-experience__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 0;
  gap: 1px;
  list-style: none;
  background: rgba(252, 252, 249, 0.16);
}

.frey-product-experience__features li {
  min-height: 96px;
  padding: 22px;
  color: rgba(252, 252, 249, 0.86);
  background: var(--frey-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.frey-product-experience__facts {
  display: grid;
  margin: 38px 0 0;
  gap: 24px;
}

.frey-product-experience__facts div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
}

.frey-product-experience__facts dt {
  color: var(--frey-lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.frey-product-experience__facts dd {
  margin: 0;
  color: rgba(252, 252, 249, 0.68);
  line-height: 1.65;
}

.frey-site-footer {
  padding: clamp(64px, 7vw, 104px) 0 28px;
  color: var(--frey-paper);
  background: var(--frey-deep);
}

.frey-footer-inner {
  width: var(--frey-wide);
  margin: 0 auto;
}

.frey-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding-bottom: clamp(48px, 6vw, 78px);
  border-bottom: 1px solid rgba(183, 199, 96, 0.35);
}

.frey-footer-eyebrow,
.frey-footer-column h2 {
  margin: 0 0 14px;
  color: var(--frey-lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.frey-footer-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-transform: uppercase;
}

.frey-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.frey-footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(252, 252, 249, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.frey-footer-actions a:last-child {
  border-color: var(--frey-lime);
  color: var(--frey-deep);
  background: var(--frey-lime);
}

.frey-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(32px, 5vw, 74px);
  padding: 52px 0 48px;
  border-bottom: 1px solid rgba(252, 252, 249, 0.14);
}

.frey-footer-wordmark {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--frey-paper);
  text-decoration: none;
}

.frey-footer-brand p {
  max-width: 260px;
  margin: 0 0 24px;
  color: rgba(252, 252, 249, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.frey-region-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(252, 252, 249, 0.82);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.frey-region-link span {
  color: var(--frey-lime);
}

.frey-footer-column h2 {
  font-size: 10px;
}

.frey-footer-menu {
  display: grid;
  gap: 11px;
}

.frey-footer-menu a {
  color: rgba(252, 252, 249, 0.68);
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.frey-footer-menu a:hover,
.frey-footer-menu a:focus-visible {
  color: var(--frey-paper);
}

.frey-payment-note {
  max-width: 250px;
  margin: 24px 0 0;
  padding-top: 18px;
  color: rgba(252, 252, 249, 0.5);
  border-top: 1px solid rgba(252, 252, 249, 0.12);
  font-size: 10px;
  line-height: 1.55;
}

.frey-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}

.frey-footer-bottom p {
  margin: 0;
  color: rgba(252, 252, 249, 0.5);
  font-size: 10px;
}

.frey-environment-badge {
  padding: 6px 9px;
  color: var(--frey-deep);
  background: var(--frey-lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

@media (max-width: 1220px) {
  .frey-account-link,
  .frey-cart-link span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 1080px) {
  :root {
    --frey-header-height: 68px;
  }

  .frey-site-chrome.has-announcement {
    --frey-announcement-height: 44px;
  }

  .frey-announcement {
    justify-content: space-between;
    padding-inline: 20px;
    font-size: 10px;
  }

  .frey-site-nav,
  .frey-commerce-nav {
    display: none;
  }

  .frey-product-experience {
    grid-template-columns: 1fr;
  }

  .frey-product-experience__image {
    min-height: min(76vw, 720px);
  }

  .frey-header-inner {
    width: min(100% - 40px, 900px);
    justify-content: space-between;
  }

  .frey-mobile-menu {
    position: static;
    display: block;
  }

  .frey-mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    cursor: pointer;
    list-style: none;
  }

  .frey-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .frey-mobile-menu summary span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--frey-paper);
    transition: transform 180ms ease;
  }

  .frey-mobile-menu[open] summary span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .frey-mobile-menu[open] summary span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .frey-mobile-menu-panel {
    position: fixed;
    top: calc(var(--frey-announcement-height) + var(--frey-header-height));
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 28px max(20px, calc((100vw - 860px) / 2)) 44px;
    background: rgba(18, 19, 13, 0.985);
  }

  .admin-bar .frey-mobile-menu-panel {
    top: calc(var(--frey-announcement-height) + var(--frey-header-height) + 32px);
  }

  .frey-mobile-primary-menu,
  .frey-mobile-primary-menu .sub-menu {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .frey-mobile-primary-menu > li > a {
    display: block;
    padding: 15px 0;
    color: var(--frey-paper);
    border-bottom: 1px solid rgba(252, 252, 249, 0.14);
    font-size: clamp(19px, 4.7vw, 27px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-decoration: none;
  }

  .frey-mobile-primary-menu .sub-menu a {
    display: block;
    padding: 11px 0 11px 18px;
    color: rgba(252, 252, 249, 0.65);
    font-size: 13px;
    text-decoration: none;
  }

  .frey-mobile-commerce {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 28px;
  }

  .frey-mobile-commerce a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(252, 252, 249, 0.32);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .frey-mobile-commerce .frey-shop-link {
    grid-column: 1 / -1;
  }

  .frey-footer-cta,
  .frey-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .frey-footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 782px) {
  .admin-bar .frey-site-chrome {
    top: 46px;
  }

  .admin-bar .frey-mobile-menu-panel {
    top: calc(var(--frey-announcement-height) + var(--frey-header-height) + 46px);
  }
}

@media (max-width: 680px) {
  :root {
    --frey-wide: min(100% - 40px, 620px);
  }

  .frey-footer-cta,
  .frey-footer-grid {
    grid-template-columns: 1fr;
  }

  .frey-product-experience {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .frey-product-experience__image {
    min-height: 118vw;
  }

  .frey-product-experience__content {
    padding: 44px 20px 58px;
  }

  .frey-product-experience__features {
    grid-template-columns: 1fr;
  }

  .frey-product-experience__facts div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .frey-footer-cta {
    align-items: start;
  }

  .frey-footer-actions {
    display: grid;
  }

  .frey-footer-actions a {
    justify-content: space-between;
  }

  .frey-footer-grid {
    padding-top: 42px;
  }
}

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

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