*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F2EBE0;
  --text: #1A1410;
  --accent: #6B2432;
  --gold: #B8944F;
  --muted: #6E6358;
  --card: #FAF6F0;
  --line: rgba(184, 148, 79, 0.35);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.bg-glow {
  position: fixed;
  top: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(184, 148, 79, 0.14) 0%, rgba(107, 36, 50, 0.06) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.bg-glow--left {
  left: -5%;
  right: auto;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: stretch;
}

.hero--mirror {
  grid-template-columns: 62% 38%;
}

.hero--mirror .hero__visual { order: 1; }
.hero--mirror .hero__text { order: 2; }

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100svh;
  padding: clamp(2rem, 5vh, 3rem) clamp(1.25rem, 2.5vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
}

.hero__head {
  flex-shrink: 0;
  padding-left: clamp(0.65rem, 1.8vw, 1.15rem);
}

.hero__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(0.5rem, 2vh, 1.5rem) 0;
}

.hero__brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  opacity: 0;
  line-height: 1.1;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  opacity: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  opacity: 0;
}

.hero__subtitle {
  font-size: clamp(0.88rem, 1.3vw, 0.98rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 26rem;
  opacity: 0;
}

.hero-rotate {
  width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
}

.hero-rotate__nav {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(184, 148, 79, 0.22);
}

.hero-rotate__nav-item {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 0.35rem;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  transition: color 0.25s, border-color 0.25s;
}

.hero-rotate__nav-item.is-active {
  color: var(--accent);
  border-bottom-color: var(--gold);
  background: none;
}

.hero-rotate__dots {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.hero-rotate__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 148, 79, 0.25);
  transition: background 0.3s, transform 0.3s;
}

.hero-rotate__dots span.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.hero-rotate__stage {
  position: relative;
  min-height: clamp(10.5rem, 22vh, 13rem);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  padding-right: 0.5rem;
}

.hero-slide.is-active {
  visibility: visible;
}

.hero-slide__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.hero-slide__lead {
  font-size: clamp(0.84rem, 1.25vw, 0.92rem);
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-slide__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-slide__list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: clamp(0.8rem, 1.15vw, 0.86rem);
  line-height: 1.5;
  color: var(--muted);
}

.hero-slide__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__visual {
  position: relative;
  overflow: hidden;
}

.visual-panel {
  position: absolute;
  inset: 0;
  background: var(--card);
}

.visual-panel--mirror {
  left: 0;
  right: -4%;
  border-right: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.catalog-cta {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem);
  left: 50%;
  width: min(100% - 12%, 22rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem 0.7rem;
  background: rgba(250, 246, 240, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  opacity: 0;
}

.catalog-cta__text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.catalog-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  background: linear-gradient(135deg, var(--accent) 0%, #5A1A26 100%);
  color: var(--card);
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
}

.catalog-cta__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .hero--mirror { grid-template-columns: 58% 42%; }
}

@media (max-width: 768px) {
  html,
  body {
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero,
  .hero--mirror {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
  }

  .hero__visual,
  .hero--mirror .hero__visual {
    order: 1;
    flex-shrink: 0;
    position: relative;
    height: 70svh;
    min-height: 70svh;
    max-height: 70svh;
    overflow: hidden;
  }

  .visual-panel,
  .visual-panel--mirror {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    height: 100%;
    transform: none !important;
  }

  .hero-image,
  .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image img {
    object-position: center 55%;
  }

  .hero__text {
    order: 2;
    position: relative;
    z-index: 3;
    min-height: auto;
    height: auto;
    padding: clamp(1.15rem, 4vw, 1.5rem) clamp(1rem, 4vw, 1.25rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--bg);
    border-top: 1px solid var(--line);
  }

  .hero__head {
    padding-left: clamp(0.35rem, 2vw, 0.65rem);
  }

  .hero__body {
    align-items: flex-start;
    padding-top: 0.65rem;
  }

  .hero__brand {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
  }

  .hero__title {
    font-size: clamp(1.45rem, 5.5vw, 1.8rem);
    margin-bottom: 0.75rem;
  }

  .hero__subtitle {
    font-size: 0.92rem;
    max-width: none;
  }

  .hero-rotate__stage {
    min-height: 11.5rem;
  }

  .catalog-cta {
    left: 50%;
    bottom: clamp(0.85rem, 3vw, 1.15rem);
    width: min(92%, 20rem);
  }

  .catalog-cta__btn {
    width: 100%;
    max-width: 18rem;
  }
}

@media (max-width: 390px) {
  .hero-rotate__nav-item {
    font-size: 0.58rem;
    padding: 0.3rem 0.45rem;
  }
}
