/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Nunito:wght@200;300;400;500;600;700&display=swap');

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* === VARS === */
:root {
  --bg: #e8e2d8;
  --bg-alt: #ded8cc;
  --text: #2c2417;
  --text-soft: #7a6f60;
  --gold: #a0824a;
  --gold-light: #c4a96c;
  --shadow-out: 6px 6px 14px #cbc5b9, -6px -6px 14px #fffef8;
  --shadow-in: inset 4px 4px 8px #cbc5b9, inset -4px -4px 8px #fffef8;
  --shadow-out-sm: 3px 3px 8px #cbc5b9, -3px -3px 8px #fffef8;
}

/* === BASE === */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }

/* === NEO CLASSES === */
.neo { background: var(--bg); box-shadow: var(--shadow-out); border-radius: 20px; }
.neo-inset { background: var(--bg); box-shadow: var(--shadow-in); border-radius: 16px; }

/* === NAV === */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; align-items: center; gap: 30px;
  padding: 14px 30px; border-radius: 50px;
  background: rgba(232,226,216,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-out-sm);
  max-width: 700px; width: calc(100% - 40px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; white-space: nowrap;
}

.nav-links {
  display: flex; gap: 20px; align-items: center; margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 400; color: var(--text-soft);
  transition: color 0.3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-tg {
  padding: 6px 16px; border-radius: 50px; font-weight: 600 !important;
  color: #fff !important; background: var(--gold);
  transition: transform 0.3s !important;
}
.nav-tg:hover { transform: scale(1.05); }

.burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 4px; padding: 5px; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 20px; right: 20px; z-index: 99;
  flex-direction: column; padding: 20px; border-radius: 20px;
  background: var(--bg); box-shadow: var(--shadow-out);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-size: 1rem; color: var(--text-soft); border-bottom: 1px solid rgba(0,0,0,0.05); }

/* === HERO === */
.hero {
  min-height: 100vh; padding: 140px 40px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900; line-height: 0.95; margin-bottom: 25px;
  color: var(--text);
}
.hero-text h1 em { font-size: 1.1em; }

.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem; font-weight: 300; color: var(--text-soft);
  max-width: 420px; line-height: 1.8; margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* Hero cards - overlapping visual */
.hero-visual {
  position: relative; height: 480px;
}
.hero-card {
  position: absolute; padding: 10px; overflow: hidden;
  transition: transform 0.5s;
}
.hero-card:first-child {
  width: 280px; height: 370px; top: 0; right: 40px;
  transform: rotate(-3deg); z-index: 2;
}
.hero-card:first-child:hover { transform: rotate(-1deg) translateY(-8px); }
.hero-card-2 {
  width: 240px; height: 320px; top: 80px; right: 0;
  transform: rotate(4deg); z-index: 1;
}
.hero-card-2:hover { transform: rotate(2deg) translateY(-8px); }
.hero-card-img {
  width: 100%; height: 100%; border-radius: 14px;
  background-size: cover; background-position: center;
  background-color: var(--bg-alt);
}

.hero-stats {
  max-width: 1200px; margin: 50px auto 0; width: 100%;
  display: flex; gap: 15px; flex-wrap: wrap;
}
.stat-pill {
  padding: 14px 28px; border-radius: 50px; font-size: 0.9rem;
  color: var(--text-soft); font-weight: 400;
}
.stat-pill strong { color: var(--gold); font-weight: 700; }

/* === BUTTONS === */
.btn-gold {
  display: inline-block; padding: 14px 32px; border-radius: 50px;
  background: var(--gold); color: #fff; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(160,130,74,0.3);
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(160,130,74,0.35); }

.btn-soft {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; font-size: 0.9rem; font-weight: 500;
  color: var(--text); cursor: pointer; transition: all 0.3s;
}
.btn-soft:hover { transform: translateY(-2px); box-shadow: 4px 4px 10px #cbc5b9, -4px -4px 10px #fffef8; }

.btn-tg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 14px;
  background: #2AABEE; color: #fff; font-weight: 600; font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(42,171,238,0.3);
}
.btn-tg:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,171,238,0.4); }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2;
}

.tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: var(--bg); box-shadow: var(--shadow-out-sm);
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); font-weight: 600; margin-bottom: 15px;
}

.section-sub {
  font-weight: 300; color: var(--text-soft); max-width: 450px;
  margin: 10px auto 0; font-size: 1rem;
}

/* === ABOUT === */
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
}
.about-card {
  padding: 40px 30px; text-align: center; transition: transform 0.3s;
}
.about-card:hover { transform: translateY(-6px); }
.about-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--gold);
}
.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 10px;
}
.about-card p { font-size: 0.9rem; color: var(--text-soft); font-weight: 300; line-height: 1.7; }

/* === BRANDS TICKER === */
.brands-ticker {
  padding: 20px 0; margin-bottom: 35px; overflow: hidden; border-radius: 16px;
}
.ticker-track {
  display: flex; gap: 50px; white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--text-soft);
  letter-spacing: 3px; padding: 10px 0;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.brands-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.brand-chip {
  padding: 12px 28px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 500; color: var(--text); transition: all 0.3s; cursor: default;
}
.brand-chip:hover {
  box-shadow: 4px 4px 10px #cbc5b9, -4px -4px 10px #fffef8;
  transform: translateY(-3px); color: var(--gold);
}

/* === CATALOG === */
.catalog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px;
  margin-bottom: 40px;
}

.product { overflow: hidden; transition: transform 0.4s; }
.product:hover { transform: translateY(-8px); }

.product-img {
  aspect-ratio: 3/4; background-size: cover; background-position: center;
  background-color: var(--bg-alt); border-radius: 16px 16px 0 0;
  position: relative;
}

.p-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 14px; border-radius: 50px;
  background: var(--gold); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.p-badge.hit { background: #e8634a; }
.p-badge.sale { background: #4a8fe8; }

.product-body { padding: 18px 20px; }
.p-brand { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 600; }
.product-body h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 5px 0; }
.p-price { font-size: 0.95rem; color: var(--text-soft); font-weight: 300; }

.catalog-more { text-align: center; }

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.step-card {
  padding: 35px 25px; text-align: center; transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-6px); }

.step-num {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
}
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: var(--text-soft); font-weight: 300; line-height: 1.7; }

/* === CTA === */
.cta-section { padding: 60px 0; }
.cta-card {
  padding: 60px 40px; text-align: center; border-radius: 30px;
}
.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 12px;
}
.cta-card p { color: var(--text-soft); font-weight: 300; max-width: 450px; margin: 0 auto 25px; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.contact-desc { color: var(--text-soft); font-weight: 300; margin-bottom: 20px; }

.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 14px; margin-bottom: 12px;
  font-weight: 400; transition: all 0.3s;
}
.contact-item:hover { transform: translateX(6px); color: var(--gold); }
.ci-arrow { color: var(--gold); font-weight: 700; }

.contact-channel { margin-top: 20px; font-weight: 400; color: var(--text-soft); }
.contact-channel a { color: var(--gold); font-weight: 600; }

.contact-form {
  padding: 35px; display: flex; flex-direction: column; gap: 14px;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px; border: none; border-radius: 14px;
  background: var(--bg); box-shadow: var(--shadow-in);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: var(--text); outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b5ad9e; }
.contact-form input:focus,
.contact-form textarea:focus { box-shadow: inset 3px 3px 6px #cbc5b9, inset -3px -3px 6px #fffef8, 0 0 0 2px rgba(160,130,74,0.2); }

.form-status { font-size: 0.85rem; font-weight: 400; text-align: center; }
.form-status.success { color: var(--gold); }
.form-status.error { color: #e8634a; }

/* === FOOTER === */
.footer { padding: 25px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--text-soft); }
.footer-copy { font-size: 0.8rem; color: #b5ad9e; }
.footer-tg { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
}

@media (max-width: 550px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .container { padding: 0 20px; }
  .nav { top: 10px; padding: 12px 20px; }
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
