@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/nunito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --kjut-color-ink: #141414;
  --kjut-color-muted: #808080;
  --kjut-color-surface: #ffffff;
  --kjut-color-surface-subtle: #f6f6f6;
  --kjut-color-border: #f1f0f0;

  --kjut-font-family: "Nunito", sans-serif;
  --kjut-font-size-body: 1rem;
  --kjut-font-size-navigation: 1.125rem;
  --kjut-line-height-body: 1.65;
  --kjut-line-height-tight: 1.15;

  --kjut-space-1: 0.25rem;
  --kjut-space-2: 0.5rem;
  --kjut-space-3: 0.75rem;
  --kjut-space-4: 1rem;
  --kjut-space-6: 1.5rem;
  --kjut-space-8: 2rem;
  --kjut-space-12: 3rem;
  --kjut-space-16: 4rem;
  --kjut-space-24: 6rem;

  --kjut-layout-max: 89.25rem;
  --kjut-layout-gutter: clamp(1.25rem, 2.778vw, 2.625rem);
  --kjut-header-height: 5.648rem;
  --kjut-header-logo-width: 5.919rem;
  --kjut-header-logo-height: 3.148rem;
  --kjut-header-nav-gap: 2.875rem;
  --kjut-header-cart-gap: 2.5rem;
  --kjut-radius-pill: 999px;
  --kjut-transition-fast: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--kjut-color-surface);
  color: var(--kjut-color-ink);
  font-family: var(--kjut-font-family);
  font-size: var(--kjut-font-size-body);
  line-height: var(--kjut-line-height-body);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.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;
}

.screen-reader-text:focus {
  z-index: 1000;
  top: var(--kjut-space-4);
  left: var(--kjut-space-4);
  width: auto;
  height: auto;
  padding: var(--kjut-space-3) var(--kjut-space-4);
  clip: auto;
  background: var(--kjut-color-surface);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  height: var(--kjut-header-height);
  background: var(--kjut-color-surface);
  isolation: isolate;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (2 * var(--kjut-layout-gutter))), var(--kjut-layout-max));
  height: 100%;
  margin-inline: auto;
}

.site-header__brand,
.site-header__logo-link,
.custom-logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo-link {
  position: relative;
  width: var(--kjut-header-logo-width);
  height: var(--kjut-header-logo-height);
  overflow: visible;
}

.site-header__logo {
  position: absolute;
  top: -20.89%;
  left: -8.889%;
  width: 116.667%;
  max-width: none;
  height: auto;
}

.custom-logo {
  width: var(--kjut-header-logo-width);
  height: auto;
}

.site-header__actions,
.site-navigation__list {
  display: flex;
  align-items: center;
}

.site-header__actions {
  gap: var(--kjut-header-cart-gap);
}

.site-navigation__list {
  gap: var(--kjut-header-nav-gap);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-navigation__link,
.site-navigation .menu-item > a {
  display: inline-flex;
  align-items: center;
  color: var(--kjut-color-ink);
  font-size: var(--kjut-font-size-navigation);
  font-weight: 600;
  line-height: 1.389;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity var(--kjut-transition-fast);
}

.site-navigation__link:hover,
.site-navigation .menu-item > a:hover,
.site-header__cart:hover {
  opacity: 0.58;
}

.site-header__cart {
  display: grid;
  flex: 0 0 auto;
  width: 1.5rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--kjut-color-ink);
  text-decoration: none;
  transition: opacity var(--kjut-transition-fast);
}

.site-header__cart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__menu-toggle {
  display: none;
  width: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--kjut-color-ink);
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 0.34rem;
  background: currentColor;
  transition: transform var(--kjut-transition-fast), opacity var(--kjut-transition-fast);
}

.site-header--menu-open .site-header__menu-toggle span:nth-child(1) {
  transform: translateY(0.68rem) rotate(45deg);
}

.site-header--menu-open .site-header__menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header--menu-open .site-header__menu-toggle span:nth-child(3) {
  transform: translateY(-0.68rem) rotate(-45deg);
}

.site-footer__inner,
.site-main {
  width: min(calc(100% - (2 * var(--kjut-layout-gutter))), var(--kjut-layout-max));
  margin-inline: auto;
}

.site-footer {
  padding-block: var(--kjut-space-8);
}

.site-main {
  min-height: 60vh;
  padding-block: var(--kjut-space-24);
}

.entry__title {
  max-width: 18ch;
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 1.05;
}

.home-main {
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 110vh;
  overflow: hidden;
  place-items: center;
  background: var(--kjut-color-ink);
  color: var(--kjut-color-surface);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #000000;
  content: "";
  opacity: 0.65;
  pointer-events: none;
}

.hero__slider,
.hero__slide,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slider {
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  z-index: 0;
  padding: 0;
  margin: 0;
  transform: translateX(100%);
  transition: transform 500ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  transform: translateX(0);
}

.hero__slide.is-leaving {
  z-index: 2;
  transform: translateX(-100%);
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(calc(100% - (2 * var(--kjut-layout-gutter))), 42rem);
  text-align: center;
  transform: translateY(-2.5rem);
}

.hero__eyebrow {
  padding: 0.625rem 0.9375rem;
  border: 1px solid var(--kjut-color-ink);
  border-radius: 1.875rem;
  margin-bottom: 1.875rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--kjut-color-ink);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.hero__title {
  margin: 0;
  color: var(--kjut-color-surface);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.3;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 0.625rem 0 0;
  color: var(--kjut-color-surface);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border: 2px solid var(--kjut-color-ink);
  border-radius: 1.875rem;
  margin-top: 1.875rem;
  background: var(--kjut-color-surface);
  color: var(--kjut-color-ink);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.625rem;
  line-height: 1.2;
  text-decoration: none;
  transition: transform var(--kjut-transition-fast), opacity var(--kjut-transition-fast);
}

.hero__cta-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero__cta:hover {
  transform: translateY(-0.25rem);
}

.hero__social {
  position: absolute;
  z-index: 3;
  top: 40%;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.hero__social-link {
  display: grid;
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--kjut-color-ink);
  color: var(--kjut-color-surface);
  place-items: center;
  transition: transform var(--kjut-transition-fast), opacity var(--kjut-transition-fast);
}

.hero__social-link:hover,
.hero__social-link:focus-visible {
  transform: scale(1.08);
}

.hero__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.45rem;
  left: 50%;
  width: 1.875rem;
  height: 2.837rem;
  border: 2px solid var(--kjut-color-surface);
  border-radius: 1.875rem;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 0.125rem;
  height: 0.75rem;
  border-radius: var(--kjut-radius-pill);
  background: var(--kjut-color-surface);
  transform: translateX(-50%);
  animation: hero-scroll-indicator 1.8s ease-in-out infinite;
}

.upcoming-workshops {
  padding: clamp(3rem, 4.5vw, 4rem) var(--kjut-layout-gutter) 7.5rem;
  background: var(--kjut-color-ink);
  color: var(--kjut-color-surface);
}

.upcoming-workshops__inner {
  width: min(100%, 81.625rem);
  margin-inline: auto;
}

.section-heading {
  max-width: 42rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--inverse {
  color: var(--kjut-color-surface);
}

.section-heading__title {
  margin: 0;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-heading__description {
  margin: 0.875rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.workshop-grid {
  display: grid;
  margin-top: 3rem;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-card {
  min-width: 0;
}

.workshop-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.05;
  border-radius: 0.9375rem;
  background: #252525;
  color: var(--kjut-color-surface);
  isolation: isolate;
  text-decoration: none;
}

.workshop-card__image,
.workshop-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.workshop-card__image {
  z-index: -2;
  object-fit: cover;
  transition: transform 500ms ease;
}

.workshop-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 20%, rgba(0, 0, 0, 0.76) 100%);
}

.workshop-card__status {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: var(--kjut-radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--kjut-color-ink);
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.45rem;
  line-height: 1;
}

.workshop-card__status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #8fbd3b;
}

.workshop-card--sold_out .workshop-card__status-dot,
.workshop-card--closed .workshop-card__status-dot {
  background: #8a8a8a;
}

.workshop-card--upcoming .workshop-card__status-dot {
  background: #e2a94f;
}

.workshop-card__content {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.workshop-card__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.workshop-card__title {
  margin-top: 0.45rem;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.workshop-card__date {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}

.workshop-card__link:hover .workshop-card__image,
.workshop-card__link:focus-visible .workshop-card__image {
  transform: scale(1.035);
}

.workshop-card__link:focus-visible {
  outline: 3px solid var(--kjut-color-surface);
  outline-offset: 4px;
}

.workshops-empty {
  max-width: 42rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9375rem;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.workshops-empty__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.workshops-empty__description {
  max-width: 34rem;
  margin: 0.65rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

@keyframes hero-scroll-indicator {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translate(-50%, 0.6rem);
  }
}

@media (max-width: 59.99rem) {
  :root {
    --kjut-header-height: 5.5rem;
    --kjut-header-logo-width: 6rem;
    --kjut-header-logo-height: 3.231rem;
  }

  .site-header__actions {
    gap: var(--kjut-space-6);
  }

  .site-header__menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: var(--kjut-space-8) var(--kjut-layout-gutter) var(--kjut-space-12);
    border-top: 1px solid var(--kjut-color-border);
    background: var(--kjut-color-surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity var(--kjut-transition-fast), transform var(--kjut-transition-fast);
  }

  .site-header--menu-open .site-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation__list {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--kjut-space-6);
  }

  .site-navigation__link,
  .site-navigation .menu-item > a {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 73vh;
  }

  .hero::before {
    opacity: 0.6;
  }

  .hero__content {
    width: calc(100% - (2 * 1.824rem));
    transform: none;
  }

  .hero__eyebrow {
    max-width: 15.875rem;
    padding: 0.3125rem;
    margin-bottom: 0.912rem;
    font-size: 0.73rem;
    line-height: 1.3;
  }

  .hero__title {
    font-size: 1.642rem;
    line-height: 1.3;
  }

  .hero__subtitle {
    margin-top: 0.35rem;
    font-size: 0.912rem;
    line-height: 1.3;
  }

  .hero__cta {
    min-width: 15.8rem;
    padding: 0.9375rem 1.25rem;
    margin-top: 3.925rem;
    font-size: 0.73rem;
    line-height: 1.2;
  }

  .hero__social {
    top: 55%;
    right: 0.9375rem;
  }

  .hero__social-link {
    width: 2.25rem;
  }

  .hero__social-link svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .hero__scroll {
    bottom: 1.875rem;
    width: 1.25rem;
    height: 2.1875rem;
  }

  .hero__scroll span {
    top: 0.4rem;
    height: 0.55rem;
  }

  .upcoming-workshops {
    padding-block: 3.5rem 5rem;
  }

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

@media (max-width: 39.99rem) {
  .upcoming-workshops {
    padding: 2rem 1.5rem 4rem;
  }

  .section-heading__title {
    font-size: 1.875rem;
  }

  .section-heading__description {
    font-size: 0.875rem;
  }

  .workshop-grid {
    margin-top: 2.25rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .workshop-card__status {
    top: 1.5rem;
    left: 1.5rem;
  }

  .workshop-card__content {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .workshops-empty {
    padding: 2.25rem 1.5rem;
    margin-top: 2.25rem;
  }
}

@media (max-width: 48.875rem) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

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

  .hero__scroll span {
    animation: none;
    opacity: 1;
  }
}
