:root {
  /* Luxury palette (dark leather + emerald accent) */
  --bg0: #070a0f;
  --bg1: #0b0f14;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.10);
  --border2: rgba(255, 255, 255, 0.16);

  --accent: #10b981; /* EVOLTEX green */
  --accent2: #22c55e;
  --gold: #d7b46a;

  --radius: 18px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);

  --container: 1100px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(1000px 600px at 15% -10%, rgba(16,185,129,.20), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(215,180,106,.10), transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.01em;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.serif { font-family: "Playfair Display", Georgia, "Times New Roman", serif; letter-spacing: -0.02em; }

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip:focus {
  position: fixed;
  left: 12px; top: 12px;
  width: auto; height: auto;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border2);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}

/* Ambient background layers */
.bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-orb {
  position: absolute;
  filter: blur(40px);
  opacity: 0.55;
  transform: translateZ(0);
}
.orb-1 { width: 520px; height: 520px; left: -120px; top: -160px; background: rgba(16,185,129,0.22); }
.orb-2 { width: 420px; height: 420px; right: -140px; top: -120px; background: rgba(215,180,106,0.16); }
.orb-3 { width: 560px; height: 560px; left: 30%; bottom: -240px; background: rgba(14,165,233,0.08); }

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(700px 400px at 50% 15%, black 35%, transparent 70%);
  opacity: .22;
}

.bg-noise {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 10, 15, 0.55);
  backdrop-filter: blur(12px);
}
.top.scrolled {
  background: rgba(7, 10, 15, 0.78);
  border-bottom-color: rgba(255,255,255,0.14);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.logo {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.08);
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
}
.brand-text { min-width: 0; }
.name {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 14px;
}
.tagline {
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56vw;
}

.nav { display: none; gap: 14px; }
.nav-link {
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link:hover { color: var(--text); text-decoration: none; background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--text); background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.22); }

.actions { display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, rgba(16,185,129,.95), rgba(34,197,94,.9));
  border-color: rgba(16,185,129,.45);
  color: #041a12;
  box-shadow: 0 10px 30px rgba(16,185,129,.18);
}
.btn-primary:hover { border-color: rgba(16,185,129,.75); }

.btn-ghost {
  background: rgba(255,255,255,.04);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 16px 10px;
}

/* Hero */
.hero { padding: 16px 0 6px; }

.hero-wrap {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 300px at 20% 0%, rgba(215,180,106,.12), transparent 55%),
              radial-gradient(700px 300px at 80% 0%, rgba(16,185,129,.16), transparent 55%);
  opacity: .85;
  pointer-events: none;
}
.hero-card > * { position: relative; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}
.k-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(16,185,129,.12);
}

h1 {
  margin: 12px 0 10px;
  font-size: 34px;
  line-height: 1.08;
}
.accent { color: var(--accent); }
.muted { color: var(--muted); }

.sub {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 78ch;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(0,0,0,.14);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.chip:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.mini {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,.16);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.mini-item {
  border: 1px solid var(--border);
  background: rgba(0,0,0,.14);
  border-radius: 16px;
  padding: 10px 12px;
}
.mini-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.mini-value { margin-top: 4px; font-weight: 650; }

/* Hero visual */
.hero-visual .visual-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.visual-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.visual-badge {
  font-size: 12px;
  color: var(--text);
  border: 1px solid rgba(215,180,106,.25);
  background: rgba(215,180,106,.08);
  padding: 7px 10px;
  border-radius: 999px;
}
.visual-badge.subtle {
  border-color: rgba(16,185,129,.25);
  background: rgba(16,185,129,.08);
}
.visual-media {
  border: 1px solid var(--border);
  background: rgba(0,0,0,.16);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.visual-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); }

.visual-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  border: 1px solid var(--border);
  background: rgba(0,0,0,.16);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Sections */
.section {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 18px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

h2 { margin: 0; font-size: 22px; }
.hint { margin: 6px 0 0; color: var(--muted); max-width: 70ch; }

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 650;
}
.card p { margin: 0; color: var(--muted); line-height: 1.65; }

.bullets { margin: 10px 0 0; padding-left: 18px; }
.bullets li { margin: 6px 0; color: var(--text); }

.products .card { padding: 12px; }

.product-media {
  border: 1px solid var(--border);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .35s var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }

.card-body { padding: 2px 2px 0; }

.contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.big { font-size: 18px; font-weight: 700; margin: 0; }
.small { font-size: 12px; }
.muted.small { color: var(--muted); }

.footer {
  max-width: var(--container);
  margin: 18px auto 26px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
}
.footer-top {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
.footer-brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: .18em;
}
.footer-bottom {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Floating action button */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16,185,129,.95), rgba(34,197,94,.9));
  color: #041a12;
  font-weight: 800;
  border: 1px solid rgba(16,185,129,.55);
  box-shadow: 0 18px 40px rgba(16,185,129,.22);
  text-decoration: none;
  z-index: 60;
  transition: transform .25s var(--ease);
}
.fab:hover { transform: translateY(-2px); text-decoration: none; }

/* Reveal animations */
/* Reveal animations (premium) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Direction variants */
.reveal.from-left { transform: translate3d(-18px, 0, 0) scale(0.985); }
.reveal.from-right { transform: translate3d(18px, 0, 0) scale(0.985); }
.reveal.from-up { transform: translate3d(0, -18px, 0) scale(0.985); }

/* Stagger support */
.reveal { transition-delay: var(--d, 0ms); }

/* Larger screens */
@media (min-width: 940px) {
  .nav { display: flex; }
  .tagline { max-width: 360px; }
  .hero-wrap { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
  h1 { font-size: 42px; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .chip, .product-media img, .reveal, .fab { transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}/* Product image framing improvements */
.product-media {
  padding: 10px;                 /* nicer frame for contain images */
  background: rgba(0,0,0,.22);
}

.product-media img {
  border-radius: 12px;
}

/* Use "cover" for lifestyle shots to avoid awkward empty space */
.product.is-cover .product-media {
  padding: 0;                    /* full-bleed */
}
.product.is-cover .product-media img {
  object-fit: cover;
  border-radius: 0;
}

/* Optional: slightly taller media on desktop for a premium gallery feel */
@media (min-width: 940px) {
  .product-media { aspect-ratio: 4 / 3; }
}/* Product image framing improvements */
.product-media { padding: 10px; background: rgba(0,0,0,.22); }
.product-media img { border-radius: 12px; }

/* Full-bleed "cover" for lifestyle shots */
.product.is-cover .product-media { padding: 0; }
.product.is-cover .product-media img { object-fit: cover; border-radius: 0; }