/* ============================================================
   Breit Ideas Incorporated — breitideasinc.com
   styles v0.2 — mobile-first
   ============================================================ */

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

:root {
  --bi-blue: #1AABEB;
  --bi-blue-dark: #0e6fa0;
  --bi-blue-light: #e6f6fd;
  --ink: #1a1a1a;
  --ink-soft: #555;
  --ruled: #e0e0dc;
  --paper: #fafaf8;
  --card-bg: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ruled);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img { height: 28px; display: block; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--ruled);
  padding: 0.5rem 0;
  z-index: 99;
}

.nav-links.open { display: flex; }

.nav-links a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--ruled);
  transition: color 0.2s;
}

.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover { color: var(--bi-blue); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--bi-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}

.btn-primary:hover { background: var(--bi-blue-dark); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--ruled);
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}

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

/* ── COMPANY HERO ── */
.company-hero {
  padding: 3rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--ruled);
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bi-blue);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--bi-blue);
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── GRADIENT CHEF HERO ── */
.gc-hero {
  background: #0b1520;
  border-bottom: 1px solid #1a2a3a;
}

.gc-hero-inner { display: flex; flex-direction: column; }

.gc-hero-left {
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.gc-badge {
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(26, 171, 235, 0.27);
  color: var(--bi-blue);
  background: rgba(26, 171, 235, 0.094);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.gc-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.25rem;
}

.gc-h2 em {
  font-style: italic;
  color: var(--bi-blue);
  font-weight: 300;
}

.gc-desc {
  font-size: 15px;
  color: #8aacbf;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.gc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pill {
  font-size: 11px;
  padding: 4px 12px;
  border: 1px solid #1e3a50;
  border-radius: 20px;
  color: #6a9ab5;
}

.gc-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1c2a;
  overflow: hidden;
}

.gc-video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── SECTIONS ── */
.section {
  padding: 3rem 1.25rem;
  border-bottom: 1px solid var(--ruled);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ruled);
}

/* ── BREITFIELD HEADER ── */
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.breitfield-title {
  font-family: 'Century Gothic', 'Futura', 'Trebuchet MS', 'Gill Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.19em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.breitfield-sub { font-size: 13px; color: var(--ink-soft); }

.made-in-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--ruled);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 12px;
  color: var(--ink-soft);
  width: fit-content;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--ruled);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.15s;
}

.product-card:hover {
  border-color: var(--bi-blue);
  transform: translateY(-2px);
}

.product-thumb {
  aspect-ratio: 1;
  background: var(--bi-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--bi-blue);
  font-style: italic;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info { padding: 0.75rem; }
.product-name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.product-meta { font-size: 12px; color: var(--ink-soft); }
.product-price { font-size: 13px; color: var(--bi-blue); font-weight: 500; margin-top: 4px; }

.section-footer { margin-top: 1.75rem; text-align: center; }

.link-out {
  font-size: 13px;
  color: var(--bi-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.link-out:hover { border-color: var(--bi-blue); }

/* ── FOOTER ── */
footer {
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--ruled);
}

.footer-tagline { font-style: italic; }
.footer-version { font-size: 11px; color: var(--ink-soft); opacity: 0.5; margin-left: 0.5rem; }
footer a { color: var(--bi-blue); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ============================================================
   TABLET — 640px+
   ============================================================ */
@media (min-width: 640px) {
  nav { padding: 1.25rem 2rem; }
  .nav-logo img { height: 32px; }
  .company-hero { padding: 3.5rem 2rem 3rem; }
  .section { padding: 3.5rem 2rem; }
  footer { padding: 2rem; flex-direction: row; align-items: center; justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .gc-hero-left { padding: 3rem 2rem; }
  .gc-hero-right { padding: 0 2rem 3rem; }
}

/* ============================================================
   DESKTOP — 900px+
   ============================================================ */
@media (min-width: 900px) {

  .nav-toggle { display: none; }
  nav { padding: 1.25rem 3rem; }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a { padding: 0; border: none; font-size: 14px; }
  .nav-cta { padding: 0.5rem 1.25rem; margin: 0; border-radius: 6px; }

  .company-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 3rem 3.5rem;
  }

  .company-hero-right { max-width: 360px; }

  .gc-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    flex-direction: unset;
  }

  .gc-hero-left {
    padding: 4rem 3rem;
    border-right: 1px solid #1e3040;
    justify-content: center;
  }

  .gc-hero-right { overflow: hidden; }

  .section { padding: 4.5rem 3rem; }

  .section-header-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .product-info { padding: 0.875rem 1rem; }
  footer { padding: 2.5rem 3rem; }
}
