/*
Theme Name:   Borges Digital
Theme URI:    https://borges.digital
Description:  Child theme for Borges' personal site — based on Astra
Author:       Borges
Author URI:   https://borges.digital
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  borges-digital
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS — borges.digital brand identity
   ═══════════════════════════════════════════════ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #1E3A5F;
  --navy-light: #243B55;
  --blue:       #2563EB;
  --blue-lt:    #DBEAFE;
  --blue-dim:   #93C5FD;
  --white:      #FFFFFF;
  --off:        #F8FAFC;
  --s100:       #F1F5F9;
  --s200:       #E2E8F0;
  --s300:       #CBD5E1;
  --s400:       #94A3B8;
  --s500:       #64748B;
  --s700:       #334155;
  --s900:       #0F172A;
  --green:      #22C55E;

  --font-display: 'Syne', sans-serif;
  --font-sans:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:  12px;
  --radius-sm: 8px;
}

/* ═══════════════════════════════════════════════
   GLOBAL RESETS & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans) !important;
  background: var(--off) !important;
  color: var(--s900) !important;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
  color: var(--navy) !important;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p, li, td, th {
  font-family: var(--font-sans) !important;
  font-size: 15px;
  line-height: 1.75;
  color: var(--s700);
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-mid); }

code, pre, .wp-block-code {
  font-family: var(--font-mono) !important;
}
code {
  background: var(--s100);
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13.5px;
}
pre, .wp-block-code {
  background: var(--navy) !important;
  color: var(--blue-dim) !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  overflow-x: auto;
}

/* ═══════════════════════════════════════════════
   HEADER / NAV — override Astra
   ═══════════════════════════════════════════════ */
#masthead,
.site-header,
.ast-primary-header-bar {
  background: rgba(248, 250, 252, 0.88) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  transition: background .3s !important;
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.97) !important;
}

/* Logo text */
.ast-site-identity .site-title,
.ast-site-identity .site-title a {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  letter-spacing: -0.02em !important;
}

/* Nav links */
.ast-nav-menu > li > a,
.main-navigation ul li a {
  font-family: var(--font-sans) !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: var(--s500) !important;
  transition: color .2s !important;
}
.ast-nav-menu > li > a:hover,
.ast-nav-menu > li.current-menu-item > a {
  color: var(--navy) !important;
}
.ast-nav-menu > li.current-menu-item > a {
  font-weight: 500 !important;
}

/* ═══════════════════════════════════════════════
   LAYOUT / CONTAINER
   ═══════════════════════════════════════════════ */
.ast-container,
.entry-content,
.site-content .ast-container {
  max-width: 1200px !important;
}

/* Full-width page template */
.page-template-full-width .site-content,
.page-template-full-width .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ═══════════════════════════════════════════════
   BUTTONS — global styles
   ═══════════════════════════════════════════════ */
.wp-block-button__link,
.btn-bd,
button[type="submit"],
input[type="submit"] {
  font-family: var(--font-sans) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  cursor: pointer;
  transition: all .2s !important;
  letter-spacing: -0.01em;
}
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* Dark button variant */
.btn-dark {
  background: var(--navy) !important;
  color: var(--white) !important;
}
.btn-dark:hover {
  opacity: .85 !important;
}

/* ═══════════════════════════════════════════════
   HOME — HERO SECTION
   ═══════════════════════════════════════════════ */
.bd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}
.bd-hero__left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.bd-hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.bd-hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 65%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.bd-hero__content { position: relative; z-index: 1; }

.bd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-dim);
  margin-bottom: 1.5rem;
}
.bd-pulse-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: bdpulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes bdpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.bd-hero__h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(3rem, 4.5vw, 4.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.04em !important;
  color: var(--white) !important;
  line-height: 1.0 !important;
  margin-bottom: 1.5rem !important;
}
.bd-hero__h1 em {
  color: var(--blue) !important;
  font-style: normal;
}
.bd-hero__desc {
  font-size: 15px;
  color: var(--s400);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2rem;
}
.bd-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 2.5rem;
}
.bd-htag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
}
.bd-htag--accent {
  border-color: rgba(37,99,235,.5);
  color: var(--blue-dim);
}
.bd-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.bd-btn--primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .2s;
  letter-spacing: -.01em;
}
.bd-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  color: var(--white) !important;
}
.bd-btn--ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.75) !important;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: all .2s;
}
.bd-btn--ghost:hover {
  border-color: rgba(255,255,255,.4);
  color: var(--white) !important;
}

.bd-hero__right {
  background: var(--off);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  gap: 1.75rem;
}
.bd-photo-wrap { position: relative; width: 200px; height: 200px; }
.bd-photo-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid var(--blue); opacity: .3;
  animation: bdspin 18s linear infinite;
}
.bd-photo-ring-2 {
  position: absolute; inset: -16px; border-radius: 50%;
  border: 1px solid var(--s300); opacity: .15;
  animation: bdspin 30s linear infinite reverse;
}
@keyframes bdspin { to { transform: rotate(360deg); } }
.bd-hero-photo {
  width: 200px !important; height: 200px !important;
  border-radius: 50% !important;
  object-fit: cover !important; object-position: center top !important;
  border: 3px solid var(--white) !important;
  box-shadow: 0 8px 40px rgba(10,22,40,.15) !important;
  position: relative; z-index: 1; display: block !important;
}
.bd-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%; max-width: 300px;
}
.bd-stat {
  background: var(--white);
  border: 1px solid var(--s200);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.bd-stat__n {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--navy); letter-spacing: -.03em; line-height: 1;
}
.bd-stat__n span { color: var(--blue); }
.bd-stat__l { font-size: 11px; color: var(--s500); margin-top: 3px; line-height: 1.4; }
.bd-sj-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--s200);
  border-radius: var(--radius); padding: 12px 16px;
  width: 100%; max-width: 300px;
}
.bd-sj-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  color: var(--blue-dim); flex-shrink: 0; letter-spacing: -.5px;
}
.bd-sj-t { font-size: 12px; font-weight: 600; color: var(--navy); }
.bd-sj-s { font-size: 10px; color: var(--s500); margin-top: 1px; }
.bd-live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════ */
.bd-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.bd-section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem) !important;
  font-weight: 800 !important; letter-spacing: -.03em !important;
  color: var(--navy) !important; line-height: 1.1 !important;
  margin-bottom: .75rem !important;
}
.bd-section-sub {
  font-size: 15px; color: var(--s500);
  max-width: 540px; line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════
   CARDS — Article / Session / Generic
   ═══════════════════════════════════════════════ */
.bd-card {
  background: var(--white);
  border: 1px solid var(--s200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.bd-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); opacity: 0; transition: opacity .2s;
}
.bd-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,22,40,.09); }
.bd-card:hover::before { opacity: 1; }

.bd-card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .2s;
}
.bd-card--dark:hover {
  background: rgba(37,99,235,.1);
  border-color: rgba(37,99,235,.3);
  transform: translateY(-2px);
}

.bd-card__cat {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.bd-card--dark .bd-card__cat { color: var(--blue-dim); }
.bd-card__title {
  font-family: var(--font-display) !important;
  font-size: 15px !important; font-weight: 700 !important;
  color: var(--navy) !important; line-height: 1.3 !important;
  margin-bottom: .6rem; flex: 1;
}
.bd-card--dark .bd-card__title { color: var(--white) !important; }
.bd-card__excerpt { font-size: 13px; color: var(--s500); line-height: 1.6; margin-bottom: 1rem; }
.bd-card--dark .bd-card__excerpt { color: var(--s400); }
.bd-card__meta {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--s400);
  display: flex; align-items: center; gap: 6px;
  padding-top: .75rem; border-top: 1px solid var(--s100);
  margin-top: auto;
}
.bd-card__dot { width: 3px; height: 3px; background: var(--s300); border-radius: 50%; }
.bd-ep-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500; letter-spacing: .08em;
  color: var(--blue-dim); display: block; margin-bottom: .75rem;
}

/* ═══════════════════════════════════════════════
   DARK SECTION WRAPPER
   ═══════════════════════════════════════════════ */
.bd-dark-section {
  background: var(--navy);
  padding: 5rem;
}
.bd-dark-section .bd-eyebrow { color: var(--blue-dim); }
.bd-dark-section .bd-section-title { color: var(--white) !important; }
.bd-dark-section .bd-section-sub { color: var(--s400); }

/* ═══════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════ */
.bd-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bd-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bd-strip-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.bd-strip-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.02em;
}
.bd-see-all {
  font-size: 13px; font-weight: 500;
  color: var(--blue); text-decoration: none;
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.bd-see-all:hover { gap: 8px; color: var(--blue); }

/* ═══════════════════════════════════════════════
   SINGLE POST (Articles, Sessions, Meetups)
   ═══════════════════════════════════════════════ */
.bd-article-hero {
  background: var(--navy);
  padding: 4rem 5rem;
}
.bd-article-hero .bd-eyebrow { color: var(--blue-dim); }
.entry-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
  font-weight: 800 !important; letter-spacing: -.03em !important;
  color: var(--white) !important; line-height: 1.1 !important;
  margin-bottom: .5rem !important;
}
.bd-post-meta {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--s400);
  display: flex; gap: 1rem; align-items: center;
  margin-top: .75rem;
}
.entry-content {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 3.5rem 2rem !important;
}
.entry-content h2 {
  font-size: 1.4rem !important; font-weight: 700 !important;
  color: var(--navy) !important; margin: 2.5rem 0 1rem !important;
  letter-spacing: -.02em !important;
}
.entry-content p { font-size: 16px !important; line-height: 1.8 !important; color: var(--s700) !important; margin-bottom: 1.25rem !important; }
.entry-content ul li { font-size: 16px !important; line-height: 1.8 !important; color: var(--s700) !important; }
.entry-content blockquote {
  border-left: 3px solid var(--blue) !important;
  padding: .75rem 1.25rem !important;
  background: var(--blue-lt) !important;
  border-radius: 0 8px 8px 0 !important;
  margin: 1.5rem 0 !important;
  font-style: italic !important;
  color: var(--navy-mid) !important;
}

/* ═══════════════════════════════════════════════
   POST ARCHIVE (Articles list, Sessions list)
   ═══════════════════════════════════════════════ */
.bd-archive-hero {
  background: var(--navy);
  padding: 4rem 5rem 3rem;
}
.bd-archive-hero .bd-eyebrow { color: var(--blue-dim); }
.bd-archive-hero .bd-section-title { color: var(--white) !important; }
.bd-archive-hero .bd-section-sub { color: var(--s400); margin-bottom: 0; }

.bd-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 2.5rem 5rem;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.bd-about-hero {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px; overflow: hidden;
}
.bd-about-hero__left {
  padding: 4rem 4rem 4rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.bd-about-hero__right {
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 3rem; overflow: hidden;
}
.bd-about-photo-frame {
  width: 260px; height: 310px;
  border-radius: 16px 16px 0 0; overflow: hidden;
  border: 2px solid rgba(37,99,235,.3);
}
.bd-about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Timeline / Experience */
.bd-xp-item {
  display: flex; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--s100);
}
.bd-xp-item:last-child { border-bottom: none; }
.bd-xp-dot {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-top: 2px;
}
.bd-xp-dot--now { background: var(--blue-lt); border: 2px solid var(--blue); }
.bd-xp-dot--past { background: var(--s100); border: 2px solid var(--s200); }
.bd-xp-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.bd-xp-co { font-size: 12px; color: var(--s500); margin-top: 2px; }
.bd-xp-date { font-size: 11px; color: var(--blue); font-family: var(--font-mono); margin-top: 4px; }

/* Skills */
.bd-skill-tag {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
  background: var(--s100); color: var(--s700);
  border: 1px solid var(--s200); margin: 3px;
}
.bd-skill-tag--java { background: var(--blue-lt); color: #1d4ed8; border-color: #bfdbfe; }

/* Certs */
.bd-cert-item {
  background: var(--white); border: 1px solid var(--s200);
  border-radius: 9px; padding: 12px 14px;
  font-size: 12.5px; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.bd-cert-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   CONTACT STRIP
   ═══════════════════════════════════════════════ */
.bd-contact-strip {
  background: var(--navy);
  padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.bd-contact-strip .bd-section-title { color: var(--white) !important; font-size: 1.6rem !important; margin-bottom: .5rem !important; }
.bd-contact-strip p { color: var(--s400); margin: 0; }
.bd-contact-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.bd-btn--contact {
  background: var(--blue); color: var(--white) !important;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  padding: 10px 22px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.bd-btn--contact:hover { background: #1d4ed8; color: var(--white) !important; }
.bd-btn--contact-outline {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.8) !important;
  font-family: var(--font-sans); font-size: 13px; font-weight: 400;
  padding: 10px 22px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none; transition: all .2s;
}
.bd-btn--contact-outline:hover { background: rgba(255,255,255,.14); color: var(--white) !important; }

/* ═══════════════════════════════════════════════
   FOOTER — override Astra
   ═══════════════════════════════════════════════ */
.site-footer,
#colophon {
  background: var(--s900) !important;
  color: var(--s500) !important;
  padding: 2rem 5rem !important;
}
.site-footer a,
#colophon a { color: var(--s500) !important; transition: color .2s !important; }
.site-footer a:hover,
#colophon a:hover { color: rgba(255,255,255,.7) !important; }
.site-footer .site-info { color: var(--s500) !important; font-size: 12px !important; }
.ast-footer-copyright { color: var(--s500) !important; font-size: 12px !important; }

/* ═══════════════════════════════════════════════
   LANGUAGE TOGGLE (Custom HTML widget)
   ═══════════════════════════════════════════════ */
.bd-lang-pill {
  display: flex; background: var(--s100);
  border-radius: 20px; padding: 3px;
}
.bd-lang-btn {
  font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 16px;
  border: none; cursor: pointer; background: transparent;
  color: var(--s500); font-family: var(--font-sans); transition: all .2s;
}
.bd-lang-btn.active {
  background: var(--white); color: var(--navy);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */
.bd-white-section { background: var(--white); padding: 4rem 5rem; }
.bd-off-section  { background: var(--off);   padding: 4rem 5rem; }
.bd-fade { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.bd-fade.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .bd-hero, .bd-about-hero { grid-template-columns: 1fr; }
  .bd-hero__left { padding: 3.5rem 2rem; }
  .bd-hero__right { padding: 2.5rem 2rem; }
  .bd-about-hero__right { display: none; }
  .bd-grid-3, .bd-grid-2, .bd-archive-grid { grid-template-columns: 1fr; }
  .bd-dark-section, .bd-white-section, .bd-off-section,
  .bd-contact-strip, .bd-archive-hero, .bd-article-hero,
  .entry-content { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .bd-contact-strip { flex-direction: column; align-items: flex-start; }
  .site-footer, #colophon { padding: 1.5rem !important; }
}
