﻿/*
  Felicitֳ  CSS Module: 00-tokens-reset.css
  Purpose: Tokens, reset, global base, page fade.
*/

:root {
  --cream: #f7f2e9;
  --ivory: #fffdf8;
  --black: #070707;
  --soft-black: #161616;
  --muted: #766f66;
  --line: rgba(17, 17, 17, 0.14);
  --white-line: rgba(255, 255, 255, 0.22);
  --gold: #b89a5e;
  --max: 1220px;

  --brand-serif: "Cormorant Garamond", "Times New Roman", serif;
  --hebrew-serif: "Frank Ruhl Libre", "Times New Roman", serif;
  --sans: "Assistant", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js body {
  animation: pageFadeIn 0.7s ease forwards;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.36s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  width: 100%;
  display: block;
  object-fit: cover;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/*
  Felicitֳ  CSS Module: 01-home.css
  Purpose: Home split landing page.
*/

/* HOME */

.home-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--ivory);
}

.split-landing {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: var(--black);
}

/* HOME HERO WORDMARK FIX */

.home-page .split-landing {
  position: relative !important;
  min-height: 100svh;
  overflow: hidden;
}

.home-page .center-wordmark {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  z-index: 8;
  pointer-events: none;
}

@media (max-width: 760px) {
  .home-page .center-wordmark {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}

.center-wordmark {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  direction: ltr;
  font-family: var(--brand-serif);
  font-size: clamp(20px, 7.2vw, 70px);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  color: var(--ivory);
  text-transform: uppercase;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.landing-panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
  cursor: pointer;
}

.landing-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  border-left: 1px solid var(--white-line);
  pointer-events: none;
}

.landing-panel:first-of-type::after {
  border-left: none;
}

.panel-video {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
  transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0)
    scale(1.025);
  filter: grayscale(1) saturate(0.18) contrast(1.08) brightness(0.78);
  transition:
    transform 1.1s ease,
    filter 0.65s ease;
}

.panel-shade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.16) 0%,
    rgba(0, 0, 0, 0.24) 40%,
    rgba(0, 0, 0, 0.74) 100%
  );
  transition: background 0.5s ease;
}

.landing-panel.is-active .panel-video {
  transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0)
    scale(1.065);
  filter: grayscale(0) saturate(0.98) contrast(1.1) brightness(0.96);
}

.landing-panel.is-active .panel-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0.54) 100%
  );
}

body.panel-active .landing-panel:not(.is-active) .panel-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0.36) 40%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

body.panel-active .landing-panel:not(.is-active) .panel-video {
  filter: grayscale(1) saturate(0.08) contrast(1.08) brightness(0.62);
}

.panel-content {
  position: relative;
  z-index: 9;
  width: 100%;
  padding: 0 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.panel-kicker,
.page-kicker,
.section-kicker {
  direction: ltr;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.panel-kicker {
  color: rgba(255, 253, 248, 0.72);
  margin-bottom: 10px;
}

.panel-content h1 {
  font-family: var(--brand-serif);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.catalog-btn {
  position: relative;
  z-index: 20;
  min-width: 156px;
  height: 45px;
  padding: 0 28px;
  border: 1px solid rgba(255, 253, 248, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  overflow: hidden;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.catalog-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}

.catalog-btn::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 9px;
  width: 0;
  height: 1px;
  display: block;
  background: currentColor;
  transition: width 0.36s ease 0.08s;
}

.catalog-btn:hover {
  color: var(--black);
  border-color: var(--ivory);
  transform: translateY(-1px);
}

.catalog-btn:hover::before {
  transform: scaleX(1);
}

.catalog-btn:hover::after {
  width: calc(100% - 56px);
}
/*
  Felicitֳ  CSS Module: 02-footer.css
  Purpose: Shared footer.
*/

/* FOOTER */

.site-footer {
  padding: 0 32px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
}

.home-footer {
  background: var(--black);
  color: rgba(255, 253, 248, 0.68);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  position: relative;
  padding-bottom: 5px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.28s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* FOOTER SOCIAL LINKS */

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: transparent !important;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  box-shadow: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: transparent !important;
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.footer-social-link:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.32);
  outline-offset: 4px;
}

html[data-lang="en"] .footer-social {
  direction: ltr;
}

@media (max-width: 620px) {
  .footer-social {
    justify-content: center;
    width: 100%;
    margin-top: 6px;
  }
}
/*
  Felicitֳ  CSS Module: 03-catalog-shell-header-menu.css
  Purpose: Catalog shell, fixed header, language menu, visual menu, generic catalog sections.
*/

/* CATALOG PAGES */

.catalog-body {
  background: var(--cream);
}

.catalog-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: 74px;
  padding: 0 34px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--black);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  transition:
    height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.catalog-header.is-compact {
  height: 66px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

/* LANGUAGE MENU */

.language-menu {
  position: relative;
  z-index: 180;
}

.language-menu-home {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 180;
}

.language-menu__button {
  height: 38px;
  min-width: 58px;
  padding: 0 11px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 253, 248, 0.72);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.08);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.language-menu__button:hover {
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(17, 17, 17, 0.22);
  transform: translateY(-1px);
}

.language-menu__button svg {
  width: 16px;
  height: 16px;
}

.language-menu__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 144px;
  padding: 7px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.language-menu.is-open .language-menu__list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu__list button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--black);
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.22s ease;
}

.language-menu__list button:hover {
  background: rgba(17, 17, 17, 0.055);
}

.language-menu__list small {
  opacity: 0.48;
  font-size: 10px;
  letter-spacing: 0.08em;
}

html[data-lang="he"] [data-lang-choice="he"],
html[data-lang="en"] [data-lang-choice="en"] {
  background: rgba(17, 17, 17, 0.07);
}

@media (max-width: 620px) {
  .header-actions {
    gap: 7px;
  }

  .language-menu-home {
    top: 16px;
    right: 16px;
  }

  .language-menu__button {
    height: 34px;
    min-width: 52px;
    padding: 0 9px;
  }

  .language-menu__button svg {
    width: 15px;
    height: 15px;
  }

  .language-menu__list {
    min-width: 130px;
  }
}

.catalog-logo {
  justify-self: center;
  direction: ltr;
  font-family: var(--brand-serif);
  font-size: 31px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  color: var(--black);
  transition:
    font-size 0.35s ease,
    letter-spacing 0.35s ease;
}

.header-spacer {
  width: 48px;
  height: 48px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: inline-grid;
  align-content: center;
  gap: 6px;
  cursor: pointer;
  justify-self: start;
}

.menu-toggle span {
  width: 25px;
  height: 1px;
  background: var(--black);
  display: block;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    width 0.28s ease;
}

.menu-toggle:hover span:nth-child(1) {
  width: 18px;
}

.menu-toggle:hover span:nth-child(2) {
  width: 28px;
}

.menu-toggle:hover span:nth-child(3) {
  width: 21px;
}

.menu-is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 26px;
}

.menu-is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 26px;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 260;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-menu-panel {
  position: absolute;
  inset: 24px;
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.26);
  padding: 34px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 28px;
  transform: translateY(18px);
  transition: transform 0.38s ease;
  overflow: hidden;
}

.site-menu.is-open .site-menu-panel {
  transform: translateY(0);
}

.site-menu-logo {
  direction: ltr;
  text-align: center;
  font-family: var(--brand-serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

.menu-close {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  height: 100%;
  align-items: stretch;
}

.menu-card {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  isolation: isolate;
}

.menu-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
  filter: grayscale(0.75) saturate(0.42) brightness(0.78);
  transform: scale(1.02);
  transition:
    transform 0.65s ease,
    filter 0.65s ease;
}

/* MENU CLOTHING IMAGE FIT FIX */

.menu-card-grid .menu-card:nth-child(2) img {
  object-fit: contain !important;
  object-position: center !important;
  background: #e7ded2;
}

.menu-card-grid .menu-card:nth-child(2) .menu-card-shade {
  background: linear-gradient(
    rgba(0, 0, 0, 0.16),
    rgba(0, 0, 0, 0.34)
  ) !important;
}

.menu-card:hover img {
  transform: scale(1.07);
  filter: grayscale(0) saturate(0.94) brightness(0.92);
}

.menu-card-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.22) 42%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.menu-card-text {
  position: relative;
  z-index: 3;
  padding: 24px;
}

/* COLLAPSIBLE MENU SOCIAL ICONS */

.menu-social-line {
  display: none;
}

.menu-social-icons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.menu-social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  background: transparent;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.menu-social-icon svg {
  width: 18px;
  height: 18px;
}

.menu-social-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.07);
}

.menu-social-icon:focus-visible {
  outline: 1px solid rgba(17, 17, 17, 0.28);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .menu-social-icons {
    padding-bottom: 18px;
  }
}

.menu-card-text span {
  display: block;
  font-family: var(--brand-serif);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.menu-card-text small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 253, 248, 0.78);
}

.catalog-header.is-compact .catalog-logo {
  font-size: 29px;
}

.catalog-hero-screen {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.catalog-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  filter: none !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.catalog-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.34) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.catalog-hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 34px 86px;
}

.page-kicker {
  color: rgba(255, 253, 248, 0.72);
  margin-bottom: 14px;
}

.catalog-hero-content h1 {
  font-family: var(--brand-serif);
  font-size: clamp(50px, 6.2vw, 98px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.catalog-hero-content p {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}

.editorial-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.editorial-reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.editorial-text {
  max-width: 540px;
}

.section-kicker {
  color: var(--gold);
  margin-bottom: 12px;
}

.editorial-text h2,
.catalog-section-head h2 {
  font-family: var(--brand-serif);
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.editorial-text p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
}

.editorial-image {
  height: 720px;
  overflow: hidden;
  background: #e6ddd0;
}

.editorial-image img {
  height: 100%;
  filter: saturate(0.85) contrast(1.03);
}

.catalog-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 118px;
}

.catalog-section-head {
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-item {
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  padding: 14px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.catalog-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(17, 17, 17, 0.09);
}

.catalog-item img {
  height: 470px;
  filter: saturate(0.86) contrast(1.03);
}

.catalog-item div {
  padding: 20px 4px 6px;
}

.catalog-item h3 {
  font-family: var(--brand-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.catalog-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
/*
  Felicitֳ  CSS Module: 04-wardrobe-base.css
  Purpose: Base wardrobe component that the catalog pages use.
*/

/* WARDROBE COLLECTION */

.wardrobe-section-head {
  max-width: 760px;
}

.wardrobe-section-intro {
  max-width: 620px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: -8px;
}

.wardrobe-shell {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 253, 248, 0.9),
    rgba(230, 221, 208, 0.58)
  );
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.08);
  isolation: isolate;
}

.wardrobe-showcase {
  position: absolute;
  inset: 0;
  padding: 34px;
}

.wardrobe-showcase::before,
.wardrobe-showcase::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  width: 70px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease 0.45s;
}

.wardrobe-showcase::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.08));
}

.wardrobe-showcase::after {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(17, 17, 17, 0.08));
}

.wardrobe-shell.is-open .wardrobe-showcase::before,
.wardrobe-shell.is-open .wardrobe-showcase::after {
  opacity: 1;
}

.wardrobe-rail {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.55s ease 0.24s,
    transform 0.55s ease 0.24s;
}

.wardrobe-shell.is-open .wardrobe-rail {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wardrobe-item {
  min-height: 0;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 12px;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.07);
}

.wardrobe-item img {
  height: 100%;
  min-height: 390px;
  filter: saturate(0.88) contrast(1.04);
}

.wardrobe-item div {
  padding: 18px 4px 4px;
}

.wardrobe-item h3 {
  font-family: var(--brand-serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}

.wardrobe-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.wardrobe-doors {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.38s ease 0.55s;
}

.wardrobe-door {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.96),
    rgba(226, 216, 202, 0.94)
  );
  border-inline: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.wardrobe-door::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.wardrobe-door::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  transform: translateY(-50%);
}

.wardrobe-door-left::after {
  left: 22px;
}

.wardrobe-door-right::after {
  right: 22px;
}

.wardrobe-shell.is-open .wardrobe-doors {
  opacity: 0;
}

.wardrobe-shell.is-open .wardrobe-door-left {
  transform: translateX(-118%);
}

.wardrobe-shell.is-open .wardrobe-door-right {
  transform: translateX(118%);
}

.wardrobe-toggle {
  position: absolute;
  inset: 0;
  z-index: 8;
  border: 0;
  background: rgba(255, 253, 248, 0.14);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    inset 0.55s ease,
    width 0.55s ease,
    height 0.55s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.wardrobe-toggle-inner {
  min-width: 260px;
  min-height: 190px;
  padding: 28px;
  display: grid;
  place-items: center;
  gap: 18px;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.13);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition:
    min-height 0.45s ease,
    min-width 0.45s ease,
    padding 0.45s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.wardrobe-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wardrobe-icon svg {
  width: 58px;
  height: 58px;
}

.wardrobe-toggle-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.wardrobe-toggle-copy > span {
  font-family: var(--brand-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.wardrobe-toggle-copy small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.wardrobe-text-close {
  display: none;
}

.wardrobe-shell.is-open .wardrobe-text-open {
  display: none;
}

.wardrobe-shell.is-open .wardrobe-text-close {
  display: inline;
}

.wardrobe-shell.is-open .wardrobe-toggle {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 38px;
  height: 38px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wardrobe-shell.is-open .wardrobe-toggle-inner {
  position: relative;
  width: 38px;
  height: 38px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.88);
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.wardrobe-shell.is-open .wardrobe-icon,
.wardrobe-shell.is-open .wardrobe-toggle-copy {
  display: none;
}

.wardrobe-shell.is-open .wardrobe-toggle-inner::after {
  content: "ֳ—";
  color: var(--black);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .wardrobe-shell {
    min-height: auto;
  }

  .wardrobe-showcase {
    position: relative;
    padding: 18px;
  }

  .wardrobe-rail {
    grid-template-columns: 1fr;
  }

  .wardrobe-item img {
    min-height: 430px;
  }

  .wardrobe-shell.is-open .wardrobe-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .wardrobe-shell.is-open .wardrobe-toggle-inner {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 620px) {
  .wardrobe-toggle-inner {
    min-width: 220px;
    min-height: 160px;
  }

  .wardrobe-toggle-copy > span {
    font-size: 27px;
  }

  .wardrobe-item img {
    min-height: 360px;
  }
}

.catalog-footer {
  background: var(--ivory);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
/*
  Felicitֳ  CSS Module: 05-accessibility-widget.css
  Purpose: Floating accessibility widget UI.
*/

/* ACCESSIBILITY WIDGET */

.accessibility-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 410;
  direction: rtl;
}

.accessibility-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.accessibility-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.accessibility-toggle svg {
  width: 20px;
  height: 20px;
}

.accessibility-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(88vw, 330px);
  padding: 18px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.accessibility-widget.is-open .accessibility-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.accessibility-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.accessibility-panel__head p {
  font-family: var(--brand-serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
}

.accessibility-panel__head small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.accessibility-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.accessibility-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.accessibility-options button,
.accessibility-panel__foot button,
.accessibility-panel__foot a {
  min-height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.24);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.accessibility-options button.is-active {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
}

.accessibility-panel__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 12px;
}

.accessibility-panel__foot a {
  text-decoration: none;
}

html[data-lang="en"] .accessibility-widget {
  direction: ltr;
}

html[data-lang="en"] .accessibility-panel {
  direction: ltr;
  right: 0;
  left: auto;
}

/* HIDE ACCESSIBILITY BUTTON NEAR FOOTER */

.accessibility-widget {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.accessibility-widget.is-hidden-at-footer {
  opacity: 0 !important;
  transform: translateY(8px) !important;
  pointer-events: none !important;
  visibility: hidden;
}
/*
  Felicitֳ  CSS Module: 06-accessibility-effects-core.css
  Purpose: Core accessibility effects: text sizing and readable font.
*/

/* ACCESSIBILITY EFFECTS */

/* Larger text - strong global override */
html.a11y-large-text body {
  font-size: 108% !important;
}

html.a11y-large-text
  :where(
    h1,
    h2,
    h3,
    h4,
    p,
    li,
    a,
    button,
    label,
    input,
    select,
    textarea,
    legend,
    small,
    strong,
    span,
    .section-kicker,
    .page-kicker,
    .panel-kicker,
    .catalog-logo,
    .center-wordmark,
    .menu-card-text,
    .footer-links,
    .form-question,
    .choice-list,
    .legal-content,
    .about-story-card,
    .appointment-story-panel
  ) {
  font-size: 1.08em !important;
}

/* Extra large text */
html.a11y-bigger-text body {
  font-size: 116% !important;
}

html.a11y-bigger-text
  :where(
    h1,
    h2,
    h3,
    h4,
    p,
    li,
    a,
    button,
    label,
    input,
    select,
    textarea,
    legend,
    small,
    strong,
    span,
    .section-kicker,
    .page-kicker,
    .panel-kicker,
    .catalog-logo,
    .center-wordmark,
    .menu-card-text,
    .footer-links,
    .form-question,
    .choice-list,
    .legal-content,
    .about-story-card,
    .appointment-story-panel
  ) {
  font-size: 1.16em !important;
}

/* More readable font */
html.a11y-readable-font body,
html.a11y-readable-font body *:not(svg):not(path) {
  font-family: Arial, "Assistant", sans-serif !important;
  letter-spacing: normal !important;
}
/*
  Felicitֳ  CSS Module: 07-legacy-wardrobe-overrides.css
  Purpose: Older/legacy wardrobe overrides kept active for safety during cleanup.
*/

/* CLEAN CLOTHING WARDROBE OVERRIDE */

.clean-wardrobe-head {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 26px;
}

.clean-wardrobe-head h2 {
  font-family: var(--brand-serif);
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 12px;
}

.wardrobe-section-intro {
  max-width: 560px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.clean-wardrobe-toggle {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: 46px !important;
  min-width: 168px;
  padding: 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.16) !important;
  background: rgba(255, 253, 248, 0.68) !important;
  color: var(--black);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.clean-wardrobe-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 253, 248, 0.94) !important;
  border-color: rgba(17, 17, 17, 0.26) !important;
}

.wardrobe-toggle__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.wardrobe-toggle__icon svg {
  width: 18px;
  height: 18px;
}

.clean-wardrobe-panel {
  position: relative;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  background: linear-gradient(
    90deg,
    rgba(132, 114, 99, 0.055) 0%,
    rgba(255, 253, 248, 0.94) 11%,
    rgba(255, 253, 248, 0.96) 50%,
    rgba(255, 253, 248, 0.94) 89%,
    rgba(132, 114, 99, 0.055) 100%
  );
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.06);
  transition:
    max-height 0.65s ease,
    opacity 0.42s ease,
    padding 0.42s ease;
}

.clean-wardrobe-panel.is-open {
  max-height: 980px;
  opacity: 1;
  padding: 24px;
}

.clean-wardrobe-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px;
}

.clean-wardrobe-grid .wardrobe-item {
  min-height: 0;
  padding: 10px;
  background: rgba(255, 253, 248, 0.78) !important;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.055);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.clean-wardrobe-grid .wardrobe-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.86) !important;
  box-shadow: 0 24px 52px rgba(17, 17, 17, 0.08);
}

.clean-wardrobe-grid .wardrobe-item img {
  width: 100%;
  height: 310px !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) !important;
  opacity: 1 !important;
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
}

.clean-wardrobe-grid .wardrobe-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02) !important;
}

.wardrobe-item__caption {
  padding: 14px 4px 4px;
}

.wardrobe-item__caption h3 {
  margin: 0 0 6px;
  font-family: var(--brand-serif);
  font-size: 25px;
  font-weight: 400;
}

.wardrobe-item__caption p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
}

.wardrobe-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 253, 248, 0.9);
  color: var(--black);
  z-index: 5;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

@media (max-width: 900px) {
  .clean-wardrobe-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-wardrobe-grid {
    grid-template-columns: 1fr !important;
  }

  .clean-wardrobe-grid .wardrobe-item img {
    height: 420px !important;
  }
}

@media (max-width: 620px) {
  .clean-wardrobe-panel.is-open {
    padding: 16px;
  }

  .clean-wardrobe-grid .wardrobe-item img {
    height: 340px !important;
  }

  .clean-wardrobe-toggle {
    width: 100% !important;
  }
}

.accessibility-panel {
  max-width: calc(100vw - 32px);
}

/* REFINED WIDE WARDROBE */

.clothing-wardrobe-shell {
  min-height: 560px;
  background: linear-gradient(
    90deg,
    rgba(130, 111, 96, 0.08) 0%,
    rgba(255, 253, 248, 0.94) 12%,
    rgba(255, 253, 248, 0.98) 50%,
    rgba(255, 253, 248, 0.94) 88%,
    rgba(130, 111, 96, 0.08) 100%
  );
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.075);
}

.clothing-wardrobe-shell .wardrobe-showcase {
  position: absolute;
  inset: 0;
  padding: 34px;
}

.clothing-wardrobe-rail {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.55s ease 0.24s,
    transform 0.55s ease 0.24s;
}

.clothing-wardrobe-shell.is-open .clothing-wardrobe-rail {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.clothing-wardrobe-shell .wardrobe-item {
  min-height: 0;
  padding: 10px;
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(17, 17, 17, 0.1);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.clothing-wardrobe-shell .wardrobe-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.085);
}

.clothing-wardrobe-shell .wardrobe-item img {
  width: 100%;
  height: 330px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  opacity: 1;
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
}

.clothing-wardrobe-shell .wardrobe-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.clothing-wardrobe-shell .wardrobe-item div {
  padding: 15px 4px 4px;
}

.clothing-wardrobe-shell .wardrobe-item h3 {
  font-family: var(--brand-serif);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 6px;
}

.clothing-wardrobe-shell .wardrobe-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

/* wardrobe doors */
.clothing-wardrobe-shell .wardrobe-doors {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.34s ease 0.56s;
}

.clothing-wardrobe-shell.is-open .wardrobe-doors {
  opacity: 0;
}

.clothing-wardrobe-shell .wardrobe-door {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.98),
    rgba(230, 220, 205, 0.96)
  );
  border-inline: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.clothing-wardrobe-shell .wardrobe-door::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 17, 17, 0.11);
}

.clothing-wardrobe-shell .wardrobe-door::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  transform: translateY(-50%);
}

.clothing-wardrobe-shell .wardrobe-door-left::after {
  left: 22px;
}

.clothing-wardrobe-shell .wardrobe-door-right::after {
  right: 22px;
}

.clothing-wardrobe-shell.is-open .wardrobe-door-left {
  transform: translateX(-118%);
}

.clothing-wardrobe-shell.is-open .wardrobe-door-right {
  transform: translateX(118%);
}

/* full wardrobe opening button */
.clothing-wardrobe-shell .wardrobe-toggle {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: auto;
  height: auto;
  border: 0;
  background: rgba(255, 253, 248, 0.08);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.clothing-wardrobe-shell .wardrobe-toggle-inner {
  min-width: 260px;
  min-height: 176px;
  padding: 28px;
  display: grid;
  place-items: center;
  gap: 16px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.clothing-wardrobe-shell .wardrobe-icon,
.clothing-wardrobe-shell .wardrobe-icon svg {
  width: 54px;
  height: 54px;
}

.clothing-wardrobe-shell .wardrobe-toggle-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.clothing-wardrobe-shell .wardrobe-toggle-copy > span {
  font-family: var(--brand-serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.clothing-wardrobe-shell .wardrobe-toggle-copy small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.clothing-wardrobe-shell .wardrobe-text-close {
  display: none;
}

/* close state after opening */
.clothing-wardrobe-shell.is-open .wardrobe-toggle {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 36px;
  height: 36px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clothing-wardrobe-shell.is-open .wardrobe-toggle-inner {
  width: 36px;
  height: 36px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.9);
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.clothing-wardrobe-shell.is-open .wardrobe-icon,
.clothing-wardrobe-shell.is-open .wardrobe-toggle-copy {
  display: none;
}

.clothing-wardrobe-shell.is-open .wardrobe-toggle-inner::after {
  content: "ֳ—";
  color: var(--black);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

/* subtle closet side depth */
.clothing-wardrobe-shell .wardrobe-showcase::before,
.clothing-wardrobe-shell .wardrobe-showcase::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease 0.45s;
}

.clothing-wardrobe-shell .wardrobe-showcase::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.07));
}

.clothing-wardrobe-shell .wardrobe-showcase::after {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(17, 17, 17, 0.07));
}

.clothing-wardrobe-shell.is-open .wardrobe-showcase::before,
.clothing-wardrobe-shell.is-open .wardrobe-showcase::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .clothing-wardrobe-shell {
    min-height: auto;
  }

  .clothing-wardrobe-shell .wardrobe-showcase {
    position: relative;
    padding: 18px;
  }

  .clothing-wardrobe-rail {
    grid-template-columns: 1fr;
  }

  .clothing-wardrobe-shell .wardrobe-item img {
    height: 420px;
  }

  .clothing-wardrobe-shell.is-open .wardrobe-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
  }

  .clothing-wardrobe-shell.is-open .wardrobe-toggle-inner {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 620px) {
  .clothing-wardrobe-shell .wardrobe-toggle-inner {
    min-width: 220px;
    min-height: 154px;
  }

  .clothing-wardrobe-shell .wardrobe-toggle-copy > span {
    font-size: 27px;
  }

  .clothing-wardrobe-shell .wardrobe-item img {
    height: 340px;
  }
}
/*
  Felicitֳ  CSS Module: 08-clothing-page.css
  Purpose: Current clothing page editorial sections.
*/

/* REFINED CLOTHING PAGE */

.collection-intro-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 28px 82px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.collection-intro-text {
  max-width: 540px;
}

.collection-intro-text h2,
.collection-editorial-text h2,
.materials-band-head h2 {
  font-family: var(--brand-serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.collection-intro-text p:not(.section-kicker),
.collection-editorial-text p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
}

.collection-intro-image {
  height: min(78svh, 820px);
  overflow: hidden;
  background: #e6ddd0;
}

.collection-intro-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
}

.collection-editorial-moment {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 118px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.collection-editorial-image {
  height: 720px;
  overflow: hidden;
  background: #e6ddd0;
}

.collection-editorial-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.collection-editorial-text {
  max-width: 520px;
}

.materials-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 118px;
}

.materials-band-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.material-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.material-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.material-card-wide img {
  height: 620px;
}

/* CLEAN CLOTHING EDITORIAL IMAGE FIX */

.collection-intro-image,
.collection-editorial-image {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0;
}

.collection-intro-image img,
.collection-editorial-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: initial !important;
  object-position: initial !important;
  background: transparent !important;
}
/*
  Felicitֳ  CSS Module: 09-clothing-wardrobe-refined.css
  Purpose: Current refined wide wardrobe for clothing.
*/

/* REFINED WIDE WARDROBE */

.refined-wardrobe-shell {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(130, 111, 96, 0.08) 0%,
    rgba(255, 253, 248, 0.94) 12%,
    rgba(255, 253, 248, 0.98) 50%,
    rgba(255, 253, 248, 0.94) 88%,
    rgba(130, 111, 96, 0.08) 100%
  );
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.075);
  isolation: isolate;
}

.refined-wardrobe-shell .wardrobe-showcase {
  position: absolute;
  inset: 0;
  padding: 32px;
}

.refined-wardrobe-rail {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.55s ease 0.24s,
    transform 0.55s ease 0.24s;
}

.refined-wardrobe-shell.is-open .refined-wardrobe-rail {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.refined-wardrobe-shell .wardrobe-item {
  min-height: 0;
  padding: 10px;
  background: rgba(255, 253, 248, 0.82) !important;
  border: 1px solid rgba(17, 17, 17, 0.1);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.refined-wardrobe-shell .wardrobe-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.92) !important;
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.085);
}

.refined-wardrobe-shell .wardrobe-item img {
  width: 100%;
  height: 335px;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02) !important;
  opacity: 1 !important;
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
}

.refined-wardrobe-shell .wardrobe-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02) !important;
}

.refined-wardrobe-shell .wardrobe-item div {
  padding: 15px 4px 4px;
}

.refined-wardrobe-shell .wardrobe-item h3 {
  font-family: var(--brand-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.refined-wardrobe-shell .wardrobe-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

/* wardrobe doors */

.refined-wardrobe-shell .wardrobe-doors {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.34s ease 0.56s;
}

.refined-wardrobe-shell.is-open .wardrobe-doors {
  opacity: 0;
}

.refined-wardrobe-shell .wardrobe-door {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.98),
    rgba(230, 220, 205, 0.96)
  );
  border-inline: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.refined-wardrobe-shell .wardrobe-door::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 17, 17, 0.11);
}

.refined-wardrobe-shell .wardrobe-door::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  transform: translateY(-50%);
}

.refined-wardrobe-shell .wardrobe-door-left::after {
  left: 22px;
}

.refined-wardrobe-shell .wardrobe-door-right::after {
  right: 22px;
}

.refined-wardrobe-shell.is-open .wardrobe-door-left {
  transform: translateX(-118%);
}

.refined-wardrobe-shell.is-open .wardrobe-door-right {
  transform: translateX(118%);
}

/* full wardrobe opening button */

.refined-wardrobe-shell .wardrobe-toggle {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: auto;
  height: auto;
  border: 0;
  background: rgba(255, 253, 248, 0.08);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.refined-wardrobe-shell .wardrobe-toggle-inner {
  min-width: 260px;
  min-height: 176px;
  padding: 28px;
  display: grid;
  place-items: center;
  gap: 16px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.refined-wardrobe-shell .wardrobe-icon,
.refined-wardrobe-shell .wardrobe-icon svg {
  width: 54px;
  height: 54px;
}

.refined-wardrobe-shell .wardrobe-toggle-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.refined-wardrobe-shell .wardrobe-toggle-copy > span {
  font-family: var(--brand-serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.refined-wardrobe-shell .wardrobe-toggle-copy small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.refined-wardrobe-shell .wardrobe-text-close {
  display: none;
}

/* close state after opening */

.refined-wardrobe-shell.is-open .wardrobe-toggle {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 36px;
  height: 36px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.refined-wardrobe-shell.is-open .wardrobe-toggle-inner {
  width: 36px;
  height: 36px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.9);
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.refined-wardrobe-shell.is-open .wardrobe-icon,
.refined-wardrobe-shell.is-open .wardrobe-toggle-copy {
  display: none;
}

.refined-wardrobe-shell.is-open .wardrobe-toggle-inner::after {
  content: "ֳ—";
  color: var(--black);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

/* subtle closet depth */

.refined-wardrobe-shell .wardrobe-showcase::before,
.refined-wardrobe-shell .wardrobe-showcase::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease 0.45s;
}

.refined-wardrobe-shell .wardrobe-showcase::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.07));
}

.refined-wardrobe-shell .wardrobe-showcase::after {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(17, 17, 17, 0.07));
}

.refined-wardrobe-shell.is-open .wardrobe-showcase::before,
.refined-wardrobe-shell.is-open .wardrobe-showcase::after {
  opacity: 1;
}

@media (max-width: 980px) {
  .collection-intro-grid,
  .collection-editorial-moment,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .collection-intro-image,
  .collection-editorial-image {
    height: 640px;
  }

  .refined-wardrobe-shell {
    min-height: auto;
  }

  .refined-wardrobe-shell .wardrobe-showcase {
    position: relative;
    padding: 18px;
  }

  .refined-wardrobe-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refined-wardrobe-shell .wardrobe-item img {
    height: 390px;
  }

  .refined-wardrobe-shell.is-open .wardrobe-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
  }

  .refined-wardrobe-shell.is-open .wardrobe-toggle-inner {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 620px) {
  .collection-intro-grid,
  .collection-editorial-moment,
  .materials-band {
    padding-inline: 18px;
  }

  .collection-intro-image,
  .collection-editorial-image {
    height: 520px;
  }

  .material-card img,
  .material-card-wide img {
    height: 420px;
  }

  .refined-wardrobe-shell .wardrobe-toggle-inner {
    min-width: 220px;
    min-height: 154px;
  }

  .refined-wardrobe-shell .wardrobe-toggle-copy > span {
    font-size: 27px;
  }

  .refined-wardrobe-rail {
    grid-template-columns: 1fr;
  }

  .refined-wardrobe-shell .wardrobe-item img {
    height: 360px;
  }
}
/*
  Felicitֳ  CSS Module: 10-accessibility-effects-late.css
  Purpose: High contrast, underline links, reduce motion.
*/

/* Underline links */
html.a11y-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

/* High contrast */
html.a11y-contrast {
  --ivory: #ffffff;
  --black: #000000;
  --soft-black: #000000;
  --muted: #222222;
  --line: rgba(0, 0, 0, 0.36);
}

html.a11y-contrast body {
  background: #ffffff !important;
  color: #000000 !important;
}

html.a11y-contrast .catalog-header,
html.a11y-contrast .language-menu__button,
html.a11y-contrast .accessibility-toggle,
html.a11y-contrast .accessibility-panel,
html.a11y-contrast .cookie-banner,
html.a11y-contrast .form-dialog,
html.a11y-contrast .appointment-story-panel,
html.a11y-contrast .wardrobe-item {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
}

html.a11y-contrast a,
html.a11y-contrast button,
html.a11y-contrast p,
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast span,
html.a11y-contrast small,
html.a11y-contrast strong {
  color: #000000 !important;
}

/* Reduce motion */
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

html.a11y-reduce-motion video {
  animation: none !important;
}

@media (max-width: 620px) {
  .accessibility-widget {
    right: 14px;
    bottom: 64px;
  }

  .accessibility-toggle {
    width: 38px;
    height: 38px;
  }

  .accessibility-toggle svg {
    width: 18px;
    height: 18px;
  }

  .accessibility-options,
  .accessibility-panel__foot {
    grid-template-columns: 1fr;
  }
}

.whatsapp-contact {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 140;
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.58);
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  opacity: 0.78;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.whatsapp-contact.is-hidden-at-footer {
  opacity: 0 !important;
  transform: translateY(8px) !important;
  pointer-events: none !important;
  visibility: hidden;
}

.whatsapp-contact:hover {
  transform: translateY(-2px);
  opacity: 1;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.whatsapp-contact__icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-contact__icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.whatsapp-contact__label {
  display: none;
}

@media (max-width: 620px) {
  .whatsapp-contact {
    left: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }

  .whatsapp-contact__icon,
  .whatsapp-contact__icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 620px) {
  .whatsapp-contact {
    left: 16px;
    bottom: 16px;
    height: 42px;
    padding: 0 14px 0 12px;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .whatsapp-contact__label {
    display: none;
  }
}
/*
  Felicitֳ  CSS Module: 11-reveal-about.css
  Purpose: Scroll reveal and About/manifest page.
*/

/* JS REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT PAGE */

.about-page {
  background: var(--ivory);
}

.about-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  height: 100%;
  filter: grayscale(0.22) saturate(0.72) brightness(0.62);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 7, 7, 0.18),
    rgba(7, 7, 7, 0.52),
    rgba(7, 7, 7, 0.7)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 660px;
  padding: 120px 52px 80px;
  color: var(--ivory);
}

.about-hero-content h1 {
  font-family: var(--brand-serif);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

.about-hero-content p:not(.section-kicker) {
  max-width: 540px;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
}

.about-story-section {
  padding: 120px 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(221, 209, 191, 0.34),
      transparent 38%
    ),
    var(--ivory);
}

.about-story-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.07);
}

.about-story-card p {
  color: var(--soft-black);
  font-family: var(--hebrew-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
}

.about-story-card p:last-child {
  margin-bottom: 0;
}

.about-values-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: #f4eee6;
}

.about-values-image {
  min-height: 620px;
  overflow: hidden;
}

.about-values-image img {
  height: 100%;
  filter: saturate(0.85) contrast(1.03);
}

.about-values-text {
  align-self: center;
  max-width: 640px;
  padding: 80px clamp(34px, 6vw, 88px);
}

.about-values-text h2,
.about-closing-inner h2 {
  font-family: var(--brand-serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.about-values-text p:not(.section-kicker),
.about-closing-inner p:not(.section-kicker):not(.about-signature) {
  color: var(--soft-black);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 18px;
}

.about-closing-section {
  padding: 128px 34px;
  background:
    linear-gradient(rgba(7, 7, 7, 0.52), rgba(7, 7, 7, 0.58)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=90")
      center/cover;
}

.about-closing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 76px);
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.about-closing-inner h2,
.about-closing-inner p {
  color: var(--ivory);
}

.about-closing-inner p:not(.section-kicker):not(.about-signature) {
  color: rgba(255, 253, 248, 0.8);
}

.about-signature {
  font-family: var(--brand-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  margin: 32px 0;
}

.about-cta {
  position: relative;
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 999px;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  overflow: hidden;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}

.about-cta:hover {
  color: var(--black);
  transform: translateY(-2px);
}

.about-cta:hover::before {
  transform: scaleX(1);
}

html[data-lang="en"] .about-story-card,
html[data-lang="en"] .about-values-text,
html[data-lang="en"] .about-closing-inner {
  direction: ltr;
}

/* ABOUT PAGE LOCAL IMAGE FIX */

.about-closing-section {
  background:
    linear-gradient(rgba(7, 7, 7, 0.52), rgba(7, 7, 7, 0.58)),
    url("../images/clothing/flatlay-01.png") center/cover !important;
}
/*
  Felicitֳ  CSS Module: 12-cookie-banner.css
  Purpose: Cookie banner.
*/

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 420;
  width: min(92vw, 470px);
  padding: 22px;
  display: grid;
  gap: 18px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  animation: cookieIn 0.45s ease both;
}

.cookie-banner__title {
  font-family: var(--brand-serif);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 8px;
}

.cookie-banner__text p:not(.cookie-banner__title) {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.cookie-banner__text a {
  display: inline-block;
  margin-top: 8px;
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner__actions button,
.cookie-settings-btn {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: transparent;
  color: inherit;
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
}

.cookie-banner__actions button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
}

.legal-consent-box {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.legal-consent-box label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.legal-consent-box input {
  margin-top: 5px;
}

.legal-consent-box a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}
/*
  Felicitֳ  CSS Module: 13-legal-pages.css
  Purpose: Legal pages: privacy, terms, accessibility statement.
*/

/* LEGAL PAGES */

.legal-page {
  background: var(--ivory);
}

.legal-main {
  padding-top: 86px;
}

.legal-hero {
  min-height: 46svh;
  padding: 120px 34px 70px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(
      circle at top left,
      rgba(220, 207, 188, 0.42),
      transparent 38%
    ),
    linear-gradient(135deg, rgba(255, 253, 248, 1), rgba(239, 231, 219, 0.82));
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.legal-hero h1 {
  max-width: 920px;
  font-family: var(--brand-serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.legal-hero p:not(.section-kicker) {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 82px 34px 110px;
}

.legal-content h2 {
  font-family: var(--brand-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin: 48px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--soft-black);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
}

.legal-content ul {
  padding-inline-start: 22px;
  display: grid;
  gap: 8px;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 108px 22px 56px;
  }

  .legal-content {
    padding: 62px 22px 88px;
  }
}

.cookie-banner__actions button[data-cookie-accept] {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
}

.cookie-settings-btn {
  padding: 0 0 5px;
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__actions button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-content {
    grid-column: 1;
    padding: 130px 28px 80px;
  }

  .about-values-section {
    grid-template-columns: 1fr;
  }

  .about-values-image {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .about-story-section,
  .about-closing-section {
    padding: 80px 18px;
  }

  .about-story-card {
    padding: 34px 24px;
  }

  .about-story-card p {
    font-size: 21px;
  }

  .about-values-text {
    padding: 60px 24px;
  }
}
/*
  Felicitֳ  CSS Module: 14-responsive-global.css
  Purpose: Global responsive rules.
*/

/* RESPONSIVE */

@media (max-width: 900px) {
  .split-landing {
    grid-template-columns: 1fr;
  }

  .landing-panel {
    min-height: 50svh;
  }

  .landing-panel::after {
    border-left: none;
    border-bottom: 1px solid var(--white-line);
  }

  .center-wordmark {
    position: fixed;
    font-size: clamp(46px, 12vw, 82px);
  }

  .site-footer {
    height: auto;
    min-height: 72px;
    padding: 22px 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .catalog-header,
  .catalog-header.is-compact {
    height: 68px;
    min-height: 68px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
  }

  .catalog-logo,
  .catalog-header.is-compact .catalog-logo {
    font-size: 27px;
    letter-spacing: 0.13em;
  }

  .site-menu-panel {
    inset: 14px;
    padding: 26px 18px;
    overflow-y: auto;
  }

  .menu-card-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .menu-card {
    min-height: 260px;
    height: 260px;
  }

  .editorial-section,
  .editorial-reverse,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    height: 560px;
  }

  .catalog-item img {
    height: 560px;
  }
}

@media (max-width: 620px) {
  .landing-panel {
    min-height: 52svh;
  }

  .center-wordmark {
    font-size: 46px;
    letter-spacing: 0.1em;
  }

  .panel-content {
    padding: 0 20px 42px;
  }

  .panel-content h1 {
    font-size: 32px;
  }

  .catalog-btn {
    width: 100%;
    max-width: 260px;
  }

  .footer-links {
    justify-content: center;
  }

  .catalog-logo,
  .catalog-header.is-compact .catalog-logo {
    font-size: 27px;
    letter-spacing: 0.12em;
  }

  .catalog-hero-content {
    padding: 0 22px 68px;
  }

  .catalog-hero-content h1 {
    font-size: 48px;
  }

  .catalog-hero-content p {
    font-size: 16px;
  }

  .editorial-section {
    padding: 82px 18px;
    gap: 38px;
  }

  .editorial-text h2,
  .catalog-section-head h2 {
    font-size: 42px;
  }

  .editorial-text p {
    font-size: 16px;
  }

  .editorial-image,
  .catalog-item img {
    height: 460px;
  }

  .catalog-section {
    padding: 0 18px 86px;
  }
}

/* MOBILE FLOATING BUTTON ALIGNMENT */

@media (max-width: 760px) {
  .whatsapp-contact,
  .accessibility-widget {
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    z-index: 80;
  }

  .whatsapp-contact {
    left: 14px !important;
    right: auto !important;
  }

  .accessibility-widget {
    right: 14px !important;
    left: auto !important;
  }
}
/*
  Felicitֳ  CSS Module: 15-accessibility-page.css
  Purpose: Accessibility page/helper section.
*/

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/*
  Felicitֳ  CSS Module: 16-catalog-hero-appointment-story.css
  Purpose: Minimal catalog hero, appointment button, appointment story panel.
*/

/* MINIMAL CATALOG HERO */

.hero-minimal {
  align-items: center;
}

.catalog-hero-centered {
  padding: 0 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-kicker-large {
  font-family: var(--brand-serif);
  font-size: clamp(38px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ivory);
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* APPOINTMENT HERO BUTTON */

.appointment-hero-btn {
  position: relative;
  min-height: 46px;
  min-width: 174px;
  padding: 0 28px;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.06);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.appointment-hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}

.appointment-hero-btn:hover {
  color: var(--black);
  border-color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.appointment-hero-btn:hover::before {
  transform: scaleX(1);
}

/* APPOINTMENT STORY HERO */

.appointment-hero-layout {
  width: min(100%, var(--max));
  min-height: 100svh;
  padding: 118px 34px 86px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  text-align: initial;
}

.appointment-story-panel {
  position: relative;
  max-width: 560px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--black);
  background: rgba(255, 253, 248, 0.66);
  border: 1px solid rgba(255, 253, 248, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  overflow: hidden;
  animation: storyPanelIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.appointment-story-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  pointer-events: none;
}

.appointment-story-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.36),
    transparent
  );
  transform: skewX(-18deg) translateX(-130%);
  animation: storyPanelLight 1.4s ease 0.35s both;
  pointer-events: none;
}

.story-eyebrow {
  direction: ltr;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.appointment-story-panel h2 {
  font-family: var(--brand-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--black);
}

.appointment-story-panel p {
  max-width: none;
  color: var(--soft-black);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 14px;
}

.appointment-story-panel .story-signature {
  margin: 22px 0 0;
  color: var(--black);
  font-family: var(--hebrew-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.appointment-hero-main {
  justify-self: center;
  display: grid;
  justify-items: center;
  text-align: center;
  animation: heroCtaIn 0.95s ease 0.22s both;
}

.appointment-hero-main .page-kicker-large {
  margin-bottom: 30px;
}

@keyframes storyPanelIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes storyPanelLight {
  from {
    transform: skewX(-18deg) translateX(-130%);
  }

  to {
    transform: skewX(-18deg) translateX(160%);
  }
}

@keyframes heroCtaIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html[data-lang="en"] .appointment-story-panel {
  direction: ltr;
}

html[data-lang="he"] .appointment-story-panel {
  direction: rtl;
}

@media (max-width: 980px) {
  .appointment-hero-layout {
    grid-template-columns: 1fr;
    padding: 108px 24px 64px;
    gap: 34px;
  }

  .appointment-story-panel {
    max-width: 680px;
    margin: 0 auto;
  }

  .appointment-hero-main {
    order: -1;
  }
}

@media (max-width: 620px) {
  .appointment-hero-layout {
    padding: 96px 18px 52px;
  }

  .appointment-story-panel {
    padding: 28px 24px;
  }

  .appointment-story-panel::before {
    inset: 12px;
  }

  .appointment-story-panel p {
    font-size: 14px;
    line-height: 1.8;
  }

  .appointment-story-panel .story-signature {
    font-size: 16px;
  }
}
/*
  Felicitֳ  CSS Module: 17-form-modal.css
  Purpose: Appointment modal and multi-step form.
*/

/* FORM MODAL */

.menu-is-open,
.form-is-open {
  overflow: hidden;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 7, 7, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.form-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 620px);
  max-height: 90svh;
  overflow-y: auto;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
  padding: 46px 42px 38px;
  transform: translateY(22px);
  transition: transform 0.35s ease;
}

.form-modal.is-open .form-dialog {
  transform: translateY(0);
}

.form-close {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.form-dialog h2 {
  font-family: var(--brand-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.form-progress {
  position: relative;
  height: 1px;
  background: rgba(17, 17, 17, 0.12);
  margin-bottom: 34px;
  overflow: hidden;
}

.form-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--black);
  transition: width 0.35s ease;
}

.appointment-form {
  display: grid;
  gap: 24px;
}

.form-step {
  display: none;
  min-height: 270px;
}

.form-step.is-active {
  display: block;
  animation: formStepIn 0.42s ease both;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step-count {
  direction: ltr;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.form-question {
  display: grid;
  gap: 16px;
  border: 0;
  margin: 0;
}

.compact-question {
  margin-top: 24px;
}

.form-question > span,
.form-question legend {
  font-family: var(--brand-serif);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--black);
}

.form-question input,
.form-question select,
.form-question textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.28);
  background: transparent;
  color: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0 13px;
  outline: none;
  resize: vertical;
}

.form-question input:focus,
.form-question select:focus,
.form-question textarea:focus {
  border-bottom-color: var(--black);
}

.field-note,
.optional-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.choice-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.choice-list label {
  cursor: pointer;
}

.choice-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-list span {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  display: grid;
  gap: 5px;
  background: rgba(255, 255, 255, 0.22);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.choice-list strong {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.choice-list small {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.choice-list label:hover span {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.32);
}

.choice-list input:checked + span {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
}

.choice-list input:checked + span strong,
.choice-list input:checked + span small {
  color: var(--ivory);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}

.form-back-btn,
.form-next-btn,
.form-submit {
  min-height: 48px;
  min-width: 124px;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.form-back-btn {
  background: transparent;
  color: var(--black);
}

.form-back-btn:disabled {
  opacity: 0.28;
  cursor: default;
}

.form-next-btn,
.form-submit {
  background: var(--black);
  color: var(--ivory);
}

.form-next-btn:hover,
.form-submit:hover,
.form-back-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.form-next-btn:hover,
.form-submit:hover {
  background: transparent;
  color: var(--black);
}

.form-back-btn:hover:not(:disabled) {
  background: var(--black);
  color: var(--ivory);
}

.is-hidden {
  display: none !important;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.appointment-success {
  display: none;
  animation: formStepIn 0.42s ease both;
}

.appointment-success.is-active {
  display: grid;
  gap: 22px;
}

.about-hero-content
  h1
  .appointment-story-panel
  h2
  .page-kicker-large
  .catalog-logo
  .appointment-success
  h3 {
  font-family: var(--brand-serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.appointment-success p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.form-dialog.is-success .form-progress {
  display: none;
}

@media (max-width: 620px) {
  .form-dialog {
    padding: 42px 24px 32px;
  }

  .form-step {
    min-height: 300px;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-back-btn,
  .form-next-btn,
  .form-submit {
    width: 100%;
  }
}

/* APPOINTMENT FORM BUTTON FIX */

.appointment-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.appointment-form .form-back,
.appointment-form .form-next,
.appointment-form .form-submit {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 253, 248, 0.72);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.appointment-form .form-next,
.appointment-form .form-submit {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
}

.appointment-form .form-back:hover,
.appointment-form .form-next:hover,
.appointment-form .form-submit:hover {
  transform: translateY(-2px);
}

.appointment-form .form-back:hover {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(17, 17, 17, 0.28);
}

.appointment-form .form-next:hover,
.appointment-form .form-submit:hover {
  background: #2a2926;
  border-color: #2a2926;
}

.appointment-form .form-back:disabled,
.appointment-form .form-next:disabled,
.appointment-form .form-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.appointment-form .form-submit {
  flex: 1;
}

.appointment-form .is-hidden {
  display: none !important;
}

@media (max-width: 620px) {
  .appointment-form .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .appointment-form .form-back,
  .appointment-form .form-next,
  .appointment-form .form-submit {
    width: 100%;
  }
}
/*
  Felicitֳ  CSS Module: 18-materials-fix.css
  Purpose: Materials band/tag image fix.
*/

/* MATERIALS BAND FIX */

.materials-grid {
  align-items: start;
}

.material-card {
  align-self: start;
}

.material-card:not(.material-card-wide) img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.material-card-wide img {
  height: 620px;
  object-fit: cover;
}

/* optional: make the tag image feel intentional and not like a mismatched box */
.material-card:not(.material-card-wide) {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.material-card:not(.material-card-wide) img {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.72);
}

/* MATERIALS IMAGE FIX ג€” REMOVE WHITE SIDE BOXES */

.material-card,
.material-card-wide {
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0;
}

.material-card img,
.material-card-wide img,
.material-card:not(.material-card-wide) img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: initial !important;
  object-position: initial !important;
  border: 0 !important;
  background: transparent !important;
}

.materials-grid {
  align-items: start !important;
}
/*
  Felicitֳ  CSS Module: 19-accessories-page.css
  Purpose: Current accessories page editorial sections.
*/

/* REFINED ACCESSORIES PAGE */

.accessories-intro-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 28px 82px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.accessories-intro-text {
  max-width: 540px;
}

.accessories-intro-text h2,
.accessories-editorial-text h2,
.accessories-notes-head h2 {
  font-family: var(--brand-serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.accessories-intro-text p:not(.section-kicker),
.accessories-editorial-text p,
.accessories-note p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
}

.accessories-intro-image {
  height: min(78svh, 820px);
  overflow: hidden;
  background: #e6ddd0;
}

.accessories-intro-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02);
}

.accessories-editorial-moment {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px 118px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.accessories-editorial-image {
  height: 700px;
  overflow: hidden;
  background: #e6ddd0;
}

.accessories-editorial-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.03);
}

.accessories-editorial-text {
  max-width: 520px;
}

.accessories-notes-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 118px;
}

.accessories-notes-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.accessories-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.accessories-note {
  padding: 34px 28px 38px;
  border-inline-start: 1px solid rgba(17, 17, 17, 0.1);
}

.accessories-note:first-child {
  border-inline-start: 0;
}

.accessories-note span {
  display: block;
  color: var(--gold);
  font-family: var(--brand-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
}

.accessories-note h3 {
  font-family: var(--brand-serif);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 12px;
}

/* CLEAN ACCESSORIES EDITORIAL IMAGE FIX */

.accessories-intro-image,
.accessories-editorial-image {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0;
}

.accessories-intro-image img,
.accessories-editorial-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: initial !important;
  object-position: initial !important;
  background: transparent !important;
}
/*
  Felicitֳ  CSS Module: 20-accessories-wardrobe.css
  Purpose: Current refined wide wardrobe for accessories.
*/

/* ACCESSORIES WIDE WARDROBE */

.accessories-wardrobe-shell {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(130, 111, 96, 0.08) 0%,
    rgba(255, 253, 248, 0.94) 12%,
    rgba(255, 253, 248, 0.98) 50%,
    rgba(255, 253, 248, 0.94) 88%,
    rgba(130, 111, 96, 0.08) 100%
  );
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 32px 90px rgba(17, 17, 17, 0.075);
  isolation: isolate;
}

.accessories-wardrobe-shell .wardrobe-showcase {
  position: absolute;
  inset: 0;
  padding: 32px;
}

.accessories-wardrobe-rail {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.55s ease 0.24s,
    transform 0.55s ease 0.24s;
}

.accessories-wardrobe-shell.is-open .accessories-wardrobe-rail {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.accessories-wardrobe-shell .wardrobe-item {
  min-height: 0;
  padding: 10px;
  background: rgba(255, 253, 248, 0.82) !important;
  border: 1px solid rgba(17, 17, 17, 0.1);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.055);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.accessories-wardrobe-shell .wardrobe-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.92) !important;
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.085);
}

.accessories-wardrobe-shell .wardrobe-item img {
  width: 100%;
  height: 345px;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02) !important;
  opacity: 1 !important;
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
}

.accessories-wardrobe-shell .wardrobe-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02) !important;
}

.accessories-wardrobe-shell .wardrobe-item div {
  padding: 15px 4px 4px;
}

.accessories-wardrobe-shell .wardrobe-item h3 {
  font-family: var(--brand-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.accessories-wardrobe-shell .wardrobe-item p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

/* wardrobe doors */

.accessories-wardrobe-shell .wardrobe-doors {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.34s ease 0.56s;
}

.accessories-wardrobe-shell.is-open .wardrobe-doors {
  opacity: 0;
}

.accessories-wardrobe-shell .wardrobe-door {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.98),
    rgba(230, 220, 205, 0.96)
  );
  border-inline: 1px solid rgba(17, 17, 17, 0.1);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.accessories-wardrobe-shell .wardrobe-door::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 17, 17, 0.11);
}

.accessories-wardrobe-shell .wardrobe-door::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  transform: translateY(-50%);
}

.accessories-wardrobe-shell .wardrobe-door-left::after {
  left: 22px;
}

.accessories-wardrobe-shell .wardrobe-door-right::after {
  right: 22px;
}

.accessories-wardrobe-shell.is-open .wardrobe-door-left {
  transform: translateX(-118%);
}

.accessories-wardrobe-shell.is-open .wardrobe-door-right {
  transform: translateX(118%);
}

/* full wardrobe opening button */

.accessories-wardrobe-shell .wardrobe-toggle {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: auto;
  height: auto;
  border: 0;
  background: rgba(255, 253, 248, 0.08);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.accessories-wardrobe-shell .wardrobe-toggle-inner {
  min-width: 260px;
  min-height: 176px;
  padding: 28px;
  display: grid;
  place-items: center;
  gap: 16px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.accessories-wardrobe-shell .wardrobe-icon,
.accessories-wardrobe-shell .wardrobe-icon svg {
  width: 54px;
  height: 54px;
}

.accessories-wardrobe-shell .wardrobe-toggle-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.accessories-wardrobe-shell .wardrobe-toggle-copy > span {
  font-family: var(--brand-serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.accessories-wardrobe-shell .wardrobe-toggle-copy small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.accessories-wardrobe-shell .wardrobe-text-close {
  display: none;
}

/* close state after opening */

.accessories-wardrobe-shell.is-open .wardrobe-toggle {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 36px;
  height: 36px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accessories-wardrobe-shell.is-open .wardrobe-toggle-inner {
  width: 36px;
  height: 36px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.9);
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.accessories-wardrobe-shell.is-open .wardrobe-icon,
.accessories-wardrobe-shell.is-open .wardrobe-toggle-copy {
  display: none;
}

.accessories-wardrobe-shell.is-open .wardrobe-toggle-inner::after {
  content: "ֳ—";
  color: var(--black);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

/* subtle closet depth */

.accessories-wardrobe-shell .wardrobe-showcase::before,
.accessories-wardrobe-shell .wardrobe-showcase::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease 0.45s;
}

.accessories-wardrobe-shell .wardrobe-showcase::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.07));
}

.accessories-wardrobe-shell .wardrobe-showcase::after {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(17, 17, 17, 0.07));
}

.accessories-wardrobe-shell.is-open .wardrobe-showcase::before,
.accessories-wardrobe-shell.is-open .wardrobe-showcase::after {
  opacity: 1;
}

@media (max-width: 980px) {
  .accessories-intro-grid,
  .accessories-editorial-moment {
    grid-template-columns: 1fr;
  }

  .accessories-intro-image,
  .accessories-editorial-image {
    height: 640px;
  }

  .accessories-note-grid {
    grid-template-columns: 1fr;
  }

  .accessories-note,
  .accessories-note:first-child {
    border-inline-start: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }

  .accessories-note:first-child {
    border-top: 0;
  }

  .accessories-wardrobe-shell {
    min-height: auto;
  }

  .accessories-wardrobe-shell .wardrobe-showcase {
    position: relative;
    padding: 18px;
  }

  .accessories-wardrobe-rail {
    grid-template-columns: 1fr;
  }

  .accessories-wardrobe-shell .wardrobe-item img {
    height: 420px;
  }

  .accessories-wardrobe-shell.is-open .wardrobe-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
  }

  .accessories-wardrobe-shell.is-open .wardrobe-toggle-inner {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 620px) {
  .accessories-intro-grid,
  .accessories-editorial-moment,
  .accessories-notes-band {
    padding-inline: 18px;
  }

  .accessories-intro-image,
  .accessories-editorial-image {
    height: 520px;
  }

  .accessories-wardrobe-shell .wardrobe-toggle-inner {
    min-width: 220px;
    min-height: 154px;
  }

  .accessories-wardrobe-shell .wardrobe-toggle-copy > span {
    font-size: 27px;
  }

  .accessories-wardrobe-shell .wardrobe-item img {
    height: 360px;
  }
}
/* LANGUAGE SUGGESTION MODAL ג€” FINAL ACTIVE VERSION */

body.language-suggestion-open {
  overflow: hidden !important;
}

.language-suggestion {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: none !important;
  transition: opacity 0.32s ease !important;
}

.language-suggestion.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.language-suggestion__backdrop {
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 253, 248, 0.08),
      rgba(0, 0, 0, 0.72)
    ),
    rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.language-suggestion__panel {
  position: relative !important;
  width: min(92vw, 560px) !important;
  min-height: 360px !important;
  padding: 54px 58px 46px !important;
  background: rgba(16, 15, 13, 0.96) !important;
  color: #f7f2ea !important;
  border: 1px solid rgba(244, 241, 234, 0.16) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
  transform: translateY(14px) scale(0.985) !important;
  transition:
    transform 0.36s ease,
    opacity 0.36s ease !important;
}

.language-suggestion.is-visible .language-suggestion__panel {
  transform: translateY(0) scale(1) !important;
}

.language-suggestion__close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(247, 242, 234, 0.76) !important;
  font-size: 26px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
}

.language-suggestion__kicker {
  margin: 0 0 22px !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(247, 242, 234, 0.58) !important;
}

.language-suggestion h2 {
  margin: 0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(34px, 5vw, 50px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.015em !important;
  color: #fffaf2 !important;
}

.language-suggestion__text {
  max-width: 390px !important;
  margin: 24px auto 32px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: rgba(247, 242, 234, 0.74) !important;
}

.language-suggestion__actions {
  width: min(100%, 350px) !important;
  margin: 0 auto !important;
  display: grid !important;
  gap: 10px !important;
}

.language-suggestion__actions button {
  min-height: 48px !important;
  border: 1px solid rgba(247, 242, 234, 0.16) !important;
  background: #f7f2ea !important;
  color: #151411 !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease !important;
}

.language-suggestion__actions button:first-child {
  background: transparent !important;
  color: #f7f2ea !important;
}

.language-suggestion__actions button:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(247, 242, 234, 0.42) !important;
}

.language-suggestion__actions button:first-child:hover {
  background: rgba(247, 242, 234, 0.08) !important;
}

.language-suggestion__actions button:last-child:hover {
  background: #fffaf2 !important;
}

.language-suggestion__subtle {
  margin-top: 26px !important;
  padding: 6px 2px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(247, 242, 234, 0.38) !important;
  background: transparent !important;
  color: rgba(247, 242, 234, 0.72) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  cursor: pointer !important;
}

@media (max-width: 620px) {
  .language-suggestion {
    padding: 18px !important;
  }

  .language-suggestion__panel {
    width: min(100%, 430px) !important;
    min-height: auto !important;
    padding: 48px 26px 34px !important;
  }

  .language-suggestion__close {
    top: 12px !important;
    right: 12px !important;
  }

  .language-suggestion__text {
    font-size: 13px !important;
  }
}
