:root {
  --navy: #082f5b;
  --blue: #1769aa;
  --light-blue: #eaf3fb;
  --text: #17202a;
  --muted: #67717e;
  --border: #dde4ea;
  --white: #ffffff;
  --background: #f7f9fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 90%);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 260px;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
}

nav a:hover {
  color: var(--blue);
}

.hero {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, #edf6ff 0, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

h1 {
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin: 10px 0 24px;
}

h2 {
  color: var(--navy);
  font-size: 2rem;
}

.hero-text {
  max-width: 720px;
  font-size: 1.25rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: var(--navy);
}

.outlets,
.company-summary,
.about-section {
  padding: 90px 0;
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.venture-card {
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 12px;
  background: var(--white);
}

.venture-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.coming-soon {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.company-summary {
  background: var(--background);
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: 90px 0 60px;
  background: var(--background);
}

.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 700px) {
  .nav-container {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 18px;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    padding: 80px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }
}
/* Modular navigation and shop framework */
.site-nav { align-items: center; }
.nav-toggle { display:none; border:1px solid var(--border); background:var(--white); color:var(--navy); padding:9px 12px; border-radius:8px; font-weight:700; }
.cart-link { border-left:1px solid var(--border); padding-left:22px; }
.cart-count { display:inline-grid; place-items:center; min-width:22px; height:22px; margin-left:5px; border-radius:999px; background:var(--navy); color:white; font-size:.75rem; }
.button.secondary { border:1px solid var(--blue); color:var(--blue); background:transparent; margin-left:10px; }
.button.secondary:hover { background:var(--light-blue); }
.button.small { padding:9px 15px; margin-left:0; }
.text-link { color:var(--blue); font-weight:700; text-decoration:none; }
.shop-hero,.storefront-hero { padding:90px 0 70px; background:linear-gradient(135deg,var(--navy),#124f88); }
.shop-hero h1,.storefront-hero h1,.shop-hero .eyebrow,.storefront-hero .eyebrow { color:var(--white); }
.shop-hero .hero-text,.storefront-hero .hero-text { color:#dbe9f5; }
.shop-section { padding:72px 0; }
.shop-section.alt { background:var(--background); }
.storefront-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:36px; }
.storefront-card { display:grid; grid-template-columns:180px 1fr; overflow:hidden; border:1px solid var(--border); border-radius:14px; text-decoration:none; background:white; transition:.2s ease; }
.storefront-card:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(8,47,91,.10); }
.storefront-placeholder { min-height:190px; display:grid; place-items:center; padding:20px; text-align:center; background:var(--light-blue); color:var(--navy); font-weight:800; }
.storefront-copy { padding:24px; }
.storefront-copy h3 { margin-top:0; color:var(--navy); }
.storefront-copy span { color:var(--blue); font-weight:700; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:34px; }
.product-card { overflow:hidden; border:1px solid var(--border); border-radius:12px; background:white; }
.product-image-placeholder,.product-detail-image { display:grid; place-items:center; min-height:240px; background:#eef2f6; color:var(--muted); font-weight:700; }
.product-info { padding:20px; }
.product-info h3 { color:var(--navy); }
.product-category { color:var(--blue); font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.price { color:var(--navy); font-size:1.15rem; font-weight:800; }
.price.large { font-size:1.7rem; }
.breadcrumbs { display:flex; gap:9px; margin-bottom:24px; color:var(--muted); font-size:.9rem; }
.storefront-hero .breadcrumbs { color:#dbe9f5; }
.shop-toolbar { display:flex; align-items:center; justify-content:space-between; gap:20px; border-bottom:1px solid var(--border); padding-bottom:18px; }
.shop-toolbar select { padding:10px; border:1px solid var(--border); border-radius:8px; background:white; }
.product-detail { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.product-detail-image { min-height:500px; border-radius:14px; }
.product-title { font-size:clamp(2.2rem,5vw,3.7rem); }
.purchase-row { display:flex; gap:18px; align-items:end; margin:30px 0; }
.purchase-row label { display:grid; gap:6px; font-weight:700; }
.purchase-row input { width:85px; padding:12px; border:1px solid var(--border); border-radius:8px; }
.product-meta,.empty-cart { margin-top:30px; padding:28px; border:1px solid var(--border); border-radius:12px; background:var(--background); }
.empty-cart { text-align:center; padding:60px 30px; }

@media (max-width: 800px) {
  .nav-container { position:relative; flex-direction:row; }
  .nav-toggle { display:block; }
  .site-nav { display:none; position:absolute; top:100%; left:5%; right:5%; flex-direction:column; align-items:stretch; gap:0; padding:10px; border:1px solid var(--border); border-radius:10px; background:white; box-shadow:0 12px 30px rgba(0,0,0,.08); }
  .site-nav.is-open { display:flex; }
  .site-nav a { padding:12px; }
  .cart-link { border-left:0; border-top:1px solid var(--border); }
  .storefront-grid,.product-grid,.product-detail { grid-template-columns:1fr; }
  .storefront-card { grid-template-columns:1fr; }
  .product-detail-image { min-height:340px; }
  .shop-toolbar { align-items:flex-start; flex-direction:column; }
}

/* Homepage venture discovery */
.explore-section,.content-section { padding:90px 0; }
.featured-venture-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-top:40px; }
.featured-venture { overflow:hidden; border:1px solid var(--border); border-radius:18px; background:var(--white); box-shadow:0 10px 30px rgba(8,47,91,.06); }
.featured-venture-media { height:290px; display:grid; place-items:center; background:linear-gradient(145deg,#f7fbff,#eaf3fb); }
.featured-venture-media img { width:100%; height:100%; object-fit:contain; padding:30px; }
.card-media img { max-width:220px; transform:rotate(-4deg); filter:drop-shadow(0 14px 14px rgba(8,47,91,.22)); }
.wellness-media img { max-width:270px; }
.featured-venture-copy { padding:32px; }
.featured-venture-copy h3,.shop-callout h3,.content-card h3,.article-card h3 { color:var(--navy); font-size:1.5rem; margin:6px 0 12px; }
.venture-actions { display:flex; align-items:center; gap:20px; flex-wrap:wrap; margin-top:24px; }
.shop-callout { display:flex; align-items:center; justify-content:space-between; gap:30px; margin-top:32px; padding:30px 34px; border-radius:16px; background:var(--background); border:1px solid var(--border); }
.shop-callout p { margin-bottom:0; }
.shop-callout .button.secondary { flex:0 0 auto; }

/* Health & Wellness content vertical */
.wellness-hero { padding:90px 0; background:linear-gradient(135deg,#f7fbff,#eaf3fb); }
.wellness-hero-grid { display:grid; grid-template-columns:1.35fr .65fr; gap:60px; align-items:center; }
.wellness-hero h1 { font-size:clamp(2.8rem,7vw,5rem); }
.wellness-hero-icon { width:min(360px,100%); justify-self:end; }
.content-section.alt { background:var(--background); }
.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:36px; }
.content-card { display:block; padding:30px; border:1px solid var(--border); border-radius:14px; text-decoration:none; background:white; transition:.2s ease; }
.content-card:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(8,47,91,.1); }
.content-card > span:last-child { color:var(--blue); font-weight:700; }
.content-icon { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background:var(--light-blue); color:var(--navy); font-weight:800; }
.article-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:32px; }
.article-card { padding:30px; border:1px solid var(--border); border-radius:14px; background:white; }
.article-type { color:var(--blue); font-size:.75rem; font-weight:800; letter-spacing:.08em; }
.disclosure-note { padding:36px 0; border-top:1px solid var(--border); background:#fbfcfd; color:var(--muted); }
.disclosure-note strong { color:var(--navy); }
.empty-content { padding:60px 30px; border:1px solid var(--border); border-radius:14px; text-align:center; background:var(--background); }

@media (max-width:800px) {
  .featured-venture-grid,.wellness-hero-grid,.content-grid,.article-grid { grid-template-columns:1fr; }
  .wellness-hero-icon { justify-self:center; max-width:260px; }
  .shop-callout { align-items:flex-start; flex-direction:column; }
  .featured-venture-media { height:240px; }
}
