:root {
  --bg: #ffffff;
  --bg-alt: #fbf9f6;
  --accent: #b08d57;
  --accent-dark: #8a6d3e;
  --accent-2: #5c2a21;
  --text: #14100e;
  --text-muted: #5a5551;
  --text-muted-2: #8a8580;
  --border: #e8e6e2;
  --line: #e8e6e2;

  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Jost', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 120px;
  --space-8: 160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.lang-switch {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 10px 4px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted-2);
  cursor: pointer;
  transition: color 180ms ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  color: var(--accent-dark);
}

.lang-sep {
  color: var(--border);
  font-size: 0.78rem;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 140vh;
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 96px 32px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
}

.section-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-scroll-reveal {
  opacity: 0;
  transform: translateY(480px);
  will-change: opacity, transform;
}

@media (max-width: 768px) {
  .section-scroll-reveal {
    transform: translateY(300px);
  }
}

.section-label {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.5vw, 76px);
  line-height: 1.02;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.background-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  background: #000;
}

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

.collection-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 420ms ease, opacity 420ms ease, border-color 420ms ease;
}

.collection-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:hover {
  border-color: var(--accent);
}

.card-image {
  aspect-ratio: 1 / 1;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.collection-card:hover .card-image img {
  transform: scale(1.04);
}

.card-copy {
  padding: 20px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-meta {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 500;
}

.card-meta .card-meta-label {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 8px;
}

.products-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
}

.site-footer {
  padding: 64px 24px 40px;
  background: var(--bg);
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-contact span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.footer-contact p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-contact p + p {
  margin-top: 4px;
}

.footer-contact > div {
  min-width: 160px;
}

.footer-address {
  max-width: 280px;
  line-height: 1.5;
}

.footer-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.82rem;
}

.scroll-nav {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms;
  pointer-events: none;
}

.scroll-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-nav-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  color: var(--text);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.scroll-nav-btn:hover,
.scroll-nav-btn:focus-visible {
  color: var(--accent-dark);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .lang-switch {
    right: 16px;
  }

  .section {
    padding: 72px 20px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-contact {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-fade,
  .section-scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
