/* ============================================================
   Gralix Capital — shared stylesheet (multi-page, themable sections)
   navy #222552 / orange #EA5D2B
   Raleway (headings) · Open Sans (body) · Poppins (nav/labels)

   Section backgrounds are themable. Add one of these to a .band:
     (default)   dark glass on the page's dark base
     .light      light grey background, dark text, white cards
     .light.soft pure white background
     .dark-tex   dark + halftone texture (feature-v1-bg.png)
     .image-band full-bleed photo with navy overlay, white text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --navy:        #222552;
  --orange:      #EA5D2B;
  --orange-hover:#f06d3d;
  --orange-press:#d44e20;
  --bg-0:        #0a0b16;
  --maxw:        1180px;

  /* themeable, component-facing tokens (dark defaults) */
  --c-heading:    #f4f5ff;
  --c-text:       #c7cae0;
  --c-muted:      #9498b8;
  --c-muted-2:    #7e82a4;
  --c-line:       rgba(255, 255, 255, .08);
  --c-card-bg:    rgba(20, 22, 48, .55);
  --c-card-line:  rgba(255, 255, 255, .10);
  --c-card-line-h:rgba(234, 93, 43, .55);
  --c-card-shadow:0 18px 44px rgba(0, 0, 0, .45);
  --c-icon-bg:    rgba(255, 255, 255, .10);
  --c-icon-line:  rgba(255, 255, 255, .16);
  --c-icon-svg:   #fff;
  --c-input-bg:   rgba(10, 11, 22, .6);
  --c-node-bg:    #0a0b16;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Open Sans", sans-serif;
  color: var(--c-text);
  background:
    radial-gradient(1100px 720px at 82% 4%, rgba(34, 37, 82, .45), transparent 60%),
    linear-gradient(160deg, #0c0d1c 0%, var(--bg-0) 55%, #070811 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { font-family: "Raleway", sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-block; font-family: "Poppins", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }

/* ===================== SECTION THEMES ===================== */
.band { padding: 76px 0; position: relative; }
.band.tight { padding: 56px 0; }

.band.light {
  background: #f3f4f8;
  --c-heading:    #1b1d3a;
  --c-text:       #4a4e6b;
  --c-muted:      #6c7090;
  --c-muted-2:    #8a8ea8;
  --c-line:       rgba(34, 37, 82, .12);
  --c-card-bg:    #ffffff;
  --c-card-line:  rgba(34, 37, 82, .10);
  --c-card-line-h:rgba(234, 93, 43, .5);
  --c-card-shadow:0 16px 40px rgba(34, 37, 82, .13);
  --c-icon-bg:    rgba(34, 37, 82, .06);
  --c-icon-line:  rgba(34, 37, 82, .12);
  --c-icon-svg:   var(--navy);
  --c-input-bg:   #ffffff;
  --c-node-bg:    #f3f4f8;
  color: var(--c-text);
}
.band.light.soft { background: #ffffff; --c-node-bg: #ffffff; }

.band.dark-tex {
  background-color: #090a14;
  background-image:
    linear-gradient(rgba(9, 10, 20, .80), rgba(9, 10, 20, .92)),
    url("assets/feature-v1-bg.png");
  background-size: cover;
  background-position: center;
}

.band.image-band {
  background-size: cover; background-position: center;
  --c-heading: #ffffff;
  --c-text:    #e7e9f5;
  --c-muted:   #c6c9e0;
  color: var(--c-text);
}
.band.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 11, 22, .80), rgba(34, 37, 82, .74)); }
.band.image-band > * { position: relative; z-index: 1; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 13px 26px; border-radius: 5px; transition: all .28s ease; cursor: pointer; }
.btn svg { width: 15px; height: 15px; transition: transform .28s ease; }
.btn-primary { background: var(--orange); color: #fff; border: none; }
.btn-primary:hover { background: var(--orange-press); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { color: var(--c-heading); border: 1px solid var(--c-card-line); background: var(--c-card-bg); }
.btn-ghost:hover { border-color: var(--c-card-line-h); }
.band.light .btn-ghost { border-color: rgba(34, 37, 82, .22); }

/* ===================== NAV (always dark) ===================== */
.site-nav { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(8, 9, 18, .82); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: baseline; gap: 9px; font-family: "Raleway", sans-serif; }
.brand .b-mark { font-weight: 800; letter-spacing: 1px; color: #f4f5ff; font-size: 1.2rem; }
.brand .b-div { font-family: "Poppins", sans-serif; font-weight: 500; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: "Poppins", sans-serif; font-size: .84rem; color: #ffffff; position: relative; padding: 4px 0; transition: color .25s ease; }
.nav-links a:hover, .nav-links a.active { color: #f4f5ff; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange); border-radius: 2px; }
.nav-cta { font-family: "Poppins", sans-serif; font-size: .76rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--orange); padding: 9px 18px; border-radius: 4px; transition: background .25s ease; }
.nav-cta:hover { background: var(--orange-press); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; width: 42px; height: 38px; cursor: pointer; padding: 0; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: #f4f5ff; margin: 0 auto; position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ===================== HERO SLIDER (home) ===================== */
.hero-slider { position: relative; min-height: clamp(520px, 76vh, 700px); display: flex; align-items: center; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; will-change: opacity; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8, 9, 18, .92) 0%, rgba(20, 22, 48, .80) 40%, rgba(10, 11, 22, .42) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 40px 0; }
.hero-content h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.08; color: #fff; margin-bottom: 20px; }
.hero-content h1 span { color: var(--orange); }
.hero-content .lede { font-size: 1.05rem; line-height: 1.7; color: #d8daee; max-width: 600px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-content .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.hero-content .btn-ghost:hover { border-color: var(--orange-hover); }
.slide-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.slide-dots button { width: 30px; height: 4px; border-radius: 3px; border: none; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: background .3s ease; }
.slide-dots button.active { background: var(--orange); }

/* ===================== PAGE HERO (inner) ===================== */
.page-hero { padding: 64px 0 8px; }
.page-hero .crumb { font-family: "Poppins", sans-serif; font-size: .74rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-muted-2); margin-bottom: 14px; }
.page-hero .crumb a:hover { color: var(--orange); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; color: var(--c-heading); line-height: 1.12; margin-bottom: 16px; }
.page-hero h1 span, .page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { font-size: 1.02rem; color: var(--c-muted); max-width: 640px; line-height: 1.7; }

/* ===================== SECTION HEADINGS ===================== */
.sec-head { max-width: 700px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 800; line-height: 1.18; color: var(--c-heading); margin-bottom: 12px; }
.sec-head h2 em { font-style: normal; border-bottom: 3px solid var(--orange); }
.sec-head p { font-size: .98rem; color: var(--c-muted); line-height: 1.7; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===================== GRIDS ===================== */
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* summary cards */
.summary-card { position: relative; display: flex; flex-direction: column; padding: 32px 28px 28px; border-radius: 10px; border: 1px solid var(--c-card-line); background: var(--c-card-bg); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.summary-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .35s ease; }
.summary-card:hover { transform: translateY(-5px); border-color: var(--c-card-line-h); box-shadow: var(--c-card-shadow); }
.summary-card:hover::after { width: 100%; }
.summary-card .idx { font-family: "Poppins", sans-serif; font-size: 12px; letter-spacing: 2px; color: var(--c-muted-2); }
.summary-card .ico { width: 50px; height: 50px; border-radius: 50px; margin: 12px 0 16px; background: var(--c-icon-bg); border: 1px solid var(--c-icon-line); display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s; }
.summary-card .ico svg { width: 25px; height: 25px; color: var(--c-icon-svg); transition: color .3s; }
.summary-card:hover .ico { background: var(--orange); border-color: var(--orange); }
.summary-card:hover .ico svg { color: #fff; }
.summary-card h3 { font-size: 1.14rem; font-weight: 700; color: var(--c-heading); margin-bottom: 10px; }
.summary-card p { font-size: .9rem; color: var(--c-text); line-height: 1.6; margin-bottom: 18px; }
.summary-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: "Poppins", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--orange); }
.summary-card .more svg { width: 14px; height: 14px; transition: transform .3s; }
.summary-card:hover .more svg { transform: translateX(4px); }

/* step strip */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.step { position: relative; padding: 26px 18px 22px; text-align: center; border-top: 2px solid var(--c-line); }
.step::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--c-node-bg); border: 2px solid var(--orange); }
.step .n { font-family: "Raleway", sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--orange); }
.step h4 { font-size: .92rem; font-weight: 700; color: var(--c-heading); margin-top: 6px; line-height: 1.35; }

/* value props */
.value { display: flex; gap: 16px; align-items: flex-start; }
.value .v-ico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: rgba(234,93,43,.14); border: 1px solid rgba(234,93,43,.3); display: flex; align-items: center; justify-content: center; }
.value .v-ico svg { width: 22px; height: 22px; color: var(--orange); }
.value h4 { font-size: 1rem; font-weight: 700; color: var(--c-heading); margin-bottom: 6px; }
.value p { font-size: .88rem; color: var(--c-muted); line-height: 1.6; }

/* lifecycle rail */
.lifecycle { position: relative; }
.lifecycle::before { content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--orange), rgba(234,93,43,.15)); }
.stage { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 0 30px; padding: 0 0 40px; }
.stage:last-child { padding-bottom: 0; }
.stage-node { position: relative; z-index: 2; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Raleway", sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; background: var(--c-node-bg); border: 2px solid var(--orange); box-shadow: 0 0 0 6px var(--c-node-bg); }
.stage-name { grid-column: 2; font-family: "Raleway", sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--c-heading); margin: 12px 0 18px; }
.stage-pair { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.stage-box { border-radius: 10px; padding: 22px 24px; border: 1px solid var(--c-card-line); background: var(--c-card-bg); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.stage-box.challenge { border-left: 3px solid var(--c-muted-2); }
.stage-box.response { border-left: 3px solid var(--orange); }
.box-label { display: inline-flex; align-items: center; gap: 7px; font-family: "Poppins", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.challenge .box-label { color: var(--c-muted-2); }
.response .box-label { color: var(--orange); }
.box-label svg { width: 14px; height: 14px; }
.stage-box h4 { font-size: 1rem; font-weight: 700; color: var(--c-heading); margin-bottom: 8px; }
.stage-box p { font-size: .88rem; color: var(--c-text); line-height: 1.62; }

/* service cards */
.svc-card { position: relative; display: flex; flex-direction: column; padding: 30px 28px; border-radius: 10px; border: 1px solid var(--c-card-line); background: var(--c-card-bg); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.svc-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .35s ease; }
.svc-card:hover { transform: translateY(-5px); border-color: var(--c-card-line-h); box-shadow: var(--c-card-shadow); }
.svc-card:hover::after { width: 100%; }
.svc-icon { width: 48px; height: 48px; border-radius: 50px; background: var(--c-icon-bg); border: 1px solid var(--c-icon-line); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background .3s ease, border-color .3s ease; }
.svc-icon svg { width: 24px; height: 24px; color: var(--c-icon-svg); transition: color .3s; }
.svc-card:hover .svc-icon { background: var(--orange); border-color: var(--orange); }
.svc-card:hover .svc-icon svg { color: #fff; }
.svc-card h3 { font-size: 1.06rem; font-weight: 700; line-height: 1.3; color: var(--c-heading); margin-bottom: 14px; }
.svc-list { list-style: none; }
.svc-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: .87rem; line-height: 1.55; color: var(--c-text); }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--orange); transform: rotate(45deg); }
.svc-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--c-line); font-size: .82rem; font-style: italic; color: var(--c-muted); }

/* team */
.team-card { text-align: center; padding: 32px 24px 28px; border-radius: 10px; border: 1px solid var(--c-card-line); background: var(--c-card-bg); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.team-card:hover { transform: translateY(-4px); border-color: var(--c-card-line-h); box-shadow: var(--c-card-shadow); }
.avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: "Raleway", sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--navy), #34386e); border: 2px solid rgba(234,93,43,.55); }
.team-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--c-heading); margin-bottom: 2px; }
.team-card .role { font-family: "Poppins", sans-serif; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.team-card .bio { font-size: .85rem; color: var(--c-muted); line-height: 1.6; }
.team-tag { display: inline-block; margin-top: 14px; font-family: "Poppins", sans-serif; font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--c-muted-2); border: 1px solid var(--c-line); border-radius: 20px; padding: 4px 12px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info .info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .i-ico { flex: none; width: 42px; height: 42px; border-radius: 10px; background: rgba(234,93,43,.14); border: 1px solid rgba(234,93,43,.3); display: flex; align-items: center; justify-content: center; }
.contact-info .i-ico svg { width: 20px; height: 20px; color: var(--orange); }
.contact-info h4 { font-size: .82rem; font-family: "Poppins", sans-serif; letter-spacing: 1px; text-transform: uppercase; color: var(--c-muted-2); margin-bottom: 4px; }
.contact-info p, .contact-info a { font-size: .95rem; color: var(--c-text); }
.contact-info a:hover { color: var(--orange); }
.form-card { border-radius: 12px; border: 1px solid var(--c-card-line); background: var(--c-card-bg); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); padding: 30px 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Poppins", sans-serif; font-size: .76rem; letter-spacing: .5px; color: var(--c-muted); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; font-family: "Open Sans", sans-serif; font-size: .92rem; color: var(--c-heading); background: var(--c-input-bg); border: 1px solid var(--c-card-line); border-radius: 6px; padding: 11px 13px; transition: border-color .25s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 110px; }

/* CTA band */
.cta-band { margin: 0 24px; border-radius: 16px; background: radial-gradient(700px 320px at 80% 0%, rgba(234,93,43,.20), transparent 60%), linear-gradient(135deg, #1a1c3d, #101225); border: 1px solid rgba(255,255,255,.10); padding: 56px 48px; text-align: center; }
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #f4f5ff; margin-bottom: 14px; line-height: 1.18; }
.cta-band p { color: #c6c9e0; margin-bottom: 26px; font-size: 1rem; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }

/* footer (always dark) */
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 44px 0 26px; background: #070811; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; align-items: flex-start; margin-bottom: 30px; }
.footer .brand { margin-bottom: 12px; }
.footer-blurb { font-size: .86rem; color: #9498b8; max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 { font-family: "Poppins", sans-serif; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: #7e82a4; margin-bottom: 12px; }
.footer-col a { display: block; font-size: .86rem; color: #c7cae0; margin-bottom: 8px; transition: color .25s; }
.footer-col a:hover { color: var(--orange); }
.site-credit { text-align: center; font-size: 12px; color: #7e82a4; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-top: none; border-left: 2px solid var(--c-line); text-align: left; padding: 14px 0 14px 22px; }
  .step::before { top: 18px; left: -7px; transform: none; }
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: rgba(8,9,18,.98); border-bottom: 1px solid rgba(255,255,255,.08); padding: 8px 24px 18px; transform: translateY(-130%); transition: transform .3s ease; z-index: 55; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 44px 1fr; gap: 0 18px; }
  .stage-node { width: 44px; height: 44px; font-size: .92rem; }
  .lifecycle::before { left: 21px; }
  .stage-pair { grid-template-columns: 1fr; }
  .band { padding: 56px 0; }
  .cta-band { padding: 40px 26px; }
  .hero-slider { min-height: 540px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slider .slide { transition: none; }
}

/* ============================================================
   HOME — fit-to-screen sections (full-page snap)
   Enabled only on larger, tall viewports so content never clips
   on phones or short windows. Nav is sticky (66px), so each
   panel fills the area beneath it.
   ============================================================ */
@media (min-width: 961px) and (min-height: 680px) {
  html:has(body.page-home) { scroll-snap-type: y mandatory; scroll-padding-top: 66px; }

  body.page-home > main > section {
    scroll-snap-align: start;
    min-height: calc(100vh - 66px);
  }
  body.page-home > main > section.band {
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 40px; padding-bottom: 40px;
  }
  body.page-home .hero-slider { min-height: calc(100vh - 66px); }
  body.page-home > .footer { scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.page-home) { scroll-snap-type: none; }
}
