/* ================= LP Premium — base ================= */
:root {
  --cream: #f7f2e9;
  --cream-soft: #fbf8f2;
  --gold: #b1893a;
  --gold-deep: #8f6f2c;
  --ink: #1a1a1a;
  --ink-soft: #4a4a45;
  --muted: #7a776d;
  --line: #e4ddcc;
  --white: #ffffff;
  --radius: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 10px 0 16px;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 12px 24px;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* ================= Top bar / header ================= */
.topbar {
  background: var(--cream-soft);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand .premium {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.topbar-info {
  flex: 1;
  min-width: 240px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
}

.topbar-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ================= Hero ================= */
.hero-wrap {
  padding-top: 28px;
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.15) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px 64px;
  max-width: 560px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 14px;
}

.hero-content .gold-rule {
  margin-left: 2px;
}

.hero-content p {
  color: #ece7dc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 380px;
}

/* ================= Product sections ================= */
.section {
  padding: 64px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.section-info h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0;
  color: var(--ink);
}

.section-info p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 240px;
}

/* ================= Carousel — coverflow 3D ================= */
.carousel {
  position: relative;
}

.carousel-stage {
  position: relative;
  height: 430px;
  perspective: 1600px;
}

.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.5s ease, box-shadow 0.6s ease;
  will-change: transform;
  cursor: pointer;
}

.carousel-slide[data-depth="0"] {
  z-index: 50;
}

.carousel-slide[data-depth="1"] {
  z-index: 40;
}

.carousel-slide[data-depth="2"] {
  z-index: 30;
  opacity: 0.72;
}

.carousel-slide[data-depth="hidden"] {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.product-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.6s ease;
}

.carousel-slide[data-depth="0"] .product-card {
  box-shadow: 0 34px 60px -18px rgba(0, 0, 0, 0.4), 0 12px 24px rgba(0, 0, 0, 0.12);
}

.carousel-slide[data-depth="1"] .product-card {
  box-shadow: 0 22px 40px -16px rgba(0, 0, 0, 0.28);
}

.carousel-slide[data-depth="2"] .product-card {
  box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.18);
}

.product-card .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #efe9dc;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-card .info {
  padding: 12px 14px 16px;
}

.product-card .name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
}

.product-card .price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 60;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--ink);
  color: var(--white);
}

.carousel-arrow.prev {
  left: -19px;
}

.carousel-arrow.next {
  right: -19px;
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
}

.carousel-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: #d8cfb4;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* alternating section background */
.section.alt {
  background: var(--cream-soft);
}

/* ================= Footer ================= */
.site-footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  padding: 40px 0 24px;
  text-align: center;
}

.site-footer .brand {
  justify-content: center;
  margin-bottom: 14px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-info {
    text-align: center;
  }

  .section-info p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-slide {
    width: 190px;
  }

  .carousel-stage {
    height: 380px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar-contact {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 460px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .carousel-slide {
    width: 155px;
  }

  .carousel-stage {
    height: 330px;
  }

  .carousel-arrow.prev {
    left: 4px;
  }

  .carousel-arrow.next {
    right: 4px;
  }

  .section {
    padding: 44px 0;
  }
}
