* {
  box-sizing: border-box;
}

:root {
  --s5-ease-premium: cubic-bezier(0.83, 0, 0.17, 1);
  --s5-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --s5-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --s5-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --s5-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --s5-duration-fast: 0.4s;
  --s5-duration: 0.65s;
  --s5-duration-slow: 0.95s;
  --s5-duration-dramatic: 1.15s;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #1a1410;
  background: #fff;
}

/* ── Motion: one reveal per section; hero only on load ── */
.s5-page {
  opacity: 1;
}

.s5-hero-enter:not(.s5-revealed):not(.s5-visible) {
  opacity: 0;
}

.s5-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.s5-reveal:not(.s5-revealed):not(.s5-visible) {
  opacity: 0;
}

.s5-revealed,
.s5-reveal.s5-revealed {
  opacity: 1;
}

/* ── Global interactive polish ── */
.s5-btn,
.s5-icon-btn {
  transition:
    background var(--s5-duration-fast) var(--s5-ease-out),
    color var(--s5-duration-fast) var(--s5-ease-out),
    border-color var(--s5-duration-fast) var(--s5-ease-out),
    transform var(--s5-duration-fast) var(--s5-ease-out),
    box-shadow var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-btn:hover,
.s5-icon-btn:hover {
  transform: translateY(-1px);
}

.s5-btn:active,
.s5-icon-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}

.s5-link-underline {
  position: relative;
  transition: color var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--s5-duration) var(--s5-ease-out);
}

.s5-link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes s5marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.s5-announce {
  overflow: hidden;
}

.s5-scroll::-webkit-scrollbar {
  height: 0;
  width: 0;
}

image-slot {
  --is-bg: #f6d6ee;
}

/* ── Header ── */
.s5-header-wrap {
  position: relative;
  z-index: 100;
  transition:
    box-shadow var(--s5-duration) var(--s5-ease-out),
    background var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-header-wrap .s5-logo img {
  height: 42px;
  width: auto;
  max-height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: transform var(--s5-duration) var(--s5-ease-out), opacity var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-header-wrap .s5-logo:hover img {
  transform: scale(1.02);
  opacity: 0.88;
}

.s5-nav {
  gap: 26px;
  align-items: center;
  justify-self: center;
}

.s5-nav-desktop {
  display: flex;
  grid-column: 2;
  grid-row: 1;
}

.s5-logo {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  justify-self: start;
  flex-shrink: 0;
}

.s5-nav-item {
  position: static;
}

.s5-nav-link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #1a1410;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 0;
  display: inline-block;
  position: relative;
  transition: color var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: #9388c4;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--s5-duration) var(--s5-ease-out);
}

.s5-nav-item:hover .s5-nav-link,
.s5-nav-link:focus {
  color: #9388c4;
}

.s5-nav-item:hover .s5-nav-link::after,
.s5-nav-link:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

.s5-nav-dropdown {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
  box-shadow: 0 20px 56px rgba(26, 20, 16, 0.1);
  padding: 36px 40px 44px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -12px, 0) scaleY(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.5s var(--s5-ease-premium),
    transform 0.5s var(--s5-ease-premium),
    visibility 0.5s;
}

.s5-nav-item:hover .s5-nav-dropdown,
.s5-nav-item:focus-within .s5-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scaleY(1);
  pointer-events: auto;
}

.s5-nav-dropdown-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 5), minmax(0, 1fr));
  gap: 28px 36px;
  align-items: start;
}

.s5-mega-col {
  min-width: 0;
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.98);
  transition:
    opacity 0.45s var(--s5-ease-premium),
    transform 0.45s var(--s5-ease-premium);
}

.s5-nav-item:hover .s5-mega-col,
.s5-nav-item:focus-within .s5-mega-col {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.s5-nav-item:hover .s5-mega-col:nth-child(1),
.s5-nav-item:focus-within .s5-mega-col:nth-child(1) { transition-delay: 0.03s; }
.s5-nav-item:hover .s5-mega-col:nth-child(2),
.s5-nav-item:focus-within .s5-mega-col:nth-child(2) { transition-delay: 0.07s; }
.s5-nav-item:hover .s5-mega-col:nth-child(3),
.s5-nav-item:focus-within .s5-mega-col:nth-child(3) { transition-delay: 0.11s; }
.s5-nav-item:hover .s5-mega-col:nth-child(4),
.s5-nav-item:focus-within .s5-mega-col:nth-child(4) { transition-delay: 0.15s; }
.s5-nav-item:hover .s5-mega-col:nth-child(5),
.s5-nav-item:focus-within .s5-mega-col:nth-child(5) { transition-delay: 0.19s; }
.s5-nav-item:hover .s5-mega-col:nth-child(6),
.s5-nav-item:focus-within .s5-mega-col:nth-child(6) { transition-delay: 0.23s; }

.s5-mega-section {
  margin-bottom: 24px;
}

.s5-mega-section:last-child {
  margin-bottom: 0;
}

.s5-mega-head {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1410;
  text-decoration: none;
  line-height: 1.35;
  margin: 0 0 8px;
  transition: color var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-mega-head-only {
  margin-bottom: 16px;
}

.s5-mega-head-only:last-child {
  margin-bottom: 0;
}

.s5-mega-head:hover,
.s5-mega-sub:hover {
  color: #9388c4;
}

.s5-mega-head-static {
  margin: 0 0 10px;
  cursor: default;
}

.s5-mega-sub {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #1a1410;
  text-decoration: none;
  line-height: 1.5;
  padding: 1px 0;
  transition:
    color var(--s5-duration-fast) var(--s5-ease-out),
    transform var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-mega-sub:hover {
  transform: translateX(3px);
}

.s5-mega-chev {
  font-weight: 400;
  margin-left: 1px;
  display: inline-block;
  transition: transform var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-mega-head:hover .s5-mega-chev {
  transform: translateX(3px);
}

.s5-header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}

.s5-header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  flex-shrink: 0;
}

.s5-header-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.s5-nav-more {
  display: none;
  position: relative;
}

.s5-nav-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 0;
}

.s5-nav-more-chev {
  font-size: 11px;
  font-weight: 400;
  color: #9388c4;
  transition: transform 0.3s var(--s5-ease-out);
}

.s5-nav-more-open .s5-nav-more-chev {
  transform: rotate(180deg);
}

.s5-nav-more-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate3d(-50%, -8px, 0);
  min-width: 196px;
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(26, 20, 16, 0.12);
  padding: 8px 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s var(--s5-ease-premium),
    transform 0.35s var(--s5-ease-premium),
    visibility 0.35s;
}

.s5-nav-more-open .s5-nav-more-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.s5-nav-more-link {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1410;
  text-decoration: none;
  transition:
    color 0.25s var(--s5-ease-out),
    background 0.25s var(--s5-ease-out);
}

.s5-nav-more-link:hover {
  color: #9388c4;
  background: #fbf7f1;
}

.s5-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  color: #1a1410;
}

.s5-menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.35s var(--s5-ease-premium),
    opacity 0.25s var(--s5-ease-out);
}

.s5-mobile-nav-open .s5-menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.s5-mobile-nav-open .s5-menu-bar:nth-child(2) {
  opacity: 0;
}

.s5-mobile-nav-open .s5-menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.s5-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.42);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s var(--s5-ease-out),
    visibility 0.35s;
}

.s5-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(100vw, 380px);
  height: 100dvh;
  background: #fff;
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translate3d(-105%, 0, 0);
  transition: transform 0.45s var(--s5-ease-premium);
  box-shadow: 12px 0 48px rgba(26, 20, 16, 0.12);
}

.s5-mobile-nav-open .s5-mobile-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.s5-mobile-nav-open .s5-mobile-nav {
  transform: translate3d(0, 0, 0);
}

.s5-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #efe9e2;
}

.s5-mobile-nav-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9388c4;
}

.s5-mobile-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5f1eb;
  color: #1a1410;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.s5-mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0 24px;
}

.s5-mobile-link,
.s5-mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: none;
  color: #1a1410;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f3eee8;
}

.s5-mobile-link:hover,
.s5-mobile-accordion-btn:hover {
  color: #9388c4;
}

.s5-mobile-chev {
  font-size: 20px;
  font-weight: 400;
  color: #9388c4;
  transition: transform 0.3s var(--s5-ease-out);
}

.s5-mobile-chev-open {
  transform: rotate(90deg);
}

.s5-mobile-submenu {
  background: #fbf7f1;
  padding: 4px 0 12px;
}

.s5-mobile-sub-all {
  display: block;
  padding: 10px 20px 8px 28px;
  font-size: 13px;
  font-weight: 700;
  color: #9388c4;
  text-decoration: none;
}

.s5-mobile-section {
  padding: 8px 0 4px;
}

.s5-mobile-section-title {
  display: block;
  padding: 6px 20px 4px 28px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1410;
  text-decoration: none;
}

.s5-mobile-sub-link {
  display: block;
  padding: 5px 20px 5px 40px;
  font-size: 13px;
  font-weight: 400;
  color: #4a4038;
  text-decoration: none;
}

.s5-mobile-section-title:hover,
.s5-mobile-sub-link:hover,
.s5-mobile-sub-all:hover {
  color: #9388c4;
}

.s5-mobile-nav-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid #efe9e2;
}

.s5-mobile-cta {
  display: block;
  text-align: center;
  background: #1a1410;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 14px 18px;
  border-radius: 40px;
  text-decoration: none;
}

.s5-mobile-cta:hover {
  background: #9388c4;
}

/* ── Hero ── */
.s5-hero-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #fbf7f1;
}

.s5-hero-grid-4 {
  position: relative;
  height: 460px;
  overflow: hidden;
  width: 100vw;
  padding: 16px 0 32px;
}

.s5-hero-track {
  display: flex;
  height: 100%;
  align-items: stretch;
  gap: 1.5vw;
  transform: translate3d(var(--s5-hero-x, 0), 0, 0);
  transition: var(--s5-hero-transition, none);
}

.s5-hero-track-moving {
  will-change: transform;
}

.s5-hero-col {
  position: relative;
  flex: 0 0 76vw;
  width: 76vw;
  min-height: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  background: #ece8f4;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.07);
  transition:
    transform 0.85s var(--s5-ease-premium),
    box-shadow 0.85s var(--s5-ease-premium),
    filter 0.85s var(--s5-ease-premium);
}

.s5-hero-col-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 1.15s var(--s5-ease-premium);
}

.s5-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.04) 0%,
    rgba(26, 20, 16, 0) 38%,
    rgba(26, 20, 16, 0.55) 100%
  );
  transition: opacity 0.85s var(--s5-ease-premium);
}

.s5-hero-col-dim .s5-hero-scrim {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 16, 0.08) 0%,
    rgba(26, 20, 16, 0.12) 45%,
    rgba(26, 20, 16, 0.72) 100%
  );
}

.s5-hero-col-dim {
  filter: brightness(0.9) saturate(0.88);
}

.s5-hero-col-dim:hover {
  filter: brightness(0.96) saturate(0.95);
  transform: translateY(-3px);
}

.s5-hero-col-active {
  z-index: 2;
  filter: none;
  box-shadow: 0 28px 70px rgba(26, 20, 16, 0.18);
  transform: translateY(-6px);
}

.s5-hero-col-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, rgba(147, 136, 196, 0.2), #9388c4, rgba(147, 136, 196, 0.2));
  z-index: 3;
  pointer-events: none;
}

.s5-hero-col-active .s5-hero-col-bg {
  transform: scale(1.06);
}

.s5-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 32px 36px 34px;
  color: #fff;
}

.s5-hero-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: rgba(255, 255, 255, 0.82);
}

.s5-hero-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.15;
  font-size: 16px;
  transition:
    font-size 0.85s var(--s5-ease-premium),
    opacity 0.55s var(--s5-ease-premium),
    transform 0.55s var(--s5-ease-premium);
}

.s5-hero-col-active .s5-hero-title {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 10px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.s5-hero-col-dim .s5-hero-title {
  opacity: 0.92;
  font-size: 18px;
  transform: translate3d(0, 6px, 0);
}

.s5-hero-eyebrow,
.s5-hero-sub,
.s5-hero-cta {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  overflow: hidden;
  max-height: 0;
  margin: 0;
  pointer-events: none;
  transition:
    opacity 0.55s var(--s5-ease-premium),
    transform 0.55s var(--s5-ease-premium),
    max-height 0.55s var(--s5-ease-premium),
    margin 0.55s var(--s5-ease-premium),
    background 0.35s var(--s5-ease-premium),
    box-shadow 0.35s var(--s5-ease-premium);
}

.s5-hero-sub {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.s5-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a1410;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
}

.s5-hero-col-active .s5-hero-eyebrow {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  max-height: 32px;
  margin: 0 0 10px;
  transition-delay: 0.14s;
}

.s5-hero-col-active .s5-hero-sub {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  max-height: 100px;
  margin: 0 0 18px;
  transition-delay: 0.22s;
}

.s5-hero-col-active .s5-hero-cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  max-height: 52px;
  transition-delay: 0.3s;
  pointer-events: auto;
}

.s5-hero-col-dim .s5-hero-cta {
  transition-delay: 0s;
}

.s5-hero-col-dim .s5-hero-sub {
  transition-delay: 0.06s;
}

.s5-hero-col-dim .s5-hero-eyebrow {
  transition-delay: 0.12s;
}

.s5-hero-col-active .s5-hero-cta:hover {
  transform: translate3d(0, -2px, 0);
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.14);
}

.s5-hero-cta span {
  transition: transform 0.35s var(--s5-ease-premium);
}

.s5-hero-cta:hover span {
  transform: translateX(3px);
}

.s5-hero-col-active .s5-hero-caption {
  padding-bottom: 30px;
}

.s5-hero-dots-desktop {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.s5-hero-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(26, 20, 16, 0.18);
  transition:
    width 0.45s var(--s5-ease-premium),
    background 0.45s var(--s5-ease-premium);
}

.s5-hero-dot-active {
  width: 28px;
  background: #9388c4;
}

.s5-hero-grid-3 {
  display: none;
}

/* ── Mobile hero (single card + swipe) ── */
.s5-hero-mobile {
  display: none;
  padding: 0 16px 24px;
}

.s5-hero-mobile-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(26, 20, 16, 0.14);
  touch-action: pan-y;
}

.s5-hero-mobile-track {
  display: flex;
  transition: var(--s5-hero-transition, none);
  transform: translate3d(var(--s5-hero-mobile-x, 0), 0, 0);
}

.s5-hero-mobile-track.s5-hero-track-moving {
  will-change: transform;
}

.s5-hero-mobile-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.s5-hero-mobile-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ece8f4;
}

.s5-hero-mobile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.s5-hero-mobile-dots {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.s5-hero-mobile-dots .s5-hero-dot {
  background: rgba(255, 255, 255, 0.45);
}

.s5-hero-mobile-dots .s5-hero-dot-active {
  background: #fff;
}

.s5-hero-mobile-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1410;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.s5-hero-mobile-arrow-prev {
  left: 12px;
}

.s5-hero-mobile-arrow-next {
  right: 12px;
}

.s5-hero-mobile-body {
  background: rgba(120, 108, 176, 0.92);
  color: #fff;
  padding: 24px 20px 26px;
}

.s5-hero-mobile-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.s5-hero-mobile-sub {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  opacity: 0.92;
}

.s5-hero-mobile-cta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

/* ── Product cards ── */
.s5-product-card {
  transition: transform var(--s5-duration) var(--s5-ease-premium);
}

.s5-product-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.s5-product-media {
  position: relative;
  background: #f7eef5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.s5-product-media img {
  transition: transform 0.9s var(--s5-ease-premium);
}

.s5-product-card:hover .s5-product-media img {
  transform: scale(1.08);
}

/* ── Category cards ── */
.s5-categories-section {
  padding: 72px 32px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.s5-categories-title {
  margin: 0 0 34px;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;
}

.s5-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.s5-category-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  height: 300px;
  transition:
    transform var(--s5-duration) var(--s5-ease-premium),
    box-shadow var(--s5-duration) var(--s5-ease-premium);
}

.s5-category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 56px rgba(26, 20, 16, 0.18);
}

.s5-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.85s var(--s5-ease-out);
}

.s5-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0) 38%, rgba(26, 20, 16, 0.55) 100%);
  pointer-events: none;
  transition: opacity var(--s5-duration) var(--s5-ease-out);
}

.s5-category-label {
  position: absolute;
  left: 24px;
  right: 16px;
  bottom: 22px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
  transition: transform var(--s5-duration) var(--s5-ease-out);
}

.s5-category-card:hover img {
  transform: scale(1.06);
}

.s5-category-card:hover .s5-category-overlay {
  opacity: 0.92;
}

.s5-category-card:hover span,
.s5-category-card:hover .s5-category-label {
  transform: translateY(-4px);
}

/* ── Sommer block ── */
.s5-reveal-sommer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, #f9c4ee 0%, #f3a3e3 75%);
  padding: 88px 32px 96px;
  overflow: hidden;
}

.s5-sommer-eyebrow {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1a1410;
}

.s5-sommer-title {
  display: block;
  width: 100%;
  margin: 0;
  font-family: 'Bagel Fat One', cursive;
  font-weight: 400;
  color: #1a1410;
  font-size: clamp(96px, 21vw, 340px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  transform-origin: center bottom;
}

.s5-sommer-cta {
  display: inline-block;
  margin-top: 34px;
  background: #1a1410;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 16px 38px;
  border-radius: 44px;
}

.s5-sommer-cta:hover {
  background: #fff;
  color: #1a1410;
}

.s5-section-label {
  display: inline-block;
}

.s5-brands-label {
  display: block;
  width: 100%;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #9388c4;
  text-align: center;
}

/* ── Brands ── */
.s5-brand {
  transition:
    opacity var(--s5-duration) var(--s5-ease-out),
    transform var(--s5-duration) var(--s5-ease-out),
    color var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-brand:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  color: #9388c4 !important;
}

/* ── Booking band ── */
.s5-booking-band {
  position: relative;
  overflow: hidden;
}

.s5-booking-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  transform: translate3d(-120%, 0, 0) skewX(-12deg);
  transition: transform 1.4s var(--s5-ease-premium);
}

.s5-booking-band.s5-shine::before {
  transform: translate3d(120%, 0, 0) skewX(-12deg);
}

/* ── Footer ── */
.s5-footer {
  background: #1a1410;
  color: #f3ece2;
  padding: 62px 32px 30px;
}

.s5-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.s5-footer-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.s5-footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #bdb3a6;
  max-width: 280px;
}

.s5-footer-heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #9388c4;
}

.s5-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.s5-footer-link {
  color: #e7ded2;
  text-decoration: none;
  font-size: 14px;
  transition:
    color var(--s5-duration-fast) var(--s5-ease-out),
    transform var(--s5-duration-fast) var(--s5-ease-out);
}

.s5-footer-social-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #bdb3a6;
}

.s5-footer-inline-link {
  color: #9388c4;
  text-decoration: none;
}

.s5-footer-inline-link:hover {
  color: #fff;
}

.s5-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.s5-footer-bar {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid #322a22;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  font-size: 12.5px;
  color: #8a8075;
}

.s5-footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.s5-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #4a4138;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7ded2;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background var(--s5-duration-fast) var(--s5-ease-out),
    border-color var(--s5-duration-fast) var(--s5-ease-out),
    color var(--s5-duration-fast) var(--s5-ease-out),
    transform var(--s5-duration-fast) var(--s5-ease-spring);
}

.s5-social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #9388c4;
  border-color: #9388c4;
  color: #fff;
}

@media (max-width: 1440px) and (min-width: 1024px) {
  .s5-header-inner {
    padding: 16px 20px;
    gap: 14px;
  }

  .s5-nav {
    gap: 14px;
  }

  .s5-nav-link {
    font-size: 12px;
    letter-spacing: 0.45px;
  }

  .s5-nav-item-overflow {
    display: none !important;
  }

  .s5-nav-more {
    display: block;
  }

  .s5-header-cta {
    font-size: 11.5px;
    padding: 9px 14px;
  }

  .s5-icon-btn-search,
  .s5-icon-btn-wish {
    display: none;
  }

  .s5-header-actions {
    gap: 12px;
  }
}

@media (max-width: 1023px) {
  .s5-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 14px 16px;
    gap: 12px;
  }

  .s5-menu-toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .s5-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .s5-header-wrap .s5-logo img {
    height: 28px;
    max-height: 28px;
  }

  .s5-nav-desktop {
    display: none;
  }

  .s5-header-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 10px;
  }

  .s5-header-cta,
  .s5-icon-btn-search,
  .s5-icon-btn-wish {
    display: none;
  }

  .s5-hero-grid-4 { display: none; }
  .s5-hero-mobile { display: block; }

  .s5-categories-section {
    padding: 48px 20px 44px;
  }

  .s5-categories-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .s5-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .s5-category-card {
    height: 220px;
  }

  .s5-category-label {
    left: 16px;
    right: 12px;
    bottom: 16px;
    font-size: 17px;
  }

  .s5-footer {
    padding: 48px 20px 24px;
  }

  .s5-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .s5-footer-brand {
    grid-column: 1 / -1;
  }

  .s5-footer-social-col {
    grid-column: 1 / -1;
  }

  .s5-footer-tagline {
    max-width: none;
  }
}

@media (max-width: 599px) {
  .s5-header-inner {
    padding: 12px 14px;
    gap: 10px;
  }

  .s5-header-wrap .s5-logo img {
    height: 24px;
    max-height: 24px;
  }

  .s5-categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s5-category-card {
    height: 200px;
  }

  .s5-categories-title {
    font-size: 24px;
  }

  .s5-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .s5-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

  .s5-hero-enter,
  .s5-reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
