*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --clay: #c9a97a;
  --clay-light: #f0e6d4;
  --clay-dark: #a0825a;
  --ink: #1a1714;
  --ink-soft: #4a4540;
  --ink-muted: #9a948e;
  --accent: #c9a97a;
  --border: rgba(201,169,122,0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── HEADER / HERO ── */
header {
  position: relative;
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* decorative grain overlay */
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* large decorative circle */
header::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: -200px; right: -200px;
  pointer-events: none;
  z-index: 1;
  animation: rotateSlow 40s linear infinite;
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--clay-dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-actions svg {
  width: 20px; height: 20px;
  stroke: var(--ink-soft);
  fill: none;
  stroke-width: 1.5;
  cursor: pointer;
  transition: stroke 0.3s;
}

.nav-actions svg:hover { stroke: var(--clay-dark); }

/* ── LOGO AREA ── */
.logo-zone {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px 0;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.logo-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}

.logo-mark {
  width: 72px; height: 72px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  position: relative;
  animation: fadeUp 1s 0.15s ease forwards;
  opacity: 0;
}

.logo-mark::before {
  content: 'T';
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--clay-dark);
  line-height: 1;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 0.9;
  animation: fadeUp 1s 0.3s ease forwards;
  opacity: 0;
}

.logo-wordmark span {
  color: var(--clay);
  font-style: italic;
}

.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 14px;
  animation: fadeUp 1s 0.45s ease forwards;
  opacity: 0;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 1s 0.6s ease forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 14px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-primary:hover { background: var(--clay-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 14px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover { border-color: var(--clay-dark); color: var(--clay-dark); }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: fadeUp 1s 1s ease forwards;
  opacity: 0;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clay), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── STRIP BANNER ── */
.strip {
  background: var(--ink);
  color: var(--clay-light);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.strip-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 22s linear infinite;
}

.strip-track span {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0 40px;
  font-family: 'DM Sans', sans-serif;
}

.strip-track .dot {
  color: var(--clay);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ── */
section { padding: 100px 60px; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  color: var(--clay-dark);
}

/* ── PRODUCTS ── */
#products { background: var(--white); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.products-header-text .section-title { margin-bottom: 0; }

.view-all {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.view-all:hover { color: var(--ink); border-color: var(--ink); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 28px;
}

.product-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:nth-child(1) { transition-delay: 0s; }
.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4) { transition-delay: 0.24s; }
.product-card:nth-child(5) { transition-delay: 0.32s; }
.product-card:nth-child(6) { transition-delay: 0.40s; }
.product-card:nth-child(7) { transition-delay: 0.48s; }
.product-card:nth-child(8) { transition-delay: 0.56s; }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--clay-light);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  transition: background 0.4s;
}

.product-card:hover .product-overlay {
  background: rgba(26,23,20,0.18);
}

.product-quick-add {
  background: var(--white);
  color: var(--ink);
  border: none;
  padding: 11px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s, background 0.3s;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover { background: var(--clay-light); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--clay-light);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-info {
  padding: 18px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  max-width: 70%;
}

.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clay-dark);
  white-space: nowrap;
}

.product-price .old {
  text-decoration: line-through;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 0.78rem;
  display: block;
  text-align: right;
}

/* ── ABOUT STRIP ── */
.about-section {
  background: var(--clay-light);
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title { margin-bottom: 24px; }

.about-body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 420px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat-item { border-left: 2px solid var(--clay); padding-left: 20px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ── NEWSLETTER / STAY CONNECTED ── */
.newsletter {
  background: var(--ink);
  padding: 100px 60px;
  text-align: center;
}

.newsletter .section-label { color: var(--clay); }

.newsletter .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.newsletter-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,122,0.3);
  border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--clay); }

.newsletter-form button {
  background: var(--clay);
  color: var(--ink);
  border: none;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover { background: var(--clay-dark); color: var(--white); }

/* ── CONTACT CARDS ── */
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,122,0.2);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 240px;
  max-width: 300px;
  flex: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.contact-card:hover {
  background: rgba(201,169,122,0.08);
  border-color: rgba(201,169,122,0.5);
  transform: translateY(-4px);
}

.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(201,169,122,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-detail-value a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-value a:hover { color: var(--clay-light); }

/* ── WHATSAPP FLOATING ── */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

.wa-bubble {
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.wa-bubble svg {
  width: 28px; height: 28px;
  fill: #fff;
}

.wa-fab:hover .wa-bubble {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.wa-label {
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 8px 16px 8px 20px;
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
  position: absolute;
  right: 66px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.wa-fab:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* pulse ring */
.wa-bubble::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 60px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-brand-name span { color: var(--clay); font-style: italic; }

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--clay-light); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.footer-url {
  font-size: 0.72rem;
  color: var(--clay);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 22px 28px; }
  section { padding: 72px 28px; }
  .about-section { grid-template-columns: 1fr; padding: 72px 28px; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 72px 28px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(201,169,122,0.3); border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 48px 28px 28px; }
}