/* css/typography.css — Official Belanto Brand Typography System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Base Body Typography (Belanto Brand Modern Sans) */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings Hierarchy (Belanto High-Contrast Luxury Serif Wordmark Font) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: var(--space-6);
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

h5 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}

h6 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Italic Accents inside Headings */
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-weight: 400;
}

/* Paragraphs & Lead Copy */
p {
  margin-bottom: var(--space-4);
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

.lead-text,
.hero-desc,
.showcase-desc,
.bento-desc {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Text Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-accent { color: var(--color-accent) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-inverse { color: var(--color-text-dark-theme) !important; }

/* Subtitle & Eyebrow Badges */
.subtitle,
.prem-label,
.export-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--color-primary);
  border: 1px solid rgba(26, 86, 104, 0.22);
  background: rgba(26, 86, 104, 0.05);
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: var(--space-4);
}

.subtitle-dark {
  color: var(--color-accent);
  border-color: rgba(70, 156, 118, 0.3);
  background: rgba(70, 156, 118, 0.1);
}

/* Buttons & Navigation Typography Standard */
.btn,
.nav-link,
.bento-link,
.pc-btn,
.showcase-nav-btn {
  font-family: var(--font-body);
}

.btn {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* Form Typography Standard */
.input-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-field {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
}

/* Media Query Fine-Tuning for Headings */
@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
}
