:root {
  --ink: #151416;
  --graphite: #242228;
  --paper: #faf7f2;
  --porcelain: #fffdf8;
  --mist: #eef6f4;
  --plum: #4a1230;
  --rouge: #9f244d;
  --aqua: #0f7773;
  --aqua-dark: #0a4f4c;
  --gold: #c7a56a;
  --line: rgba(21, 20, 22, 0.14);
  --shadow: 0 24px 70px rgba(21, 20, 22, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg path[fill],
.button-primary svg:first-child,
.floating-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--porcelain);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--porcelain);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(250, 247, 242, 0.94);
  box-shadow: 0 10px 35px rgba(21, 20, 22, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(255, 253, 248, 0.5);
}

.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img,
.footer-brand img {
  border-color: var(--line);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid currentColor;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.9;
}

.language-switch button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold);
}

.nav-cta {
  display: none;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--ink);
  background: var(--paper);
  border-radius: 0 0 8px 8px;
  transition: max-height 220ms ease;
}

.mobile-menu[aria-hidden="false"] {
  max-height: 380px;
  border: 1px solid var(--line);
  border-top: 0;
}

.mobile-menu a {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
  padding: 120px 0 56px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 8, 9, 0.86) 0%, rgba(10, 8, 9, 0.58) 42%, rgba(10, 8, 9, 0.22) 72%, rgba(10, 8, 9, 0.56) 100%),
    linear-gradient(180deg, rgba(10, 8, 9, 0.54) 0%, rgba(10, 8, 9, 0.08) 40%, rgba(10, 8, 9, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.95;
}

.hero h1 {
  max-width: 760px;
  font-size: 64px;
}

.hero-lede {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.contact-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: #d7ba80;
}

.button-secondary {
  color: var(--porcelain);
  border-color: rgba(255, 253, 248, 0.5);
  background: rgba(255, 253, 248, 0.08);
}

.button-secondary:hover {
  background: var(--porcelain);
  color: var(--ink);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--porcelain);
}

.button-primary.light {
  background: var(--porcelain);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  z-index: 2;
  display: none;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.hero-note span {
  border: 1px solid rgba(255, 253, 248, 0.28);
  background: rgba(21, 20, 22, 0.28);
  padding: 8px 10px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--plum);
  color: var(--porcelain);
}

.intro-band div {
  min-height: 118px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.intro-band span {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.intro-band p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.section-kicker,
.atelier-layout,
.split-showcase,
.process-grid,
.craft-strip,
.collection,
.locations,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-kicker {
  margin-bottom: 34px;
}

.section-kicker h2,
.collection-head h2,
.craft-strip h2,
.showcase-panel h2,
.contact-band h2 {
  font-size: 42px;
}

.atelier {
  background: var(--porcelain);
}

.atelier-layout {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.atelier-main {
  margin: 0;
  min-height: 440px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.atelier-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.atelier-copy > p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}

.atelier-points {
  display: grid;
  gap: 14px;
}

.atelier-points article,
.process-grid article,
.location-grid article {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.atelier-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 16px;
  padding: 20px;
}

.atelier-points span,
.process-grid span {
  color: var(--rouge);
  font-weight: 900;
}

.atelier-points h3,
.process-grid h3,
.location-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.atelier-points p,
.process-grid p {
  grid-column: 2;
  margin: 6px 0 0;
  color: rgba(21, 20, 22, 0.72);
}

.split-showcase {
  display: grid;
  gap: 18px;
}

.showcase-panel {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--porcelain);
  background: var(--ink);
}

.showcase-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-panel.quince img {
  object-position: center 45%;
}

.showcase-panel.bridal img {
  object-position: center 30%;
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 20, 22, 0.06), rgba(21, 20, 22, 0.82));
}

.showcase-panel div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.showcase-panel p:not(.eyebrow) {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.82);
}

.process {
  background: var(--mist);
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--porcelain);
}

.process-grid span {
  display: block;
  margin-bottom: 42px;
}

.craft-strip {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.craft-strip figure {
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.craft-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-strip div {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--porcelain);
}

.collection {
  padding-top: 82px;
  padding-bottom: 82px;
}

.collection-head {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 18px;
  scrollbar-width: thin;
}

.gallery-controls button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--porcelain);
  color: var(--ink);
  font-weight: 800;
}

.gallery-controls button[aria-pressed="true"] {
  background: var(--aqua-dark);
  color: var(--porcelain);
  border-color: var(--aqua-dark);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lookbook-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  content-visibility: auto;
  contain-intrinsic-size: 280px 360px;
}

.lookbook-grid figure.is-wide {
  aspect-ratio: 1 / 1;
}

.lookbook-grid button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.lookbook-grid button:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.gallery-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--porcelain);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lookbook-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(21, 20, 22, 0), rgba(21, 20, 22, 0.66));
  opacity: 0;
  transition: opacity 180ms ease;
}

.lookbook-grid button:hover .gallery-caption,
.lookbook-grid button:focus-visible .gallery-caption,
.lookbook-grid figure:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.gallery-more[hidden] {
  display: none;
}

.locations {
  padding-top: 82px;
  padding-bottom: 82px;
}

.location-grid {
  display: grid;
  gap: 14px;
}

.location-grid article {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  background: var(--porcelain);
}

.location-grid p {
  margin: 0;
  color: var(--rouge);
  font-size: 14px;
  font-weight: 900;
}

.location-grid address {
  color: rgba(21, 20, 22, 0.72);
  font-style: normal;
}

.location-grid a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-weight: 900;
  color: var(--aqua-dark);
}

.location-grid a:hover,
.site-footer a:hover {
  color: var(--rouge);
}

.coming-soon {
  background: var(--ink) !important;
  color: var(--porcelain);
}

.coming-soon address {
  color: rgba(255, 253, 248, 0.72);
}

.coming-soon a {
  color: var(--gold);
}

.contact-band {
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding-block: 64px;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.contact-band > div {
  flex: 1 1 580px;
  max-width: 780px;
  min-width: 0;
}

.contact-band .button {
  flex: 0 0 auto;
}

.contact-band,
.site-footer {
  background: var(--graphite);
  color: var(--porcelain);
}

.contact-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.site-footer {
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-grid p,
.footer-grid span {
  color: rgba(255, 253, 248, 0.66);
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 25px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.62);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #ffffff;
  background: #25d366;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(21, 20, 22, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-scrolled .floating-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 7, 8, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(94vw, 1180px);
  max-height: 90svh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 6px;
  color: var(--porcelain);
  background: rgba(255, 253, 248, 0.08);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.collection-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.desktop-nav a[aria-current="page"] {
  color: var(--gold);
  opacity: 1;
}

.inventory-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(199, 165, 106, 0.16), transparent 25rem),
    var(--paper);
}

.inventory-site-header {
  color: var(--ink);
  background: rgba(250, 247, 242, 0.96);
}

.inventory-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 144px 0 72px;
  display: grid;
  gap: 36px;
  align-items: center;
}

.inventory-hero-copy {
  max-width: 780px;
}

.inventory-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
}

.inventory-hero-copy > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(21, 20, 22, 0.72);
  font-size: 19px;
}

.inventory-hero-art {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--gold);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 45%),
    var(--ink);
  box-shadow: var(--shadow);
}

.inventory-hero-art::before {
  content: "LA IDEAL";
  position: absolute;
  left: 24px;
  top: 22px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.inventory-hero-art svg {
  position: relative;
  z-index: 2;
  width: min(68%, 260px);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.inventory-orbit {
  position: absolute;
  border: 1px solid rgba(199, 165, 106, 0.25);
  border-radius: 50%;
}

.orbit-one {
  width: 290px;
  height: 290px;
}

.orbit-two {
  width: 410px;
  height: 140px;
  transform: rotate(-18deg);
}

.inventory-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.inventory-demo-note {
  display: grid;
  gap: 6px;
  margin-bottom: 68px;
  padding: 18px 20px;
  border: 1px solid rgba(159, 36, 77, 0.22);
  border-left: 4px solid var(--rouge);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.inventory-demo-note span {
  color: var(--rouge);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-demo-note p {
  margin: 0;
  color: rgba(21, 20, 22, 0.72);
}

.inventory-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.inventory-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.98;
}

.inventory-results {
  margin: 0;
  color: rgba(21, 20, 22, 0.62);
  font-weight: 800;
}

.inventory-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.82);
}

.inventory-tools label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: rgba(21, 20, 22, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.inventory-tools input,
.inventory-tools select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--porcelain);
}

.inventory-tools select {
  padding: 10px 38px 10px 12px;
}

.inventory-search-field {
  position: relative;
  display: block;
}

.inventory-search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 19px;
  height: 19px;
  color: rgba(21, 20, 22, 0.48);
  transform: translateY(-50%);
}

.inventory-tools .inventory-search input {
  padding: 10px 14px 10px 44px;
}

.inventory-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 28px;
  padding: 2px 0 10px;
  scrollbar-width: thin;
}

.inventory-categories button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--porcelain);
  font-weight: 800;
}

.inventory-categories button[aria-pressed="true"] {
  color: var(--porcelain);
  background: var(--aqua-dark);
  border-color: var(--aqua-dark);
}

.inventory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.inventory-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--porcelain);
  box-shadow: 0 18px 45px rgba(21, 20, 22, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.inventory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(21, 20, 22, 0.14);
}

.inventory-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mist);
}

.inventory-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.inventory-card:hover .inventory-card-media > img {
  transform: scale(1.025);
}

.inventory-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(199, 165, 106, 0.18), transparent 38%),
    linear-gradient(145deg, #302c33, #151416);
}

.inventory-placeholder svg {
  width: 62%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.inventory-placeholder span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inventory-placeholder-tiara-gold {
  color: #e2b95f;
}

.inventory-placeholder-tiara-pearl,
.inventory-placeholder-veil {
  color: #f0e8db;
}

.inventory-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--porcelain);
  background: var(--aqua-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(21, 20, 22, 0.18);
}

.inventory-status.status-reserved {
  background: var(--rouge);
}

.inventory-status.status-made-to-order {
  color: var(--ink);
  background: var(--gold);
}

.inventory-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.inventory-card-kicker {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--rouge);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card-kicker span:last-child {
  color: rgba(21, 20, 22, 0.48);
}

.inventory-card h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1;
}

.inventory-card-body > p {
  margin: 0 0 20px;
  color: rgba(21, 20, 22, 0.7);
  font-size: 14px;
}

.inventory-meta {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inventory-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.inventory-meta dt,
.inventory-meta dd {
  margin: 0;
  font-size: 12px;
}

.inventory-meta dt {
  color: rgba(21, 20, 22, 0.5);
  font-weight: 800;
}

.inventory-meta dd {
  text-align: right;
  font-weight: 800;
}

.inventory-card-footer {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

.inventory-card-footer > span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.inventory-card-footer a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--porcelain);
  background: var(--plum);
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms ease;
}

.inventory-card-footer a:hover {
  background: var(--rouge);
}

.inventory-empty {
  padding: 64px 24px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 253, 248, 0.58);
}

.inventory-empty h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.inventory-empty p {
  margin: 10px 0 0;
  color: rgba(21, 20, 22, 0.65);
}

.inventory-contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 86px;
  padding: 38px 28px;
  display: grid;
  gap: 28px;
  align-items: center;
  border-radius: 10px;
  color: var(--porcelain);
  background:
    radial-gradient(circle at 90% 20%, rgba(199, 165, 106, 0.22), transparent 24rem),
    var(--ink);
}

.inventory-contact-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
}

.inventory-contact-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

@media (min-width: 640px) {
  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .inventory-search {
    grid-column: 1 / -1;
  }
}

@media (min-width: 820px) {
  .inventory-hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    min-height: 600px;
    padding-top: 130px;
  }

  .inventory-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .inventory-tools {
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
  }

  .inventory-search {
    grid-column: auto;
  }

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

  .inventory-contact-band {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 54px;
  }
}

@media (min-width: 1180px) {
  .inventory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .inventory-hero,
  .inventory-shell,
  .inventory-contact-band {
    width: min(100% - 20px, 1180px);
  }

  .inventory-hero {
    padding-top: 124px;
  }

  .inventory-hero-art {
    min-height: 240px;
  }

  .inventory-tools {
    padding: 14px;
  }

  .inventory-contact-band {
    padding: 32px 22px;
  }
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }

  .hero h1 {
    font-size: 82px;
  }

  .intro-band {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 820px) {
  .desktop-nav {
    display: flex;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 86svh;
    align-items: center;
    padding: 110px 0 86px;
  }

  .hero h1 {
    font-size: 104px;
  }

  .hero-note {
    display: grid;
  }

  .section {
    padding: 104px 0;
  }

  .section-kicker h2,
  .collection-head h2,
  .craft-strip h2,
  .showcase-panel h2,
  .contact-band h2 {
    font-size: 58px;
  }

  .atelier-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
  }

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

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

  .craft-strip {
    grid-template-columns: 1fr 1fr 1fr 1.22fr;
  }

  .collection-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

  .lookbook-grid figure.is-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 124px;
  }

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

@media (max-width: 460px) {
  .brand span {
    font-size: 24px;
  }

  .language-switch button {
    min-width: 34px;
  }

  .nav-shell {
    width: min(100% - 20px, 1180px);
    gap: 8px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .lookbook-grid {
    gap: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

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