:root {
  --indigo: #4f46e5;
  --indigo-dark: #3730a3;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f8f9fc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 8px 60px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; color: #344054; }
.nav-links a:hover { color: var(--indigo); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }

.hero { padding-top: 100px; background: radial-gradient(circle at 80% 10%, rgba(79, 70, 229, 0.12), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--indigo); font-size: 13px; font-weight: 800; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 8vw, 84px); line-height: 0.95; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.04; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.2; }
.lead { font-size: 21px; color: #475467; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 800; }
.button.primary { background: var(--indigo); color: white; box-shadow: 0 14px 34px rgba(79, 70, 229, 0.28); }
.button.primary:hover { background: var(--indigo-dark); }
.button.secondary { background: white; border: 1px solid var(--line); color: #344054; }
.trust-points { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-points span { padding: 9px 12px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; color: #475467; }
.snapshot-card, .content-card, .locations-card, .compliance-card, .contact-card, .product-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.snapshot-card { padding: 34px; }
.snapshot-label { color: var(--indigo); font-weight: 800; font-size: 13px; text-transform: uppercase; }
.snapshot-card h2 { font-size: 40px; }
.facts { margin: 28px 0 0; display: grid; gap: 14px; }
.facts div, .company-table div { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; border-top: 1px solid var(--line); }
dt { color: var(--muted); font-size: 14px; }
dd { margin: 0; font-weight: 800; text-align: right; }

.two-col, .operations-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.content-card { padding: 34px; color: #475467; font-size: 18px; }
.products-section {
  background: var(--soft);
  padding-bottom: 120px;
  padding-top: 120px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 480px;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin: 0;
  background: #f4f6ff;
}
.product-card h3, .product-card p {
  margin-left: 28px;
  margin-right: 28px;
}
.product-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 800;
}
.product-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .products-section {
    padding-bottom: 64px;
    padding-top: 64px;
  }
}
.operations-section p { color: var(--muted); font-size: 18px; }
.locations-card { padding: 30px; }
.location-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.location-list li { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--soft); border-radius: 16px; }
.location-list span { color: var(--muted); }
.location-list strong { color: var(--indigo); font-size: 22px; }
.market-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.market-strip span { text-align: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; font-weight: 800; }
.compliance-card { padding: 36px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.company-table { margin: 0; display: grid; gap: 0; }
.contact-section {
  position: relative;
  background: url('assets/lilylife-products.jpg') center center/cover no-repeat;
  z-index: 1;
  min-height: 600px;
  height: 125%;
  display: flex;
  align-items: center;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 38, 110, 0.5);
  z-index: 1;
}
.contact-card {
  position: relative;
  z-index: 2;
  background: rgba(12, 12, 44, 0.18);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  box-shadow: 0 8px 40px 0 rgba(16,24,40,0.10);
  padding: 64px 32px 48px 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card .eyebrow {
  color: #fff;
  opacity: 0.85;
  margin-bottom: 18px;
}
.contact-card h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 32px;
}
.email-link {
  display: inline-flex;
  padding: 18px 32px;
  background: #fff;
  color: #3730a3;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.25rem;
  margin-top: 18px;
  box-shadow: 0 2px 12px 0 rgba(16,24,40,0.10);
}
@media (max-width: 900px) {
  .contact-section, .contact-card {
    min-height: 400px;
    padding: 32px 12px;
    max-width: 100%;
  }
}
.operations-section p { color: var(--muted); font-size: 18px; }
.locations-card { padding: 30px; }
.location-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.location-list li { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--soft); border-radius: 16px; }
.location-list span { color: var(--muted); }
.location-list strong { color: var(--indigo); font-size: 22px; }
.market-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.market-strip span { text-align: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; font-weight: 800; }
.compliance-card { padding: 36px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: start; }
.company-table { margin: 0; display: grid; gap: 0; }
.site-footer { padding: 38px 0; background: #0b1020; color: #cbd5e1; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: white; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 860px) {
  .nav { height: auto; padding: 18px 0; align-items: flex-start; }
  .nav-links { display: none; }
  .hero-grid, .two-col, .operations-grid, .compliance-card { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 52px; }
}

.about-section {
  position: relative;
  background: url('assets/lilylife-production.jpg') center center/cover no-repeat;
  z-index: 1;
  min-height: 600px;
  height: 125%;
  display: flex;
  align-items: center;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.5);
  z-index: 2;
}
.about-card-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 600px;
}
.about-card {
  background: rgba(255,255,255,0.96);
  border-radius: 32px;
  padding: 56px 64px;
  box-shadow: 0 8px 40px 0 rgba(16,24,40,0.10);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.about-card .eyebrow {
  margin-bottom: 18px;
}
.about-card h2 {
  margin-bottom: 28px;
  font-size: 2.8rem;
  font-weight: 800;
}
.about-card p {
  font-size: 1.18rem;
  color: #475467;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .about-card {
    padding: 32px 12px;
    max-width: 100%;
  }
  .about-section, .about-card-wrapper {
    min-height: 400px;
  }
}
