/* ============================================================
   MORVAXCONSULTANCYINC  —  "AURUM EDITORIAL" DESIGN SYSTEM
   Signature Gold (#C6982F / #9A6E12) on deep Navy (#08112b).
   Editorial, bordered, number-led layout — distinct structure:
   headline-first hero, inline stat strip, numbered feature rows,
   bordered index cards, stepped process blocks, split panels,
   left-aligned CTA band, TOC legal.  Same palette, new bones.
   ============================================================ */

:root {
    --brand:        #9A6E12;   /* deep gold — links, icons, accents */
    --brand-600:    #855F0F;
    --brand-700:    #6E4F0C;
    --brand-800:    #513A08;
    --brand-300:    #E3BE6A;
    --brand-050:    #F7EFDC;

    --gold:         #C6982F;   /* signature gold */
    --gold-600:     #9A6E12;
    --gold-300:     #E3BE6A;
    --gold-050:     #F7EFDC;

    --ink:          #08112b;   /* deep navy */
    --ink-2:        #26324f;
    --muted:        #5A6478;
    --line:         #E4E6EE;   /* hairlines */
    --line-2:       #D7DBE6;   /* stronger hairline */
    --line-warm:    #ECE4D3;

    --bg:           #FFFFFF;
    --cream:        #FAF7EE;   /* warm section tint */
    --mint:         #F1F3F8;   /* cool section tint */

    --footer:       #08112b;
    --footer-2:     #0E1A3A;

    --grad:         linear-gradient(135deg, #0D1836 0%, #1D2C52 100%);   /* navy */
    --grad-gold:    linear-gradient(135deg, #9A6E12 0%, #C6982F 55%, #E3BE6A 100%);
    --grad-mix:     linear-gradient(120deg, #08112b 0%, #14213F 55%, #223058 100%);

    --shadow-sm:    0 6px 20px rgba(8,17,43,.06);
    --shadow-md:    0 16px 38px rgba(8,17,43,.10);
    --shadow-lg:    0 26px 60px rgba(8,17,43,.14);

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;

    --sec-pad: 100px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--muted);
    background: var(--bg);
}
/* The base stylesheet sets body{overflow-x:hidden; height:100%} which makes body a scroll
   container and breaks position:sticky on the header. Restore normal flow so the sticky
   header pins to the viewport smoothly. (Menu-open state keeps its own scroll lock.) */
body:not(.is--menu) { overflow-x: visible !important; height: auto !important; }
::selection { background: rgba(198,152,47,.22); color: var(--ink); }
img { max-width: 100%; }

.container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding-left: 22px; padding-right: 22px;
}
@media (min-width: 1200px) { .container { max-width: 1180px; } }
@media (min-width: 992px) and (max-width: 1199px) { .container { max-width: 960px; } }
@media (min-width: 768px) and (max-width: 991px)  { .container { max-width: 720px; } }
@media (min-width: 576px) and (max-width: 767px)  { .container { max-width: 540px; } }

.sec { position: relative; padding: var(--sec-pad) 0; overflow: hidden; }
.sec--cream { background: var(--cream); }
.sec--mint  { background: var(--mint); }
.sec--forest { background: linear-gradient(160deg, var(--footer) 0%, var(--footer-2) 100%); }

/* ========================================
   BUTTONS  (squared editorial)
   ======================================== */
.btn2 {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13.5px; font-weight: 700; letter-spacing: .4px;
    padding: 15px 30px; border-radius: var(--r-sm); border: 1.5px solid transparent;
    text-decoration: none; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
    line-height: 1;
}
.btn2-primary { color: var(--ink); background: var(--gold); box-shadow: 0 10px 24px rgba(198,152,47,.28); }
.btn2-primary:hover { transform: translateY(-2px); background: var(--gold-600); color: #fff; box-shadow: 0 14px 30px rgba(198,152,47,.36); }
.btn2-ghost { color: var(--ink); border-color: var(--line-2); background: transparent; }
.btn2-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn2-gold { color: var(--ink); background: var(--gold); box-shadow: 0 10px 24px rgba(198,152,47,.30); }
.btn2-gold:hover { transform: translateY(-2px); background: var(--gold-600); color: #fff; }
.btn2-light { color: var(--ink); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.btn2-light:hover { transform: translateY(-2px); color: var(--gold-600); }
.btn2-outline-light { color: #fff; border-color: rgba(255,255,255,.45); }
.btn2-outline-light:hover { background: #fff; color: var(--ink); border-color:#fff; transform: translateY(-2px); }

/* ========================================
   SECTION HEADER
   ======================================== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 11px;
    font-size: 12px; font-weight: 800; letter-spacing: 2.6px; text-transform: uppercase;
    color: var(--gold-600); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); border-radius: 1px; }
.eyebrow.center { justify-content: center; }

.sec-head { max-width: 660px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 {
    color: var(--ink); font-weight: 800; letter-spacing: -.8px; line-height: 1.1; margin: 0 0 16px;
    font-size: clamp(27px, 3.6vw, 43px);
}
.sec-head h2 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec--forest h2 em { background: linear-gradient(120deg, var(--gold-300), var(--gold)) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.sec-head p { font-size: 16px; line-height: 1.75; margin: 0; color: var(--muted); }

/* ========================================
   HEADER  (flat editorial) + TOP BAR
   ======================================== */
.header-topbar { background: var(--ink); padding: 10px 0; position: relative; z-index: 2; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { display: flex; align-items: center; justify-content: flex-end; }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-left a { color: rgba(255,255,255,.86) !important; font-size: 12.5px; letter-spacing: .3px; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .3s ease; }
.topbar-left a:hover { color: var(--gold-300) !important; }
.topbar-left a i { font-size: 12px; color: var(--gold-300); }

.header {
    background: #fff !important;
    border-bottom: 1px solid var(--line) !important; box-shadow: none !important;
    transition: box-shadow .3s ease; padding: 13px 0; position: sticky !important; top: 0; z-index: 1000;
}
.header.is--scrolled, .header.sticky-header { box-shadow: 0 6px 24px rgba(8,17,43,.09) !important; }
/* Smooth sticky header: keep it visually identical while scrolling — no padding jump, no logo shrink,
   no black background (all of which the base .sticky-header rules would otherwise force). */
.header.sticky-header { background: #fff !important; padding: 13px 0 !important; position: sticky !important; top: 0; }
.header.sticky-header .logo { -ms-flex: 0 0 auto !important; flex: 0 0 auto !important; max-width: none !important; }
.header.sticky-header .navigation > ul > li > a { padding: 10px 16px !important; }
.header.sticky-header .navigation .dropdown ul li a { padding: 11px 15px !important; color: var(--ink-2) !important; text-transform: none !important; }
.header .fflex { display: flex; align-items: center; justify-content: space-between; }
.header .logo { flex: 0 0 auto; max-width: 270px; }
.header .navigation { flex-grow: 1; display: flex; justify-content: flex-end; align-items: center; }
.header .logo img, .header.is--scrolled .logo img { width: 300px !important; max-width: 100%; height: auto !important; transition: none !important; transform: none !important; }
.nav-hamburger { display: none; }

.navigation > ul > li > a { letter-spacing: .3px; font-size: 13.5px !important; font-weight: 600 !important; color: var(--ink) !important; transition: color .3s ease !important; position: relative; text-transform: none; }
.navigation > ul > li > a::before { display: none !important; content: none !important; }
.navigation > ul > li > a::after {
    content: '' !important; display: block !important; position: absolute; left: 16px; right: 16px; bottom: 2px;
    height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left center; transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.navigation > ul > li:hover > a::after, .navigation > ul > li.is--active > a::after { transform: scaleX(1); }
.navigation > ul > li.dropdown > a::after { display: none !important; }
.navigation > ul > li:hover > a, .navigation > ul > li.is--active > a { color: var(--gold-600) !important; }
.navigation > ul > li.dropdown > a > i { transition: transform .3s ease; font-size: 10px !important; margin-left: 5px !important; margin-right: 0 !important; color: var(--ink) !important; }
.navigation > ul > li.dropdown:hover > a > i { transform: rotate(180deg); color: var(--gold-600) !important; }

.navigation .dropdown ul { border-radius: var(--r-sm) !important; box-shadow: 0 18px 46px rgba(8,17,43,.16) !important; background: #fff !important; border: 1px solid var(--line) !important; padding: 7px !important; overflow: hidden; margin-top: 10px !important; }
.navigation .dropdown ul li { min-width: 252px; }
.navigation .dropdown ul li a, .navigation .dropdown ul a { padding: 11px 15px !important; font-size: 13px !important; color: var(--ink-2) !important; font-weight: 500 !important; border-radius: 4px !important; transition: all .22s ease !important; text-align: left; position: relative; }
.navigation .dropdown ul li a:hover, .navigation .dropdown ul a:hover { color: var(--gold-600) !important; background: var(--brand-050) !important; padding-left: 20px !important; }
.navigation .dropdown ul li.is--active a { color: var(--ink) !important; font-weight: 700 !important; background: var(--brand-050) !important; box-shadow: inset 3px 0 0 var(--gold); }

.header-cta-btn { display: inline-block !important; background: var(--gold) !important; color: var(--ink) !important; padding: 11px 26px !important; border-radius: var(--r-sm) !important; font-size: 12.5px !important; font-weight: 800 !important; letter-spacing: .5px; box-shadow: 0 8px 20px rgba(198,152,47,.26) !important; border: 1.5px solid var(--gold) !important; transition: background-color .28s ease, color .28s ease, transform .28s ease !important; text-decoration: none !important; will-change: transform; }
.header-cta-btn:hover { transform: translateY(-2px); background: var(--gold-600) !important; color: var(--ink) !important; border-color: var(--gold-600) !important; }
.navigation .gesture-nav > li > a.header-cta-btn::after { display: none !important; }
.navigation .gesture-nav > li:hover > a.header-cta-btn,
.navigation .gesture-nav > li.is--active > a.header-cta-btn { color: var(--ink) !important; }
.navigation .gesture-nav { background: none !important; }
.navigation .gesture-nav::before { display: none !important; content: none !important; }

@media (min-width: 992px) {
    .nav-hamburger { display: none !important; }
    .header .navigation { display: flex !important; position: static !important; left: auto !important; width: auto !important; height: auto !important; max-height: none !important; background: transparent !important; padding: 0 !important; box-shadow: none !important; overflow: visible !important; flex-direction: row !important; align-items: center !important; justify-content: flex-end !important; flex-grow: 1 !important; }
    .navigation > ul { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: flex-end !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
    .navigation > ul > li { border: none !important; margin: 0 !important; position: relative; display: inline-block !important; }
    .navigation > ul > li > a { display: inline-block !important; padding: 10px 16px !important; }
    .navigation .gesture-nav { display: flex !important; align-items: center !important; margin: 0 0 0 20px !important; padding: 0 !important; border: none !important; background: none !important; list-style: none !important; }
    .navigation .gesture-nav li { display: inline-block !important; border: none !important; }
    .navigation .gesture-nav .header-cta-btn { display: inline-block !important; width: auto !important; }
    .navigation .dropdown ul { position: absolute !important; max-height: none !important; overflow: visible !important; }
}

/* ========================================
   HERO  —  background-image slideshow + overlay
   ======================================== */
.xhero { position: relative; display: flex; align-items: center; min-height: 648px; overflow: hidden; background: var(--ink); }
.xhero > .container { width: 100%; min-width: 0; }
.xhero-slides { position: absolute; inset: 0; z-index: 0; }
.xhero-slide { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.5s ease; }
.xhero-slide.is-active { opacity: 1; animation: heroKen 9s ease-out forwards; }
@keyframes heroKen { from { transform: scale(1.09); } to { transform: scale(1); } }
.xhero-overlay { position: absolute; inset: 0; z-index: 1; display: block;
    background: linear-gradient(100deg, rgba(5,11,28,.95) 0%, rgba(6,13,33,.88) 36%, rgba(8,17,43,.66) 70%, rgba(8,17,43,.46) 100%); }
.xhero-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,11,28,.6) 0%, transparent 44%); }
.xhero .container { position: relative; z-index: 2; }
.xhero-content { max-width: 660px; padding: 98px 0; animation: fadeSlideUp .8s ease-out both; }
.xkicker { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-300); margin-bottom: 20px; }
.xkicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
.xhero-title { color: #fff; font-weight: 800; letter-spacing: -1.2px; line-height: 1.05; margin: 0 0 20px; font-size: clamp(34px, 4.6vw, 58px); }
.xhero-sub { display: block; font-size: clamp(15px, 1.7vw, 19px); font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,.72); margin-bottom: 12px; }
.xhero-title strong { background: linear-gradient(120deg, var(--gold-300), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
.xhero-text { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 0 30px; }
.xhero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.xhero-points { list-style: none; margin: 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-wrap: wrap; gap: 14px 34px; }
.xhero-points li { position: relative; padding-left: 32px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.5; }
.xhero-points .xp-n { position: absolute; left: 0; top: 0; font-size: 13px; font-weight: 800; color: var(--gold-300); letter-spacing: .5px; }

.xhero-dots { position: absolute; z-index: 3; bottom: 28px; left: 0; right: 0; display: flex; justify-content: center; gap: 11px; }
.xhero-dot { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.55); background: transparent; padding: 0; cursor: pointer; transition: all .3s ease; }
.xhero-dot:hover { border-color: var(--gold-300); }
.xhero-dot.is-active { background: var(--gold); border-color: var(--gold); width: 26px; border-radius: 6px; }
@media (max-width: 960px) {
    .xhero { min-height: 540px; }
    .xhero-content { padding: 76px 0; max-width: 100%; }
}
@media (max-width: 620px) {
    .xhero { min-height: 470px; }
    .xhero-title { font-size: 32px; }
    .xhero-content { padding: 58px 0; }
}

/* inner (legal) page header — navy band */
.hero { position: relative; }
.hero--inner { background: var(--grad-mix); padding: 70px 0 60px; text-align: center; overflow: hidden; }
.hero--inner::after { content: ''; position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(198,152,47,.18), transparent 66%); pointer-events: none; }
.hero--inner .eyebrow { color: var(--gold-300) !important; }
.hero--inner .eyebrow::before { background: var(--gold-300); }
.hero-title { color: #fff; font-weight: 800; letter-spacing: -.6px; line-height: 1.08; margin: 8px 0 12px; font-size: clamp(30px, 4vw, 46px); position: relative; z-index: 1; }
.hero-title strong { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-crumb { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.65); position: relative; z-index: 1; }
.hero-crumb a { color: var(--gold-300); text-decoration: none; }
.hero-crumb span { color: rgba(255,255,255,.4); }

/* ========================================
   STAT STRIP  (inline navy band, no overlap)
   ======================================== */
.statband { position: relative; z-index: 1; background: var(--grad-mix); }
.statband .container { margin-top: 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); background: transparent; border-radius: 0; overflow: visible; margin: 0; box-shadow: none; }
.stat { padding: 44px 30px; text-align: left; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: rgba(255,255,255,.13); }
.stat-num { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1; margin-bottom: 10px; color: #fff; letter-spacing: -1.2px; }
.stat-num sup { color: var(--gold-300); -webkit-text-fill-color: var(--gold-300); font-size: .58em; }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .6px; text-transform: uppercase; }
@media (max-width: 760px){ .stat-row { grid-template-columns: repeat(2,1fr); } .stat:nth-child(2)::before{ display:none;} .stat:nth-child(3)::before{ display:none;} .stat:nth-child(3),.stat:nth-child(4){ border-top: 1px solid rgba(255,255,255,.1);} .stat { padding: 32px 22px; } }

/* ========================================
   NUMBERED FEATURE ROWS  (was bento)
   ======================================== */
.bento { counter-reset: feat; display: flex; flex-direction: column; border-top: 1px solid var(--line-2); }
.bento-tile {
    counter-increment: feat; position: relative; display: grid;
    grid-template-columns: 80px 66px 1fr; grid-template-rows: auto auto; align-items: center;
    column-gap: 26px; row-gap: 6px;
    padding: 34px 6px; border-bottom: 1px solid var(--line-2); background: transparent; transition: background .3s ease, padding-left .3s ease;
}
.bento-tile:hover { background: linear-gradient(90deg, var(--cream), transparent 72%); padding-left: 16px; }
.bento-tile::before { grid-column: 1; grid-row: 1 / 3; align-self: center; content: counter(feat, decimal-leading-zero); font-size: 42px; font-weight: 800; line-height: .9; color: transparent; -webkit-text-stroke: 1.5px var(--brand-300); letter-spacing: -1px; }
.bento-tile .bt-corner { display: none; }
.bento-tile .bt-ic { grid-column: 2; grid-row: 1 / 3; align-self: center; width: 66px; height: 66px; border-radius: var(--r-md); border: 1px solid var(--line-2); background: var(--brand-050); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 28px; transition: transform .35s ease, border-color .35s ease; }
.bento-tile:hover .bt-ic { border-color: var(--gold); transform: translateY(-3px); }
.bento-tile h4 { grid-column: 3; grid-row: 1; align-self: end; color: var(--ink); font-size: 20px; font-weight: 800; margin: 0; letter-spacing: -.3px; }
.bento-tile p { grid-column: 3; grid-row: 2; align-self: start; font-size: 14.5px; line-height: 1.75; color: var(--muted); margin: 0; max-width: 640px; }
.bento-tile.wide, .bento-tile.promo { grid-column: auto; }
.bento-tile.promo { background: var(--grad-mix); color: #fff; border: none; border-radius: var(--r-md); padding: 34px 30px; display: block; margin-top: 8px; }
.bento-tile.promo::before { display: none; }
.bento-tile.promo h4 { color: #fff; }
.bento-tile.promo p { color: rgba(255,255,255,.82); }
@media (max-width: 720px){
    .bento-tile { grid-template-columns: 52px 1fr; column-gap: 18px; row-gap: 4px; padding: 26px 4px; }
    .bento-tile::before { grid-column: 1; grid-row: 1 / 3; font-size: 30px; }
    .bento-tile .bt-ic { display: none; }
    .bento-tile h4 { grid-column: 2; grid-row: 1; }
    .bento-tile p { grid-column: 2; grid-row: 2; }
}

/* ========================================
   SOLUTIONS  (bordered index cards)
   ======================================== */
.sol-grid { counter-reset: sol; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2); }
.sol-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.sol-card {
    counter-increment: sol; position: relative; display: block; text-decoration: none; background: #fff;
    padding: 34px 26px 28px; overflow: hidden; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
    transition: background .35s ease;
}
.sol-card::before { content: counter(sol, decimal-leading-zero); position: absolute; top: 20px; right: 22px; font-size: 30px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.3px var(--line-2); transition: -webkit-text-stroke-color .35s ease; }
.sol-card:hover { background: var(--cream); }
.sol-card:hover::before { -webkit-text-stroke-color: var(--gold); }
.sol-tag { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold-600); padding: 0; margin-bottom: 18px; }
.sol-card h4 { color: var(--ink); font-size: 18px; font-weight: 800; margin: 0 0 9px; letter-spacing: -.3px; padding-right: 30px; }
.sol-card p { font-size: 13.6px; line-height: 1.72; color: var(--muted); margin: 0 0 18px; }
.sol-more { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--gold-600); }
.sol-more i { transition: transform .3s ease; }
.sol-card:hover .sol-more i { transform: translateX(5px); }
.sol-group + .sol-group { margin-top: 40px; }
.sol-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.sol-group-head .eyebrow { margin: 0; }
.sol-group-head .sg-line { flex: 1; height: 1px; background: var(--line-2); }
@media (max-width: 1000px){ .sol-grid.cols-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 900px){ .sol-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .sol-grid, .sol-grid.cols-4 { grid-template-columns: 1fr;} }

/* ========================================
   PROCESS  (stepped bordered blocks)
   ======================================== */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.tl-step { position: relative; text-align: left; padding: 34px 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); background: rgba(255,255,255,.03); transition: border-color .35s ease, transform .35s ease; }
.tl-step:hover { border-color: rgba(198,152,47,.55); transform: translateY(-4px); }
.tl-node { width: auto; height: auto; margin: 0 0 20px; border-radius: 0; background: none; box-shadow: none; border: none; display: flex; align-items: center; justify-content: space-between; }
.tl-node > i { font-size: 30px; color: var(--gold-300); order: 1; }
.tl-num { position: static; width: auto; height: auto; border-radius: 0; background: none; color: transparent; -webkit-text-stroke: 1.5px var(--gold); font-size: 46px; font-weight: 800; letter-spacing: -2px; display: block; order: 0; line-height: 1; }
.tl-step h4 { font-size: 18.5px; font-weight: 800; margin: 0 0 9px; color: #fff; letter-spacing: -.3px; }
.tl-step p { font-size: 14px; line-height: 1.7; margin: 0; max-width: none; color: rgba(255,255,255,.66); }
.sec:not(.sec--forest) .tl-step { border-color: var(--line-2); background: #fff; }
.sec:not(.sec--forest) .tl-step h4 { color: var(--ink); }
.sec:not(.sec--forest) .tl-step p { color: var(--muted); }
.sec:not(.sec--forest) .tl-node > i { color: var(--brand); }
@media (max-width: 820px){ .timeline { grid-template-columns: 1fr; gap: 16px; } }

/* ========================================
   SPLIT BLOCK
   ======================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }
.split-media .sm-frame { display: none; }
.split-media .sm-tag { position: absolute; left: 0; bottom: 26px; background: var(--ink); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 13px 20px; box-shadow: var(--shadow-md); font-weight: 700; color: #fff; font-size: 13px; letter-spacing: .3px; display: flex; align-items: center; gap: 10px; }
.split-media .sm-tag i { color: var(--gold-300); font-size: 18px; }
.split-body h2 { color: var(--ink); font-weight: 800; letter-spacing: -.6px; line-height: 1.12; margin: 6px 0 18px; font-size: clamp(25px, 3.4vw, 38px); }
.split-body h2 em { font-style: normal; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.split-body p { font-size: 15.5px; line-height: 1.85; color: var(--muted); margin: 0 0 22px; }
.checklist { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-2); }
.checklist li { position: relative; padding: 14px 14px 14px 34px; font-size: 14px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.checklist li:nth-child(odd) { border-right: 1px solid var(--line-2); }
.checklist li i { position: absolute; left: 0; top: 14px; width: 20px; height: 20px; border-radius: 4px; background: var(--brand-050); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 11px; font-style: normal; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 40px; } .split.reverse .split-media { order: -1; } .split-media img { height: 320px; } .checklist { grid-template-columns: 1fr; } .checklist li:nth-child(odd) { border-right: none; } }

/* ========================================
   BENEFIT CARDS  (service pages)
   ======================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2); }
.benefit-card { background: #fff; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); transition: background .35s ease; display: flex; flex-direction: column; }
.benefit-card:hover { background: var(--cream); }
.benefit-media { position: relative; height: 190px; overflow: hidden; border-bottom: 1px solid var(--line-2); }
.benefit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: saturate(.92); }
.benefit-card:hover .benefit-media img { transform: scale(1.06); }
.benefit-num { position: absolute; left: 0; bottom: 0; width: 52px; height: 52px; border-radius: 0 var(--r-sm) 0 0; background: var(--gold); color: var(--ink); font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.benefit-body { padding: 30px 26px 30px; flex: 1; }
.benefit-body h4 { color: var(--ink); font-size: 18px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.3px; }
.benefit-body p { font-size: 14px; line-height: 1.78; color: var(--muted); margin: 0; }
@media (max-width: 900px){ .benefit-grid { grid-template-columns: 1fr; } .benefit-card { border-right: none; border-bottom: 1px solid var(--line-2); } .benefit-card:last-child { border-bottom: none; } .benefit-media { height: 210px; } }

/* capability chips */
.cap-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cap-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 10px 18px 10px 12px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.cap-chip i { width: 30px; height: 30px; border-radius: 4px; background: var(--brand-050); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 15px; }

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-aside { position: relative; background: var(--grad-mix); color: #fff; padding: 48px 42px; overflow: hidden; }
.contact-aside::after { content: ''; position: absolute; right: -70px; bottom: -70px; width: 210px; height: 210px; background: radial-gradient(circle, rgba(198,152,47,.26), transparent 66%); }
.contact-aside h3 { color: #fff; font-size: 26px; font-weight: 800; margin: 0 0 12px; letter-spacing: -.4px; position: relative; z-index: 1; }
.contact-aside > p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin: 0 0 28px; position: relative; z-index: 1; }
.contact-info { position: relative; z-index: 1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-info a { display: flex; align-items: center; gap: 12px; color: #fff !important; font-size: 14.5px; margin-bottom: 16px; text-decoration: none; transition: padding-left .3s ease; }
.contact-info a:hover { padding-left: 5px; }
.contact-info a i { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,.12); color: var(--gold-300); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-form-body { padding: 48px 46px; }
.contact-form-body h4 { font-size: 25px; font-weight: 800; color: var(--ink); margin: 0 0 6px; letter-spacing: -.4px; }
.contact-form-body .form-subtitle { font-size: 14px; color: var(--muted); margin: 0 0 26px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-wrap { margin-bottom: 16px; }
.field-wrap > label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; letter-spacing: .3px; }
.form-control { width: 100%; border: 1.5px solid var(--line-2) !important; border-radius: var(--r-sm) !important; padding: 12px 15px !important; font-size: 14px !important; background: #FAFBFD !important; color: var(--ink) !important; transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease; height: auto !important; }
.form-control::placeholder { color: #98a1b3; font-size: 13px; }
.form-control:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(198,152,47,.16); background: #fff !important; outline: none; }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 8px; }
.checkbox-wrap label { font-size: 13px; color: var(--ink-2); cursor: pointer; }
.note { font-size: 11px !important; color: #98a1b3 !important; line-height: 1.55 !important; margin-bottom: 14px !important; }
.note a { color: var(--gold-600) !important; }
.btn-primary { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 9px; background: var(--gold) !important; border: none !important; border-radius: var(--r-sm) !important; padding: 15px 42px !important; font-size: 14.5px !important; font-weight: 700 !important; letter-spacing: .4px; color: var(--ink) !important; text-transform: none !important; box-shadow: 0 10px 26px rgba(198,152,47,.28) !important; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-600) !important; box-shadow: 0 14px 32px rgba(198,152,47,.36) !important; color: #fff !important; }
.form-status { padding: 11px 15px; border-radius: var(--r-sm); font-size: 13px; font-weight: 500; margin-bottom: 14px; }
.form-status-success { background: #e8f6ee; color: #12805a; border: 1px solid #bde6cf; }
.form-status-error { background: #fef1f2; color: #c8323f; border: 1px solid #f8ccd1; }
.form-control.is-invalid { border-color: #e53e3e !important; }
@media (max-width: 860px){ .contact-card { grid-template-columns: 1fr; } .contact-form-body { padding: 34px 24px; } .contact-aside { padding: 38px 28px; } .field-row { grid-template-columns: 1fr; gap: 0; } }

/* ========================================
   CTA BAND  (left-aligned)
   ======================================== */
.cta-wrap { padding: 46px 0; background: var(--bg); }
.cta-panel { position: relative; background: var(--grad-mix); border-radius: var(--r-md); padding: 52px 56px; overflow: hidden; text-align: left; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta-panel::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-gold); }
.cta-panel::after { content: ''; position: absolute; right: -70px; bottom: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(198,152,47,.20), transparent 66%); pointer-events: none; }
.cta-panel .eyebrow { color: var(--gold-300); grid-column: 1; }
.cta-panel .eyebrow::before { background: var(--gold-300); }
.cta-panel h3 { position: relative; z-index: 1; color: #fff; font-weight: 800; letter-spacing: -.6px; font-size: clamp(24px, 3.2vw, 36px); margin: 0 0 12px; grid-column: 1; }
.cta-panel p { position: relative; z-index: 1; color: rgba(255,255,255,.82); font-size: 15.5px; line-height: 1.7; max-width: 620px; margin: 0; grid-column: 1; grid-row: 3; }
.cta-panel .cta-btns { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; grid-column: 2; grid-row: 1 / span 3; align-self: center; }
@media (max-width: 820px){ .cta-panel { grid-template-columns: 1fr; padding: 40px 30px; gap: 24px; } .cta-panel .cta-btns { grid-column: 1; grid-row: auto; } }

/* ========================================
   LEGAL LAYOUT
   ======================================== */
.legal { padding: 84px 0; }
.legal-grid { display: grid; grid-template-columns: 300px 1fr; gap: 54px; align-items: start; }
.legal-toc { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 26px 24px; }
.legal-toc h5 { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-600); margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.legal-toc ul { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal-toc li { margin-bottom: 2px; }
.legal-toc a { display: block; font-size: 13px; color: var(--ink-2); text-decoration: none; padding: 9px 12px; border-radius: 4px; border-left: 2px solid transparent; transition: all .22s ease; }
.legal-toc a:hover { background: var(--cream); color: var(--gold-600); border-left-color: var(--gold); }
.legal-article h2 { color: var(--ink); font-weight: 800; letter-spacing: -.5px; font-size: 28px; margin: 0 0 12px; }
.legal-article > p:first-of-type { font-size: 15.5px; }
.legal-article h4 { color: var(--ink); font-weight: 800; font-size: 18px; margin: 38px 0 12px; padding-left: 16px; border-left: 3px solid var(--gold); scroll-margin-top: 92px; }
.legal-article p { color: var(--muted); font-size: 14.8px; line-height: 1.85; margin: 0 0 14px; }
.legal-article p strong { color: var(--ink); }
.legal-article a { color: var(--gold-600); }
.legal-article .listingterms { background: var(--cream); border: 1px solid var(--line-2); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 22px 24px 22px 28px; margin: 20px 0 26px; }
.listingterms ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 36px; }
.listingterms ul li { position: relative; padding-left: 22px; margin-bottom: 11px; font-size: 13.5px; color: var(--ink-2); break-inside: avoid; }
.listingterms ul li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
.listingterms ul li strong { color: var(--ink); }
.legal-article .listingoth ul { list-style: disc; padding-left: 22px; margin: 0 0 14px; }
.legal-article .listingoth li { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin-bottom: 9px; }
.legal-article .listingoth ul ul { list-style: circle; margin-top: 9px; }
.legal-toc ul:empty { display: none; }
@media (max-width: 860px){ .legal-grid { grid-template-columns: 1fr; } .legal-toc { position: static; } .listingterms ul { columns: 1; } }

/* ========================================
   FOOTER
   ======================================== */
.footer-modern { background: linear-gradient(160deg, var(--footer) 0%, var(--footer-2) 100%) !important; color: #fff; position: relative; overflow: hidden; }
.footer-modern::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-gold); }
.footer-top { padding: 72px 0 46px !important; position: relative; z-index: 1; }
.footer-brand .footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-brand .footer-logo img { width: 280px; max-width: 100%; height: auto; }
.footer-brand .footer-desc { color: rgba(255,255,255,.56) !important; font-size: 13.5px !important; line-height: 1.75 !important; max-width: 300px; margin: 0 !important; }
.footer-widget h5 { color: #fff !important; font-size: 12.5px !important; font-weight: 800 !important; margin-bottom: 22px !important; position: relative; padding-bottom: 14px; text-transform: uppercase !important; letter-spacing: 1.4px !important; }
.footer-widget h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-widget ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget ul li a { color: rgba(255,255,255,.58) !important; font-size: 13.5px !important; text-decoration: none !important; transition: color .3s ease, padding-left .3s ease; display: inline-block; }
.footer-widget ul li a:hover { color: var(--gold-300) !important; padding-left: 7px; }
.footer-contact li a { display: flex !important; align-items: center; gap: 10px; }
.footer-contact li a i { color: var(--gold-300); font-size: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; }
.footer-bottom-inner p { color: rgba(255,255,255,.42) !important; font-size: 13px !important; margin: 0 !important; }

/* ========================================
   POPUP
   ======================================== */
.popup.popup-style1 { border-radius: var(--r-md) !important; box-shadow: var(--shadow-lg) !important; }
.popup .logo-wrap img { width: 230px; max-width: 100%; height: auto; }
.popupContent h4 .cl-iPrimary { color: var(--gold-600) !important; }

/* ========================================
   SCROLL-REVEAL
   ======================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.reveal-l { transform: translateX(-42px); }
.reveal.reveal-r { transform: translateX(42px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-48px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(48px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeSlideUp  { from { opacity: 0; transform: translateY(24px);  } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   MOBILE NAVIGATION (drawer)
   ============================================================ */
@media (max-width: 991px) {
    .header-topbar { display: none; }
    .header { padding: 13px 0 !important; position: sticky !important; top: 0; z-index: 1001; }
    .header .container { padding: 0 20px; max-width: 100%; }
    .header .fflex { display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; gap: 15px; }
    .header .logo { flex: 0 0 auto; display: flex; align-items: center; }
    .header .logo img { width: 200px !important; max-width: 100%; height: auto !important; }

    .nav-hamburger { display: block !important; width: 30px; height: 24px; cursor: pointer; z-index: 1000; position: relative; padding: 0; margin: 0; flex: 0 0 auto; background: transparent; border: none; -webkit-tap-highlight-color: transparent; }
    .nav-hamburger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: all .25s ease-in-out; position: absolute; left: 0; transform-origin: center center; }
    .nav-hamburger span:nth-child(1) { top: 0; }
    .nav-hamburger span:nth-child(2) { top: 11px; }
    .nav-hamburger span:nth-child(3) { top: 22px; }
    .nav-hamburger span:nth-child(4), .nav-hamburger span:nth-child(5), .nav-hamburger span:nth-child(6) { display: none !important; }
    .nav-hamburger.is--active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
    .nav-hamburger.is--active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

    .navigation, .header .navigation {
        position: fixed !important; top: 0 !important; left: -100% !important; width: 300px !important; height: 100vh !important; max-height: 100vh !important;
        background: linear-gradient(165deg, var(--footer), var(--footer-2)) !important; z-index: 999 !important; padding-top: 74px !important; padding-bottom: 20px !important;
        overflow-y: auto !important; overflow-x: hidden !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; justify-content: flex-start !important;
        transition: left .4s cubic-bezier(.4,0,.2,1) !important; box-shadow: 6px 0 40px rgba(0,0,0,.5) !important;
    }
    .navigation.is--open, .header .navigation.is--open { left: 0 !important; }
    .navigation > ul { width: 100% !important; display: flex !important; flex-direction: column !important; padding: 0 !important; margin: 0 !important; }
    .navigation > ul > li { width: 100% !important; border-bottom: 1px solid rgba(255,255,255,.07); margin: 0 !important; }
    .navigation > ul > li > a { color: rgba(255,255,255,.9) !important; padding: 15px 22px !important; font-size: 15px !important; font-weight: 600 !important; justify-content: space-between !important; align-items: center !important; width: 100%; display: flex !important; text-decoration: none; transition: all .3s ease !important; min-height: 48px; }
    .navigation > ul > li > a::after, .navigation > ul > li > a::before { display: none !important; }
    .navigation > ul > li.dropdown > a > i { margin-left: auto; color: #fff !important; transition: transform .3s ease; }
    .navigation > ul > li:hover > a, .navigation > ul > li.is--active > a { color: var(--gold-300) !important; background: rgba(198,152,47,.14); }

    .navigation .dropdown ul { position: static !important; opacity: 1 !important; visibility: visible !important; border-radius: 0 !important; box-shadow: none !important; background: rgba(0,0,0,.2) !important; border: none !important; border-top: 1px solid rgba(255,255,255,.05) !important; padding: 0 !important; margin: 0 !important; min-width: 0 !important; max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease; display: block !important; }
    .navigation .dropdown.is--active > ul { max-height: 600px; padding: 6px 0 !important; }
    .navigation .dropdown.is--active > a > i { transform: rotate(180deg); }
    .navigation .dropdown ul li { min-width: 0 !important; width: 100% !important; border-bottom: 1px solid rgba(255,255,255,.04); }
    .navigation .dropdown ul li:last-child { border-bottom: none; }
    .navigation .dropdown ul li a, .navigation .dropdown ul a { color: rgba(255,255,255,.72) !important; padding: 13px 22px 13px 40px !important; font-size: 13.5px !important; font-weight: 400 !important; border-left: 3px solid transparent !important; background: transparent !important; display: block !important; transition: all .3s ease !important; position: relative; min-height: 44px; }
    .navigation .dropdown ul li a::before { content: '\203A'; position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 18px; opacity: .5; transition: all .3s ease; }
    .navigation .dropdown ul li a:hover, .navigation .dropdown ul a:hover { color: var(--gold-300) !important; background: rgba(198,152,47,.12) !important; border-left-color: var(--gold) !important; padding-left: 45px !important; }
    .navigation .dropdown ul li a:hover::before { opacity: 1; left: 28px; }
    .navigation .dropdown ul li.is--active a { color: var(--gold-300) !important; font-weight: 500 !important; border-left-color: var(--gold) !important; background: rgba(198,152,47,.12) !important; }

    .navigation .gesture-nav { width: 100% !important; padding: 20px !important; background: none !important; margin: 10px 0 0 !important; border-top: 1px solid rgba(255,255,255,.1); }
    .navigation .gesture-nav::before { display: none !important; content: none !important; }
    .navigation .gesture-nav li { width: 100% !important; border: none !important; }
    .header-cta-btn { display: block !important; text-align: center !important; padding: 14px 24px !important; border-radius: var(--r-sm) !important; font-size: 14px !important; font-weight: 700 !important; width: 100% !important; background: var(--gold) !important; color: var(--ink) !important; border-color: var(--gold) !important; }

    body.is--menu { overflow: hidden; height: 100vh; }
    .defaultOverlay { position: fixed; inset: 0; width: 100%; height: 100vh; background: rgba(8,17,43,.62) !important; backdrop-filter: blur(3px); z-index: 998; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
    body.is--menu .defaultOverlay { opacity: 1; visibility: visible; }
    .navigation::-webkit-scrollbar { width: 4px; }
    .navigation::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
    .navigation::-webkit-scrollbar-thumb { background: rgba(198,152,47,.5); border-radius: 10px; }
}

/* ============================================================
   RESPONSIVE SECTION RHYTHM
   ============================================================ */
@media (max-width: 991px) {
    :root { --sec-pad: 64px; }
    .footer-brand { margin-bottom: 30px; }
    .footer-widget { margin-bottom: 26px; }
    .sec-head { margin-bottom: 40px; }
    .cta-wrap { padding: 32px 0; }
}
@media (max-width: 620px) {
    .xhero-title { font-size: 34px; }
    .xhero-media img { height: 250px; }
}
