/* ============================================================
   BBVG — Baumann Business Ventures Group
   styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ---- Custom Properties ---- */
:root {
  --c-bg-top:    #050c1c;
  --c-bg-mid:    #0a1e4a;
  --c-bg-deep:   #0d3880;
  --c-bg-bright: #1868d0;
  --c-bg-sky:    #1e8ae0;

  --c-accent:    #5cc4ff;
  --c-gold:      #d4a53c;
  --c-white:     #ffffff;
  --c-text:      #dbeeff;
  --c-muted:     rgba(219, 238, 255, 0.62);

  --glass:        rgba(6, 18, 54, 0.58);
  --glass-border: rgba(92, 196, 255, 0.2);

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --r:      14px;
  --r-sm:    7px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --glow:   0 0 24px rgba(92, 196, 255, 0.35);
  --t:      0.25s ease;
  --max-w:  1100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: var(--c-text);
  background: linear-gradient(155deg,
    var(--c-bg-top)    0%,
    var(--c-bg-mid)    30%,
    var(--c-bg-deep)   58%,
    var(--c-bg-bright) 80%,
    var(--c-bg-sky)    100%);
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }
ul  { list-style: none; }

/* ---- Accessibility ---- */
.skip-link {
  position: absolute;
  top: -999px; left: 1rem;
  padding: 0.5rem 1.2rem;
  background: var(--c-gold);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--t);
}
.skip-link:focus { top: 0.75rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2.5px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---- Header ---- */
header {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(180deg, rgba(3,6,16,0.97) 0%, rgba(8,16,42,0.94) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-link {
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -3px;
  text-shadow: 0 0 30px rgba(92,196,255,0.5), 0 0 70px rgba(92,196,255,0.18);
  line-height: 0.9;
}

.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.company-name {
  font-family: var(--font-head);
  font-size: clamp(0.58rem, 1.25vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Nav ---- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 1.1rem;
  background: linear-gradient(145deg, #0d4fad, #1a6dd4);
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid rgba(92,196,255,0.25);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: all var(--t);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  background: linear-gradient(145deg, #1a6dd4, #22a0e8);
  border-color: rgba(92,196,255,0.55);
  box-shadow: var(--glow), 0 4px 16px rgba(0,0,0,0.35);
  transform: translateY(-1px);
  outline: none;
}

.main-nav a[aria-current="page"] {
  cursor: default;
  background: linear-gradient(145deg, #1e78dc, #26a8f0);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(92,196,255,0.35);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Page content wrapper ---- */
.page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ---- Section label ---- */
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  min-height: 290px;
}

/* Each layer crossfades — JS swaps on nav hover (all pages) */
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.hero-img.active { opacity: 1; }

/*
  Hero photos — Pexels CDN (free licence, credit not required for embeds).
  Multiple backgrounds: photo on top, gradient fallback behind.
  Photo IDs: default=29116986, companies=9492553, grow=31248608, about=8445729
*/
.hero-img-default {
  background-image: url('https://images.pexels.com/photos/29116986/pexels-photo-29116986.jpeg?auto=compress&cs=tinysrgb&w=1200'),
                    linear-gradient(160deg, #0c2850 0%, #1a5898 55%, #2272b8 100%);
  background-size: cover, cover;
  background-position: center, center;
}
.hero-img-companies {
  background-image: url('https://images.pexels.com/photos/9492553/pexels-photo-9492553.jpeg?auto=compress&cs=tinysrgb&w=1200'),
                    linear-gradient(160deg, #0a2040 0%, #163870 55%, #1c60a0 100%);
  background-size: cover, cover;
  background-position: center, center;
}
.hero-img-grow {
  background-image: url('https://images.pexels.com/photos/31248608/pexels-photo-31248608.jpeg?auto=compress&cs=tinysrgb&w=1200'),
                    linear-gradient(150deg, #0c1e38 0%, #1a4060 42%, #1a60a8 72%, #a04010 100%);
  background-size: cover, cover;
  background-position: center, center;
}
.hero-img-about {
  background-image: url('https://images.pexels.com/photos/8445729/pexels-photo-8445729.jpeg?auto=compress&cs=tinysrgb&w=1200'),
                    linear-gradient(160deg, #060e28 0%, #0c2860 55%, #1a4888 100%);
  background-size: cover, cover;
  background-position: center, center;
}

.hero-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(3,8,24,0.88) 0%, transparent 100%);
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

/* Right-side text panel */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-text h1,
.hero-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.hero-text p {
  color: var(--c-text);
  font-size: clamp(0.9rem, 1.7vw, 1.05rem);
  line-height: 1.78;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #1868d0, #1e90e8);
  color: var(--c-white);
  border-color: rgba(92,196,255,0.4);
  box-shadow: 0 4px 16px rgba(24,104,208,0.4);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #1e90e8, #30b0f8);
  box-shadow: var(--glow), 0 6px 20px rgba(24,104,208,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-accent);
  border-color: rgba(92,196,255,0.45);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(92,196,255,0.12);
  border-color: var(--c-accent);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* ---- Sector grid (home) ---- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.9rem;
}

.sector-card {
  border-radius: var(--r);
  padding: 1.25rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--t);
  text-decoration: none;
  color: inherit;
}
.sector-card:hover {
  background: rgba(24,104,208,0.22);
  transform: translateY(-4px);
}
.sector-icon {
  width: 38px; height: 38px;
  margin: 0 0 0.65rem;
  color: var(--c-accent);
}
.sector-icon svg { width: 100%; height: 100%; }
.sector-name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
}

/* ---- Global impact (shared footer section) ---- */
.global-impact {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow);
}
.globe-wrap {
  flex-shrink: 0;
  width: clamp(68px, 10vw, 96px);
  color: var(--c-accent);
  filter: drop-shadow(0 0 10px rgba(92,196,255,0.4));
}
.globe-wrap svg { width: 100%; height: auto; }
.global-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.4rem;
}
.global-text p {
  color: var(--c-text);
  font-size: clamp(0.9rem, 1.7vw, 1.02rem);
  line-height: 1.75;
}

/* ---- Company card thumbnail (original site GIF slices, float right) ---- */
.card-thumb {
  float: right;
  width: 72px;
  height: 72px;
  object-fit: cover;
  margin: 0 0 0.5rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(92, 196, 255, 0.25);
  opacity: 0.92;
}

/* ---- Companies page: company cards ---- */
.companies-intro {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
}
.companies-intro p {
  color: var(--c-text);
  font-size: clamp(0.92rem, 1.8vw, 1.06rem);
  line-height: 1.78;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.company-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 1.75rem;
  overflow: hidden;
  transition: all var(--t);
  text-decoration: none;
  color: inherit;
}
.company-card:hover {
  background: rgba(24,104,208,0.28);
  border-color: rgba(92,196,255,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.company-card h2 {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.4rem;
}
.company-card p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.card-arrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  transition: gap var(--t);
}
.card-arrow::after { content: '→'; }
.company-card:hover .card-arrow { gap: 0.65rem; }

/* ---- Grow page: opportunity cards ---- */
.grow-intro {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
}
.grow-intro p {
  color: var(--c-text);
  font-size: clamp(0.92rem, 1.8vw, 1.06rem);
  line-height: 1.78;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.opp-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--t);
}
.opp-card:hover {
  background: rgba(24,104,208,0.28);
  border-color: rgba(92,196,255,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.opp-icon {
  width: 44px; height: 44px;
  color: var(--c-accent);
}
.opp-icon svg { width: 100%; height: 100%; }
.opp-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--c-accent);
}
.opp-card p {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.72;
  flex: 1;
}

/* ---- About / People / Philosophy text blocks ---- */
.text-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.text-card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.text-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: var(--c-white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.text-card p {
  color: var(--c-text);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.text-card p:last-child { margin-bottom: 0; }

.about-sub-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* People grid */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}
.person-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--t);
}
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(92,196,255,0.45);
  background: rgba(24,104,208,0.28);
}
.person-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1868d0, #5cc4ff);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-white);
  border: 2px solid rgba(92,196,255,0.3);
}
.person-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.2rem;
}
.person-title {
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.85rem;
}
.person-bio {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.68;
}

/* Philosophy values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.value-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: all var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: rgba(24,104,208,0.28);
  border-color: rgba(92,196,255,0.45);
}
.value-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(92,196,255,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.68;
}

/* ---- Footer ---- */
footer {
  background: linear-gradient(180deg, rgba(3,6,16,0.9) 0%, rgba(3,6,16,0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 2.5rem 1.5rem;
  margin-top: 1rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: -1px;
  text-decoration: none;
  text-shadow: 0 0 16px rgba(92,196,255,0.4);
}
.footer-divider {
  width: 60px; height: 1px;
  background: var(--glass-border);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--c-white); }
.footer-contact {
  display: flex;
  gap: 0.75rem 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact a {
  color: var(--c-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--c-white); }
.footer-sep { color: var(--glass-border); }
.footer-legal {
  font-size: 0.74rem;
  color: var(--c-muted);
  max-width: 680px;
  line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img-wrap { min-height: 220px; }

  .global-impact {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0.75rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    justify-content: center;
    padding: 0.55rem 1rem;
  }

  .header-inner { flex-wrap: wrap; }

  .text-card      { padding: 1.75rem; }
  .companies-intro,
  .grow-intro     { padding: 1.75rem; }

  .hero-cta { flex-direction: column; }
  .btn      { width: 100%; }
}

@media (max-width: 480px) {
  .sectors-grid    { grid-template-columns: repeat(3, 1fr); }
  .companies-grid  { grid-template-columns: 1fr; }
  .people-grid     { grid-template-columns: 1fr; }
  .opportunity-grid{ grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .page-content    { padding: 1.25rem 1rem 2.5rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-img { transition: none; }
}
