:root {
  --fate-bg-light: #efefec;
  --fate-header-light: rgba(239, 239, 236, 0.94);
  --fate-text: #111111;
  --fate-white: #ffffff;
  --fate-border-light: rgba(0, 0, 0, 0.09);
  --fate-transition: 300ms cubic-bezier(.22,.61,.36,1);
  --fate-header-desktop-height: 54px;
  --fate-header-mobile-height: 76px;
  --fate-shell: 1680px;
  --fate-vh-static: 100vh;
  --fate-hero-label-color: #ffffff;
  --fate-hero-button-bg: #ffffff;
  --fate-hero-button-border: #ffffff;
  --fate-hero-button-text: #111111;
  --fate-collection-label-color: #ffffff;
  --fate-collection-button-bg: rgba(255,255,255,0.18);
  --fate-collection-button-border: #ffffff;
  --fate-collection-button-text: #ffffff;
}

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--fate-bg-light);
  color: var(--fate-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.fate-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-main { min-height: 60vh; }
#story, #shop, #community, #collections, #faq { scroll-margin-top: 92px; }

.fate-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #111111;
  transition: background-color 180ms cubic-bezier(.22,.61,.36,1), color 180ms cubic-bezier(.22,.61,.36,1), border-color 180ms cubic-bezier(.22,.61,.36,1);
}
.fate-site-header.is-scrolled.is-light {
  background: var(--fate-header-light);
  color: #111111;
  border-color: var(--fate-border-light);
}
.fate-site-header.is-top.is-light {
  background: transparent;
  color: #111111;
}
.admin-bar .fate-site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .fate-site-header { top: 46px; }
}
@media (max-width: 1023px) {
  .fate-site-header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}

.fate-header-desktop { display: none; height: var(--fate-header-desktop-height); }
.fate-header-mobile { height: var(--fate-header-mobile-height); }
.fate-header-inner {
  width: min(calc(100% - 24px), var(--fate-shell));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.fate-contact-link { font-size: 12px; letter-spacing: 0.01em; }
.fate-header-logo,
.fate-mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fate-mobile-logo { position: static; transform: none; }
.fate-header-logo img,
.fate-mobile-logo img {
  max-height: 90px;
  width: auto;
  transition: opacity var(--fate-transition), visibility var(--fate-transition);
}
.fate-mobile-logo img { max-height: 100px; }
.fate-header-logo .logo-dark,
.fate-mobile-logo .logo-dark {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
}
.fate-site-header.is-dark .fate-header-logo .logo-light,
.fate-site-header.is-dark .fate-mobile-logo .logo-light {
  opacity: 0;
  visibility: hidden;
}
.fate-site-header.is-dark .fate-header-logo .logo-dark,
.fate-site-header.is-dark .fate-mobile-logo .logo-dark {
  opacity: 1;
  visibility: visible;
}

.fate-header-actions { display: flex; align-items: center; }
.fate-icon-link,
.fate-menu-toggle {
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
.fate-icon-link-search { margin-right: 0; }
.fate-menu-toggle { gap: 6px; }
.fate-menu-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.fate-icon-link svg,
.fate-menu-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fate-header-mobile .fate-icon-link svg,
.fate-header-mobile .fate-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.fate-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fate-transition), visibility var(--fate-transition);
}
.fate-menu-overlay.is-open { opacity: 1; visibility: visible; }
.fate-menu-overlay-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--fate-bg-light);
  color: #111111;
  transform: translateX(100%);
  transition: transform var(--fate-transition);
  box-shadow: -10px 0 30px rgba(0,0,0,.1);
}
.fate-menu-overlay.is-open .fate-menu-overlay-inner { transform: translateX(0); }
.fate-menu-close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  display: block;
}
.fate-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.75px;
  background: #fff;
}
.fate-menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.fate-menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.fate-menu-scroll { height: 100%; overflow: auto; padding: 24px 32px 32px; }
.fate-menu-intro { margin: 16px 0 28px; font-size: 14px; text-transform: uppercase; letter-spacing: .14em; }
.fate-menu-primary { display: flex; flex-direction: column; gap: 0; }
.fate-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 22px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.fate-menu-row-arrow { font-size: 28px; line-height: 1; }
.fate-menu-auxiliary { display: flex; flex-direction: column; gap: 28px; margin-top: 52px; font-size: 18px; }
.fate-menu-auxiliary a { text-decoration: underline; text-underline-offset: 5px; }

.fate-hero-desktop { display: none; }
.fate-hero-mobile { display: block; }
.fate-hero-card,
.fate-collection-card {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.fate-hero-card {
  min-height: calc(var(--fate-vh-static) - var(--fate-header-mobile-height));
  height: calc(var(--fate-vh-static) - var(--fate-header-mobile-height));
}
.fate-hero-mobile .fate-hero-card + .fate-hero-card,
.fate-collection-card {
  min-height: calc(var(--fate-vh-static) - var(--fate-header-mobile-height) + 280px);
  height: auto;
}
.fate-hero-mobile-stage {
  position: absolute;
  inset: 0;
}
.fate-mobile-sticky-rail {
  display: none;
}
.fate-hero-overlay,
.fate-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.03) 100%);
}
.fate-hero-content,
.fate-collection-content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  z-index: 2;
}
.fate-hero-content h2,
.fate-mobile-sticky-shell h2 {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fate-label-color, var(--fate-hero-label-color));
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
  max-width: 86vw;
}
.fate-collection-label,
.fate-mobile-sticky-shell .fate-collection-label {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fate-label-color, var(--fate-collection-label-color));
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
  max-width: 86vw;
}
.fate-overlay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.95);
  background: rgba(255,255,255,.95);
  color: #111;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background-color var(--fate-transition), color var(--fate-transition), border-color var(--fate-transition), transform var(--fate-transition);
}
.fate-overlay-button:hover { transform: translateY(-1px); }
.fate-hero-card .fate-overlay-button,
.fate-hero-mobile .fate-overlay-button {
  background: var(--fate-button-bg, var(--fate-hero-button-bg));
  border-color: var(--fate-button-border, var(--fate-hero-button-border));
  color: var(--fate-button-text, var(--fate-hero-button-text));
}
.fate-collection-card .fate-overlay-button {
  background: var(--fate-button-bg, var(--fate-collection-button-bg));
  border-color: var(--fate-button-border, var(--fate-collection-button-border));
  color: var(--fate-button-text, var(--fate-collection-button-text));
  backdrop-filter: blur(2px);
}

.fate-collections-section,
.fate-services-section { background: var(--fate-bg-light); }
.fate-section-heading {
  text-align: center;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.52);
  padding: 22px 16px 18px;
}
.fate-section-heading.is-subtle { padding-top: 18px; }
.fate-section-heading.is-services {
  padding: 18px 16px 16px;
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(0,0,0,.5);
}
.fate-collections-grid { display: grid; grid-template-columns: 1fr; }
.fate-services-section { padding: 0 16px 40px; }
.fate-services-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 6px;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.fate-services-grid::-webkit-scrollbar { display: none; }
.fate-service-card { min-width: 76vw; scroll-snap-align: start; }
.fate-service-media { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: #e8e8e5; }
.fate-service-image,
.fate-service-video {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #e8e8e5;
  object-fit: cover;
  display: block;
}
.fate-service-copy { padding-top: 12px; text-align: left; }
.fate-service-copy h3 {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .14em;
  font-weight: 500;
  text-transform: uppercase;
}
.fate-text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 1.35;
}

.fate-site-footer {
  background: #000;
  color: #fff;
  padding: 34px 16px 28px;
}
.fate-footer-grid { display: grid; gap: 28px; }
.fate-footer-links { display: flex; flex-direction: column; gap: 16px; font-size: 15px; }
.fate-footer-links a { text-decoration: underline; text-underline-offset: 4px; }
.fate-newsletter-heading {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}
.fate-footer-newsletter p { max-width: 520px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.82); }
.fate-newsletter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  padding-bottom: 10px;
  font-size: 22px;
  color: rgba(255,255,255,.74);
}
.fate-footer-meta { margin-top: 36px; font-size: 13px; color: rgba(255,255,255,.8); }
.fate-footer-logo-wrap { margin-top: 28px; overflow: hidden; }
.fate-footer-logo {
  width: min(100%, 1400px);
  margin: 0 auto;
  transform: translateY(10%);
  filter: brightness(0) invert(1);
}

.fate-page-content,
.fate-default-loop,
.fate-woo-shell {
  width: min(calc(100% - 32px), 1200px);
  margin: calc(var(--fate-header-mobile-height) + 32px) auto 72px;
}

@media (max-width: 1023px) {
  .fate-mobile-sticky-section {
    overflow: visible;
  }
  .fate-mobile-sticky-section .fate-hero-content,
  .fate-mobile-sticky-section .fate-collection-content {
    display: none;
  }
  .fate-mobile-sticky-rail {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }
  .fate-mobile-sticky-shell {
    position: sticky;
    top: calc(var(--fate-header-mobile-height) + 18px);
    height: calc(var(--fate-vh-static) - var(--fate-header-mobile-height) - 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-align: center;
    padding: 0 24px 72px;
    transform: translate3d(0, var(--fate-cta-shift, 0px), 0);
    will-change: transform;
    transition: none;
  }
  .fate-mobile-sticky-shell .fate-overlay-button {
    pointer-events: auto;
  }
}

@media (min-width: 1024px) {
  .fate-mobile-sticky-rail { display: none !important; }
  .fate-header-desktop { display: block; }
  .fate-header-mobile { display: none; }
  .fate-header-inner { width: min(calc(100% - 120px), var(--fate-shell)); }
  .fate-header-logo img { max-height: 100px; }
  .fate-hero-desktop { display: grid; grid-template-columns: 1fr 1fr; height: calc(100svh - var(--fate-header-desktop-height)); }
  .fate-hero-mobile { display: none; }
  .fate-hero-desktop .fate-hero-card { min-height: auto; height: 100%; }
  .fate-hero-content { bottom: 72px; }
  .fate-collection-content { bottom: 72px; }
  .fate-hero-content h2,
  .fate-collection-label { font-size: 16px; }
  .fate-overlay-button { min-width: 148px; height: 40px; padding: 0 20px; }
  .fate-section-heading { font-size: 10px; padding: 18px 0 14px; }
  .fate-collections-grid { grid-template-columns: repeat(3, 1fr); }
  .fate-collection-card { min-height: 72vh; }
  .fate-section-heading.is-services { padding: 22px 0 18px; font-size: 10px; }
  .fate-services-section { padding: 0 0 52px; }
  .fate-services-grid {
    width: min(calc(100% - 64px), 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 0;
  }
  .fate-service-card { min-width: 0; text-align: center; }
  .fate-service-media { aspect-ratio: 1 / 1; }
  .fate-service-copy { padding-top: 14px; text-align: center; }
  .fate-service-copy h3 { font-size: 10px; letter-spacing: .16em; }
  .fate-text-link { font-size: 12px; }
  .fate-site-footer { padding: 42px 28px 34px; }
  .fate-footer-grid {
    width: min(calc(100% - 56px), 1400px);
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 40px;
  }
  .fate-footer-meta {
    width: min(calc(100% - 56px), 1400px);
    margin: 60px auto 0;
  }
  .fate-footer-logo-wrap { margin-top: 36px; }
  .fate-page-content,
  .fate-default-loop,
  .fate-woo-shell { margin-top: calc(var(--fate-header-desktop-height) + 48px); }
}
