:root {
  --bg: #080706;
  --panel: rgba(20, 17, 15, 0.82);
  --panel-strong: rgba(33, 26, 22, 0.9);
  --paper: #f6eee2;
  --paper-soft: rgba(246, 238, 226, 0.76);
  --ink: #201913;
  --gold: #c39a67;
  --gold-soft: rgba(195, 154, 103, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --cursor-x: 50%;
  --cursor-y: 30%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 0%, rgba(41, 30, 23, 0.32), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(195, 154, 103, 0.12), transparent 26%),
    linear-gradient(180deg, #040404 0%, #0b0a09 42%, #050505 100%);
  font-family: "Amiri", serif;
}

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

.noise,
.cursor-aura,
.silk-ribbon {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: -4;
  opacity: 0.04;
  background-image:
    linear-gradient(transparent 0 97%, rgba(255, 255, 255, 0.08) 97% 100%),
    linear-gradient(90deg, transparent 0 97%, rgba(255, 255, 255, 0.06) 97% 100%);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.cursor-aura {
  z-index: -3;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.04), rgba(195, 154, 103, 0.05) 12%, transparent 34%);
}

.silk-ribbon {
  z-index: -2;
  filter: blur(24px);
  opacity: 0.6;
}

.silk-ribbon::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 52vw;
  height: 18vh;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(245, 229, 211, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(195, 154, 103, 0.22), rgba(79, 63, 50, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.18);
  animation: silkWave 14s ease-in-out infinite alternate;
}

.silk-ribbon--one::before {
  top: 9%;
  left: -4%;
  transform: rotate(-12deg);
}

.silk-ribbon--two::before {
  top: 42%;
  right: -8%;
  width: 60vw;
  animation-duration: 16s;
  transform: rotate(10deg);
}

.silk-ribbon--three::before {
  bottom: 8%;
  left: 10%;
  width: 46vw;
  animation-duration: 18s;
  transform: rotate(-8deg);
}

.page-shell {
  padding: 18px;
}

.page-frame {
  position: relative;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 20px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(16, 14, 13, 0.96), rgba(24, 20, 18, 0.92)),
    radial-gradient(circle at top right, rgba(195, 154, 103, 0.14), transparent 24%);
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 36px 100px rgba(0, 0, 0, 0.45);
}

.page-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 72%, rgba(195, 154, 103, 0.06));
  pointer-events: none;
}

.topbar,
.hero-panel,
.story-panel,
.product-card {
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup strong {
  color: #fff7ee;
  font: 700 clamp(2rem, 6vw, 3.1rem) / 1 "Bodoni Moda", serif;
  letter-spacing: 0.08em;
}

.back-link {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(195, 154, 103, 0.42);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.02);
  font: 700 0.95rem/1 "Manrope", sans-serif;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.back-link:hover {
  transform: translateY(-2px);
  background: rgba(195, 154, 103, 0.08);
  border-color: rgba(195, 154, 103, 0.58);
}

.hero-panel,
.story-panel,
.product-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.hero-panel::before,
.story-panel::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -10%;
  width: 44%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  transform: rotate(12deg) translateX(-140%);
  animation: panelSheen 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 28px 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(195, 154, 103, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(56, 42, 31, 0.94), rgba(30, 24, 20, 0.86));
}

.eyebrow {
  margin: 0;
  color: rgba(246, 238, 226, 0.78);
  font: 700 1rem/1.4 "Manrope", sans-serif;
  letter-spacing: 0.04em;
}

h1,
h2,
p {
  margin: 0;
}

.hero-panel h1 {
  color: #fff8ef;
  font: 700 clamp(2.4rem, 8vw, 4.9rem) / 1.05 "Bodoni Moda", serif;
}

.hero-subtitle {
  color: #f3cb90;
  font-size: clamp(1.35rem, 4.4vw, 2rem);
  line-height: 1.55;
}

.story-panel {
  margin-top: 18px;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(244, 237, 226, 0.96), rgba(236, 225, 210, 0.96)),
    radial-gradient(circle at top left, rgba(195, 154, 103, 0.16), transparent 28%);
  color: var(--ink);
}

.story-panel p {
  color: rgba(32, 25, 19, 0.82);
  font-size: clamp(1.08rem, 2.8vw, 1.28rem);
  line-height: 2.05;
}

.story-panel p + p {
  margin-top: 18px;
}

.story-panel__signature {
  color: #2b2119;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 700;
}

.product-grid {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.product-card {
  padding: 24px 22px;
  background:
    linear-gradient(180deg, rgba(245, 238, 229, 0.98), rgba(236, 226, 212, 0.98)),
    radial-gradient(circle at top left, rgba(195, 154, 103, 0.14), transparent 26%);
  color: var(--ink);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.product-card__eyebrow {
  color: rgba(32, 25, 19, 0.52);
  font: 700 0.95rem/1.4 "Manrope", sans-serif;
  margin-bottom: 10px;
}

.product-card h2 {
  color: #221912;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.product-list {
  margin: 0;
  padding: 0 22px 0 0;
}

body.is-en .hero-panel,
body.is-en .story-panel,
body.is-en .product-card {
  text-align: left;
}

body.is-en .product-list {
  padding: 0 0 0 22px;
}

.product-list li {
  color: rgba(32, 25, 19, 0.8);
  font-size: 1.05rem;
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.2, 0.7, 0.15, 1),
    filter 760ms ease;
  filter: blur(8px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--hero {
  transform: translateY(18px) scale(0.985);
}

@keyframes silkWave {
  from {
    transform: rotate(-10deg) translate3d(-2%, 0, 0) scaleX(1);
  }
  to {
    transform: rotate(8deg) translate3d(8%, 2%, 0) scaleX(1.08);
  }
}

@keyframes panelSheen {
  0%,
  18% {
    transform: rotate(12deg) translateX(-140%);
  }
  46% {
    transform: rotate(12deg) translateX(260%);
  }
  100% {
    transform: rotate(12deg) translateX(260%);
  }
}

@media (min-width: 900px) {
  .page-shell {
    padding: 26px;
  }

  .page-frame {
    padding: 26px;
  }

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

@media (max-width: 767px) {
  .page-frame {
    padding: 16px;
    border-radius: 30px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand-lockup {
    gap: 8px;
  }

  .hero-panel,
  .story-panel,
  .product-card {
    border-radius: 24px;
  }

  .hero-panel {
    padding: 22px 18px;
  }

  .story-panel {
    padding: 24px 18px;
  }

  .silk-ribbon::before {
    width: 88vw;
    height: 14vh;
  }

  .silk-ribbon--two::before {
    width: 94vw;
  }
}
