:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --card: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.1);
  --text: #f6f2ea;
  --muted: #cfc6b8;
  --gold: #c7a36a;
  --gold-strong: #e0bb7f;
  --beige: #e9ddce;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1a1a1a 0%, #090909 45%, #050505 100%);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(199,163,106,0.08), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(199,163,106,0.06), transparent 25%);
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 92px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(5,5,5,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  z-index: 30;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover { color: var(--gold-strong); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #9e7942);
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(199,163,106,0.22);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(199,163,106,0.28); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(199,163,106,0.45);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(199,163,106,0.08); }
.btn-gold { background: linear-gradient(135deg, #e6c48d, #b1824d); }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 0.92rem; }

.hero {
  padding-top: 72px;
}

.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy h1,
.section h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.96;
  letter-spacing: -0.5px;
}
.hero-copy h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

.eyebrow {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow.center, .center { text-align: center; }

.hero-subtitle {
  color: var(--beige);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 16px;
}
.hero-text { color: var(--muted); max-width: 640px; }
.hero-logo {
  width: min(360px, 68%);
  margin-bottom: 26px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}
.hero-pills span,
.mini-card {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--beige);
  font-size: 0.92rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card,
.full-image,
.brands-visual img,
.qr-card,
.stack-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-card {
  background: rgba(255,255,255,0.04);
  padding: 10px;
}
.hero-card img { border-radius: 18px; }

.content-block p { color: var(--muted); }

.stats-panel {
  display: grid;
  gap: 16px;
}
.stat-card,
.pillar,
.brand-item,
.qr-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}
.stat-card {
  padding: 22px;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-strong);
  margin-bottom: 6px;
}
.stat-card span { color: var(--muted); }

.align-center { align-items: center; }
.image-stack {
  position: relative;
  min-height: 520px;
}
.stack-main { width: 100%; height: 100%; object-fit: cover; }
.stack-float {
  position: absolute;
  top: -28px;
  right: -20px;
  width: clamp(200px, 32vw, 320px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.brands-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}
.brands-list {
  display: grid;
  gap: 14px;
}
.brand-item {
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
}
.brand-item span {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(199,163,106,0.14);
  color: var(--gold-strong);
  font-weight: 800;
}
.brand-item p { margin: 4px 0 0; color: var(--muted); }

.full-image.portrait { max-height: 760px; object-fit: cover; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.feature-list li {
  padding-left: 22px;
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-strong);
}

.philosophy {
  background: linear-gradient(180deg, rgba(199,163,106,0.08), rgba(255,255,255,0.02));
}
.pillars {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pillar {
  padding: 24px;
  backdrop-filter: blur(10px);
}
.pillar h3 {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-strong);
}
.pillar p { margin: 0; color: var(--muted); }

.qr-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}
.qr-card img {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 24px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0 40px;
  color: var(--muted);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid,
  .two-col,
  .contact-grid,
  .brands-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .image-stack { min-height: auto; }
  .stack-float { position: relative; top: auto; right: auto; margin: 16px auto 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-copy h1 { font-size: 3rem; }
  .section h2 { font-size: 2rem; }
  .mini-grid,
  .pillars { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-wrap { flex-direction: column; }
}
