@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather_normal_300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather_normal_700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat_normal_400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Jua";
  src: url("/fonts/Jua-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nanum Pen Script";
  src: url("/fonts/NanumPenScript-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat_normal_600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #151515;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --soft: #f7f9fc;
  --mint: #24fbb0;
  --mint-dark: #00d084;
  --link: #008aff;
  --content: 960px;
  --wide: 1140px;
  --side-pad: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nanum Pen Script";
  font-size: clamp(1rem, 0.936rem + 0.3485vw, 1.25rem);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: #2a2a2a;
  font-family: "Jua";
  font-weight: 700;
  line-height: 1.4;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: #fff;
  background: #000;
  transform: translateY(-200%);
}

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

.site-header {
  color: #fff;
  background: #27004a var(--header-image) center / cover no-repeat;
}

.site-header__overlay {
  --logo-ring-1: 18px;
  --logo-ring-2: 36px;
  --logo-ring-3: 54px;
  --logo-ring-4: 72px;
  --logo-ring-5: 90px;
  display: flex;
  min-height: clamp(20.125rem, 19.15rem + 4vw, 22.75rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem var(--side-pad);
  background: rgba(0, 0, 0, 0.5);
}

.brand {
  display: flex;
  width: 100%;
  padding-block: var(--logo-ring-5);
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand__logo {
  width: clamp(11.25rem, 10.554rem + 2.857vw, 13.125rem);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 var(--logo-ring-1) #9b4de3,
    0 0 0 var(--logo-ring-2) #3e63dd,
    0 0 0 var(--logo-ring-3) #25c763,
    0 0 0 var(--logo-ring-4) #ff981f,
    0 0 0 var(--logo-ring-5) #ff3b30,
    0 1.5rem 3.25rem 1rem rgba(19, 0, 39, 0.42);
  object-fit: contain;
}

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

.primary-nav {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 3rem;
  font-family: "Nanum Pen Script";
  font-size: clamp(1.532rem, 1.405rem + 0.522vw, 1.875rem);
  font-weight: 300;
  line-height: 1.75;
}

.primary-nav a {
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0.35em;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  text-decoration: underline;
}

.content-shell {
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--side-pad);
}

.page-shell > article,
.product-shell > article,
.home-intro {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.entry-header h1,
.home-intro h1,
.section-heading h1 {
  margin-bottom: 3rem;
  font-size: clamp(2.721rem, 2.318rem + 1.653vw, 3.75rem);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content a:not(.wp-block-button__link) {
  color: var(--link);
}

.home-content {
  min-height: 22.3125rem;
}

.home-intro {
  text-align: start;
}

.home-intro p {
  margin: 1.5rem 0 0;
  font-size: clamp(1.532rem, 1.405rem + 0.522vw, 1.875rem);
  line-height: 1.75;
}

.home-intro h1 + p {
  margin-top: 0;
}

.products-section {
  width: 100%;
}

.section-heading {
  margin-bottom: 1.5rem;
  text-align: start;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 1.6rem + 1vw, 2.5rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #087a57;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

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

.product-card {
  padding: 0 0.875rem;
}

.product-card__inner {
  height: 100%;
  overflow: hidden;
  border: 1px solid #dedede;
  background: #fff;
}

.product-card__image {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.product-card__image img {
  width: 100%;
  height: auto;
}

.product-card__body {
  padding: 1rem;
}

.product-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
}

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

.product-card__body p {
  margin: 0;
}

.product-hero {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 3rem;
  object-fit: cover;
}

.product-header {
  text-align: start;
}

.product-header h1 {
  margin-bottom: 1.5rem;
}

.product-shell {
  min-height: 129.125rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.product-content {
  margin-top: 0;
}

.product-content p {
  margin-bottom: 1.5rem;
}

.wp-block-buttons {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
}

.shop-page {
  min-height: clamp(32.25rem, 30.532rem + 7.05vw, 36.875rem);
}

.shop-page .wp-block-button__link {
  display: grid;
  height: clamp(5rem, 4.605rem + 1.62vw, 6.0625rem);
  padding: 0 1.5rem;
  place-items: center;
  font-size: clamp(1.532rem, 1.405rem + 0.522vw, 1.875rem);
}

.wp-block-button__link,
.button {
  display: block;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border-radius: 0;
  color: #fff;
  background: #111;
  font-family: "Jua";
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.button:hover,
.button:focus-visible {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.has-luminous-vivid-orange-background-color {
  background: #ff6900;
}

.has-vivid-green-cyan-background-color {
  background: #00d084;
}

.has-vivid-red-background-color {
  background: #cf2e2e;
}

.tag-list {
  display: block;
  margin-top: 1.5rem;
}

.tag-list a {
  color: inherit;
  text-decoration: none;
}

.product-related {
  margin-top: 1.5rem;
}

.product-related .section-heading {
  margin-bottom: 0.75rem;
}

.product-related .section-heading h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
}

.product-related .section-heading h2::after {
  height: 1px;
  flex: 1;
  background: #dedede;
  content: "";
}

.term-description {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
}

.site-footer {
  color: #10382a;
}

.site-footer__primary {
  padding: 1.5rem var(--side-pad);
  background: var(--mint);
}

.site-footer__main {
  display: grid;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding-bottom: 2.25rem;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 1rem;
}

.site-footer h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.532rem, 1.405rem + 0.522vw, 1.875rem);
}

.shop-info {
  margin: 0;
  padding-left: 1.5rem;
  font-size: 1.875rem;
  line-height: 1.75;
}

.shop-info li {
  margin: 0;
}

.shop-info strong {
  display: block;
  font-family: inherit;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  align-self: start;
}

.social-links a {
  display: grid;
  width: 5.25rem;
  height: 3.375rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.social-links__instagram {
  background: #f00075;
}

.social-links__youtube {
  background: #f00;
}

.social-links svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-links .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.site-footer__legal {
  min-height: 8.875rem;
  padding: 2rem var(--side-pad);
  color: #fff;
  background: var(--mint-dark);
  text-align: center;
}

.site-footer__legal p {
  margin: 0.4rem 0 0;
}

.error-page {
  min-height: 28rem;
  text-align: center;
}

.error-page .button {
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .site-header__overlay {
    --logo-ring-1: 21px;
    --logo-ring-2: 42px;
    --logo-ring-3: 63px;
    --logo-ring-4: 84px;
    --logo-ring-5: 105px;
  }
}

@media (max-width: 640px) {
  .site-header__overlay {
    min-height: clamp(20.125rem, 19.15rem + 4vw, 22.75rem);
  }

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

  .product-card {
    padding: 0;
  }

  .product-shell {
    min-height: 83.0625rem;
  }

  .site-footer__primary {
    min-height: auto;
  }

  .site-footer__main {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    padding-bottom: 2.25rem;
  }

  .site-footer h2 {
    font-size: 1.532rem;
  }

  .shop-info {
    font-size: 1.532rem;
  }

  .social-links {
    flex-direction: column;
    gap: 0.6875rem;
  }

  .social-links a {
    width: 5.25rem;
    height: 3.375rem;
  }

  .site-footer__legal {
    min-height: 8.0625rem;
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
