/* BDKM LLC — the-bdkm.com */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary — Dark Navy */
  --primary: #1E293B;
  --primary-light: #334155;
  --primary-dark: #0F172A;
  --primary-surface: #F1F5F9;

  /* Accent — Warm Amber */
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-surface: #FFFBEB;

  /* Surfaces */
  --scaffold: #FAFAFA;
  --card: #FFFFFF;
  --card-alt: #F8FAFC;
  --surface: #E2E8F0;

  /* Text */
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--scaffold);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

/* --- Layout --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-brand svg { flex-shrink: 0; }
.nav-brand span {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--primary); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.hero-centered {
  text-align: center;
  padding: 4rem 0 3rem;
}
.hero-centered h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-centered p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-surface);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-surface); }
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}
.btn-accent:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

/* --- Section --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--card-alt); }
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.value-icon.amber { background: var(--accent-surface); }
.value-icon.slate { background: var(--primary-surface); }
.value-icon.green { background: #D1FAE5; }
.value-icon.purple { background: #EDE9FE; }
.value-icon.blue { background: #DBEAFE; }
.value-icon.pink { background: #FCE7F3; }
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Product Card --- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.product-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
}
.product-card-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.product-card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.product-card-badge {
  display: inline-flex;
  background: #D1FAE5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.product-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-links a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.2s;
}
.product-links a:hover { color: var(--accent-light); text-decoration: underline; }

/* --- Coming Soon Card --- */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.coming-soon-card {
  background: var(--card-alt);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.coming-soon-card .coming-badge {
  display: inline-flex;
  background: var(--primary-surface);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.coming-soon-card .coming-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.coming-soon-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.coming-soon-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-accent {
  background: var(--accent);
  color: white;
}
.cta-banner .btn-accent:hover {
  background: var(--accent-light);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-surface);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }

/* --- About Page — Story --- */
.story-section {
  padding: 4rem 0;
}
.story-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.story-section p:first-of-type::first-letter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  float: left;
  margin-right: 6px;
  line-height: 1;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}
.footer-brand span {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}
.footer-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Legal Pages --- */
.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-surface);
}
.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.legal-page p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.legal-page ul, .legal-page ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--text-secondary);
}
.legal-page li { margin-bottom: 0.4rem; }
.legal-page strong { color: var(--text); }
.legal-page a {
  color: var(--accent);
  text-decoration: none;
}
.legal-page a:hover { text-decoration: underline; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.92rem;
}
.legal-page th {
  background: var(--primary);
  color: white;
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-weight: 600;
}
.legal-page th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.legal-page th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.legal-page td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
}
.legal-page tr:nth-child(even) { background: var(--card-alt); }
.legal-page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--scaffold);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .nav-links.active li { padding: 0.5rem 0; }
  .nav-toggle { display: block; }

  .hero { padding: 3rem 0 2rem; }
  .hero-inner { flex-direction: column; gap: 2.5rem; text-align: center; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-centered h1 { font-size: 2rem; }

  .section-header h2 { font-size: 1.75rem; }

  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-card-image { margin: 0 auto; }
  .product-links { justify-content: center; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-direction: column; gap: 1.5rem; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .values-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 1.5rem; }
}
