:root {
  --bg: #0e0e0e;
  --surface: #161616;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --muted: #666;
  --green: #4caf82;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 180px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.nav-logo {
  height: 160px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── HERO ── */
.hero {
  padding: 20rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  animation: up 0.8s ease 0.1s forwards;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: #666;
}

/* ── PRODUCTS ── */
.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: var(--bg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: up 0.7s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.3s; }
.product-card:nth-child(2) { animation-delay: 0.45s; }

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

.product-image {
  aspect-ratio: 3 / 2;
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: #333;
  letter-spacing: 0.1em;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.product-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
  padding-top: 0.2rem;
}

.product-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
}

.avail {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.avail-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.avail-text {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── MORE SECTION ── */
.more {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 3rem 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  opacity: 0;
  animation: up 0.9s ease 0.6s forwards;
}

.more-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.more-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.more-title em {
  font-style: italic;
  color: #666;
}

.more-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.more-right p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.95rem 1.8rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
  width: fit-content;
  cursor: pointer;
  background: transparent;
}

.contact-btn:hover {
  border-color: #555;
  background: rgba(255, 255, 255, 0.03);
}

.contact-btn svg {
  transition: transform 0.3s;
}

.contact-btn:hover svg {
  transform: translateX(3px);
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.3rem;
}

.desc-btn {
  background: none;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.desc-btn:hover {
  color: var(--text);
}

.desc-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.desc-content p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--text);
}

.product-image {
  cursor: zoom-in;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #111;
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-title {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0.3rem;
}

.modal-title em {
  font-style: italic;
  color: #666;
}

.modal-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 0.4rem;
}

.modal-whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: 1.1rem 1.5rem;
  background: #1a2e22;
  border: 1px solid #2d4d38;
  color: #4caf82;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: background 0.25s, border-color 0.25s;
}

.modal-whatsapp:hover {
  background: #1f3828;
  border-color: #4caf82;
}

.modal-hint {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #444;
  text-align: center;
  margin-top: 0.4rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  nav { padding: 1.3rem 1.5rem; }

  .hero {
    padding: 9rem 1.5rem 4rem;
  }

  .products {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 5rem;
  }

  .product-card {
    padding: 2rem 0;
  }

  .more {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 7rem;
    gap: 2.5rem;
  }

  footer {
    padding: 1.8rem 1.5rem;
  }
}
