/*
Theme Name: le-prompt-theme
Theme URI: https://leprompt-ft.fr
Author: FT
Author URI: https://leprompt-ft.fr
Description: Thème pour le média Le Prompt, média d'actualités et de décryptage de l'IA et la data
Version: 1.3
Tags: leprompt, ia, data
Text Domain: leprompt
*/

/* === VARIABLES === */
:root {
  --accent:    #1A6BFF;
  --dark:      #383f4e;
  --bg:        #FFF;
  --subtitle:  #777777;
  --dark-12:   rgba(56, 63, 78, 0.12);
  --white-65:  rgba(255, 255, 255, 0.65);
  --font-sans: 'Inter', sans-serif;
  --font-serif:'Fraunces', serif;
}

/* === BASE === */
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER — overrides Bootstrap navbar-dark === */
.site-header { background-color: var(--dark) !important; }

.site-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg) !important;
  letter-spacing: -0.01em;
}
.site-logo:hover { color: var(--accent) !important; opacity: 1; }
.site-logo .logo-p { color: var(--accent); }

.site-header + * { margin-top: 40px; }

.site-tagline {
  font-size: 0.75rem;
  color: var(--white-65);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header .navbar-nav .nav-link {
  color: var(--white-65);
  font-size: 0.9375rem;
}
.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
  color: var(--bg);
}

/* Toggler icon color on dark bg */
.site-header .navbar-toggler-icon {
  filter: invert(1);
}

.btn-subscribe {
  display: inline-block;
  background: var(--dark);
  border: 1px solid var(--accent);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--accent); color: var(--bg); }

.btn-outline-nav {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--white-65);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  transition: color 0.15s;
  white-space: nowrap;
}
.btn-outline-nav:hover { color: var(--bg); }

/* === TAG / CATEGORY BADGE === */
.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  line-height: 1.6;
}

/* === META DATE === */
.post-date {
  font-size: 0.875rem;
  color: var(--subtitle);
}

/* === SINGLE ARTICLE === */
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.article-excerpt {
  font-size: 1.125rem;
  color: var(--subtitle);
  line-height: 1.75;
  margin-bottom: 32px;
}

.article-divider {
  border: none;
  border-top: 2px solid var(--accent);
  margin-bottom: 36px;
  opacity: 1;
}

/* === ARTICLE CONTENT TYPOGRAPHY === */
.entry-content {
  font-family: var(--font-sans);
}
.entry-content p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 1.4em;
}
.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s;
}
.entry-content a:hover { text-decoration-color: var(--accent); }
.entry-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin: 2.25em 0 0.75em;
  letter-spacing: -0.01em;
}
.entry-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.75em 0 0.5em;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
  color: var(--dark);
  line-height: 1.85;
}
.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
  margin: 2em 0;
  color: var(--subtitle);
  font-style: italic;
}
.entry-content img { border-radius: 6px; margin: 2em 0; }

/* === IMAGES — liste d'articles === */
.post-card-thumb {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: opacity 0.2s;
}
.post-card-img-link:hover .post-card-thumb { opacity: 0.88; }

/* === IMAGE HERO — article === */
.article-hero {
  margin: 28px 0 0;
  padding: 0;
}
.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* === IMAGES — articles liés === */
.related-card-img-wrap {
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  margin: -20px -20px 14px;
}
.related-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card-img { transform: scale(1.03); }

/* === PAYWALL GATE === */
.article-body--gated {
  position: relative;
  max-height: 340px;
  overflow: hidden;
}
.article-body--gated::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 50%, var(--bg) 100%);
  pointer-events: none;
}
.paywall-cta {
  text-align: center;
  padding: 40px 24px 0;
}
.paywall-cta p {
  font-size: 1.0625rem;
  color: var(--dark);
  margin-bottom: 20px;
}
.paywall-cta .btn-subscribe {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
}

/* === RELATED POSTS === */
.related-card {
  border: 1px solid var(--dark-12);
  border-radius: 4px;
  padding: 20px;
  transition: box-shadow 0.15s;
  text-decoration: none;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(54,55,55,0.09); }
.related-card--actu { border-color: var(--dark-12); }
.related-card-meta {
  font-size: 0.8125rem;
  color: var(--subtitle);
  margin-bottom: 10px;
}
.related-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin: 0;
}

/* === INDEX — post list === */
.page-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-12);
}
.page-header h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
}

.post-card {
  padding: 32px 0;
  border-bottom: 1px solid var(--dark-12);
}
.post-card-meta { margin-bottom: 12px; }

.post-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.post-card-title a { color: var(--dark); }
.post-card-title a:hover { color: var(--accent); }

.post-card-excerpt {
  color: var(--subtitle);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.post-card-excerpt p { margin: 0; }

/* WordPress pagination — same style as the rest */
.nav-links { display: flex; gap: 8px; }
.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--dark-12);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* =============================================
   HOMEPAGE — style Numerama
   ============================================= */

/* ── HERO SPLIT (fond sombre, image gauche + sidebar droite) ── */
.hp-split {
  background: var(--bg);
}
.hero-split-wrap {
  min-height: 480px;
}

/* Colonne gauche */
.hero-left {
  flex: 0 0 62%;
  display: flex;
  flex-direction: column;
}
.hero-img-link { display: block; overflow: hidden; flex: 1; }
.hero-main-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hero-img-link:hover .hero-main-img { transform: scale(1.03); }

.hero-caption {
  padding: 22px 28px 28px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-cat-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
}
.hero-cat-badge:hover { color: var(--accent); opacity: 0.8; }

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-main-title a { color: var(--dark); }
.hero-main-title a:hover { color: var(--accent); }
.hero-main-excerpt {
  font-size: 0.9375rem;
  color: var(--subtitle);
  line-height: 1.65;
  margin: 0;
}
.hero-main-date { font-size: 0.8125rem; color: var(--subtitle); }

/* Colonne droite */
.hero-right {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
}
.hero-side-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  flex: 1;
}
.hero-side-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.hero-side-cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-side-cat:hover { color: var(--accent); opacity: 0.8; }

.hero-side-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}
.hero-side-title a { color: var(--dark); }
.hero-side-title a:hover { color: var(--accent); }
.hero-side-date { font-size: 0.75rem; color: var(--subtitle); }

.hero-side-img-wrap { display: block; overflow: hidden; border-radius: 4px; }
.hero-side-thumb {
  width: 110px;
  height: 78px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hero-side-img-wrap:hover .hero-side-thumb { transform: scale(1.05); }

/* ── GRILLE 4 articles ── */
.hp-grid { padding: 0; }

.grid-card { display: flex; flex-direction: column; height: 100%; }
.grid-card-img-wrap {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.grid-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.grid-card-img-wrap:hover .grid-card-img { transform: scale(1.04); }
.grid-card-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.grid-card-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}
.grid-card-title a { color: var(--dark); }
.grid-card-title a:hover { color: var(--accent); }

.grid-card-excerpt {
  font-size: 0.875rem;
  color: var(--subtitle);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── LABEL catégorie (partagé) ── */
.feed-cat-label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}
.feed-cat-label:hover { color: var(--accent); opacity: 0.8; }

/* ── SECTIONS CATÉGORIE ── */
.hp-cat-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--dark-12);
}
.cat-section-header { margin-bottom: 0; }
.cat-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
  letter-spacing: -0.01em;
}
.cat-section-title:hover { color: var(--accent); }
.cat-section-more {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--subtitle);
  transition: color 0.15s;
}
.cat-section-more:hover { color: var(--accent); }

.cat-main-col { padding-right: 24px; }

.cat-main-card { display: flex; flex-direction: column; padding-right: 32px; }
.cat-main-img-wrap { display: block; overflow: hidden; border-radius: 6px; margin-bottom: 16px; }
.cat-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cat-main-img-wrap:hover .cat-main-img { transform: scale(1.03); }
.cat-main-body { display: flex; flex-direction: column; gap: 8px; }
.cat-main-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
}
.cat-main-title a { color: var(--dark); }
.cat-main-title a:hover { color: var(--accent); }
.cat-main-excerpt { font-size: 0.9375rem; color: var(--subtitle); line-height: 1.65; margin: 0; }

.cat-side-col { padding-left: 32px; }
.cat-side-item { padding: 18px 0; }
.cat-side-img-wrap { display: block; overflow: hidden; border-radius: 4px; }
.cat-side-img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cat-side-img-wrap:hover .cat-side-img { transform: scale(1.05); }
.cat-side-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}
.cat-side-title a { color: var(--dark); }
.cat-side-title a:hover { color: var(--accent); }

/* ── NEWSLETTER ── */
.hp-newsletter { background: var(--dark); padding: 88px 0; }
.newsletter-box { max-width: 540px; margin: 0 auto; }
.newsletter-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.newsletter-sub {
  font-size: 1rem;
  color: var(--white-65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.btn-subscribe--lg {
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
}

/* ── RESPONSIVE homepage ── */
@media (max-width: 991px) {
  .hero-left, .hero-right { flex: 0 0 100%; }
  .hero-left { border-right: none; }
  .hero-main-img { max-height: 320px; }
  .cat-main-col { border-right: none; border-bottom: 1px solid var(--dark-12); }
  .cat-main-card { padding-right: 0; padding-bottom: 32px; }
  .cat-side-col { padding-left: 0; }
}
@media (max-width: 575px) {
  .hero-side-thumb { width: 80px; height: 58px; }
  .cat-side-img { width: 72px; height: 52px; }
}

/* ── ANCIENNE hero (inutilisée mais gardée) ── */
.hp-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 48px;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.90) 0%,
    rgba(20, 20, 20, 0.55) 55%,
    transparent 100%
  );
}

.hero-cat-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.hero-cat-label:hover { color: var(--bg); opacity: 0.88; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-title a { color: #fff; }
.hero-title a:hover { opacity: 0.88; color: #fff; }

.hero-excerpt {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

/* ── Bande articles secondaires ── */
.hp-secondary {
  border-bottom: 1px solid var(--dark-12);
}
.hp-secondary-row {
  border-top: 3px solid var(--dark);
}
.hp-secondary-col {
  border-right: 1px solid var(--dark-12);
}
.hp-secondary-col:last-child { border-right: none; }

.feed-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feed-card-img-wrap {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}
.feed-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.feed-card-img-wrap:hover .feed-card-img { transform: scale(1.04); }

.feed-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feed-cat-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.feed-cat-label:hover { color: var(--accent); opacity: 0.8; }

.feed-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}
.feed-card-title a { color: var(--dark); }
.feed-card-title a:hover { color: var(--accent); }

/* ── Sections par catégorie ── */
.hp-cat-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--dark-12);
}

.cat-section-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
}
.cat-section-title:hover { color: var(--accent); }

.cat-section-more {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--subtitle);
  transition: color 0.15s;
}
.cat-section-more:hover { color: var(--accent); }

/* Carte principale catégorie */
.cat-main-card { display: flex; flex-direction: column; height: 100%; }
.cat-main-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
}
.cat-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cat-main-img-wrap:hover .cat-main-img { transform: scale(1.03); }

.cat-main-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cat-main-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
}
.cat-main-title a { color: var(--dark); }
.cat-main-title a:hover { color: var(--accent); }
.cat-main-excerpt {
  font-size: 0.9375rem;
  color: var(--subtitle);
  line-height: 1.65;
  margin: 0;
}

/* Cartes latérales catégorie */
.cat-side-card {
  padding: 18px 0;
}
.cat-side-card--border {
  border-bottom: 1px solid var(--dark-12);
}
.cat-side-img-wrap {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.cat-side-img {
  width: 96px;
  height: 68px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cat-side-img-wrap:hover .cat-side-img { transform: scale(1.05); }

.cat-side-body { display: flex; flex-direction: column; gap: 4px; }
.cat-side-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}
.cat-side-title a { color: var(--dark); }
.cat-side-title a:hover { color: var(--accent); }

/* ── Newsletter CTA ── */
.hp-newsletter {
  background: var(--dark);
  padding: 88px 0;
}
.newsletter-box { max-width: 540px; margin: 0 auto; }
.newsletter-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.newsletter-sub {
  font-size: 1rem;
  color: var(--white-65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.btn-subscribe--lg {
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 8px;
}

/* ── Responsive homepage ── */
@media (max-width: 767px) {
  .hp-hero { min-height: 380px; }
  .hero-title { font-size: 1.75rem; }
  .hp-secondary-col { border-right: none; border-bottom: 1px solid var(--dark-12); }
  .hp-secondary-col:last-child { border-bottom: none; }
  .cat-side-img { width: 80px; height: 58px; }
}

/* === PAGINATION HOMEPAGE === */
.hp-latest { padding-bottom: 64px; }
.hp-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--dark-12);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--dark);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.hp-pagination .page-numbers:hover,
.hp-pagination .page-numbers.current {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.hp-pagination .page-numbers.dots { border: none; pointer-events: none; }

/* === INTRO === */
.hp-intro {
  padding: 56px 0 72px;
}
.hp-intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hp-intro-sub {
  font-size: 1.125rem;
  color: var(--subtitle);
  margin: 0;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--dark-12);
  padding: 28px 0;
}
.footer-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--subtitle);
}
.site-footer .btn-outline-nav {
  color: var(--subtitle);
}
.site-footer .btn-outline-nav:hover {
  color: var(--dark);
}

/* === ANIMATIONS === */

/* Load animations — hero & intro */
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hp-intro-lead {
  animation: lp-fade-up 0.65s ease both;
}
.hero-left {
  animation: lp-fade-up 0.65s 0.08s ease both;
}
.hero-right {
  animation: lp-fade-up 0.65s 0.2s ease both;
}
.page-title {
  animation: lp-fade-up 0.55s ease both;
}

/* Scroll animations */
.lp-will-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.lp-will-animate.lp-animated {
  opacity: 1;
  transform: none;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hp-intro-lead,
  .hero-left,
  .hero-right,
  .page-title { animation: none; }
  .lp-will-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
