/*
Theme Name: Joy Through Christ
Theme URI: https://joythroughchrist.shop
Author: Joy Through Christ
Description: Editorial WooCommerce theme for Joy Through Christ.
Version: 1.0.1
Text Domain: joy-through-christ
Requires at least: 6.4
Requires PHP: 8.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --jtc-black: #050505;
  --jtc-ink: #11100f;
  --jtc-charcoal: #1a1917;
  --jtc-ivory: #f5f1e9;
  --jtc-paper: #fbfaf7;
  --jtc-stone: #b8b0a3;
  --jtc-line: rgba(245, 241, 233, 0.18);
  --jtc-gold: #b89a63;
  --jtc-gold-soft: #d1bd91;
  --jtc-display: "Cormorant Garamond", Georgia, serif;
  --jtc-sans: "Inter", Arial, sans-serif;
  --jtc-container: 1380px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--jtc-paper);
  color: var(--jtc-ink);
  font-family: var(--jtc-sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.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;
}
.jtc-container {
  width: min(calc(100% - 48px), var(--jtc-container));
  margin-inline: auto;
}
.jtc-section { padding: clamp(64px, 8vw, 120px) 0; }
.jtc-kicker {
  margin: 0 0 14px;
  color: var(--jtc-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.jtc-heading {
  margin: 0;
  font-family: var(--jtc-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}
.jtc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.jtc-section-heading h2 {
  margin: 0;
  font-family: var(--jtc-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}
.jtc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.jtc-text-link::after { content: "→"; font-size: 15px; }
.jtc-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 22px;
  border: 1px solid var(--jtc-ink);
  border-radius: 0;
  background: var(--jtc-ink);
  color: var(--jtc-ivory);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.jtc-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  border-color: var(--jtc-gold);
  background: var(--jtc-gold);
  color: var(--jtc-black);
}
.jtc-button--light {
  border-color: var(--jtc-ivory);
  background: var(--jtc-ivory);
  color: var(--jtc-black);
}
.jtc-button--ghost {
  border-color: rgba(245, 241, 233, 0.7);
  background: transparent;
  color: var(--jtc-ivory);
}

/* Header */
.jtc-announcement {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--jtc-line);
  background: var(--jtc-black);
  color: var(--jtc-ivory);
}
.jtc-announcement__inner {
  min-height: 38px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jtc-announcement__message {
  width: 100%;
  padding-inline: 190px;
  text-align: center;
}
.jtc-announcement__link {
  position: absolute;
  right: 0;
  color: var(--jtc-gold-soft);
}
.jtc-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--jtc-line);
  background: rgba(5, 5, 5, 0.96);
  color: var(--jtc-ivory);
  backdrop-filter: blur(14px);
}
.admin-bar .jtc-header { top: 32px; }
.jtc-header__inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 230px 1fr 190px;
  align-items: center;
  gap: 28px;
}
.jtc-logo {
  display: inline-flex;
  width: 214px;
  height: 80px;
  align-items: center;
  justify-content: center;
}
.jtc-logo img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}
.jtc-nav { justify-self: center; }
.jtc-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.jtc-menu a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.jtc-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--jtc-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.jtc-menu a:hover::after,
.jtc-menu .current-menu-item > a::after { transform: scaleX(1); }
.jtc-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.jtc-icon-link,
.jtc-menu-toggle {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--jtc-ivory);
}
.jtc-icon-link svg,
.jtc-menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.jtc-cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--jtc-ivory);
  color: var(--jtc-black);
  font-size: 9px;
  font-weight: 600;
}
.jtc-menu-toggle { display: none; }

/* Full-width homepage video */
.jtc-video-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  min-height: 420px;
  max-height: calc(100vh - 132px);
  background: var(--jtc-black);
  color: var(--jtc-ivory);
}
.jtc-video-hero video,
.jtc-video-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jtc-video-hero.is-awaiting-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.76), rgba(5,5,5,0.25)),
    radial-gradient(circle at 50% 45%, transparent, rgba(5,5,5,0.35));
}
.jtc-video-hero__empty {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 18px;
  text-align: center;
}
.jtc-video-hero__play {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding-left: 5px;
  border: 1px solid rgba(245,241,233,0.7);
  border-radius: 50%;
  color: var(--jtc-ivory);
  font-size: 24px;
}
.jtc-video-hero__empty p {
  margin: 0;
  color: var(--jtc-gold-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.jtc-intro-band {
  background: var(--jtc-black);
  color: var(--jtc-ivory);
}
.jtc-intro-band__inner {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 10vw, 160px);
  padding-top: 68px;
  padding-bottom: 68px;
}
.jtc-intro-band h1 {
  margin: 0;
  font-family: var(--jtc-display);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.8;
}
.jtc-intro-band__copy > p {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(245,241,233,0.76);
  font-size: 17px;
}
.jtc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.jtc-intro-band blockquote {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(245,241,233,0.66);
  font-family: var(--jtc-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.3;
}

/* Categories and products */
.jtc-categories { background: var(--jtc-paper); }
.jtc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.jtc-category {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #d8d3cb;
  color: white;
}
.jtc-category > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.jtc-category:hover > img { transform: scale(1.035); }
.jtc-category__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #3a3732, #141311);
}
.jtc-category__fallback img { width: 40%; opacity: 0.24; }
.jtc-category__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  text-align: center;
}
.jtc-category__overlay h3 {
  margin: 0 0 4px;
  font-family: var(--jtc-display);
  font-size: 32px;
  font-weight: 500;
}
.jtc-category__overlay span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jtc-arrivals { background: #fff; }
.jtc-products,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}
.jtc-product,
.woocommerce ul.products li.product {
  position: relative;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}
.jtc-product__image,
.woocommerce ul.products li.product a img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  margin: 0 0 16px !important;
  background: #f0efec;
  object-fit: cover;
}
.jtc-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.jtc-product:hover .jtc-product__image img { transform: scale(1.025); }
.jtc-product__badge,
.woocommerce span.onsale {
  position: absolute;
  z-index: 2;
  top: 12px !important;
  right: auto !important;
  left: 12px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 6px 8px !important;
  border-radius: 0 !important;
  background: var(--jtc-black) !important;
  color: var(--jtc-ivory) !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.jtc-product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 6px;
  padding: 0 !important;
  font-family: var(--jtc-sans);
  font-size: 13px !important;
  font-weight: 500;
}
.jtc-product__price,
.woocommerce ul.products li.product .price {
  color: #5f5b55 !important;
  font-size: 12px !important;
}
.woocommerce ul.products li.product .button { margin-top: 14px; }
.jtc-empty {
  grid-column: 1 / -1;
  padding: 64px 24px;
  border: 1px solid #dedad2;
  text-align: center;
}
.jtc-empty img {
  width: 100px;
  margin: 0 auto 24px;
  filter: invert(1);
  opacity: 0.72;
}
.jtc-empty h3 {
  margin: 0 0 10px;
  font-family: var(--jtc-display);
  font-size: 36px;
  font-weight: 500;
}

/* Mission and editorial */
.jtc-mission {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  background: var(--jtc-black);
  color: var(--jtc-ivory);
}
.jtc-mission__media { min-height: 500px; background: #171614; }
.jtc-mission__media > img { width: 100%; height: 100%; object-fit: cover; }
.jtc-mission__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, transparent 48%, rgba(184,154,99,0.3) 49%, transparent 50%),
    radial-gradient(circle at 38% 42%, #28241e, #080808 65%);
}
.jtc-mission__placeholder img { width: min(35%, 260px); opacity: 0.55; }
.jtc-mission__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(48px, 7vw, 110px);
}
.jtc-mission__copy .jtc-heading { max-width: 600px; }
.jtc-mission__copy p:not(.jtc-kicker) {
  max-width: 560px;
  margin: 26px 0 32px;
  color: rgba(245,241,233,0.7);
}
.jtc-mission__copy .jtc-button { align-self: flex-start; }
.jtc-mosaic {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.3fr 0.8fr 1.25fr;
  background: var(--jtc-black);
}
.jtc-mosaic__item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-right: 2px solid var(--jtc-paper);
  background: #2c2924;
}
.jtc-mosaic__item:last-child { border-right: 0; }
.jtc-mosaic__item > img { width: 100%; height: 100%; object-fit: cover; }
.jtc-mosaic__fallback {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, #292620, #090909);
}
.jtc-mosaic__fallback img { width: 90px; margin: auto; opacity: 0.35; }
.jtc-mosaic__fallback span {
  display: block;
  margin-top: 20px;
  color: var(--jtc-stone);
  font-family: var(--jtc-display);
  font-size: 24px;
  font-style: italic;
  text-align: center;
}

/* Community and journal */
.jtc-testimonials { background: var(--jtc-paper); }
.jtc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.jtc-quote {
  min-height: 220px;
  padding: 24px 44px;
  border-right: 1px solid #d7d1c7;
}
.jtc-quote:last-child { border-right: 0; }
.jtc-quote__stars { color: var(--jtc-gold); letter-spacing: 0.2em; }
.jtc-quote blockquote {
  margin: 20px 0;
  font-family: var(--jtc-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
}
.jtc-quote cite {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.jtc-journal { background: #ebe7df; }
.jtc-journal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.jtc-post__image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d8d2c7;
}
.jtc-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.jtc-post:hover .jtc-post__image img { transform: scale(1.025); }
.jtc-post__body { padding-top: 20px; }
.jtc-post__meta {
  margin-bottom: 8px;
  color: #777067;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jtc-post h3 {
  margin: 0 0 10px;
  font-family: var(--jtc-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

/* Newsletter and footer */
.jtc-newsletter {
  position: relative;
  overflow: hidden;
  background: #0b0b0a;
  color: var(--jtc-ivory);
}
.jtc-newsletter::before {
  content: "JTC";
  position: absolute;
  left: 4vw;
  top: 50%;
  color: rgba(245,241,233,0.035);
  font-family: var(--jtc-display);
  font-size: min(28vw, 360px);
  line-height: 0.8;
  transform: translateY(-50%);
}
.jtc-newsletter__inner {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.85fr);
  align-items: center;
  gap: 80px;
}
.jtc-newsletter h2 {
  margin: 0 0 8px;
  font-family: var(--jtc-display);
  font-size: 48px;
  font-weight: 500;
}
.jtc-newsletter p { max-width: 520px; margin: 0; color: rgba(245,241,233,0.65); }
.jtc-newsletter__form { display: flex; }
.jtc-honeypot { position: absolute !important; left: -9999px !important; }
.jtc-newsletter__notice { margin-bottom: 14px !important; color: var(--jtc-gold-soft) !important; }
.jtc-newsletter__form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(245,241,233,0.5);
  border-right: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--jtc-ivory);
}
.jtc-newsletter__form button { flex: 0 0 auto; }
.jtc-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--jtc-line);
  background: var(--jtc-black);
  color: var(--jtc-ivory);
}
.jtc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 70px;
}
.jtc-footer__brand {
  overflow: hidden;
}
.jtc-footer__brand img {
  width: 190px;
  height: 120px;
  margin: 0 0 20px;
  object-fit: contain;
  object-position: left center;
}
.jtc-footer__brand p {
  max-width: 280px;
  color: rgba(245,241,233,0.55);
  font-size: 12px;
}
.jtc-footer h3 {
  margin: 8px 0 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.jtc-footer ul { margin: 0; padding: 0; list-style: none; }
.jtc-footer li { margin-bottom: 8px; color: rgba(245,241,233,0.58); font-size: 12px; }
.jtc-footer a:hover { color: var(--jtc-gold-soft); }
.jtc-footer__bottom {
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid var(--jtc-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245,241,233,0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Content and WooCommerce */
.jtc-page-header {
  padding: 90px 0 60px;
  background: var(--jtc-black);
  color: var(--jtc-ivory);
  text-align: center;
}
.jtc-page-header h1 {
  margin: 0;
  font-family: var(--jtc-display);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 500;
  line-height: 1;
}
.jtc-content { padding: 70px 0 110px; }
.jtc-content__prose { max-width: 860px; margin: 0 auto; }
.jtc-content__prose h2,
.jtc-content__prose h3 { font-family: var(--jtc-display); font-weight: 500; }
.jtc-content__prose h2 { margin-top: 48px; font-size: 42px; }
.jtc-content__prose h3 { margin-top: 36px; font-size: 30px; }
.jtc-content__prose a { color: #7d6333; text-decoration: underline; }
.jtc-content__prose p { margin: 0 0 1.5em; }
.jtc-article-image { margin-top: 60px; }
.jtc-article-image img { width: 100%; max-height: 760px; object-fit: cover; }
.jtc-woo-shell { padding-top: 58px; padding-bottom: 100px; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 28px; color: #79736a; font-size: 11px; }
.woocommerce div.product { padding: 70px 0 100px; }
.woocommerce div.product div.images,
.woocommerce div.product div.summary { margin-bottom: 0; }
.woocommerce div.product .product_title {
  margin: 0 0 12px;
  font-family: var(--jtc-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #7d6333; font-size: 20px; }
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.woocommerce .quantity .qty {
  width: 74px;
  min-height: 48px;
  border: 1px solid #bbb4a9;
  border-radius: 0;
}
.woocommerce div.product form.cart .variations { margin-bottom: 18px; }
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0 0 9px;
  text-align: left;
}
.woocommerce div.product form.cart .variations select {
  min-width: 250px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #bbb4a9;
  border-radius: 0;
  background: white;
}
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: #d7d1c7; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--jtc-gold);
  background: #f1ede5;
}
.woocommerce-message::before,
.woocommerce-info::before { color: #7d6333; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-cart input.input-text,
.woocommerce-account input.input-text {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #c8c1b6;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .jtc-header__inner { grid-template-columns: 205px 1fr 130px; }
  .jtc-menu { gap: 18px; }
  .jtc-category-grid,
  .jtc-products,
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jtc-category { min-height: 500px; }
  .jtc-mosaic { grid-template-columns: repeat(3, 1fr); }
  .jtc-mosaic__item:nth-child(n+4) { display: none; }
}

@media (max-width: 820px) {
  .admin-bar .jtc-header { top: 46px; }
  .jtc-container { width: min(calc(100% - 32px), var(--jtc-container)); }
  .jtc-announcement__inner { min-height: 42px; }
  .jtc-announcement__message { padding-inline: 0; font-size: 9px; }
  .jtc-announcement__link { display: none; }
  .jtc-header__inner { min-height: 78px; grid-template-columns: 1fr auto; }
  .jtc-logo { width: 164px; height: 70px; }
  .jtc-logo img { height: 64px; }
  .jtc-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 36px 24px;
    background: var(--jtc-black);
    justify-self: stretch;
  }
  .jtc-nav.is-open { display: block; }
  .jtc-menu { display: block; }
  .jtc-menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--jtc-line);
    font-family: var(--jtc-display);
    font-size: 28px;
    letter-spacing: 0;
    text-transform: none;
  }
  .jtc-header__actions .jtc-account-link,
  .jtc-header__actions .jtc-search-link { display: none; }
  .jtc-menu-toggle { display: inline-grid; }
  .jtc-video-hero {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  .jtc-video-hero__play { width: 64px; height: 64px; font-size: 20px; }
  .jtc-intro-band__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .jtc-intro-band h1 { font-size: clamp(62px, 17vw, 88px); }
  .jtc-category-grid { grid-template-columns: 1fr 1fr; }
  .jtc-category { min-height: 360px; }
  .jtc-mission { grid-template-columns: 1fr; }
  .jtc-mission__media { min-height: 480px; }
  .jtc-testimonials__grid,
  .jtc-journal__grid { grid-template-columns: 1fr; }
  .jtc-quote { border-right: 0; border-bottom: 1px solid #d7d1c7; }
  .jtc-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 0;
  }
  .jtc-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .jtc-section { padding: 58px 0; }
  .jtc-section-heading { align-items: start; flex-direction: column; }
  .jtc-hero__actions { align-items: stretch; flex-direction: column; }
  .jtc-button { width: 100%; }
  .jtc-category-grid,
  .jtc-products,
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .jtc-category { min-height: 440px; }
  .jtc-mosaic { grid-template-columns: 1fr 1fr; }
  .jtc-mosaic__item:nth-child(3) { display: none; }
  .jtc-newsletter__form { flex-direction: column; gap: 10px; }
  .jtc-newsletter__form input { border-right: 1px solid rgba(245,241,233,0.5); }
  .jtc-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .jtc-footer__bottom { align-items: start; flex-direction: column; }
}

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