:root {
  --navy: #0b1f3f;
  --blue: #0f3d8a;
  --blue-light: #1a56d6;
  --green: #3fa65b;
  --green-dark: #2f8046;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #16233a;
  --muted: #5b6b82;
  --border: #e4e9f1;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 63, 0.08);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; }

p { margin: 0 0 1em; color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  margin-right: auto;
}

.brand strong { color: var(--blue); }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

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

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-small { padding: 9px 18px; font-size: 0.9rem; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 61, 138, 0.25);
}

.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 100px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(63, 166, 91, 0.35), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--blue) 70%);
  z-index: -1;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
}

.hero .eyebrow { color: #a9e0b7; }

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.eyebrow-center { text-align: center; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.section-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

.flags-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.flags-badge img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.9;
}

.flags-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.about-stats {
  display: grid;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
}

/* Brand cards */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 31, 63, 0.12);
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.brand-card h3 { font-size: 1.15rem; margin-bottom: 6px; }

.brand-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(15, 61, 138, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}

.brand-tag--food {
  color: var(--green-dark);
  background: rgba(63, 166, 91, 0.12);
}

.brand-card p { flex-grow: 1; font-size: 0.95rem; }

.brand-card > a {
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}

.brand-card > a:hover { text-decoration: underline; }

.brand-note {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 20px;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.value-card h3 { font-size: 1.05rem; }
.value-card p { font-size: 0.92rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.brand--footer { color: #fff; margin-bottom: 12px; }
.brand--footer strong { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }

.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    padding: 20px 24px;
  }

  .hero { padding: 100px 0 70px; }
  .section { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; }
}
