@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Manrope:wght@400;600;700&display=swap");

:root {
  --bg: #f7f8f2;
  --bg-alt: #edf1e8;
  --text: #1f2a24;
  --muted: #4d6258;
  --accent: #00695a;
  --accent-2: #f38b3a;
  --border: rgba(31, 42, 36, 0.12);
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 5%, #d8f0e8 0%, rgba(216, 240, 232, 0) 42%),
    radial-gradient(circle at 95% 0%, #ffe5cf 0%, rgba(255, 229, 207, 0) 35%),
    var(--bg);
  line-height: 1.55;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.bg-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.5;
}

.bg-shape-top {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -120px;
  background: linear-gradient(130deg, #f38b3a, #f7d64a);
}

.kicker {
  margin: 0;
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
}

.hero-brand {
  margin: 0 0 12px;
}

.hero-brand img {
  width: 50px;
  max-width: 50px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin: 16px 0 6px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.lead {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.8vw, 21px);
  max-width: 58ch;
}

.lead-strong {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.hero-actions {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: #005749; }

.btn-ghost {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.stat-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-row li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.stat-row strong {
  display: block;
  font-size: 18px;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section {
  padding: 26px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3.3vw, 38px);
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.preview-wrap video {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #dfe4dd;
}

.shots-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.shots-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.small-copy p {
  margin: 10px 0;
}

.made-in-lux {
  display: flex;
  justify-content: center;
}

.made-in-lux img {
  width: 50px;
  max-width: 50px;
  height: auto;
  opacity: 0.95;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0 30px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-footer img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.footer-title {
  font-weight: 700;
  margin: 0;
}

.brand-footer p { margin: 0; color: var(--muted); }

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .shots-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }
}
