: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;
  }
}