:root {
  --cream: #F6F1E6;
  --paper: #FBF7EE;
  --wine: #6B1F2A;
  --wine-deep: #3A0F18;
  --wine-soft: #8A3445;
  --gold: #B8843C;
  --gold-soft: #D4A95C;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: rgba(58, 15, 24, 0.12);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --serif-2: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(58, 15, 24, 0.05) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { position: relative; z-index: 1; }

/* Topbar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  background: rgba(246, 241, 230, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-logo {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--wine-deep); letter-spacing: 0.08em;
}
.topbar-logo .amp { color: var(--gold); font-style: italic; font-family: var(--serif-2); }
.topbar-nav { display: flex; align-items: center; gap: 24px; }
.topbar-nav a {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.3s; font-weight: 500;
}
.topbar-nav a:hover, .topbar-nav a.active { color: var(--wine); }
.topbar-order {
  background: var(--wine); color: var(--cream) !important;
  padding: 8px 18px; border-radius: 2px; font-weight: 600;
  transition: background 0.3s;
}
.topbar-order:hover { background: var(--wine-deep) !important; }

/* Mobile menu */
.mobile-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 4px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--wine-deep); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99; padding: 24px; flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .order-btn {
  background: var(--wine); color: var(--cream); text-align: center;
  padding: 14px; border-radius: 2px; margin-top: 8px;
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 60px; position: relative; z-index: 1;
}
.hero-content { max-width: 720px; }
.hero .logo-img {
  width: clamp(140px, 20vw, 200px); margin: 0 auto 20px;
  opacity: 0; transform: translateY(20px);
  animation: heroFade 1.2s ease 0.2s forwards;
}
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1;
  color: var(--wine-deep); margin: 16px 0 12px;
  letter-spacing: -0.01em; max-width: 680px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: heroFade 1.2s ease 0.4s forwards;
}
.hero h1 .amp { color: var(--gold); font-style: italic; font-family: var(--serif-2); }
.hero h1 em { font-family: var(--serif-2); font-style: italic; color: var(--wine); }
.hero .sub {
  font-family: var(--serif-2); font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft); max-width: 540px; line-height: 1.55;
  margin: 0 auto 32px; font-style: italic;
  opacity: 0; animation: heroFade 1.2s ease 0.6s forwards;
}
.hero .cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: heroFade 1.2s ease 0.8s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; font-family: var(--sans);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; border: 1px solid var(--ink);
  background: transparent; color: var(--ink);
  transition: all 0.35s ease; cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-wine { background: var(--wine); color: var(--cream); border-color: var(--wine); }
.btn-wine:hover { background: var(--wine-deep); border-color: var(--wine-deep); box-shadow: 0 8px 20px rgba(58,15,24,0.2); }
.btn-gold { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.btn-gold:hover { background: #a07030; border-color: #a07030; }
.btn-outline { border-color: var(--wine); color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: var(--cream); }
.btn-sm { padding: 10px 18px; font-size: 0.68rem; }

@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

/* Page header */
.page-header {
  padding: 100px 24px 50px; text-align: center; position: relative; z-index: 1;
}
.page-header h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--wine-deep);
}
.page-header .breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 10px;
}
.page-header .breadcrumb a { color: var(--wine); }
.page-header .breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* Section */
.section { padding: 72px 24px; position: relative; z-index: 1; }
.section-alt { background: var(--paper); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--wine); font-weight: 500; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500; color: var(--wine-deep); line-height: 1.15; margin-bottom: 20px;
}
.section-title .amp { color: var(--gold); font-style: italic; font-family: var(--serif-2); }
.section-text {
  font-size: 1rem; line-height: 1.7; color: var(--ink-soft); max-width: 720px;
}
.section-text strong { color: var(--ink); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Product card */
.product-card {
  background: var(--paper); border: 1px solid var(--line);
  overflow: hidden; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(58,15,24,0.08); }
.product-card-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--cream);
}
.product-card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-name {
  font-family: var(--serif); font-size: 0.95rem; font-weight: 500;
  color: var(--wine-deep); line-height: 1.3; margin-bottom: 4px;
}
.product-card-price { font-size: 1.1rem; font-weight: 600; color: var(--wine); margin-bottom: 4px; }
.product-card-price .old { font-size: 0.8rem; font-weight: 400; color: var(--ink-soft); text-decoration: line-through; margin-left: 6px; }
.product-card-badge {
  display: inline-block; background: var(--gold); color: var(--cream);
  font-size: 0.6rem; letter-spacing: 0.12em; padding: 2px 8px;
  text-transform: uppercase; margin-bottom: 6px; align-self: flex-start;
}
.product-card-footer { margin-top: auto; padding-top: 12px; }
.product-card .btn { width: 100%; justify-content: center; }

/* Content page */
.content-page { padding: 40px 24px 80px; position: relative; z-index: 1; }
.content-page .content-inner { max-width: 800px; margin: 0 auto; }
.content-page h2 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--wine-deep); margin: 40px 0 16px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: var(--wine); margin: 28px 0 10px;
}
.content-page p { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 16px; }
.content-page p strong { color: var(--ink); }
.content-page ul { padding-left: 20px; margin-bottom: 16px; }
.content-page li { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 6px; }
.content-page .highlight-box {
  background: var(--paper); border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 24px 0; font-style: italic;
  font-family: var(--serif-2); font-size: 1.05rem; color: var(--wine);
}

/* Value cards */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.value-card {
  background: var(--paper); border: 1px solid var(--line); padding: 28px 22px;
  text-align: center; transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(58,15,24,0.06); }
.value-card .icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.value-card h4 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--wine-deep); margin-bottom: 8px;
}
.value-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.5; }

/* Quality highlights */
.quality-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.quality-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); padding: 20px;
}
.quality-item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--wine); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border-radius: 50%;
}
.quality-item h4 { font-family: var(--serif); font-size: 1rem; color: var(--wine-deep); margin-bottom: 4px; }
.quality-item p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }

/* Contact */
.contact-section { padding: 72px 24px; position: relative; z-index: 1; }
.contact-section .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-list { list-style: none; margin: 20px 0 28px; }
.info-list li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; line-height: 1.5; color: var(--ink-soft);
}
.info-list li:last-child { border-bottom: none; }
.info-list .il-icon { flex-shrink: 0; width: 18px; color: var(--wine); margin-top: 3px; }
.info-list .addr { font-weight: 500; color: var(--ink); }
.info-list .small { font-size: 0.82rem; display: block; margin-top: 2px; }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--wine); transition: all 0.3s ease;
}
.social-links a:hover { background: var(--wine); color: var(--cream); border-color: var(--wine); transform: translateY(-2px); }
.social-links a svg { width: 18px; height: 18px; }
.map-wrap { border: 1px solid var(--line); overflow: hidden; background: var(--cream); min-height: 280px; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-caption { padding: 12px 16px; font-size: 0.78rem; color: var(--ink-soft); text-align: center; font-style: italic; font-family: var(--serif-2); border-top: 1px solid var(--line); }
.map-caption a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }

/* Footer */
footer {
  position: relative; z-index: 1;
  background: var(--ink); color: rgba(246,241,230,0.7);
  padding: 36px 32px 80px; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
footer a:hover { color: var(--gold-soft); }
footer .footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; text-align: left; margin-bottom: 28px; }
footer .footer-col h5 { color: var(--cream); font-family: var(--serif); font-size: 0.82rem; margin-bottom: 12px; letter-spacing: 0.22em; }
footer .footer-col a { display: block; font-size: 0.72rem; margin-bottom: 6px; text-transform: none; letter-spacing: 0.05em; }
footer .footer-col .social-row { display: flex; gap: 10px; margin-top: 8px; }
footer .footer-col .social-row a { width: 36px; height: 36px; border: 1px solid rgba(246,241,230,0.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
footer .footer-col .social-row a:hover { border-color: var(--gold-soft); }
footer .footer-bottom { border-top: 1px solid rgba(246,241,230,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ampersand { color: var(--gold-soft); font-family: var(--serif-2); font-style: italic; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.3s ease; animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20bd5a; }
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes pulse { 0% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); } 50% { box-shadow: 0 4px 24px rgba(37,211,102,0.55); } 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); } }

/* Category filter */
.category-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.category-filter button {
  padding: 8px 20px; border: 1px solid var(--line); background: var(--paper);
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft); cursor: pointer;
  transition: all 0.3s; border-radius: 2px;
}
.category-filter button:hover { border-color: var(--wine); color: var(--wine); }
.category-filter button.active { background: var(--wine); color: var(--cream); border-color: var(--wine); }

/* Categories header on products page */
.cat-section { margin-bottom: 48px; }
.cat-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  color: var(--wine-deep); margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-highlights { grid-template-columns: 1fr; }
  .contact-section .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  footer .footer-col .social-row { justify-content: center; }
  footer .footer-bottom { justify-content: center; }
}
@media (max-width: 720px) {
  .topbar-nav { display: none; }
  .mobile-toggle { display: flex; }
  .page-header { padding: 80px 20px 36px; }
  .section { padding: 48px 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 20px 40px; min-height: auto; }
  .hero h1 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: 1.3rem; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
