:root {
  --ink: #0e1a14;
  --paper: #f7f5f0;
  --card: #ffffff;
  --accent: #1c6e4a;
  --accent-soft: #e6f2ec;
  --gold: #c9a14a;
  --line: #e4e0d6;
  --muted: #6b6f6a;
  --radius: 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,245,240,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-toggle { display: none; }

/* Hero */
.hero {
  padding: 64px 24px 48px;
  text-align: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p.lead {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }

/* Motto banner */
.motto {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.motto strong { color: var(--gold); }

/* Brand strip */
.brand-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px 56px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

/* Section heads */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head .kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-head h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 8px 0 12px;
}
.section-head p { color: var(--muted); margin: 0; }

/* Brand cards (home) */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(14,26,20,0.08); }
.brand-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  color: var(--ink);
}
.brand-card h3 { font-family: "Source Serif 4", Georgia, serif; font-size: 1.4rem; margin: 0 0 4px; }
.brand-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 16px; }
.brand-card .go { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  padding: 0 24px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(14,26,20,0.08); }
.product-media {
  background: #f0eee7;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-media img {
  max-height: 82%;
  max-width: 70%;
  object-fit: contain;
  transition: opacity 0.2s;
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3 { font-size: 1.05rem; margin: 0; font-family: "Source Serif 4", Georgia, serif; }
.product-body .series { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* Color swatches */
.swatches { display: flex; gap: 8px; align-items: center; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.swatch.active { border-color: var(--ink); }
.swatch-name { font-size: 0.78rem; color: var(--muted); margin-left: 4px; }
.color-caption { font-size: 0.78rem; color: var(--muted); margin-top: -4px; }

.storage-row { display: flex; gap: 6px; flex-wrap: wrap; }
.storage-pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
}
.storage-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
}
.price {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.price .from { font-size: 0.7rem; color: var(--muted); font-weight: 500; display: block; font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.buy-btn {
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.buy-btn:hover { background: var(--accent); }

.paypal-buy { margin-top: 4px; min-height: 40px; }
.paypal-placeholder {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  padding: 8px 6px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 36px;
}
.filter-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.feature-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-card h3 { font-family: "Source Serif 4", Georgia, serif; font-size: 1.1rem; margin: 0 0 6px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
  margin: 0 24px 72px;
  border-radius: 24px;
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 { font-family: "Source Serif 4", Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 12px; }
.cta-banner p { opacity: 0.85; margin: 0 0 24px; }
.cta-banner .hero-buttons .btn-primary { background: #fff; color: var(--ink); }
.cta-banner .hero-buttons .btn-secondary { border-color: rgba(255,255,255,0.5); color: #fff; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 24px 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .item .ico { font-size: 1.4rem; }
.contact-info .item h4 { margin: 0 0 2px; font-family: "Source Serif 4", Georgia, serif; }
.contact-info .item p { margin: 0; color: var(--muted); }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.form-card label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--paper);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-card button { width: 100%; }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 48px 24px 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 32px;
}
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37,211,102,0.4);
  z-index: 60;
}

/* Breadcrumb / page hero (sub pages) */
.page-hero {
  padding: 48px 24px 32px;
  text-align: center;
}
.page-hero .kicker {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 8px 0 12px;
  letter-spacing: -0.02em;
}
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Responsive */
@media (max-width: 880px) {
  .brand-cards, .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
