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

:root {
  --bg-primary: #faf8f5;
  --bg-secondary: #f2efe9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --gold: #a0783c;
  --gold-light: #c9a96e;
  --gold-dark: #7a5a28;
  --text-primary: #1a1612;
  --text-secondary: #5c544a;
  --text-muted: #9a9088;
  --accent-green: #5a7d5f;
  --accent-rose: #b85a5c;
  --border: rgba(160, 120, 60, 0.12);
  --border-light: rgba(160, 120, 60, 0.25);
  --shadow: 0 12px 40px rgba(0,0,0,0.06);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-gold: 0 8px 30px rgba(160, 120, 60, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: inline-block;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-primary); margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(250, 248, 245, 0.96); box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 40px; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold-dark); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition); border-radius: 1px;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; background: var(--gold); border: none;
  color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
  border-radius: 6px; text-decoration: none;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(160,120,60,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* ═══ HERO CAROUSEL ═══ */
.hero { min-height: 100vh; position: relative; overflow: hidden; }
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease, transform 8s linear;
  transform: scale(1);
}
.hero-slide.active { opacity: 1; transform: scale(1.08); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,248,245,0.93) 0%, rgba(250,248,245,0.7) 50%, rgba(250,248,245,0.9) 100%);
}
.hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--gold);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

.hero-content {
  position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: center; min-height: 100vh; padding: 120px 24px 80px; text-align: center;
}
.hero-inner { max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border: 1px solid var(--border-light); border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; animation: fadeInUp 0.8s ease;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.2s both; color: var(--text-primary); }
.hero h1 .highlight { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 550px; margin: 0 auto 40px; line-height: 1.9; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary {
  padding: 14px 36px; background: var(--gold); color: #fff;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--transition); text-decoration: none; border-radius: 6px;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(160,120,60,0.25); }
.btn-secondary {
  padding: 14px 36px; background: transparent; border: 2px solid var(--gold);
  color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: var(--transition); text-decoration: none; border-radius: 6px;
}
.btn-secondary:hover { background: var(--gold); color: #fff; }
.hero-stats {
  display: flex; justify-content: center; gap: 60px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid var(--border); animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stat h3 { font-size: 2rem; color: var(--gold-dark); }
.hero-stat p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ═══ ABOUT ═══ */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-image-wrapper::before {
  content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 2px solid var(--border-light); border-radius: var(--radius); z-index: -1;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 20px; color: var(--text-secondary); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-feature {
  padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition); background: var(--bg-card);
}
.about-feature:hover { border-color: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.about-feature .icon { font-size: 1.5rem; margin-bottom: 8px; }
.about-feature h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ═══ MISSION ═══ */
.mission { padding: 100px 0; background: var(--bg-secondary); }
.mission-header { text-align: center; margin-bottom: 60px; }
.mission-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
  padding: 40px 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); border-color: var(--gold-light); box-shadow: var(--shadow-hover); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ═══ PRODUCTS ═══ */
.products { padding: 120px 0; }
.products-header { text-align: center; margin-bottom: 40px; }
.products-header .section-desc { margin: 0 auto; }
.product-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
  border-radius: 50px; font-family: 'Inter', sans-serif;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(160,120,60,0.06); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.product-card:hover { transform: translateY(-8px); border-color: var(--gold-light); box-shadow: var(--shadow-hover); }
.product-card.hidden { display: none; }
.product-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg-secondary); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 12px; left: 12px; padding: 4px 12px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.65rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 1px; text-transform: uppercase;
}
.product-info { padding: 20px; }
.product-info h3 { font-size: 0.95rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 600; }
.product-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; transition: var(--transition);
}
.product-link:hover { gap: 10px; color: var(--gold-dark); }

/* ═══ WHY US ═══ */
.why-us { padding: 100px 0; background: var(--bg-secondary); }
.why-us-header { text-align: center; margin-bottom: 60px; }
.why-us-header .section-desc { margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 40px 20px; }
.why-card .icon {
  width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center;
  justify-content: center; border: 2px solid var(--border); border-radius: 50%;
  font-size: 1.8rem; transition: var(--transition); background: var(--bg-card);
}
.why-card:hover .icon { border-color: var(--gold); background: rgba(160,120,60,0.05); box-shadow: var(--shadow-gold); }
.why-card h4 { font-size: 1rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ═══ ROUTINE ═══ */
.routine { padding: 120px 0; }
.routine-header { text-align: center; margin-bottom: 60px; }
.routine-header .section-desc { margin: 0 auto; }
.routine-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.routine-step {
  text-align: center; padding: 36px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.routine-step:hover { border-color: var(--gold-light); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: rgba(160,120,60,0.15); font-weight: 700; margin-bottom: 8px; }
.routine-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--gold-dark); font-family: 'Inter', sans-serif; font-weight: 600; }
.routine-step p { font-size: 0.8rem; color: var(--text-muted); }

/* ═══ CONTACT ═══ */
.contact { padding: 120px 0; background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--border); border-radius: 12px;
  font-size: 1.2rem; color: var(--gold); background: var(--bg-card);
}
.contact-item h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-secondary); text-decoration: none; }
.contact-item a:hover { color: var(--gold-dark); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-primary); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(160,120,60,0.08); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  padding: 14px 36px; background: var(--gold); color: #fff;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--transition); border-radius: 6px; align-self: flex-start;
}
.contact-form button:hover { background: var(--gold-dark); box-shadow: 0 4px 15px rgba(160,120,60,0.3); }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-muted);
  text-decoration: none; font-size: 1.1rem; transition: var(--transition); background: var(--bg-card);
}
.social-link:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(160,120,60,0.05); }

/* ═══ MAP ═══ */
.map-section { width: 100%; height: 350px; filter: grayscale(0.3) brightness(0.95); }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* ═══ FOOTER ═══ */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--border); background: var(--bg-primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: rgba(250,248,245,0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transition: right 0.4s ease;
}
.mobile-menu.open { right: 0; display: flex; }
.mobile-menu a { font-size: 1.2rem; color: var(--text-primary); text-decoration: none; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.mobile-menu .close-btn { position: absolute; top: 24px; right: 24px; font-size: 2rem; background: none; border: none; color: var(--text-primary); cursor: pointer; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .routine-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .routine-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
