*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-secondary: #6e6e73;
  --ink-tertiary: #a1a1a6;
  --border: rgba(0,0,0,0.09);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --nav-h: 52px;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ease: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(245,245,247,0.85);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 32px; height: var(--nav-h);
  gap: 0;
}

.logo {
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--ink); text-decoration: none;
  margin-right: 28px; flex-shrink: 0;
}

nav {
  display: flex; align-items: center; gap: 0; flex: 1;
}

nav a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 0 13px;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: -0.1px;
}

nav a:hover { color: var(--ink); }
nav a.active { color: var(--ink); border-bottom-color: var(--ink); }

.header-inventory {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 16px; border-radius: 22px;
  background: var(--ink); color: #fff;
  font-size: 12px; font-weight: 500;
  text-decoration: none; letter-spacing: -0.1px;
  transition: opacity 0.2s;
}
.header-inventory:hover { opacity: 0.78; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 480px; overflow: hidden;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.08) 65%);
  display: flex; align-items: center; padding: 0 80px;
}
.hero-text h1 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700;
  letter-spacing: -1.5px; line-height: 1.1;
  color: #fff; max-width: 480px;
}
.hero-text p {
  color: rgba(255,255,255,0.82);
  margin-top: 14px; font-size: 17px; font-weight: 500;
  max-width: 400px; line-height: 1.6; letter-spacing: -0.2px;
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  max-width: 1100px; margin: 0 auto; padding: 60px 32px 100px;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 36px;
}
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-secondary); margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  letter-spacing: -1px; color: var(--ink); line-height: 1.1;
}
.section-header p {
  font-size: 16px; color: var(--ink-secondary); line-height: 1.7;
  max-width: 620px; margin-top: 10px; font-weight: 500;
}

/* ── PAGE BANNER (top of inner pages) ── */
.page-banner {
  text-align: center; padding: 56px 32px 28px;
  background: var(--bg);
}
.page-banner .eyebrow {
  font-size: 16px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-secondary); margin-bottom: 10px;
}
.page-banner h1 {
  font-size: clamp(29px, 5vw, 53px); font-weight: 700;
  letter-spacing: -2px; line-height: 1.05; color: var(--ink);
}

/* ── DIVIDER ── */
.rule {
  border: none; border-top: 1px solid var(--border); margin: 0;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.card-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.card-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: default;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.card img {
  width: 100%; display: block;
  object-fit: cover; aspect-ratio: 4/3;
}
.card-body {
  padding: 14px 16px 16px;
}
.card-title {
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.1px; line-height: 1.3;
}
.card-sub {
  font-size: 12px; color: var(--ink-secondary); margin-top: 4px; line-height: 1.5;
}

/* ── FEATURED CARD (2-col large) ── */
.card-featured {
  background: var(--surface); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.card-featured img {
  width: 100%; display: block; object-fit: cover; aspect-ratio: 16/9;
}
.card-featured .card-body {
  padding: 18px 20px 20px;
}
.card-featured .card-title { font-size: 17px; font-weight: 700; letter-spacing: -0.4px; }

/* ── LOGO GRID IMAGE ── */
.logo-full-img {
  width: 100%; max-width: 960px; display: block;
  margin: 0 auto 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ── PRESS GRID ── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.press-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 20px 16px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.press-card img {
  width: 100%; object-fit: contain; max-height: 130px;
  display: block; margin: 0 auto;
}
.press-card p {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-tertiary);
  margin-top: 12px;
}

/* ── FEATURE BLOCKS (home 3-col) ── */
.feature-blocks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.feature-block {
  position: relative; overflow: hidden; height: 300px;
}
.feature-block img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.feature-block:hover img { transform: scale(1.04); }
.feature-block-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  padding: 28px 20px 20px;
}
.feature-block-overlay h3 {
  font-size: 15px; font-weight: 700; letter-spacing: -0.2px;
  color: #fff; line-height: 1.2;
}
.feature-block-overlay p {
  font-size: 12px; color: rgba(255,255,255,0.78); margin-top: 3px;
}
.feature-block a { display: block; width: 100%; height: 100%; text-decoration: none; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--surface); padding: 56px 1.5in;
  text-align: left; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-strip h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  letter-spacing: -1px; color: var(--ink); margin-bottom: 24px;
  text-align: center;
}
.about-strip p {
  font-size: 17px; font-weight: 400; color: var(--ink-secondary);
  line-height: 1.8; max-width: 100%; margin: 0 0 20px;
}
.about-strip p:last-child { margin-bottom: 0; }

/* ── DIVERSITY INTRO ── */
.diversity-intro {
  background: var(--ink); padding: 56px 32px; text-align: center;
}
.diversity-intro h2 {
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  letter-spacing: -1px; color: #fff; margin-bottom: 12px;
}
.diversity-intro p {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.72); line-height: 1.7;
  max-width: 660px; margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px; text-align: center;
  color: var(--ink-tertiary); font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  header { padding: 0 20px; }
  nav a { padding: 0 9px; font-size: 12px; }
  .hero { height: 360px; }
  .hero-overlay { padding: 0 36px; }
  .feature-blocks { grid-template-columns: 1fr; }
  .feature-block { height: 220px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  header { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 6px; }
  nav { flex-wrap: wrap; }
  nav a { height: 36px; font-size: 11px; padding: 0 8px; }
  .hero { height: 280px; }
  .hero-overlay { padding: 0 20px; }
  .hero-text h1 { font-size: 24px; }
  .page-wrap { padding: 40px 16px 80px; }
  .card-grid, .card-grid-3, .card-grid-2, .card-grid-4, .press-grid { grid-template-columns: repeat(2, 1fr); }
  .page-banner { padding: 36px 16px 32px; }
}
