/* ============================================================
   VIAWind — Brand Style Guide 2026 — Compliant CSS
   Colors: Deep Blue #263B6A · Sky Blue #6984A9 · Green #A0D585
           Light Green #EEFABD · Deep Grey #282828 · White #FFFFFF
   Fonts:  Carlito (headings) · Montserrat (body) · Georgia (subheadings)
   ============================================================ */

:root{
  --navy:        #263B6A;
  --navy-2:      #384D7C;
  --navy-3:      #516288;
  --sky:         #6984A9;
  --sky-soft:    #98ADC9;
  --sky-light:   #B5C9E4;
  --green:       #A0D585;
  --green-2:     #B3DD9D;
  --lime:        #EEFABD;
  --lime-2:      #DEF3B1;
  --deep-grey:   #282828;
  --ink:         #1f2530;
  --muted:       #586171;
  --paper:       #f4f7fb;
  --paper-2:     #fbfdff;
  --white:       #FFFFFF;
  --line:        rgba(38,59,106,.13);
  --shadow:      0 18px 45px rgba(31,37,48,.10);
  --shadow-soft: 0 10px 28px rgba(31,37,48,.07);
  --radius:      0 28px 28px 28px;
  --radius-sm:   0 18px 18px 18px;
  --max:         1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:90px}
img{max-width:100%;display:block}
a{text-decoration:none;color:var(--navy)}
a:hover{color:var(--navy-2)}
em{font-style:italic}
body{
  margin:0;color:var(--ink);
  font-family:'Montserrat',system-ui,-apple-system,'Segoe UI',sans-serif;
  background:
    radial-gradient(1200px 700px at 10% -10%,rgba(105,132,169,.20),transparent 60%),
    radial-gradient(900px 560px at 100% 0%,rgba(181,201,228,.22),transparent 62%),
    linear-gradient(180deg,var(--paper) 0%,#ffffff 38%,#f2f7fc 100%);
}
h1,h2,h3,h4,.display,.section-title,.brand,.nav-links a,.nav-cta,.btnx,.eyebrow,.accordion-button{
  font-family:'Carlito',Georgia,serif;
}
p,li,small,.lead,.meta-pill,.photo-note,.contact-item,.stat span,.brand-word small{
  font-family:'Montserrat',system-ui,sans-serif;
}
.caption-font,.callout p,.detail-card p,.reminder,.small-muted,.photo-note{
  font-family:Georgia,'Times New Roman',serif;
}
h1,.display,.page-hero h1,.section-title{font-weight:700}
.container-narrow{max-width:860px;margin:0 auto}

/* NAV */
.site-nav{
  position:sticky;top:0;z-index:50;
  background:rgba(244,242,237,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  max-width:var(--max);margin:0 auto;padding:12px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:center;gap:12px;color:var(--ink);font-weight:700;letter-spacing:-.01em}
.brand img{height:54px;width:auto;filter:drop-shadow(0 10px 18px rgba(38,59,106,.08))}
.brand-word{display:flex;flex-direction:column;line-height:1;gap:3px}
.brand-word small{font-size:.62rem;color:var(--muted);font-weight:600;margin-top:2px;font-family:'Montserrat',sans-serif;letter-spacing:.12em;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.nav-links a{font-size:.97rem;color:var(--ink);letter-spacing:.01em;position:relative}
.nav-links a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--navy);transition:width .25s ease}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.nav-links a.active{color:var(--navy);font-weight:700}
.nav-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 20px;border-radius:0 999px 999px 999px;
  background:linear-gradient(135deg,var(--navy),var(--sky));
  color:#fff !important;font-weight:700;box-shadow:var(--shadow-soft);letter-spacing:.01em;
}
.nav-cta:hover{color:#fff;opacity:.92}
.nav-toggle{display:none;background:none;border:0;font-size:1.6rem;color:var(--navy)}

/* BRAND VALUES STRIP */
.values-strip{
  background:var(--navy);padding:10px 24px;
  display:flex;align-items:center;justify-content:center;gap:0;
}
.values-strip span{
  color:rgba(255,255,255,.75);font-family:'Carlito',Georgia,serif;
  font-size:.78rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
}
.values-strip .sep{color:var(--sky);margin:0 14px;font-weight:400;letter-spacing:0}
@media(max-width:640px){
  .values-strip{flex-wrap:wrap;gap:4px 0;padding:8px 18px}
  .values-strip span{font-size:.72rem}
  .values-strip .sep{margin:0 8px}
}

/* HERO */
.page{min-height:100vh}
.hero{position:relative;overflow:hidden;padding:72px 24px 44px}
.hero-grid{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:1.04fr .96fr;gap:42px;align-items:center;
}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  background:rgba(255,255,255,.75);border:1px solid var(--line);
  box-shadow:var(--shadow-soft);font-size:.9rem;color:var(--muted);
}
.kicker .dot{width:8px;height:8px;border-radius:50%;background:var(--green)}
h1,.display{
  margin:18px 0 16px;
  font-size:clamp(2.2rem,5.2vw,4.7rem);
  line-height:.98;letter-spacing:-.04em;font-weight:800;color:var(--navy);
}
.lead{font-size:1.05rem;line-height:1.78;color:var(--muted);max-width:60ch}
.hero-actions,.button-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}

/* BUTTONS */
.btnx{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 22px;border-radius:0 999px 999px 999px;font-weight:700;
  border:1px solid transparent;transition:.2s ease;position:relative;overflow:hidden;
}
.btnx::after{
  content:"";position:absolute;top:-40%;bottom:-40%;left:-30%;
  width:46%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.26),transparent);
  transform:translateX(-120%) skewX(-18deg);transition:transform .75s ease;
}
.btnx:hover::after{transform:translateX(320%) skewX(-18deg)}
.btnx-primary{background:linear-gradient(135deg,var(--navy),var(--sky));color:#fff;box-shadow:var(--shadow-soft)}
.btnx-primary:hover{color:#fff;transform:translateY(-1px)}
.btnx-secondary{background:rgba(255,255,255,.85);border-color:var(--line);color:var(--ink)}
.btnx-secondary:hover{background:#fff}

/* META STRIP */
.meta-strip{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.meta-pill{
  background:rgba(255,255,255,.78);border:1px solid var(--line);
  border-radius:999px;padding:10px 14px;color:var(--muted);font-size:.92rem;
}

/* LOGO STAGE */
.logo-stage{
  position:relative;min-height:520px;border-radius:36px;padding:0;
  background:var(--white);box-shadow:0 35px 80px rgba(38,59,106,.16);
  overflow:hidden;border:1px solid var(--line);
  transition:transform .28s ease,box-shadow .28s ease;
}
.logo-stage:hover{transform:translateY(-6px);box-shadow:0 28px 72px rgba(31,37,48,.18)}
.logo-stage img.hero-main{
  width:100%;height:100%;min-height:520px;object-fit:cover;
  transform:scale(1.04);animation:hero-pan 18s ease-in-out infinite alternate;
  will-change:transform;transition:transform .8s ease;
}
.logo-stage:hover img.hero-main{transform:scale(1.07)}
@keyframes hero-pan{
  0%{transform:scale(1.04) translate3d(0,0,0)}
  50%{transform:scale(1.08) translate3d(-1.5%,-1%,0)}
  100%{transform:scale(1.05) translate3d(1.5%,1%,0)}
}
.logo-stage .caption{
  position:absolute;left:24px;right:24px;bottom:24px;
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  color:#fff;font-size:.92rem;
}
.logo-stage .caption span{
  padding:10px 12px;border-radius:999px;
  background:rgba(31,37,48,.42);border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(8px);
}

/* WATERMARK */
.logo-stage::before{
  content:"";
  position:absolute;
  right:26px;
  top:24px;
  width:76px;
  height:26px;
  background:url('submark-wave-only.png') center/contain no-repeat;
  opacity:.30;
  pointer-events:none;
  z-index:3;
}

/* WHITE FRAME BORDER */
.logo-stage::after{
  content:"";
  position:absolute;
  inset:28px;
  border:2px solid rgba(255,255,255,.82);
  border-radius:22px;
  z-index:2;
  pointer-events:none;
}


/* SECTIONS */
.section{padding:86px 24px}
.section-inner{max-width:var(--max);margin:0 auto}
.section-top{display:flex;justify-content:space-between;gap:26px;align-items:end;flex-wrap:wrap;margin-bottom:28px}
.section-top p{max-width:54ch;color:var(--muted);margin:0}
.section-title{font-size:clamp(1.5rem,3vw,2.35rem);line-height:1.08;letter-spacing:-.03em;font-weight:800;margin:0;color:var(--navy)}

/* EYEBROW — brand sky blue */
.eyebrow{
  font-size:.85rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--sky);font-weight:700;margin-bottom:12px;
  font-family:'Carlito',Georgia,serif;
}

/* BRAND LINE ACCENT */
.brand-line{
  display:block;width:42px;height:3px;
  background:linear-gradient(90deg,var(--navy),var(--sky));
  border-radius:999px;margin-bottom:18px;
}

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

/* CARDS */
.cardx{
  position:relative;background:rgba(255,255,255,.86);
  border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}
.cardx:hover{transform:translateY(-6px);box-shadow:0 28px 72px rgba(31,37,48,.16);border-color:rgba(105,132,169,.22)}
.cardx.pad{padding:28px}
.cardx h3,.cardx h4{margin:0 0 12px;font-size:1.22rem;letter-spacing:-.02em;color:var(--navy)}
.cardx p{margin:0;color:var(--muted);line-height:1.7}
.cardx ul{margin:14px 0 0;padding-left:20px;color:var(--muted);line-height:1.8}
.cardx .tag{
  display:inline-flex;padding:7px 10px;border-radius:999px;
  background:rgba(105,132,169,.12);color:var(--navy);font-size:.82rem;font-weight:700;margin-bottom:16px;
}
.cardx .num{
  display:inline-flex;width:42px;height:42px;border-radius:14px;
  align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(38,59,106,.12),rgba(160,213,133,.22));
  color:var(--navy);font-weight:800;margin-bottom:14px;
}
.cardx.media{padding:0}
.cardx.media img{width:100%;height:100%;min-height:280px;object-fit:cover;transition:transform .8s ease}
.cardx.media:hover img{transform:scale(1.045)}

/* BAND — dark navy section */
.band{background:linear-gradient(135deg,rgba(38,59,106,.97),rgba(105,132,169,.95));color:#fff}
.band .section-title,.band .eyebrow,.band p,.band a{color:#fff}
.band .cardx{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.14);box-shadow:none}
.band .cardx h3,.band .cardx h4{color:#fff}
.band .cardx p,.band .cardx li{color:rgba(255,255,255,.84)}
.band .cardx .tag{background:rgba(255,255,255,.14);color:#fff}
.band .cardx:hover{border-color:rgba(255,255,255,.28)}

/* STATS */
.stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:26px}
.stat{padding:18px;border-radius:22px;background:rgba(255,255,255,.78);border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.stat strong{display:block;font-size:1.4rem;letter-spacing:-.03em;color:var(--navy);font-family:'Carlito',Georgia,serif}
.stat span{color:var(--muted);font-size:.92rem}

/* INLINE */
.inline-link{display:inline-flex;align-items:center;gap:10px;font-weight:700;margin-top:14px;color:var(--navy)}
.inline-link:hover{color:var(--sky)}
.reminder{border-left:4px solid var(--lime-2);padding-left:18px;color:var(--muted)}

/* LOGO WALL */
.logo-wall{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}
.logo-tile{
  border-radius:0 20px 20px 20px;padding:18px;background:var(--white);border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;min-height:102px;box-shadow:var(--shadow-soft);
  transition:transform .22s ease,box-shadow .22s ease;
}
.logo-tile:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.logo-tile img{max-height:54px;width:auto;max-width:100%;object-fit:contain}

/* TIMELINE */
.timeline{display:grid;gap:18px}
.timeline-item{display:grid;grid-template-columns:80px 1fr;gap:18px;align-items:start}
.timeline-item .year{font-weight:800;color:var(--navy);font-size:.95rem;padding-top:4px;font-family:'Carlito',Georgia,serif}
.timeline-item .detail{background:var(--white);border:1px solid var(--line);border-radius:22px;padding:18px 20px;box-shadow:var(--shadow-soft)}



/* FRAME STYLES — tuned to match the supplied reference frames */
:root{
  --frame-line:#b8c2d0;
  --frame-bg:#f5f8fc;
  --frame-text:#2e4a80;
  --frame-soft:#7086b0;
  --frame-base:#3f5486;
  --frame-cream:#dde8f6;
  --frame-white:rgba(255,255,255,.78);
  --inset-frame-gap-w:56px;
  --inset-frame-gap-h:44px;
  --frame-grad-hero:
    radial-gradient(120% 120% at 88% 12%, rgba(255,255,255,.62) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(100% 120% at 0% 100%, rgba(105,132,169,.24) 0%, rgba(105,132,169,0) 54%),
    linear-gradient(135deg,#eef4fb 0%,#f9fcff 30%,#e7eff9 68%,#c8d9ef 100%);
  --frame-grad-panel:
    radial-gradient(130% 120% at 86% 10%, rgba(255,255,255,.58) 0%, rgba(255,255,255,0) 40%),
    radial-gradient(90% 120% at 0% 100%, rgba(105,132,169,.14) 0%, rgba(105,132,169,0) 52%),
    linear-gradient(145deg,#edf4fb 0%,#f9fcff 32%,#e5edf8 70%,#c4d5ec 100%);
  --frame-grad-card:
    radial-gradient(130% 130% at 90% 14%, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(110% 120% at 0% 100%, rgba(105,132,169,.18) 0%, rgba(105,132,169,0) 56%),
    linear-gradient(150deg,rgba(237,244,251,.88) 0%,rgba(250,253,255,.94) 34%,rgba(229,237,248,.96) 74%,rgba(207,220,238,.98) 100%);
}

.framed-hero-card{
  position:relative;max-width:none;height:300px;min-height:300px;
  padding:36px 152px 34px 46px;
  background:var(--frame-bg);
  border-top:2px solid var(--frame-line);
  border-left:2px solid var(--frame-line);
  border-bottom:2px solid var(--frame-line);
  border-right:none;
  border-radius:0 0 40px 40px;
  box-shadow:none;
  backdrop-filter:none;
  display:flex;flex-direction:column;justify-content:center;gap:8px;
}
.framed-hero-card:hover{transform:translateY(-2px)}
.framed-hero-card::before{
  content:"";position:absolute;right:24px;top:14px;width:112px;height:56px;
  background:url('logo-dark.png') center/contain no-repeat;opacity:.98;pointer-events:none;
}
.framed-hero-card::after{
  content:"";position:absolute;right:34px;top:74px;bottom:26px;width:2px;
  background:var(--frame-line);border-radius:999px;pointer-events:none;
}
.framed-hero-card .eyebrow{
  font-size:clamp(1.9rem,3vw,2.35rem);
  line-height:1;color:var(--frame-soft);letter-spacing:0;text-transform:none;
  margin-bottom:4px;font-weight:700;
}
.framed-hero-card h1{
  margin:0;color:var(--frame-text);
  font-size:clamp(2.4rem,4vw,3.3rem);
  line-height:1.02;letter-spacing:-.03em;max-width:12ch;
}
.framed-hero-card .lead,
.framed-hero-card .frame-sub{
  margin:10px 0 0;max-width:38ch;
  color:#48608c;font-size:1.04rem;line-height:1.55;font-weight:500;
}

.section-frame-bar{
  position:relative;display:block;width:min(100%,780px);
  padding:18px 82px 16px 28px;
  background:var(--frame-bg);
  border-top:2px solid var(--frame-line);
  border-left:2px solid var(--frame-line);
  border-bottom:2px solid var(--frame-line);
  border-right:none;
  border-radius:0 0 30px 30px;
  box-shadow:none;
}
.section-frame-bar::after{
  content:"";position:absolute;right:22px;top:14px;bottom:14px;width:2px;
  background:var(--frame-line);border-radius:999px;opacity:.9;
}
.section-frame-bar .eyebrow{
  margin:0 0 6px;font-size:1rem;letter-spacing:0;text-transform:none;
  color:var(--frame-soft);
}
.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3{
  margin:0;color:var(--frame-text) !important;
  font-size:clamp(1.8rem,3vw,2.2rem);line-height:1.06;
}
.band .section-frame-bar{
  background:rgba(255,255,255,.97);
}
.band .section-frame-bar .eyebrow,
.band .section-frame-bar .section-title,
.band .section-frame-bar h2,
.band .section-frame-bar h3{color:var(--frame-text) !important}

@media(max-width:900px){
  .framed-hero-card{padding:30px 124px 28px 30px}
  .framed-hero-card::before{width:88px;height:44px;right:18px;top:14px}
  .framed-hero-card::after{right:24px;top:60px;bottom:20px}
}
@media(max-width:640px){
  .framed-hero-card{padding:24px 26px 26px 22px;height:auto;min-height:260px;border-radius:0 0 28px 28px}
  .framed-hero-card::before{width:70px;height:34px;right:14px;top:10px}
  .framed-hero-card::after{display:none}
  .framed-hero-card .eyebrow{font-size:1.55rem}
  .framed-hero-card h1{font-size:2rem;max-width:none;padding-right:56px}
  .framed-hero-card .lead,.framed-hero-card .frame-sub{font-size:.96rem;max-width:none}
  .section-frame-bar{padding:14px 18px 14px 18px;border-radius:0 0 24px 24px}
  .section-frame-bar::after{display:none}
}

/* PAGE HERO */
.page-hero{
  position:relative;overflow:hidden;padding:76px 24px 44px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(105deg,rgba(245,248,252,.78) 0%,rgba(245,248,252,.60) 34%,rgba(255,255,255,.24) 58%,rgba(31,37,48,.16) 100%),
    var(--hero) center/cover no-repeat;
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0) 35%,rgba(31,37,48,.06) 100%);
  pointer-events:none;
}
.page-hero .section-inner{position:relative;z-index:1}
.page-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:stretch}
.page-hero-photo{
  position:relative;height:300px;min-height:300px;padding:0;border-radius:0 34px 34px 34px;overflow:hidden;
  background:transparent;
  box-shadow:0 18px 42px rgba(38,59,106,.12);border:none;isolation:isolate;
  transition:transform .28s ease,box-shadow .28s ease;
}
.page-hero-photo:hover{transform:translateY(-4px);box-shadow:0 24px 52px rgba(38,59,106,.16)}
.page-hero-photo::before{
  content:"";position:absolute;inset:26px;border:2px solid rgba(255,255,255,.78);border-radius:22px 22px 32px 32px;
  pointer-events:none;z-index:2;
}
.page-hero-photo::after{
  content:"";position:absolute;top:18px;right:18px;width:108px;height:48px;
  background:url('logo-dark.png') right top/contain no-repeat;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));opacity:.96;pointer-events:none;z-index:3;
}
.page-hero-photo img{
  width:100%;height:100%;min-height:0;object-fit:cover;display:block;position:relative;z-index:1;
  border-radius:0 34px 34px 34px;transition:transform .8s ease;
}
.page-hero-photo:hover img{transform:scale(1.03)}
.page-hero-card{
  position:relative;max-width:none;height:300px;min-height:300px;
  padding:28px 26px;border-radius:0 26px 26px 26px;
  background:linear-gradient(135deg,rgba(255,255,255,.84),rgba(236,243,251,.72));
  backdrop-filter:blur(8px);
  box-shadow:0 22px 55px rgba(31,37,48,.14);border:1px solid rgba(255,255,255,.42);
  display:flex;flex-direction:column;justify-content:center;
  transition:transform .28s ease,box-shadow .28s ease;
}
.page-hero-card:hover{transform:translateY(-6px);box-shadow:0 28px 72px rgba(31,37,48,.18)}
.page-hero-card::before{
  content:"";position:absolute;inset:12px;border-radius:0 18px 18px 18px;
  border:1px solid rgba(38,59,106,.16);pointer-events:none;
}
.page-hero-card::after{
  content:"";position:absolute;right:18px;bottom:16px;width:118px;height:34px;
  background:url('submark-wave-only.png') right center/contain no-repeat;
  opacity:.26;pointer-events:none;
}
.page-hero h1{font-size:clamp(2rem,4vw,3.5rem);max-width:none;color:var(--navy)}
.page-hero h2{color:var(--navy)}
.page-hero .lead{max-width:62ch}

/* CTA BOX */
.cta-box{
  border-radius:34px;padding:42px;
  background:linear-gradient(135deg,rgba(38,59,106,.98),rgba(105,132,169,.96));
  color:#fff;box-shadow:0 30px 65px rgba(38,59,106,.20);
}
.cta-box .section-title{color:#fff}
.cta-box p{color:rgba(255,255,255,.86);max-width:68ch}
.cta-box .eyebrow{color:var(--lime)}

/* FOOTER */
.footer{padding:28px 24px 46px;border-top:1px solid var(--line);background:rgba(244,242,237,.80)}
.footer-wrap{
  max-width:var(--max);margin:0 auto;display:flex;justify-content:space-between;
  gap:24px;flex-wrap:wrap;color:var(--muted);font-size:.95rem;
}
.footer-brand{display:flex;align-items:center;gap:12px}
.footer-brand img{height:34px}
.footer-nav{display:flex;gap:18px;flex-wrap:wrap}
.footer-nav a{color:var(--muted)}
.footer-nav a:hover{color:var(--navy)}
.footer-values{
  width:100%;padding-top:18px;margin-top:14px;border-top:1px solid var(--line);
  display:flex;align-items:center;flex-wrap:wrap;gap:6px;
  font-family:'Carlito',Georgia,serif;
  font-size:.78rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--sky);
}
.footer-values .val-sep{color:var(--line);font-weight:400}

/* MISC */
.callout{padding:42px 30px 28px 30px;border-radius:24px;background:rgba(255,255,255,.78);border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.callout h2{color:var(--navy)}
.feature-list{display:grid;gap:14px}
.feature{padding:18px 20px;border-radius:22px;background:var(--white);border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.feature strong{display:block;color:var(--navy);margin-bottom:8px}
.detail-list{display:grid;gap:14px}
.detail-card{border-radius:22px;padding:22px;background:var(--white);border:1px solid var(--line);box-shadow:var(--shadow-soft)}
.detail-card p:last-child{margin-bottom:0}
.accordion-button{font-weight:700;color:var(--ink)}
.modal-content{border-radius:28px;border:1px solid var(--line);box-shadow:var(--shadow)}
.modal-header{border-bottom:1px solid var(--line)}
.contact-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:22px}
.contact-list{display:grid;gap:14px;margin-top:18px}
.contact-item{
  padding:16px 18px;border-radius:20px;background:var(--white);
  border:1px solid var(--line);box-shadow:var(--shadow-soft);
  transition:transform .22s ease,box-shadow .22s ease;
}
.contact-item:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.contact-item small{display:block;color:var(--muted);margin-top:4px}
.notice{padding:14px 16px;border-radius:18px;background:rgba(238,250,189,.40);border:1px solid rgba(38,59,106,.10);color:var(--ink)}
.contact-icon-link{display:inline-flex;align-items:center;gap:10px;font-weight:600}
.contact-icon-link .contact-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:12px;
  background:rgba(38,59,106,.09);border:1px solid rgba(38,59,106,.12);
  color:var(--navy);flex:0 0 auto;transition:transform .2s ease,background .2s ease;
}
.contact-item:hover .contact-icon{background:rgba(38,59,106,.16);transform:scale(1.05)}
.contact-icon-link svg{width:18px;height:18px;display:block}
.image-split{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.image-panel{
  position:relative;padding:0;border-radius:0 34px 34px 34px;overflow:hidden;
  background:transparent;
  box-shadow:0 18px 42px rgba(38,59,106,.12);border:none;isolation:isolate;
  transition:transform .28s ease,box-shadow .28s ease;
}
.image-panel:hover{transform:translateY(-4px);box-shadow:0 24px 52px rgba(38,59,106,.16)}
.image-panel::before{
  content:"";position:absolute;inset:26px;border:2px solid rgba(255,255,255,.78);border-radius:22px 22px 32px 32px;
  pointer-events:none;z-index:2;
}
.image-panel::after{
  content:"";position:absolute;top:18px;right:18px;width:102px;height:44px;
  background:url('logo-dark.png') right top/contain no-repeat;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));opacity:.96;pointer-events:none;z-index:3;
}
.image-panel img{width:100%;height:100%;min-height:340px;object-fit:cover;transition:transform .8s ease;position:relative;z-index:1;border-radius:0 34px 34px 34px}
.image-panel:hover img{transform:scale(1.03)}
.image-panel .overlay{
  position:absolute;inset:auto 18px 18px 18px;padding:16px 18px;border-radius:20px;
  background:rgba(255,255,255,.82);backdrop-filter:blur(8px);color:var(--ink);
}
.partner-badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.partner-badges span{padding:8px 12px;border-radius:999px;background:rgba(38,59,106,.08);border:1px solid var(--line);color:var(--navy);font-size:.9rem}
table.mini{width:100%;border-collapse:separate;border-spacing:0 12px}
table.mini td{padding:16px 18px;background:var(--white);border:1px solid var(--line)}
table.mini td:first-child{border-radius:18px 0 0 18px;font-weight:700;color:var(--navy);width:32%;font-family:'Carlito',Georgia,serif}
table.mini td:last-child{border-radius:0 18px 18px 0;color:var(--muted)}
.small-muted{color:var(--muted);font-size:.95rem}
.photo-note{padding:14px 16px;color:var(--muted);font-size:.95rem;font-family:Georgia,'Times New Roman',serif}

/* FRAMING */
.framing-showcase{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.frame-card{
  background:transparent;border:none;border-radius:0 24px 24px 24px;
  box-shadow:var(--shadow);padding:0;position:relative;overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease;
}
.frame-card:hover{transform:translateY(-6px);box-shadow:0 28px 72px rgba(31,37,48,.16)}
.frame-card::after{
  content:"";position:absolute;top:16px;right:16px;width:96px;height:40px;
  background:url('logo-dark.png') center/contain no-repeat;opacity:.96;pointer-events:none;z-index:3;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.frame-card::before{
  content:"";position:absolute;inset:24px;border:2px solid rgba(255,255,255,.78);
  border-radius:0 18px 18px 18px;pointer-events:none;z-index:2;
}
.frame-note{display:none}
.frame-rect img{width:100%;height:336px;object-fit:cover;border-radius:0 24px 24px 24px;transition:transform .8s ease}
.frame-card:hover .frame-rect img{transform:scale(1.035)}
.frame-circle{display:flex;align-items:center;justify-content:center;padding:18px;min-height:280px}
.frame-circle-inner{
  position:relative;border-radius:50%;overflow:hidden;width:230px;height:230px;
  border:4px solid var(--sky);box-shadow:var(--shadow);
}
.frame-circle-inner img{width:100%;height:100%;object-fit:cover}

/* IMAGE GRID 3 */
.image-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.image-grid-3 .cardx.media{background:transparent;padding:0;border-radius:0 26px 26px 26px;border:none;box-shadow:var(--shadow-soft)}
.image-grid-3 .cardx.media::after{
  content:"";position:absolute;top:16px;right:16px;width:96px;height:40px;
  background:url('logo-dark.png') center/contain no-repeat;opacity:.96;pointer-events:none;z-index:3;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.image-grid-3 .cardx.media::before{
  content:"";position:absolute;inset:24px 24px 64px;border:1.5px solid rgba(255,255,255,.72);border-radius:0 18px 18px 18px;
  pointer-events:none;z-index:2;
}
.image-grid-3 .cardx.media img{border-radius:0 26px 26px 26px;min-height:260px;position:relative;z-index:1}

/* FILTER BAR */
.browse-bar{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 26px}
.browse-pill{
  padding:10px 16px;border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.84);color:var(--ink);font-weight:700;
  box-shadow:var(--shadow-soft);cursor:pointer;
  transition:background .18s,color .18s,border-color .18s;
}
.browse-pill.is-active,.browse-pill:hover{background:var(--navy);color:#fff;border-color:var(--navy)}

/* LIGHTBOX */
.lightbox{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(10,14,24,.9);z-index:9999;padding:30px}
.lightbox.is-open{display:flex}
.lightbox-image{max-width:min(1200px,88vw);max-height:78vh;border-radius:22px;box-shadow:0 30px 80px rgba(0,0,0,.4);background:#111}
.lightbox-caption{position:fixed;left:50%;transform:translateX(-50%);bottom:26px;color:#fff;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(8px);padding:10px 14px;border-radius:999px;max-width:78vw;text-align:center}
.lightbox-close,.lightbox-prev,.lightbox-next{position:fixed;border:0;border-radius:999px;width:48px;height:48px;background:rgba(255,255,255,.14);color:#fff;font-size:1.8rem;display:flex;align-items:center;justify-content:center;cursor:pointer}
.lightbox-close{top:20px;right:20px}
.lightbox-prev{left:22px;top:50%;transform:translateY(-50%)}
.lightbox-next{right:22px;top:50%;transform:translateY(-50%)}

/* TRACK RECORD */
.track-showcase{padding-top:34px}
.track-wow-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:22px;align-items:stretch}
.track-wow-stack{display:grid;gap:22px}
.track-shot{
  position:relative;overflow:hidden;border-radius:0 30px 30px 30px;min-height:260px;
  background:transparent;box-shadow:0 26px 72px rgba(31,37,48,.18);
  border:none;isolation:isolate;
}
.track-shot-large{min-height:542px}
.track-shot-large>img:not(.ghost-logo){object-position:center 24%}
.track-shot>img:not(.ghost-logo){width:100%;height:100%;object-fit:cover;object-position:center center;transition:transform .9s ease,filter .35s ease}
.track-shot:hover>img:not(.ghost-logo){transform:scale(1.06)}
.track-shot::before{content:"";position:absolute;inset:26px;border:1.6px solid rgba(255,255,255,.74);border-radius:22px 22px 32px 32px;pointer-events:none;z-index:2}
.track-shot::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(31,37,48,.42));pointer-events:none;z-index:1}
.track-shot .ghost-logo{position:absolute;top:18px;right:18px;width:96px;height:auto;opacity:.94;z-index:3;pointer-events:none;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.22))}
.track-shot .track-copy{position:absolute;left:22px;right:22px;bottom:22px;z-index:3;color:#fff}
.track-shot .track-copy strong{display:block;font-size:1.08rem;letter-spacing:-.01em;margin-bottom:6px;font-family:'Carlito',Georgia,serif}
.track-shot .track-copy span{display:block;font-size:.94rem;line-height:1.55;color:rgba(255,255,255,.88)}

/* SCROLL REVEAL */
.reveal-on-scroll{opacity:0;transform:translateY(26px);transition:opacity .72s ease,transform .72s ease}
.reveal-on-scroll.is-visible{opacity:1;transform:none}

/* RESPONSIVE */
@media(max-width:1080px){
  .hero-grid,.grid-4,.grid-3,.grid-2,.image-split,.contact-grid,.stats,.framing-showcase,.page-hero-grid{grid-template-columns:1fr 1fr}
  .logo-wall{grid-template-columns:repeat(4,minmax(0,1fr))}
  .track-wow-grid{grid-template-columns:1fr}
  .track-shot-large{min-height:420px}
  .image-grid-3{grid-template-columns:1fr 1fr}
}
@media(max-width:860px){
  .nav-toggle{display:block}
  .nav-links{
    display:none;position:absolute;left:16px;right:16px;top:86px;
    background:rgba(244,242,237,.96);padding:18px;border-radius:22px;
    border:1px solid var(--line);box-shadow:var(--shadow);flex-direction:column;align-items:flex-start;
  }
  .nav-links.open{display:flex}
  .hero-grid,.grid-4,.grid-3,.grid-2,.image-split,.contact-grid,.stats,.framing-showcase,.page-hero-grid{grid-template-columns:1fr}
  .logo-wall{grid-template-columns:repeat(3,minmax(0,1fr))}
  .hero{padding-top:50px}
  .logo-stage{min-height:420px}
  .timeline-item{grid-template-columns:1fr}
  .lightbox-prev,.lightbox-next{display:none}
  .image-grid-3{grid-template-columns:1fr}
}
@media(max-width:560px){
  .nav-wrap,.hero,.section,.footer{padding-left:18px;padding-right:18px}
  .brand img{height:46px}
  .logo-wall{grid-template-columns:repeat(2,minmax(0,1fr))}
  .logo-stage .caption{font-size:.84rem}
  .frame-rect img{height:260px}
  .page-hero-card,.page-hero-photo{height:240px;min-height:240px}
  .page-hero-photo img{min-height:0}
  .logo-stage::before{width:84px;height:26px;right:12px;bottom:12px}
  .page-hero-photo{padding:0;border-radius:0 28px 28px 28px}
  .page-hero-photo::before{inset:18px;border-radius:18px}
  .page-hero-photo::after{top:12px;right:12px;width:80px;height:34px}
  .image-panel{padding:0;border-radius:0 28px 28px 28px}
  .image-panel::before{inset:18px;border-radius:0 18px 18px 18px}
  .image-panel::after{top:12px;right:12px;width:78px;height:34px}
  .track-shot,.track-shot-large{min-height:260px}
  .track-shot::before{inset:18px;border-radius:0 18px 18px 18px}
  .track-shot .ghost-logo{width:84px;top:12px;right:12px}
}


/* ============================================================
   Alignment refinement update
   Harmonises wording blocks, frame insets, image crops, and logo positions
   ============================================================ */
:root{
  --media-radius:34px;
  --media-inner-radius:22px;
  --media-inset:26px;
  --media-logo-top:18px;
  --media-logo-right:18px;
  --media-logo-w:102px;
  --media-logo-h:44px;
  --media-copy-safe:118px;
}

.page-hero-grid{gap:28px;align-items:stretch}
.page-hero-card,
.framed-hero-card,
.page-hero-photo{
  min-height:320px;
  height:320px;
}

.page-hero-card,
.framed-hero-card{
  justify-content:flex-end;
}

.page-hero-card h1,
.framed-hero-card h1,
.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3,
.section-title,
.track-shot .track-copy strong,
.image-panel .overlay strong,
.image-grid-3 .cardx.media .photo-note strong{
  text-wrap:balance;
}

.page-hero h1{
  max-width:15ch;
  line-height:1.03;
}

.page-hero-card .eyebrow,
.framed-hero-card .eyebrow{
  margin-bottom:8px;
}

.framed-hero-card{
  padding:38px 148px 36px 42px;
}
.framed-hero-card::before{
  right:22px;
  top:14px;
}
.framed-hero-card::after{
  right:32px;
  top:72px;
  bottom:24px;
}
.framed-hero-card h1{
  max-width:13ch;
}
.framed-hero-card .lead,
.framed-hero-card .frame-sub{
  max-width:40ch;
}

.page-hero-card{
  padding:34px 32px;
}
.page-hero-card::before{
  inset:14px;
}
.page-hero-card::after{
  right:18px;
  bottom:18px;
}

.page-hero-photo,
.image-panel,
.track-shot,
.image-grid-3 .cardx.media,
.frame-card{
  border-radius:0 var(--media-radius) var(--media-radius) var(--media-radius);
}

.page-hero-photo img,
.image-panel img,
.image-grid-3 .cardx.media img,
.frame-rect img{
  border-radius:0 var(--media-radius) var(--media-radius) var(--media-radius);
}

.page-hero-photo::before,
.image-panel::before,
.track-shot::before,
.image-grid-3 .cardx.media::before,
.frame-card::before{
  inset:var(--media-inset);
  border-radius:0 var(--media-inner-radius) var(--media-inner-radius) var(--media-inner-radius);
  border-width:1.8px;
  border-style:solid;
  border-color:rgba(255,255,255,.76);
  -webkit-mask:
    linear-gradient(#000 0 0) left top/calc(100% - var(--inset-frame-gap-w)) 100% no-repeat,
    linear-gradient(#000 0 0) left bottom/100% calc(100% - var(--inset-frame-gap-h)) no-repeat;
  mask:
    linear-gradient(#000 0 0) left top/calc(100% - var(--inset-frame-gap-w)) 100% no-repeat,
    linear-gradient(#000 0 0) left bottom/100% calc(100% - var(--inset-frame-gap-h)) no-repeat;
}

.page-hero-photo::after,
.image-panel::after,
.track-shot .ghost-logo,
.image-grid-3 .cardx.media::after,
.frame-card::after{
  top:var(--media-logo-top);
  right:var(--media-logo-right);
  width:var(--media-logo-w);
  height:var(--media-logo-h);
}

.image-grid-3 .cardx.media::after,
.frame-card::after{
  background-position:right top;
  background-repeat:no-repeat;
  background-size:contain;
}

.image-grid-3 .cardx.media img{
  min-height:290px;
}

.image-grid-3 .cardx.media .photo-note,
.image-panel .overlay,
.track-shot .track-copy{
  max-width:min(560px,calc(100% - 36px));
}

.page-about .about-hero-photo{
  --inset-frame-gap-w:calc(var(--media-logo-w) + 34px);
  --inset-frame-gap-h:calc(var(--media-logo-h) + 24px);
}


.image-panel .overlay{
  left:18px;
  right:18px;
  bottom:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(8px);
}
.image-panel .overlay strong{
  display:block;
  font-family:'Carlito',Georgia,serif;
  color:var(--navy);
  font-size:1.08rem;
  margin-bottom:4px;
}

.track-shot .track-copy{
  left:22px;
  right:22px;
}
.track-shot .track-copy strong{
  max-width:24ch;
}
.track-shot .track-copy span{
  max-width:48ch;
}

.section-frame-bar{
  width:min(100%,820px);
  padding-right:86px;
}

@media(max-width:900px){
  .page-hero-card,
  .framed-hero-card,
  .page-hero-photo{min-height:300px;height:300px}
  .framed-hero-card{padding:32px 124px 30px 30px}
}

@media(max-width:640px){
  .page-about .about-hero-photo{
    --inset-frame-gap-w:calc(var(--media-logo-w) + 24px);
    --inset-frame-gap-h:calc(var(--media-logo-h) + 16px);
  }
}

@media(max-width:640px){
  :root{
    --media-inset:18px;
    --media-logo-top:12px;
    --media-logo-right:12px;
    --media-logo-w:80px;
    --media-logo-h:34px;
  }
  .page-hero-card,
  .framed-hero-card,
  .page-hero-photo{height:auto;min-height:250px}
  .page-hero-card{padding:24px 22px}
  .framed-hero-card{padding:24px 24px 24px 22px}
  .page-hero h1,
  .framed-hero-card h1{max-width:none}
  .section-frame-bar{padding:14px 18px}
  .image-grid-3 .cardx.media img{min-height:250px}
  .track-shot .track-copy,
  .image-panel .overlay{max-width:calc(100% - 28px)}
}

/* ============================================================
   Alignment refinement pass 2
   Tightens wording blocks, media captions, logo-safe frame gaps,
   and cross-page spacing for a cleaner visual system.
   ============================================================ */
:root{
  --align-gutter: clamp(22px,2.3vw,34px);
  --align-safe-right: clamp(120px,9vw,144px);
  --align-copy-inset: 18px;
  --align-copy-radius: 18px;
  --align-copy-width: 42ch;
  --align-media-gap-w: calc(var(--media-logo-w) + max(8px, calc(var(--media-logo-right) - var(--media-inset))) + 8px);
  --align-media-gap-h: calc(var(--media-logo-h) + max(4px, calc(var(--media-logo-top) - var(--media-inset))) + 4px);
}

.page-hero-grid,
.image-split,
.track-wow-grid,
.track-wow-stack,
.image-grid-3,
.framing-showcase{
  align-items:stretch;
}

.page-hero-card,
.framed-hero-card,
.section-frame-bar,
.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy,
.page-hero .lead,
.framed-hero-card .frame-sub,
.framed-hero-card .lead{
  text-wrap:pretty;
}

.page-hero-card,
.framed-hero-card{
  padding-left:var(--align-gutter);
}

.framed-hero-card{
  padding-right:var(--align-safe-right);
  padding-bottom:34px;
  gap:10px;
}
.framed-hero-card h1{
  max-width:12ch;
}
.framed-hero-card .frame-sub,
.framed-hero-card .lead{
  max-width:var(--align-copy-width);
  margin-top:8px;
}
.framed-hero-card::before{
  right:18px;
  top:14px;
}
.framed-hero-card::after{
  right:28px;
  top:70px;
  bottom:22px;
}

.page-hero-card{
  padding-right:calc(var(--align-gutter) + 4px);
}
.page-hero h1,
.page-hero-card h1{
  max-width:13ch;
}
.page-hero .lead{
  max-width:46ch;
}
.page-hero-card::before{
  inset:14px;
}

.section-top{
  gap:22px;
  align-items:flex-end;
}
.section-frame-bar{
  min-height:112px;
  padding-left:var(--align-gutter);
  padding-right:calc(var(--align-safe-right) - 26px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.section-frame-bar .eyebrow{
  margin-bottom:8px;
}
.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3{
  max-width:18ch;
}

.page-hero-photo::before,
.image-panel::before,
.track-shot::before,
.image-grid-3 .cardx.media::before,
.frame-card::before{
  --inset-frame-gap-w: var(--align-media-gap-w);
  --inset-frame-gap-h: var(--align-media-gap-h);
}

.page-hero-photo::before,
.image-panel::before,
.track-shot::before,
.frame-card::before{
  inset:var(--media-inset);
}

.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy{
  left:var(--align-copy-inset);
  right:var(--align-copy-inset);
  bottom:var(--align-copy-inset);
  max-width:calc(100% - (var(--align-copy-inset) * 2));
}

.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note{
  padding:14px 16px;
  border-radius:var(--align-copy-radius);
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(8px);
  box-shadow:0 10px 24px rgba(31,37,48,.10);
}
.image-panel .overlay strong,
.image-grid-3 .cardx.media .photo-note strong{
  display:block;
  color:var(--navy);
  font-family:'Carlito',Georgia,serif;
  font-size:1.06rem;
  line-height:1.14;
  margin-bottom:4px;
}
.image-panel .overlay .small-muted,
.image-grid-3 .cardx.media .photo-note{
  font-size:.94rem;
  line-height:1.5;
}

.image-grid-3 .cardx.media{
  min-height:320px;
}
.image-grid-3 .cardx.media::before{
  inset:var(--media-inset);
}
.image-grid-3 .cardx.media img{
  min-height:320px;
  height:100%;
}
.image-grid-3 .cardx.media .photo-note{
  position:absolute;
  z-index:3;
  margin:0;
  color:var(--ink);
}

.track-shot .track-copy{
  z-index:3;
}
.track-shot .track-copy strong{
  margin-bottom:5px;
  max-width:22ch;
}
.track-shot .track-copy span{
  display:block;
  max-width:40ch;
  line-height:1.48;
}
.track-shot.track-shot-large .track-copy strong{
  max-width:24ch;
}

@media(max-width:900px){
  .framed-hero-card{
    padding-left:28px;
    padding-right:120px;
  }
  .section-frame-bar{
    padding-left:24px;
    padding-right:80px;
  }
}

@media(max-width:640px){
  :root{
    --align-gutter:22px;
    --align-safe-right:88px;
    --align-copy-inset:14px;
    --align-copy-radius:16px;
  }
  .page-hero-card,
  .framed-hero-card{
    padding-left:22px;
  }
  .framed-hero-card{
    padding-right:22px;
  }
  .framed-hero-card::after{
    display:none;
  }
  .section-frame-bar{
    min-height:auto;
    padding-left:18px;
    padding-right:18px;
  }
  .section-frame-bar .section-title,
  .section-frame-bar h2,
  .section-frame-bar h3,
  .page-hero h1,
  .page-hero-card h1,
  .framed-hero-card h1{
    max-width:none;
  }
  .image-grid-3 .cardx.media,
  .image-grid-3 .cardx.media img{
    min-height:260px;
  }
}

/* ============================================================
   Alignment refinement pass 3
   Aligns text inside media overlays and content boxes more tightly.
   ============================================================ */
:root{
  --box-pad-gap: 14px;
  --box-head-max: 24ch;
  --box-copy-max: 54ch;
  --overlay-copy-max: 34ch;
}

.cardx.pad,
.feature,
.detail-card,
.callout,
.cta-box,
.contact-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.cardx.pad,
.detail-card,
.callout,
.contact-item{
  gap:var(--box-pad-gap);
}

.feature{
  gap:8px;
  justify-content:flex-start;
}

.cardx.pad > :last-child,
.feature > :last-child,
.detail-card > :last-child,
.callout > :last-child,
.cta-box > :last-child,
.contact-item > :last-child,
.image-panel .overlay > :last-child,
.image-grid-3 .cardx.media .photo-note > :last-child,
.track-shot .track-copy > :last-child{
  margin-bottom:0;
}

.grid-2 > .cardx.pad,
.grid-3 > .cardx.pad,
.grid-4 > .cardx.pad{
  justify-content:flex-start;
}

.grid-2 > .cardx.pad h3,
.grid-3 > .cardx.pad h3,
.grid-4 > .cardx.pad h3,
.grid-4 > .cardx.pad h4{
  min-height:2.5em;
  max-width:var(--box-head-max);
  line-height:1.12;
  display:block;
}

.cardx.pad h3,
.cardx.pad h4,
.feature strong,
.detail-card h3,
.detail-card h4,
.callout h2,
.cta-box h2,
.contact-item strong,
.image-panel .overlay strong,
.track-shot .track-copy strong,
.image-grid-3 .cardx.media .photo-note strong{
  text-wrap:balance;
}

.cardx.pad p,
.detail-card p,
.callout p,
.contact-item p,
.feature,
.feature-list,
.page-hero-card p,
.framed-hero-card p{
  max-width:var(--box-copy-max);
}

.cardx .tag,
.cardx .num,
.cardx.pad .eyebrow,
.callout .eyebrow,
.cta-box .eyebrow,
.section-frame-bar .eyebrow{
  margin-bottom:0;
}

.feature strong{
  margin-bottom:0;
  line-height:1.12;
}

.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  text-align:left;
}

.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note{
  gap:4px;
}

.image-panel .overlay{
  max-width:min(var(--overlay-copy-max), calc(100% - (var(--align-copy-inset) * 2)));
}

.image-panel .overlay strong,
.track-shot .track-copy strong{
  max-width:var(--overlay-copy-max);
}

.image-panel .overlay .small-muted,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy span{
  max-width:46ch;
}

.image-grid-3 .cardx.media{
  display:flex;
  align-items:stretch;
}

.image-grid-3 .cardx.media .photo-note{
  inset:auto var(--align-copy-inset) var(--align-copy-inset) var(--align-copy-inset);
}

.logo-stage .caption{
  align-items:flex-end;
}

.logo-stage .caption span{
  display:flex;
  align-items:center;
  min-height:44px;
}

.section-frame-bar{
  gap:6px;
}

.page-hero-card,
.framed-hero-card{
  gap:10px;
}

@media(max-width:900px){
  .grid-2 > .cardx.pad h3,
  .grid-3 > .cardx.pad h3,
  .grid-4 > .cardx.pad h3,
  .grid-4 > .cardx.pad h4{
    min-height:auto;
    max-width:none;
  }

  .image-panel .overlay,
  .track-shot .track-copy,
  .image-grid-3 .cardx.media .photo-note{
    max-width:calc(100% - (var(--align-copy-inset) * 2));
  }
}

@media(max-width:640px){
  :root{
    --box-pad-gap: 12px;
    --overlay-copy-max: 100%;
  }

  .cardx.pad,
  .detail-card,
  .callout,
  .cta-box,
  .contact-item{
    gap:12px;
  }
}

/* ============================================================
   Overflow correction pass
   Keeps framed text inside the frame geometry.
   ============================================================ */
:root{
  --frame-safe-side: 100px;
  --frame-safe-copy: 58ch;
  --section-frame-safe-side: 108px;
  --section-frame-copy: 34ch;
  --overlay-safe-copy: 28ch;
}

.page-hero-card,
.framed-hero-card,
.section-frame-bar,
.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy{
  overflow:hidden;
}

.page-hero-card,
.framed-hero-card{
  height:auto;
  min-height:300px;
  justify-content:flex-start;
  padding-top:30px;
  padding-bottom:30px;
}

.page-hero-card h1,
.framed-hero-card h1{
  font-size:clamp(1.65rem,2.55vw,2.7rem);
  line-height:1.03;
  max-width:min(23ch, calc(100% - var(--frame-safe-side)));
  overflow-wrap:anywhere;
  word-break:normal;
  hyphens:auto;
}

.page-hero-card p,
.page-hero-card .lead,
.framed-hero-card p,
.framed-hero-card .lead,
.framed-hero-card .frame-sub{
  max-width:min(var(--frame-safe-copy), calc(100% - var(--frame-safe-side)));
  overflow-wrap:anywhere;
  hyphens:auto;
  line-height:1.55;
}

.page-hero-card .eyebrow,
.framed-hero-card .eyebrow{
  font-size:clamp(1rem,1.5vw,1.2rem);
}

.section-frame-bar{
  min-height:116px;
  padding-top:20px;
  padding-bottom:20px;
}

.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3{
  font-size:clamp(1.35rem,1.85vw,1.95rem);
  line-height:1.08;
  max-width:min(var(--section-frame-copy), calc(100% - var(--section-frame-safe-side)));
  overflow-wrap:anywhere;
  hyphens:auto;
}

.image-panel .overlay,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy{
  width:min(100%, 31rem);
  max-width:calc(100% - (var(--align-copy-inset) * 2));
}

.image-panel .overlay strong,
.image-grid-3 .cardx.media .photo-note strong,
.track-shot .track-copy strong{
  font-size:clamp(.98rem,1.35vw,1.16rem);
  line-height:1.12;
  max-width:var(--overlay-safe-copy);
  overflow-wrap:anywhere;
  hyphens:auto;
}

.image-panel .overlay .small-muted,
.image-grid-3 .cardx.media .photo-note,
.track-shot .track-copy span{
  max-width:min(42ch, 100%);
  overflow-wrap:anywhere;
  hyphens:auto;
}

@media(max-width:900px){
  :root{
    --frame-safe-side: 92px;
    --section-frame-safe-side: 90px;
    --section-frame-copy: 100%;
    --overlay-safe-copy: 100%;
  }

  .page-hero-card,
  .framed-hero-card{
    min-height:280px;
    padding-top:26px;
    padding-bottom:26px;
  }

  .page-hero-card h1,
  .framed-hero-card h1{
    font-size:clamp(1.5rem,4vw,2.2rem);
    max-width:calc(100% - var(--frame-safe-side));
  }

  .section-frame-bar .section-title,
  .section-frame-bar h2,
  .section-frame-bar h3{
    font-size:clamp(1.2rem,3vw,1.7rem);
    max-width:calc(100% - var(--section-frame-safe-side));
  }
}

@media(max-width:640px){
  :root{
    --frame-safe-side: 24px;
    --section-frame-safe-side: 24px;
  }

  .page-hero-card,
  .framed-hero-card,
  .section-frame-bar{
    min-height:auto;
  }

  .page-hero-card h1,
  .framed-hero-card h1,
  .section-frame-bar .section-title,
  .section-frame-bar h2,
  .section-frame-bar h3{
    max-width:none;
  }

  .image-panel .overlay,
  .image-grid-3 .cardx.media .photo-note,
  .track-shot .track-copy{
    width:auto;
    max-width:calc(100% - 28px);
  }
}


/* Track record frame fit hotfix */
.track-shot .track-copy{
  left:32px;
  right:auto;
  bottom:34px;
  width:min(24rem, calc(100% - 124px));
  max-width:min(24rem, calc(100% - 124px));
}
.track-shot.track-shot-large .track-copy{
  width:min(27rem, calc(100% - 132px));
  max-width:min(27rem, calc(100% - 132px));
}
.track-shot .track-copy strong{
  max-width:100%;
  font-size:clamp(.92rem,1.1vw,1.06rem);
  line-height:1.1;
}
.track-shot .track-copy span{
  max-width:100%;
  font-size:clamp(.82rem,.95vw,.92rem);
  line-height:1.4;
}
@media (max-width: 900px){
  .track-shot .track-copy,
  .track-shot.track-shot-large .track-copy{
    left:24px;
    bottom:26px;
    width:min(22rem, calc(100% - 92px));
    max-width:min(22rem, calc(100% - 92px));
  }
}
@media (max-width: 640px){
  .track-shot .track-copy,
  .track-shot.track-shot-large .track-copy{
    left:16px;
    right:16px;
    bottom:16px;
    width:auto;
    max-width:calc(100% - 32px);
  }
}



/* ===== 2026 refresh — VIA Wind review update ===== */
.brand-word > span{
  font-size:1.2rem;
  color:var(--navy);
  font-weight:800;
  letter-spacing:-.03em;
  font-family:'Carlito', Georgia, serif;
}
.nav-links a,
.footer-nav a{letter-spacing:.005em}
.cardx,
.stat,
.callout,
.feature,
.detail-card,
.contact-item,
.logo-tile,
.accordion-item,
.accordion-button,
.image-panel .overlay,
.cta-box,
.notice{
  border-radius:0 24px 24px 24px !important;
}
.accordion-button{border-radius:0 24px 24px 24px !important}
.tag,
.kicker-pill,
.proof-pill,
.soft-chip,
.logo-stage .caption span{
  border-radius:0 999px 999px 999px;
}
.hero-kicker-row,
.proof-pills,
.soft-chip-list,
.link-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.kicker-pill,
.proof-pill,
.soft-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 15px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  color:var(--navy);
  box-shadow:var(--shadow-soft);
  font-size:.92rem;
}
.kicker-pill{
  background:rgba(245,248,252,.96);
  color:var(--muted);
}
.proof-pill strong,
.soft-chip strong{
  color:var(--navy);
  font-family:'Carlito', Georgia, serif;
  font-size:1.04rem;
}
.hero-title .soft{
  color:#61789f;
  font-weight:500;
}
.hero-title .strong{
  color:var(--navy);
}
.hero-v2 .hero-grid{
  align-items:center;
}
.hero-v2 .lead{
  max-width:60ch;
}
.hero-v2 .hero-actions{
  margin-top:24px;
}
.hero-download{
  font-weight:700;
  color:var(--navy);
}
.hero-download small{
  display:block;
  font-weight:500;
  color:var(--muted);
  margin-top:3px;
}
.hero-visual-frame{
  --hero-frame-gap-w:144px;
  --hero-frame-gap-h:60px;
  position:relative;
  min-height:540px;
  overflow:hidden;
  border-radius:36px 36px 36px 36px;
  border:1px solid var(--line);
  background:var(--white);
  box-shadow:0 35px 80px rgba(38,59,106,.16);
}
.hero-visual-frame::before{
  content:"";
  position:absolute;
  inset:26px;
  border:2px solid rgba(255,255,255,.82);
  border-radius:22px 22px 32px 32px;
  z-index:2;
  pointer-events:none;
}
.hero-visual-frame img.hero-main{
  width:100%;
  height:100%;
  min-height:540px;
  object-fit:cover;
  transition:transform .9s ease;
}
.hero-visual-frame:hover img.hero-main{transform:scale(1.04)}
.hero-visual-frame .ghost-logo{
  position:absolute;
  top:18px;
  right:18px;
  width:118px;
  max-width:28%;
  object-fit:contain;
  z-index:3;
  filter:drop-shadow(0 10px 20px rgba(255,255,255,.55)) drop-shadow(0 8px 20px rgba(38,59,106,.18));
}
.hero-visual-frame .visual-note{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:3;
  padding:16px 18px;
  border-radius:0 20px 20px 20px;
  color:#fff;
  background:linear-gradient(180deg,rgba(10,14,24,.08),rgba(10,14,24,.46));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(8px);
}
.section-top.compact{align-items:flex-start}
.service-note{
  max-width:54ch;
  color:var(--muted);
  margin:10px 0 0;
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:6px;
}
.proof-mini{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  padding:16px 18px;
  border-radius:0 20px 20px 20px;
  color:var(--muted);
}
.proof-mini strong{
  display:block;
  color:var(--navy);
  font-size:1.08rem;
  letter-spacing:-.02em;
  margin-bottom:6px;
}
.link-row{
  margin-top:10px;
}
.link-row .btnx{
  padding:12px 18px;
}
.partnership-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.partnership-card{
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  padding:22px;
  border-radius:0 24px 24px 24px;
}
.partnership-card strong{
  display:block;
  color:var(--navy);
  font-size:1.12rem;
  margin-bottom:10px;
}
.capability-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.capability-grid .cardx{
  min-height:100%;
}
.band .btnx.btnx-secondary.soft-band-btn{
  background:rgba(233,242,252,.96);
  color:var(--navy);
  border-color:rgba(255,255,255,.22);
}
.band .btnx.btnx-secondary.soft-band-btn:hover{
  background:#fff;
}
.hero .framed-hero-card{
  min-height:100%;
}
.footer-brand{
  align-items:flex-start;
}
.footer-brand img{
  height:40px;
  width:auto;
}
.footer-brand .small-muted{
  text-transform:none;
  letter-spacing:.01em;
}
@media (max-width: 991px){
  .proof-grid,
  .partnership-grid,
  .capability-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .hero-visual-frame{
    --hero-frame-gap-w:132px;
    --hero-frame-gap-h:56px;
  }
  .hero-visual-frame,
  .hero-visual-frame img.hero-main{
    min-height:420px;
  }
}
@media (max-width: 767px){
  .proof-grid,
  .partnership-grid,
  .capability-grid{
    grid-template-columns:1fr;
  }
  .hero-visual-frame{
    --hero-frame-gap-w:112px;
    --hero-frame-gap-h:50px;
  }
  .hero-visual-frame,
  .hero-visual-frame img.hero-main{
    min-height:320px;
  }
  .hero-visual-frame .ghost-logo{
    width:98px;
    max-width:36%;
  }
}


/* === v5 instruction pass === */
.brand img.brand-lockup{
  height:42px;
  width:auto;
  max-width:240px;
  object-fit:contain;
}
.brand-word{
  justify-content:center;
}
.brand-word .brand-values-text{
  font-family:'Carlito',Georgia,serif;
  font-size:1.08rem;
  letter-spacing:.01em;
  color:var(--navy);
  white-space:nowrap;
}
.footer-logo-primary{
  height:54px !important;
  width:auto;
}
.footer-brand > div > div:first-child{
  font-family:'Carlito',Georgia,serif;
  font-size:1.02rem;
  color:var(--navy);
}
.footer-brand .small-muted{
  font-family:'Montserrat',system-ui,sans-serif !important;
  font-size:.9rem;
  letter-spacing:.01em;
}
.kicker-pill::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  flex:0 0 8px;
}
.hero-v2 .hero-actions{
  gap:10px;
}
.hero-v2 .hero-actions .btnx{
  white-space:nowrap;
  padding:12px 18px;
}
.hero-v2 .hero-actions .hero-download{
  font-weight:700;
}
.hero-visual-frame{
  --hero-frame-gap-w:182px;
  --hero-frame-gap-h:88px;
  aspect-ratio:1 / 1;
  min-height:560px;
}
.hero-visual-frame .ghost-logo{
  width:148px;
  max-width:34%;
  top:18px;
  right:18px;
  filter:drop-shadow(0 10px 18px rgba(255,255,255,.40)) drop-shadow(0 10px 22px rgba(38,59,106,.20));
}
.hero-tagline{
  position:absolute;
  left:40px;
  top:96px;
  z-index:3;
  color:#fff;
  font-family:'Carlito',Georgia,serif;
  font-size:clamp(2rem,3.5vw,3.3rem);
  line-height:.96;
  letter-spacing:-.03em;
  text-shadow:0 10px 24px rgba(0,0,0,.28);
  max-width:280px;
}
.hero-tagline strong{
  font-weight:700;
}
.hero-visual-frame .visual-note{
  display:none !important;
}
.hero .framed-hero-card{
  min-height:560px;
}
.hero-title{
  max-width:12ch;
}
.hero-title .soft{
  color:#5b7399;
}
.band .cardx .num{
  width:auto;
  height:auto;
  padding:8px 12px;
  border-radius:0 999px 999px 999px;
  background:rgba(17,32,67,.38);
  color:#fff;
  font-size:.82rem;
  line-height:1.1;
  display:inline-flex;
  letter-spacing:.01em;
}
.band .cardx h3{
  font-size:1.28rem;
  margin-bottom:14px;
}
.band .cardx .service-note{
  margin-top:0;
}
.callout p,
.cta-box p{
  font-family:'Montserrat',system-ui,sans-serif;
}
.cta-box .section-title{
  margin-bottom:18px;
}
.callout p{
  font-size:1.02rem;
}
.band .btnx.btnx-secondary.soft-band-btn{
  background:rgba(224,239,171,.95);
  color:var(--navy);
  border-color:rgba(224,239,171,.95);
}
.band .btnx.btnx-secondary.soft-band-btn:hover{
  background:#d5eb98;
  color:var(--navy);
}
@media (min-width: 992px){
  .hero-v2 .hero-actions{
    flex-wrap:nowrap;
  }
}
@media (max-width: 991px){
  .brand-word .brand-values-text{
    white-space:normal;
    font-size:1rem;
  }
  .hero .framed-hero-card{
    min-height:auto;
  }
  .hero-visual-frame{
    aspect-ratio:auto;
    min-height:480px;
  }
  .hero-tagline{
    left:28px;
    top:74px;
    font-size:clamp(1.7rem,6vw,2.6rem);
    max-width:220px;
  }
}
@media (max-width: 767px){
  .brand img.brand-lockup{
    height:34px;
    max-width:190px;
  }
  .brand-word .brand-values-text{
    font-size:.94rem;
  }
  .hero-tagline{
    left:22px;
    top:58px;
    max-width:180px;
  }
  .hero-v2 .hero-actions{
    flex-wrap:wrap;
  }
}


/* === v6 dark-logo review fix === */
.brand img.brand-lockup{
  height:44px;
  max-width:250px;
}
.footer-logo-primary{
  height:58px !important;
}
.hero-visual-frame .ghost-logo{
  width:136px;
  max-width:34%;
  top:18px;
  right:18px;
  filter:drop-shadow(0 10px 18px rgba(255,255,255,.60)) drop-shadow(0 10px 24px rgba(0,0,0,.16));
}
.hero-tagline{
  left:54px;
  top:172px;
  max-width:230px;
  font-size:clamp(1.7rem,3vw,2.55rem);
  line-height:1.02;
  letter-spacing:-.03em;
  z-index:4;
}
.hero-tagline::before{
  content:"";
  position:absolute;
  left:-26px;
  top:-18px;
  bottom:-18px;
  width:18px;
  border-radius:12px;
  background:linear-gradient(180deg,rgba(244,242,237,.18),rgba(244,242,237,.08));
  backdrop-filter:blur(2px);
}
.hero-tagline strong{display:inline-block}
.hero-visual-frame,
.hero-visual-frame img.hero-main{
  object-position:center center;
}
.balanced-title{
  max-width:24ch;
}
.service-note-split{
  margin-top:12px;
}
.proof-pill{
  align-items:center;
}
.proof-pill strong + span,
.proof-pill strong + em,
.proof-pill strong + b{
  font-weight:500;
}
@media (max-width: 991px){
  .hero-tagline{
    left:40px;
    top:142px;
    max-width:195px;
    font-size:clamp(1.45rem,4.8vw,2.1rem);
  }
}
@media (max-width: 767px){
  .brand img.brand-lockup{
    height:34px;
    max-width:196px;
  }
  .hero-visual-frame{
    aspect-ratio:1 / 1;
    min-height:0;
  }
  .hero-visual-frame img.hero-main{
    min-height:0;
    height:100%;
    object-position:58% center;
  }
  .hero-tagline{
    left:28px;
    top:auto;
    bottom:28px;
    max-width:148px;
    font-size:1.42rem;
    line-height:1.03;
  }
  .hero-tagline::before{
    left:-22px;
    top:-12px;
    bottom:-12px;
    width:16px;
  }
  .balanced-title{
    max-width:100%;
  }
}


/* === hero alignment + custom top-right logo refinement === */
.hero-visual-frame .ghost-logo{
  width:124px;
  max-width:30%;
  top:18px;
  right:18px;
  filter:drop-shadow(0 10px 18px rgba(255,255,255,.72)) drop-shadow(0 8px 18px rgba(0,0,0,.10));
}
.hero-tagline{
  left:34px;
  top:168px;
  max-width:214px;
  padding-left:6px;
  line-height:1.01;
  isolation:isolate;
}
.hero-tagline::before{
  content:"";
  position:absolute;
  left:-16px;
  top:-22px;
  bottom:-22px;
  width:28px;
  border-radius:16px;
  background:linear-gradient(90deg, rgba(26,37,61,.58) 0%, rgba(26,37,61,.22) 62%, rgba(26,37,61,0) 100%);
  z-index:-1;
}
@media (max-width: 991px){
  .hero-tagline{
    left:28px;
    top:136px;
    max-width:190px;
  }
}
@media (max-width: 767px){
  .hero-tagline{
    left:20px;
    bottom:24px;
    top:auto;
    max-width:142px;
    padding-left:4px;
  }
  .hero-tagline::before{
    left:-14px;
    top:-12px;
    bottom:-12px;
    width:24px;
  }
  .hero-visual-frame .ghost-logo{
    width:92px;
    max-width:34%;
    top:12px;
    right:12px;
  }
}


/* === final hero/logo correction pass === */
.hero-visual-frame{
  --hero-frame-top-gap-w:132px;
  --hero-frame-top-gap-h:90px;
  --hero-frame-left-gap-top:134px;
  --hero-frame-left-gap-size:146px;
}
.hero-visual-frame::before{
  border:0 !important;
  -webkit-mask:none !important;
  mask:none !important;
  background:
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) left top/calc(100% - var(--hero-frame-top-gap-w)) 2px no-repeat,
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) right var(--hero-frame-top-gap-h)/2px calc(100% - var(--hero-frame-top-gap-h)) no-repeat,
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) left bottom/100% 2px no-repeat,
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) left top/2px var(--hero-frame-left-gap-top) no-repeat,
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) left calc(var(--hero-frame-left-gap-top) + var(--hero-frame-left-gap-size))/2px calc(100% - var(--hero-frame-left-gap-top) - var(--hero-frame-left-gap-size)) no-repeat !important;
}
.hero-tagline{
  left:30px;
  top:158px;
  max-width:226px;
  padding-left:0;
  line-height:1.01;
  letter-spacing:-.03em;
  isolation:auto;
}
.hero-tagline::before{
  content:none !important;
  display:none !important;
}
.hero-visual-frame .ghost-logo{
  width:122px;
  max-width:30%;
  top:16px;
  right:16px;
  filter:none;
}
.hero-visual-frame .ghost-logo.ghost-logo-custom{
  width:108px;
  max-width:28%;
  background:transparent;
  border-radius:0;
}
@media (max-width: 991px){
  .hero-visual-frame{
    --hero-frame-top-gap-w:118px;
    --hero-frame-top-gap-h:82px;
    --hero-frame-left-gap-top:110px;
    --hero-frame-left-gap-size:126px;
  }
  .hero-tagline{
    left:26px;
    top:130px;
    max-width:188px;
  }
  .hero-visual-frame .ghost-logo.ghost-logo-custom{
    width:96px;
    max-width:30%;
    top:14px;
    right:14px;
  }
}
@media (max-width: 767px){
  .hero-visual-frame{
    --hero-frame-top-gap-w:104px;
    --hero-frame-top-gap-h:74px;
    --hero-frame-left-gap-top:170px;
    --hero-frame-left-gap-size:98px;
  }
  .hero-tagline{
    left:20px;
    top:auto;
    bottom:24px;
    max-width:146px;
    font-size:1.42rem;
  }
  .hero-visual-frame .ghost-logo.ghost-logo-custom{
    width:86px;
    max-width:34%;
    top:12px;
    right:12px;
  }
}


/* === index hero frame/text precision alignment === */
.hero.hero-v2 .hero-visual-frame{
  --hero-frame-top-gap-w:146px;
  --hero-frame-top-gap-h:82px;
  --hero-frame-left-gap-top:148px;
  --hero-frame-left-gap-size:108px;
}
.hero.hero-v2 .hero-tagline{
  left:18px;
  top:156px;
  max-width:220px;
  padding-left:0;
}
@media (max-width: 991px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-top-gap-w:132px;
    --hero-frame-top-gap-h:78px;
    --hero-frame-left-gap-top:126px;
    --hero-frame-left-gap-size:100px;
  }
  .hero.hero-v2 .hero-tagline{
    left:16px;
    top:128px;
    max-width:188px;
  }
}
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-top-gap-w:112px;
    --hero-frame-top-gap-h:74px;
    --hero-frame-left-gap-top:170px;
    --hero-frame-left-gap-size:86px;
  }
  .hero.hero-v2 .hero-tagline{
    left:14px;
    bottom:22px;
    top:auto;
    max-width:142px;
  }
}


/* === index hero frame continuity + text alignment tune === */
.hero.hero-v2 .hero-visual-frame::before{
  display:none !important;
}
.hero.hero-v2 .hero-visual-frame{
  --hero-frame-inset:26px;
  --hero-frame-stroke:2px;
  --hero-frame-line:rgba(255,255,255,.88);
  --hero-frame-logo-gap-w:146px;
  --hero-frame-logo-gap-y:82px;
  --hero-frame-text-gap-y:146px;
  --hero-frame-text-gap-h:120px;
}
.hero.hero-v2 .hero-frame-seg{
  position:absolute;
  display:block;
  background:var(--hero-frame-line);
  pointer-events:none;
  z-index:2;
}
.hero.hero-v2 .hero-frame-top{
  left:var(--hero-frame-inset);
  top:var(--hero-frame-inset);
  width:calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-logo-gap-w));
  height:var(--hero-frame-stroke);
}
.hero.hero-v2 .hero-frame-right{
  right:var(--hero-frame-inset);
  top:calc(var(--hero-frame-inset) + var(--hero-frame-logo-gap-y));
  width:var(--hero-frame-stroke);
  height:calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-logo-gap-y));
}
.hero.hero-v2 .hero-frame-bottom{
  left:var(--hero-frame-inset);
  right:var(--hero-frame-inset);
  bottom:var(--hero-frame-inset);
  height:var(--hero-frame-stroke);
}
.hero.hero-v2 .hero-frame-left-top{
  left:var(--hero-frame-inset);
  top:var(--hero-frame-inset);
  width:var(--hero-frame-stroke);
  height:var(--hero-frame-text-gap-y);
}
.hero.hero-v2 .hero-frame-left-bottom{
  left:var(--hero-frame-inset);
  top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y) + var(--hero-frame-text-gap-h));
  width:var(--hero-frame-stroke);
  height:calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-text-gap-y) - var(--hero-frame-text-gap-h));
}
.hero.hero-v2 .hero-tagline{
  left:14px;
  top:154px;
  max-width:218px;
}
@media (max-width: 991px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-logo-gap-w:132px;
    --hero-frame-logo-gap-y:78px;
    --hero-frame-text-gap-y:120px;
    --hero-frame-text-gap-h:106px;
  }
  .hero.hero-v2 .hero-tagline{
    left:13px;
    top:124px;
    max-width:184px;
  }
}
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-logo-gap-w:112px;
    --hero-frame-logo-gap-y:74px;
    --hero-frame-text-gap-y:168px;
    --hero-frame-text-gap-h:84px;
  }
  .hero.hero-v2 .hero-tagline{
    left:10px;
    right:auto;
    top:auto;
    bottom:20px;
    max-width:138px;
  }
}


/* === index hero text spacing refinement === */
.hero.hero-v2 .hero-visual-frame{
  --hero-frame-text-gap-y:138px;
  --hero-frame-text-gap-h:136px;
}
.hero.hero-v2 .hero-tagline{
  top:150px;
  line-height:1.12;
}
@media (max-width: 991px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-text-gap-y:116px;
    --hero-frame-text-gap-h:122px;
  }
  .hero.hero-v2 .hero-tagline{
    top:120px;
    line-height:1.1;
  }
}
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-text-gap-y:162px;
    --hero-frame-text-gap-h:98px;
  }
  .hero.hero-v2 .hero-tagline{
    bottom:22px;
    line-height:1.08;
  }
}


/* === index hero frame/text overlap fix === */
.hero.hero-v2 .hero-visual-frame{
  --hero-frame-text-gap-y:104px;
  --hero-frame-text-gap-h:214px;
}
.hero.hero-v2 .hero-tagline{
  left:12px;
  top:148px;
}
@media (max-width: 991px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-text-gap-y:96px;
    --hero-frame-text-gap-h:182px;
  }
  .hero.hero-v2 .hero-tagline{
    left:11px;
    top:118px;
  }
}
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-text-gap-y:154px;
    --hero-frame-text-gap-h:142px;
  }
  .hero.hero-v2 .hero-tagline{
    left:10px;
    bottom:24px;
  }
}


/* === FINAL DOC-STRICT + RESPONSIVE OVERRIDES === */
.hero-title{line-height:.98;max-width:11ch}
.hero-v2 .hero-grid{align-items:center;gap:34px}
.hero-page .lead{max-width:62ch}
.hero-tagline{max-width:170px}
.hero-tagline strong{display:block}
.balanced-title{max-width:18ch}
.service-note-secondary{margin-top:10px;color:var(--muted)}
.engagement-intro{margin:12px 0 18px;color:var(--muted);line-height:1.7}
.about-body-copy{color:var(--muted);line-height:1.82;margin-top:14px}
.values-list{display:grid;grid-template-columns:1fr;gap:18px;margin-top:28px}
.value-row{border-radius:28px}
.value-row h3{margin-bottom:10px}
.capability-pill{display:flex;align-items:center;justify-content:center;text-align:center;min-height:110px}
.capability-pill h4{margin:0;font-size:1.05rem;line-height:1.35}
.partnership-card strong{display:block;margin-bottom:8px;color:var(--navy)}
.page-hero-card .frame-sub{max-width:34ch}
.logo-stage{position:relative;overflow:hidden;border-radius:32px}
.logo-stage .hero-main{width:100%;height:100%;object-fit:cover;display:block}
.logo-stage .caption{display:none !important}
.section-top.compact .section-title{max-width:18ch}
.callout .btnx + .btnx{margin-left:12px}

@media (max-width: 991px){
  .page-hero-grid,.hero-v2 .hero-grid,.image-split{grid-template-columns:1fr;gap:24px}
  .page-hero-card,.page-hero-photo,.hero.hero-v2 .hero-visual-frame{min-height:0;height:auto}
  .page-hero-card{padding:26px 24px}
  .page-hero h1,.hero-title{max-width:none}
  .section-title{max-width:none}
  .capability-pill{min-height:96px}
}

@media (max-width: 860px){
  .nav-wrap{position:relative}
  .brand{max-width:calc(100% - 54px);gap:10px}
  .brand-lockup{width:148px;height:auto}
  .brand-values-text{display:none}
  .nav-toggle{display:block}
  .nav-links{display:none;position:absolute;top:calc(100% + 12px);left:0;right:0;z-index:30;flex-direction:column;align-items:stretch;gap:8px;padding:14px;border-radius:20px;background:rgba(255,255,255,.98);box-shadow:0 18px 42px rgba(28,36,52,.12);border:1px solid rgba(63,84,134,.12)}
  .nav-links a{padding:10px 12px;border-radius:12px}
  .nav-links.open{display:flex}
  .nav-links .nav-cta{margin-top:4px;justify-content:center}
}

@media (max-width: 767px){
  html,body{overflow-x:hidden}
  .nav-wrap,.hero,.section,.footer{padding-left:16px;padding-right:16px}
  .values-strip{padding-left:16px;padding-right:16px;gap:8px;justify-content:center}
  .values-strip .sep{display:none}
  .hero{padding-top:42px;padding-bottom:36px}
  .hero-title{font-size:clamp(2.2rem,10vw,3.15rem);line-height:.98;max-width:9.5ch}
  .hero-page .lead{font-size:.98rem;line-height:1.75}
  .hero-v2 .hero-actions{display:grid;grid-template-columns:1fr;gap:10px}
  .hero-v2 .hero-actions .btnx{width:100%;justify-content:center}
  .hero.hero-v2 .hero-visual-frame{height:clamp(350px,65vh,540px);min-height:350px;border-radius:26px}
  .hero.hero-v2 .hero-visual-frame img.hero-main{height:100%;object-fit:cover;object-position:center 24%}
  .hero.hero-v2 .hero-tagline{left:22px;top:170px;max-width:156px;font-size:1.78rem;line-height:1.02}
  .hero.hero-v2 .hero-frame-left-top{top:20px;bottom:138px;left:20px}
  .hero.hero-v2 .hero-frame-left-bottom{top:350px;bottom:20px;left:20px}
  .hero.hero-v2 .hero-frame-top{left:20px;right:102px;top:20px}
  .hero.hero-v2 .hero-frame-bottom{left:20px;right:20px;bottom:20px}
  .hero.hero-v2 .hero-frame-right{top:60px;right:20px;bottom:20px}
  .hero.hero-v2 .ghost-logo.ghost-logo-custom{top:22px;right:22px;width:92px}
  .proof-pills{gap:10px}
  .proof-pill{padding:10px 14px;font-size:.92rem}
  .section{padding-top:56px;padding-bottom:56px}
  .section-top{gap:14px}
  .section-title{font-size:clamp(1.7rem,7.5vw,2.3rem);line-height:1.08}
  .grid-3,.grid-4,.grid-2,.contact-grid,.stats,.framing-showcase,.image-grid-3,.partnership-grid,.capability-grid{grid-template-columns:1fr !important}
  .cardx.pad{padding:22px 18px}
  .image-panel img,.frame-rect img,.page-hero-photo img{min-height:0;height:100%;object-fit:cover}
  .image-panel{min-height:300px}
  .image-panel .overlay{left:16px;right:16px;bottom:16px;padding:14px 16px}
  .page-hero-photo{height:300px;min-height:300px;border-radius:24px}
  .page-hero-photo::before{inset:16px;border-radius:16px}
  .page-hero-photo::after{top:10px;right:10px;width:74px;height:30px}
  .logo-stage{min-height:300px !important;border-radius:24px}
  .logo-stage .hero-main{min-height:300px}
  .logo-stage::before{width:66px;top:14px;right:16px}
  .logo-stage::after{inset:18px;border-radius:16px;border-width:2px}
  .callout,.cta-box{padding:36px 20px 28px 20px;border-radius:24px}
  .callout .btnx,.cta-box .btnx{width:100%;justify-content:center;margin-left:0 !important}
  .callout .btnx + .btnx,.cta-box .btnx + .btnx{margin-top:10px}
  .footer-wrap{gap:20px}
  .footer-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px}
  .footer-values{gap:8px;line-height:1.7}
}

@media (max-width: 420px){
  .hero.hero-v2 .hero-visual-frame{height:clamp(320px,60vh,420px);min-height:320px}
  .hero.hero-v2 .hero-tagline{top:176px;left:20px;max-width:148px;font-size:1.66rem}
  .hero.hero-v2 .hero-frame-left-top{bottom:144px}
  .hero.hero-v2 .hero-frame-left-bottom{top:356px}
  .page-hero-card{padding:22px 18px}
  .page-hero-card .frame-sub,.page-hero .lead,.about-body-copy,.engagement-intro{font-size:.96rem}
  .capability-pill h4{font-size:1rem}
}


/* === mobile index hero fit refinement (April 2026) === */
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    border-radius: 24px;
    --hero-frame-inset: 18px;
    --hero-frame-stroke: 2px;
    --hero-frame-logo-gap-w: 92px;
    --hero-frame-logo-gap-y: 52px;
    --hero-frame-text-gap-y: 56px;
    --hero-frame-text-gap-h: 90px;
  }

  .hero.hero-v2 .hero-visual-frame img.hero-main{
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
  }

  .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    top: 18px;
    right: 18px;
    width: 74px;
  }

  .hero.hero-v2 .hero-tagline{
    left: 18px;
    top: 72px;
    bottom: auto;
    max-width: 126px;
    font-size: 1.16rem;
    line-height: 1.03;
    letter-spacing: -0.02em;
  }

  .hero.hero-v2 .hero-frame-top{
    left: var(--hero-frame-inset);
    top: var(--hero-frame-inset);
    right: auto;
    width: calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-logo-gap-w));
  }

  .hero.hero-v2 .hero-frame-right{
    top: calc(var(--hero-frame-inset) + var(--hero-frame-logo-gap-y));
    right: var(--hero-frame-inset);
    bottom: var(--hero-frame-inset);
    height: auto;
  }

  .hero.hero-v2 .hero-frame-bottom{
    left: var(--hero-frame-inset);
    right: var(--hero-frame-inset);
    bottom: var(--hero-frame-inset);
  }

  .hero.hero-v2 .hero-frame-left-top{
    left: var(--hero-frame-inset);
    top: var(--hero-frame-inset);
    height: var(--hero-frame-text-gap-y);
    bottom: auto;
  }

  .hero.hero-v2 .hero-frame-left-bottom{
    left: var(--hero-frame-inset);
    top: calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y) + var(--hero-frame-text-gap-h));
    bottom: var(--hero-frame-inset);
    height: auto;
  }
}

@media (max-width: 420px){
  .hero.hero-v2 .hero-visual-frame{
    aspect-ratio: 16 / 9;
    --hero-frame-inset: 16px;
    --hero-frame-logo-gap-w: 82px;
    --hero-frame-logo-gap-y: 46px;
    --hero-frame-text-gap-y: 50px;
    --hero-frame-text-gap-h: 82px;
  }

  .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    top: 16px;
    right: 16px;
    width: 66px;
  }

  .hero.hero-v2 .hero-tagline{
    left: 16px;
    top: 64px;
    max-width: 116px;
    font-size: 1.04rem;
  }
}


/* === index hero inner frame: curved bottom corners only === */
.hero.hero-v2 .hero-visual-frame{
  --hero-frame-corner-radius: 24px;
}
.hero.hero-v2 .hero-visual-frame::before,
.hero.hero-v2 .hero-visual-frame::after{
  content:"";
  position:absolute;
  bottom:var(--hero-frame-inset);
  width:var(--hero-frame-corner-radius);
  height:var(--hero-frame-corner-radius);
  z-index:2;
  pointer-events:none;
  display:block !important;
  background:transparent;
}
.hero.hero-v2 .hero-visual-frame::before{
  left:var(--hero-frame-inset);
  border-left:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom-left-radius:var(--hero-frame-corner-radius);
}
.hero.hero-v2 .hero-visual-frame::after{
  right:var(--hero-frame-inset);
  border-right:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom-right-radius:var(--hero-frame-corner-radius);
}
.hero.hero-v2 .hero-frame-bottom{
  left:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  right:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
}
.hero.hero-v2 .hero-frame-right{
  height:calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-logo-gap-y) - var(--hero-frame-corner-radius));
}
.hero.hero-v2 .hero-frame-left-bottom{
  height:calc(100% - (2 * var(--hero-frame-inset)) - var(--hero-frame-text-gap-y) - var(--hero-frame-text-gap-h) - var(--hero-frame-corner-radius));
}
@media (max-width: 991px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-corner-radius: 22px;
  }
}
@media (max-width: 767px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-corner-radius: 18px;
  }
}
@media (max-width: 420px){
  .hero.hero-v2 .hero-visual-frame{
    --hero-frame-corner-radius: 16px;
  }
}


/* === index hero bottom corner continuity hotfix === */
.hero.hero-v2 .hero-frame-right{
  top:calc(var(--hero-frame-inset) + var(--hero-frame-logo-gap-y));
  bottom:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  height:auto;
}
.hero.hero-v2 .hero-frame-left-bottom{
  top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y) + var(--hero-frame-text-gap-h));
  bottom:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  height:auto;
}
.hero.hero-v2 .hero-visual-frame::before,
.hero.hero-v2 .hero-visual-frame::after{
  box-sizing:border-box;
}


/* === index hero corner continuity rebuild === */
.hero.hero-v2 .hero-visual-frame::before,
.hero.hero-v2 .hero-visual-frame::after{
  display:none !important;
}
.hero.hero-v2 .hero-frame-seg{
  z-index:2;
}
.hero.hero-v2 .hero-frame-corner{
  position:absolute;
  bottom:var(--hero-frame-inset);
  width:var(--hero-frame-corner-radius);
  height:var(--hero-frame-corner-radius);
  display:block;
  z-index:2;
  pointer-events:none;
  box-sizing:border-box;
}
.hero.hero-v2 .hero-frame-corner-left{
  left:var(--hero-frame-inset);
  border-left:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom-left-radius:var(--hero-frame-corner-radius);
}
.hero.hero-v2 .hero-frame-corner-right{
  right:var(--hero-frame-inset);
  border-right:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom:var(--hero-frame-stroke) solid var(--hero-frame-line);
  border-bottom-right-radius:var(--hero-frame-corner-radius);
}
.hero.hero-v2 .hero-frame-bottom{
  left:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  right:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
}
.hero.hero-v2 .hero-frame-right{
  top:calc(var(--hero-frame-inset) + var(--hero-frame-logo-gap-y));
  bottom:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  height:auto;
}
.hero.hero-v2 .hero-frame-left-bottom{
  top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y) + var(--hero-frame-text-gap-h));
  bottom:calc(var(--hero-frame-inset) + var(--hero-frame-corner-radius));
  height:auto;
}


/* === About VIA Wind hero image: match site framed image standard (reference style) === */
.page-about .about-hero-photo{
  border-radius:32px;
  overflow:hidden;
  position:relative;
  isolation:isolate;
}
.page-about .about-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}
.page-about .about-hero-photo::before{
  content:"";
  position:absolute;
  inset:30px;
  border:2px solid rgba(255,255,255,.82);
  border-radius:22px;
  z-index:2;
  pointer-events:none;
  -webkit-mask:none;
  mask:none;
}
.page-about .about-hero-photo::after{
  content:"";
  position:absolute;
  right:28px;
  top:24px;
  width:76px;
  height:26px;
  background:url('submark-wave-only.png') center/contain no-repeat;
  opacity:.30;
  pointer-events:none;
  z-index:3;
}
@media (max-width: 991px){
  .page-about .about-hero-photo{border-radius:28px;}
  .page-about .about-hero-photo::before{inset:20px;border-radius:18px;}
  .page-about .about-hero-photo::after{right:18px;top:16px;width:72px;height:24px;opacity:.28;}
}
@media (max-width: 767px){
  .page-about .about-hero-photo{border-radius:24px;}
  .page-about .about-hero-photo::before{inset:18px;border-radius:16px;}
  .page-about .about-hero-photo::after{right:16px;top:14px;width:66px;height:22px;opacity:.26;}
}


/* === About page image frames: discontinue around top-right logo === */
.page-about .about-hero-photo::before{
  -webkit-mask:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0) calc(100% - 112px) 0 / 104px 54px no-repeat;
  -webkit-mask-composite: source-over, xor;
          mask:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0) calc(100% - 112px) 0 / 104px 54px no-repeat;
          mask-composite: add, exclude;
}
.page-about .logo-stage::after{
  -webkit-mask:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0) calc(100% - 114px) 0 / 106px 56px no-repeat;
  -webkit-mask-composite: source-over, xor;
          mask:
    linear-gradient(#000 0 0),
    linear-gradient(#000 0 0) calc(100% - 114px) 0 / 106px 56px no-repeat;
          mask-composite: add, exclude;
}
@media (max-width: 991px){
  .page-about .about-hero-photo::before{
    -webkit-mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 100px) 0 / 94px 46px no-repeat;
            mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 100px) 0 / 94px 46px no-repeat;
  }
  .page-about .logo-stage::after{
    -webkit-mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 102px) 0 / 96px 48px no-repeat;
            mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 102px) 0 / 96px 48px no-repeat;
  }
}
@media (max-width: 767px){
  .page-about .about-hero-photo::before{
    -webkit-mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 90px) 0 / 84px 42px no-repeat;
            mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 90px) 0 / 84px 42px no-repeat;
  }
  .page-about .logo-stage::after{
    -webkit-mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 92px) 0 / 86px 42px no-repeat;
            mask:
      linear-gradient(#000 0 0),
      linear-gradient(#000 0 0) calc(100% - 92px) 0 / 86px 42px no-repeat;
  }
}


/* === About page images match Services page framed image standard === */
.page-about .about-hero-photo,
.page-about .about-body-photo{
  position:relative;
  height:300px;
  min-height:300px;
  padding:0;
  border-radius:0 34px 34px 34px;
  overflow:hidden;
  background:transparent;
  box-shadow:0 18px 42px rgba(38,59,106,.12);
  border:none;
  isolation:isolate;
  transition:transform .28s ease, box-shadow .28s ease;
}
.page-about .about-body-photo{height:380px;min-height:380px;}
.page-about .about-hero-photo:hover,
.page-about .about-body-photo:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 52px rgba(38,59,106,.16);
}
.page-about .about-hero-photo::before,
.page-about .about-body-photo::before{
  content:"";
  position:absolute;
  inset:26px;
  border:2px solid rgba(255,255,255,.78);
  border-radius:22px 22px 32px 32px;
  pointer-events:none;
  z-index:2;
  -webkit-mask:none !important;
  mask:none !important;
}
.page-about .about-hero-photo::after,
.page-about .about-body-photo::after{
  content:"";
  position:absolute;
  top:18px;
  right:18px;
  width:108px;
  height:48px;
  background:url('logo-dark.png') right top/contain no-repeat;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));
  opacity:.96;
  pointer-events:none;
  z-index:3;
}
.page-about .about-hero-photo img,
.page-about .about-body-photo img{
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  display:block;
  position:relative;
  z-index:1;
  border-radius:0 34px 34px 34px;
  transition:transform .8s ease;
}
.page-about .about-hero-photo:hover img,
.page-about .about-body-photo:hover img{
  transform:scale(1.03);
}
@media (max-width: 767px){
  .page-about .about-hero-photo,
  .page-about .about-body-photo{
    height:300px;
    min-height:300px;
    border-radius:24px;
  }
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:16px;
    border-radius:16px;
  }
  .page-about .about-hero-photo::after,
  .page-about .about-body-photo::after{
    top:10px;
    right:10px;
    width:74px;
    height:30px;
  }
  .page-about .about-hero-photo img,
  .page-about .about-body-photo img{
    border-radius:24px;
  }
}

/* === v10 final.docx implementation overrides === */

/* Shared page hero refinements */
.page-hero-card{
  padding-top:56px !important;
}
.page-hero-card::after{
  top:18px !important;
  right:18px !important;
  bottom:auto !important;
  width:86px !important;
  height:34px !important;
  background:url('submark-wave-only.png') right center/contain no-repeat !important;
  opacity:.22 !important;
}
.page-hero-photo,
.page-hero-photo img{
  border-radius:0 34px 34px 34px !important;
}
.page-hero-photo::before{
  border-radius:0 22px 22px 22px !important;
}
.page-hero-photo::after{
  background:url('primary-brand-white.png') right top/contain no-repeat !important;
  width:112px !important;
  height:44px !important;
}
@media (max-width: 767px){
  .page-hero-card{padding-top:48px !important;}
  .page-hero-card::after{
    top:12px !important;
    right:12px !important;
    width:74px !important;
    height:28px !important;
  }
  .page-hero-photo,
  .page-hero-photo img{
    border-radius:0 24px 24px 24px !important;
  }
  .page-hero-photo::before{
    inset:16px !important;
    border-radius:0 16px 16px 16px !important;
  }
  .page-hero-photo::after{
    top:10px !important;
    right:10px !important;
    width:74px !important;
    height:30px !important;
  }
}

/* Home hero frame: square top-left + better title gap balance */
.page-home .hero.hero-v2 .hero-visual-frame,
.page-home .hero.hero-v2 .hero-visual-frame img.hero-main{
  border-radius:0 34px 34px 34px !important;
}
.page-home .hero.hero-v2 .hero-visual-frame{
  --hero-frame-text-gap-y:118px;
  --hero-frame-text-gap-h:192px;
}
.page-home .hero.hero-v2 .hero-tagline{
  top:142px;
}
.page-home .hero-kicker-row{margin-top:8px;}
@media (max-width: 991px){
  .page-home .hero.hero-v2 .hero-visual-frame{
    --hero-frame-text-gap-y:100px;
    --hero-frame-text-gap-h:168px;
  }
  .page-home .hero.hero-v2 .hero-tagline{top:116px;}
}
@media (max-width: 767px){
  .page-home .hero.hero-v2 .hero-visual-frame,
  .page-home .hero.hero-v2 .hero-visual-frame img.hero-main{
    border-radius:0 24px 24px 24px !important;
  }
}

/* About page image frame standard */
.page-about .about-body-photo,
.page-about .about-body-photo img{
  border-radius:0 34px 34px 34px !important;
}
.page-about .about-body-photo{
  position:relative;
  min-height:380px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(38,59,106,.12);
  isolation:isolate;
}
.page-about .about-body-photo::before{
  content:"";
  position:absolute;
  inset:26px;
  border:none;
  border-radius:0 22px 22px 22px;
  pointer-events:none;
  z-index:2;
  --frame-color: rgba(255,255,255,.78);
  --frame-thickness: 2px;
  --frame-gap-w: 136px;
  --frame-gap-h: 58px;
  background:
    linear-gradient(var(--frame-color), var(--frame-color)) left top / calc(100% - var(--frame-gap-w)) var(--frame-thickness) no-repeat,
    linear-gradient(var(--frame-color), var(--frame-color)) left bottom / 100% var(--frame-thickness) no-repeat,
    linear-gradient(var(--frame-color), var(--frame-color)) left top / var(--frame-thickness) 100% no-repeat,
    linear-gradient(var(--frame-color), var(--frame-color)) right var(--frame-gap-h) / var(--frame-thickness) calc(100% - var(--frame-gap-h)) no-repeat;
}
.page-about .about-body-photo::after{
  content:"";
  position:absolute;
  top:18px;
  right:18px;
  width:112px;
  height:44px;
  background:url('primary-brand-white.png') right top/contain no-repeat;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));
  opacity:.96;
  pointer-events:none;
  z-index:3;
}
.page-about .about-body-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width: 767px){
  .page-about .about-body-photo,
  .page-about .about-body-photo img{
    border-radius:0 24px 24px 24px !important;
    min-height:300px;
  }
  .page-about .about-body-photo::before{
    inset:16px;
    border-radius:0 16px 16px 16px;
    --frame-gap-w: 92px;
    --frame-gap-h: 40px;
  }
  .page-about .about-body-photo::after{
    top:10px;
    right:10px;
    width:74px;
    height:30px;
  }
}

/* Founder page layouts */
.founder-portrait-card{
  overflow:hidden;
  border-radius:0 32px 32px 32px;
  margin-bottom:22px;
}
.founder-portrait-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:center top;
  display:block;
}
.founder-stat-grid{
  display:grid;
  gap:14px;
}
.founder-stat-card{
  background:linear-gradient(135deg,rgba(38,59,106,.05),rgba(105,132,169,.08));
}
.founder-stat-value{
  font-weight:600;
  color:var(--navy);
  margin:0;
  line-height:1.6;
}
.founder-foundation-title{
  max-width:18ch;
}
.via-dot-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:12px;
}
.via-dot-list li{
  position:relative;
  padding-left:24px;
  font-weight:600;
  color:var(--ink);
}
.via-dot-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(160,213,133,.18);
}
.experience-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.experience-card h3{margin-bottom:8px;}
.experience-title-years{display:none;}
.experience-card p{margin-bottom:0;color:var(--muted);}

.experience-item{display:flex;flex-direction:column;gap:8px;}
.experience-card{height:100%;}
.experience-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:10px;}
.experience-years-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-size:.86rem;
  line-height:1;
  font-weight:700;
  color:var(--navy);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.4);
  border-radius:999px;
  padding:8px 12px;
  box-shadow:0 10px 24px rgba(12,26,56,.08);
}
.experience-duration{
  display:none;
  font-size:.98rem;
  line-height:1.2;
  color:var(--navy);
  font-weight:700;
  padding-left:6px;
}
@media (max-width: 767px){
  .experience-card-top{margin-bottom:12px;gap:12px;}
  .experience-years-badge{display:none;}
  .experience-duration{display:none;}
  .experience-card h3{line-height:1.28;}
  .experience-title-years{
    display:inline;
    font-size:.9em;
    font-weight:700;
    color:rgba(255,255,255,.96);
    white-space:normal;
    text-shadow:0 1px 2px rgba(12,26,56,.18);
  }
}

@media (max-width: 767px){
  .founder-portrait-card,
  .founder-portrait-card img{border-radius:0 24px 24px 24px;}
  .founder-portrait-card img{height:320px;}
  .experience-grid{grid-template-columns:1fr;}
}

/* Partners page consistency */
.page-partners .capability-pill{
  justify-content:flex-start;
  text-align:left;
  min-height:106px;
}
.page-partners .callout{padding-top:48px;}
.page-partners .callout .hero-actions,
.page-partners .callout .btnx{display:inline-flex;}

/* Track record page */
#trackAccordion .accordion-button{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
#trackAccordion .accordion-button .ms-auto{
  margin-left:auto !important;
  text-align:right;
  flex:0 0 auto;
}
.two-col-bullets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 28px;
  margin:14px 0 0;
  padding-left:18px;
}
.two-col-bullets li{
  color:var(--ink);
}
@media (max-width: 767px){
  #trackAccordion .accordion-button{
    flex-direction:column;
    align-items:flex-start;
  }
  #trackAccordion .accordion-button .ms-auto{
    margin-left:0 !important;
    padding-left:0 !important;
    text-align:left;
  }
  .two-col-bullets{grid-template-columns:1fr;}
}

/* Contact page simplification */
.page-contact .contact-grid{grid-template-columns:1fr;}
.page-contact .contact-card-full{max-width:860px;}
.page-contact .single-contact-list{gap:12px;}
.page-contact .contact-item small{display:none !important;}
.page-contact .contact-icon-link{
  display:flex;
  align-items:center;
  width:100%;
  gap:12px;
  font-weight:700;
  color:var(--navy);
  background:none;
  border:0;
  padding:0;
  text-align:left;
}
.page-contact .contact-icon-link strong{font-weight:700;}
.page-contact .contact-plain-button{cursor:pointer;}
.page-contact .wechat-qr{
  width:min(100%,280px);
  margin:0 auto;
  display:block;
}

/* General button rows */
.hero-actions .btnx + .btnx{margin-left:0;}
@media (max-width: 767px){
  .hero-actions{display:flex;flex-wrap:wrap;gap:10px;}
}


/* === v12 index hero symmetry fix === */
.page-home .hero.hero-v2 .hero-visual-frame{
  --hero-frame-inset:26px;
  --hero-frame-stroke:2px;
  --hero-frame-logo-gap-w:138px;
  --hero-frame-logo-gap-y:78px;
  --hero-frame-text-gap-y:118px;
  --hero-frame-text-gap-h:168px;
}
.page-home .hero.hero-v2 .hero-tagline{
  position:absolute;
  left:calc(var(--hero-frame-inset) + 10px) !important;
  top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y)) !important;
  bottom:auto !important;
  height:var(--hero-frame-text-gap-h);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  max-width:220px !important;
  padding-left:0 !important;
  font-size:clamp(1.6rem,2.55vw,2.28rem) !important;
  line-height:1.02 !important;
  letter-spacing:-0.025em;
  text-wrap:balance;
}
.page-home .hero.hero-v2 .hero-tagline strong,
.page-home .hero.hero-v2 .hero-tagline span{
  display:block;
}
.page-home .hero.hero-v2 .hero-tagline strong{
  margin-bottom:.08em;
}
.page-home .hero.hero-v2 .hero-frame-left-top{
  height:var(--hero-frame-text-gap-y) !important;
}
.page-home .hero.hero-v2 .hero-frame-left-bottom{
  top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y) + var(--hero-frame-text-gap-h)) !important;
}
.page-home .hero.hero-v2 .ghost-logo.ghost-logo-custom{
  top:calc(var(--hero-frame-inset) - 4px) !important;
  right:calc(var(--hero-frame-inset) - 4px) !important;
  width:106px !important;
  max-width:27% !important;
}
@media (max-width: 991px){
  .page-home .hero.hero-v2 .hero-visual-frame{
    --hero-frame-inset:22px;
    --hero-frame-logo-gap-w:122px;
    --hero-frame-logo-gap-y:70px;
    --hero-frame-text-gap-y:98px;
    --hero-frame-text-gap-h:146px;
  }
  .page-home .hero.hero-v2 .hero-tagline{
    left:calc(var(--hero-frame-inset) + 9px) !important;
    max-width:186px !important;
    font-size:clamp(1.38rem,3.15vw,1.92rem) !important;
  }
  .page-home .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    width:94px !important;
    max-width:29% !important;
  }
}
@media (max-width: 767px){
  .page-home .hero.hero-v2 .hero-visual-frame,
  .page-home .hero.hero-v2 .hero-visual-frame img.hero-main{
    border-radius:0 24px 24px 24px !important;
  }
  .page-home .hero.hero-v2 .hero-visual-frame{
    aspect-ratio:16 / 9;
    height:auto;
    min-height:0;
    --hero-frame-inset:18px;
    --hero-frame-logo-gap-w:88px;
    --hero-frame-logo-gap-y:50px;
    --hero-frame-text-gap-y:62px;
    --hero-frame-text-gap-h:106px;
  }
  .page-home .hero.hero-v2 .hero-tagline{
    left:calc(var(--hero-frame-inset) + 8px) !important;
    top:calc(var(--hero-frame-inset) + var(--hero-frame-text-gap-y)) !important;
    bottom:auto !important;
    max-width:124px !important;
    font-size:1.04rem !important;
    line-height:1.02 !important;
  }
  .page-home .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    top:calc(var(--hero-frame-inset) - 1px) !important;
    right:calc(var(--hero-frame-inset) - 1px) !important;
    width:72px !important;
    max-width:31% !important;
  }
}
@media (max-width: 420px){
  .page-home .hero.hero-v2 .hero-visual-frame{
    --hero-frame-inset:16px;
    --hero-frame-logo-gap-w:80px;
    --hero-frame-logo-gap-y:46px;
    --hero-frame-text-gap-y:54px;
    --hero-frame-text-gap-h:96px;
  }
  .page-home .hero.hero-v2 .hero-tagline{
    left:calc(var(--hero-frame-inset) + 7px) !important;
    max-width:112px !important;
    font-size:.95rem !important;
  }
  .page-home .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    width:66px !important;
  }
}

/* ============================================================
   Contact page refinement
   ============================================================ */
.page-contact .contact-grid-polished{
  align-items:start;
}
.page-contact .contact-main-card,
.page-contact .qr-showcase-card,
.page-contact .contact-action-card{
  width:100%;
}
.page-contact .contact-main-card{
  min-height:100%;
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.96) 100%);
}
.page-contact .contact-intro{
  max-width:60ch;
  margin-bottom:8px;
}
.page-contact .single-contact-list{
  width:100%;
}
.page-contact .single-contact-list .contact-item{
  width:100%;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(244,248,255,.96) 100%);
  border:1px solid rgba(38,59,106,.12);
}
.page-contact .single-contact-list .contact-item:hover{
  transform:translateY(-3px);
}
.page-contact .single-contact-list .contact-icon-link{
  width:100%;
}
.page-contact .single-contact-list .contact-item strong{
  font-size:1rem;
  color:var(--ink);
}
.page-contact .contact-side-stack{
  display:grid;
  gap:22px;
}
.page-contact .qr-showcase-card,
.page-contact .contact-action-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
}
.page-contact .qr-showcase-card{
  text-align:center;
  align-items:center;
  background:
    radial-gradient(circle at top right, rgba(145,210,188,.28), transparent 38%),
    radial-gradient(circle at bottom left, rgba(38,59,106,.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(243,248,255,.98) 100%);
}
.page-contact .qr-showcase-card h3,
.page-contact .qr-showcase-card p{
  text-align:center;
}
.page-contact .qr-intro{
  max-width:34ch;
}
.page-contact .qr-shell{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(38,59,106,.10);
  box-shadow:0 20px 46px rgba(38,59,106,.12);
  margin:8px auto 0;
}
.page-contact .wechat-qr-inline{
  width:min(100%, 230px);
  height:auto;
  display:block;
  border-radius:18px;
}
.page-contact .qr-caption{
  margin-top:4px;
}
.page-contact .contact-action-card{
  background:
    radial-gradient(circle at top left, rgba(145,210,188,.22), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,251,255,.98) 100%);
}
.page-contact .contact-action-card p{
  max-width:34ch;
}
.page-contact .contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:2px;
}
.page-contact .btn-pill{
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  box-shadow:none;
}
.page-contact .btn-outline-primary.btn-pill{
  border-width:1.5px;
}
.page-contact #wechat-qr-panel{
  scroll-margin-top:96px;
}

@media(max-width: 991.98px){
  .page-contact .contact-intro,
  .page-contact .contact-action-card p,
  .page-contact .qr-intro{
    max-width:100%;
  }
}

@media(max-width: 767.98px){
  .page-contact .contact-side-stack{
    gap:18px;
  }
  .page-contact .qr-showcase-card,
  .page-contact .contact-action-card,
  .page-contact .contact-main-card{
    border-radius:24px;
  }
  .page-contact .qr-shell{
    padding:14px;
    border-radius:24px;
  }
  .page-contact .wechat-qr-inline{
    width:min(100%, 200px);
  }
  .page-contact .contact-actions{
    width:100%;
    flex-direction:column;
  }
  .page-contact .contact-actions .btn-pill{
    width:100%;
  }
}

/* ============================================================
   Contact page card layout refresh
   ============================================================ */
.page-contact .contact-section-head{
  margin-bottom:24px;
}
.page-contact .contact-section-head .section-title{
  margin-bottom:10px;
}
.page-contact .contact-intro{
  max-width:62ch;
}
.page-contact .contact-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  align-items:stretch;
}
.page-contact .contact-method-card,
.page-contact .contact-method-card--qr{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(105,132,169,.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(38,59,106,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(243,248,255,.98) 100%);
  border:1px solid rgba(38,59,106,.12);
  min-height:100%;
}
.page-contact .contact-method-card--featured{
  background:
    radial-gradient(circle at top right, rgba(105,132,169,.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(38,59,106,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(240,246,255,.98) 100%);
}
.page-contact .contact-method-card--qr{
  grid-column:auto;
}
.page-contact .contact-method-top{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.page-contact .contact-method-top .eyebrow{
  margin-bottom:6px;
}
.page-contact .contact-method-top h3{
  margin:0;
}
.page-contact .contact-method-icon{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(38,59,106,.08);
  color:var(--navy);
  border:1px solid rgba(38,59,106,.10);
}
.page-contact .contact-method-icon svg{
  width:22px;
  height:22px;
  display:block;
}
.page-contact .contact-method-card p{
  color:var(--muted);
  max-width:none;
  min-height:4.9em;
}
.page-contact .contact-card-link{
  align-self:stretch;
  width:100%;
  justify-content:center;
  text-align:center;
}
.page-contact .contact-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.page-contact .contact-card-actions .btnx{
  flex:1 1 0;
  justify-content:center;
}
.page-contact .qr-shell-inline{
  margin-top:auto;
  align-self:center;
  justify-self:auto;
}
.page-contact .contact-method-card--qr p{
  margin-bottom:0;
}

@media (max-width: 991.98px){
  .page-contact .contact-card-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px){
  .page-contact .contact-card-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .page-contact .contact-method-card,
  .page-contact .contact-method-card--qr{
    grid-column:auto;
    border-radius:24px;
  }
  .page-contact .contact-card-link,
  .page-contact .contact-card-actions{
    width:100%;
  }
  .page-contact .contact-card-actions{
    flex-direction:column;
  }
  .page-contact .contact-card-actions .btnx{
    width:100%;
    flex:1 1 auto;
  }
  .page-contact .qr-shell-inline{
    align-self:center;
  }
  .page-contact .contact-method-card p{
    min-height:0;
  }
}

/* === v17 index hero full-width photo === */
.page-home .hero.hero-v2 .hero-grid{
  grid-template-columns:1fr !important;
  gap:28px !important;
}
.page-home .hero.hero-v2 .hero-page{
  max-width:1100px;
}
.page-home .hero.hero-v2 .hero-visual-frame{
  width:100%;
  max-width:none;
  min-height:clamp(420px,52vw,640px);
  height:clamp(420px,52vw,640px);
}
.page-home .hero.hero-v2 .hero-visual-frame img.hero-main{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 34%;
}
@media (max-width: 991px){
  .page-home .hero.hero-v2 .hero-page{
    max-width:none;
  }
  .page-home .hero.hero-v2 .hero-visual-frame{
    min-height:clamp(340px,58vw,500px);
    height:clamp(340px,58vw,500px);
  }
}
@media (max-width: 767px){
  .page-home .hero.hero-v2 .hero-visual-frame{
    aspect-ratio:16 / 9;
    min-height:0;
    height:auto;
  }
}

/* === v18 index hero image first, copy below === */
.page-home .hero.hero-v2 .hero-page{
  order:2;
  width:100%;
  max-width:none;
  margin:0 auto;
}
.page-home .hero.hero-v2 .hero-visual-frame{
  order:1;
}
.page-home .hero.hero-v2 .hero-title,
.page-home .hero.hero-v2 .hero-page .lead,
.page-home .hero.hero-v2 .hero-kicker-row,
.page-home .hero.hero-v2 .hero-actions{
  max-width:none;
}
.page-home .hero.hero-v2 .hero-page .lead{
  width:100%;
}
.page-home .hero.hero-v2 .hero-page{
  display:flex;
  flex-direction:column;
  gap:0;
}
@media (min-width: 992px){
  .page-home .hero.hero-v2 .hero-page{
    padding-inline:10px;
  }
  .page-home .hero.hero-v2 .hero-title{
    max-width:16ch;
  }
  .page-home .hero.hero-v2 .hero-page .lead{
    max-width:100ch;
  }
}
@media (max-width: 991px){
  .page-home .hero.hero-v2 .hero-grid{
    gap:22px !important;
  }
  .page-home .hero.hero-v2 .hero-title,
  .page-home .hero.hero-v2 .hero-page .lead{
    max-width:none;
  }
}


/* === instructions.docx refinements === */
.page-hero-photo,
.page-hero-photo img,
.image-panel,
.image-panel img{
  border-radius:0 34px 34px 34px !important;
}
.page-hero-photo::before,
.image-panel::before{
  inset:26px !important;
  border:2px solid rgba(255,255,255,.82) !important;
  border-radius:0 22px 22px 22px !important;
  background:none !important;
}
.page-about .about-body-photo,
.page-about .about-body-photo img{
  border-radius:0 34px 34px 34px !important;
}
.page-about .about-body-photo::before{
  inset:26px !important;
  border:2px solid rgba(255,255,255,.82) !important;
  border-radius:0 22px 22px 22px !important;
  background:none !important;
}
.page-about .about-body-photo::after,
.page-hero-photo::after,
.image-panel::after{
  top:16px !important;
  right:16px !important;
}
.founder-foundation-title{
  max-width:19ch;
}
.page-partners .capability-grid{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
}
.page-partners .capability-pill{
  min-height:0 !important;
  padding:16px 18px !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  text-align:left !important;
  border-radius:0 22px 22px 22px !important;
}
.page-partners .capability-pill h4{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
  font-size:1rem !important;
  line-height:1.35 !important;
}
.page-partners .capability-pill h4::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  flex:0 0 9px;
  margin-top:.38em;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(160,213,133,.18);
}
#trackAccordion .accordion-button{
  align-items:flex-start !important;
  gap:16px !important;
}
#trackAccordion .accordion-button .ms-auto{
  width:190px;
  min-width:190px;
  padding-left:18px !important;
  text-align:right;
}
.page-contact .contact-card-grid + .section,
.page-contact .cta-box .hero-actions .btnx,
.cta-box .hero-actions .btnx{
  display:inline-flex;
}
@media (max-width: 991px){
  #trackAccordion .accordion-button .ms-auto{
    width:160px;
    min-width:160px;
  }
}
@media (max-width: 767px){
  .page-hero-photo,
  .page-hero-photo img,
  .image-panel,
  .image-panel img,
  .page-about .about-body-photo,
  .page-about .about-body-photo img{
    border-radius:0 24px 24px 24px !important;
  }
  .page-hero-photo::before,
  .image-panel::before,
  .page-about .about-body-photo::before{
    inset:16px !important;
    border-radius:0 16px 16px 16px !important;
  }
  .page-partners .capability-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
  .page-partners .capability-pill{
    padding:14px 14px !important;
  }
  .page-partners .capability-pill h4{
    font-size:.92rem !important;
  }
  #trackAccordion .accordion-button .ms-auto{
    width:auto;
    min-width:0;
    padding-left:0 !important;
    text-align:left;
  }
}

/* Mobile refinement: section heading frame to match reference style */
@media (max-width: 767px){
  .section-frame-bar{
    position: relative;
    width: 100%;
    padding: 18px 42px 16px 18px !important;
    border-top: 2px solid var(--frame-line);
    border-left: 2px solid var(--frame-line);
    border-bottom: 2px solid var(--frame-line);
    border-right: none;
    border-radius: 0 0 30px 30px;
    background: var(--frame-bg);
  }

  .section-frame-bar::after{
    display: block !important;
    content: "";
    position: absolute;
    right: 14px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: var(--frame-line);
    border-radius: 999px;
    opacity: .95;
  }

  .section-frame-bar .eyebrow{
    margin: 0 0 8px;
  }

  .section-frame-bar .section-title,
  .section-frame-bar h2,
  .section-frame-bar h3{
    line-height: 1.1;
  }
}

/* About hero: top-right placeholder so the inner white frame breaks around the logo */
.page-about .about-hero-photo::before{
  content:"";
  position:absolute;
  inset:26px !important;
  border:none !important;
  border-radius:0 22px 22px 22px !important;
  pointer-events:none;
  z-index:2;
  --about-frame-color: rgba(255,255,255,.82);
  --about-frame-thickness: 2px;
  --about-frame-gap-w: 136px;
  --about-frame-gap-h: 58px;
  background:
    linear-gradient(var(--about-frame-color), var(--about-frame-color)) left top / calc(100% - var(--about-frame-gap-w)) var(--about-frame-thickness) no-repeat,
    linear-gradient(var(--about-frame-color), var(--about-frame-color)) left bottom / 100% var(--about-frame-thickness) no-repeat,
    linear-gradient(var(--about-frame-color), var(--about-frame-color)) left top / var(--about-frame-thickness) 100% no-repeat,
    linear-gradient(var(--about-frame-color), var(--about-frame-color)) right var(--about-frame-gap-h) / var(--about-frame-thickness) calc(100% - var(--about-frame-gap-h)) no-repeat !important;
  -webkit-mask:none !important;
  mask:none !important;
}

@media (max-width: 767px){
  .page-about .about-hero-photo::before{
    inset:16px !important;
    border-radius:0 16px 16px 16px !important;
    --about-frame-gap-w: 92px;
    --about-frame-gap-h: 40px;
  }
}


/* About page image frames — consistent full white frame around images */
.page-about .about-hero-photo::before,
.page-about .about-body-photo::before{
  content:"";
  position:absolute;
  inset:26px !important;
  border:2px solid rgba(255,255,255,.82) !important;
  border-radius:0 22px 22px 22px !important;
  background:none !important;
  pointer-events:none;
  z-index:2;
  -webkit-mask:none !important;
  mask:none !important;
}

@media (max-width: 767px){
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:16px !important;
    border-radius:0 16px 16px 16px !important;
  }
}

/* === About page: keep full image frame, but remove the frame line behind the top-right logo === */
.page-about .about-hero-photo::before,
.page-about .about-body-photo::before{
  content:"";
  position:absolute;
  inset:26px !important;
  border:none !important;
  border-radius:0 22px 22px 22px !important;
  pointer-events:none;
  z-index:2;
  --about-logo-gap-w: 118px;
  --about-logo-gap-h: 56px;
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)) left top / calc(100% - var(--about-logo-gap-w)) 2px no-repeat,
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)) left bottom / 100% 2px no-repeat,
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)) left top / 2px 100% no-repeat,
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)) right var(--about-logo-gap-h) / 2px calc(100% - var(--about-logo-gap-h)) no-repeat !important;
  -webkit-mask:none !important;
  mask:none !important;
}
.page-about .about-hero-photo::after,
.page-about .about-body-photo::after{
  filter:none !important;
}
@media (max-width: 991px){
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:20px !important;
    border-radius:0 18px 18px 18px !important;
    --about-logo-gap-w: 106px;
    --about-logo-gap-h: 50px;
  }
}
@media (max-width: 767px){
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:18px !important;
    border-radius:0 16px 16px 16px !important;
    --about-logo-gap-w: 88px;
    --about-logo-gap-h: 40px;
  }
}


/* === hotfix: about page inner white frames need curved bottom corners === */
.page-about .about-hero-photo::before,
.page-about .about-body-photo::before{
  content:"";
  position:absolute;
  inset:26px !important;
  border:none !important;
  border-radius:0 22px 22px 22px !important;
  pointer-events:none;
  z-index:2;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:100% 100% !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0H77M100 18V78Q100 100 78 100H22Q0 100 0 78V0' fill='none' stroke='rgba(255,255,255,0.86)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  -webkit-mask:none !important;
  mask:none !important;
}

@media (max-width: 991px){
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:20px !important;
    border-radius:0 18px 18px 18px !important;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0H79M100 20V80Q100 100 80 100H20Q0 100 0 80V0' fill='none' stroke='rgba(255,255,255,0.86)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }
}

@media (max-width: 767px){
  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:18px !important;
    border-radius:0 16px 16px 16px !important;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0H81M100 22V82Q100 100 82 100H18Q0 100 0 82V0' fill='none' stroke='rgba(255,255,255,0.86)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }
}

/* === final fix: About page image frames must match the standard hero/image framing used across the site === */
.page-about .about-hero-photo,
.page-about .about-body-photo,
.page-about .about-hero-photo img,
.page-about .about-body-photo img{
  border-radius:0 var(--media-radius) var(--media-radius) var(--media-radius) !important;
}

.page-about .about-hero-photo::before,
.page-about .about-body-photo::before{
  content:"" !important;
  position:absolute !important;
  inset:var(--media-inset) !important;
  border:1.8px solid rgba(255,255,255,.76) !important;
  border-radius:0 var(--media-inner-radius) var(--media-inner-radius) var(--media-inner-radius) !important;
  background:none !important;
  pointer-events:none !important;
  z-index:2 !important;
  -webkit-mask:
    linear-gradient(#000 0 0) left top/calc(100% - var(--inset-frame-gap-w)) 100% no-repeat,
    linear-gradient(#000 0 0) left bottom/100% calc(100% - var(--inset-frame-gap-h)) no-repeat !important;
  mask:
    linear-gradient(#000 0 0) left top/calc(100% - var(--inset-frame-gap-w)) 100% no-repeat,
    linear-gradient(#000 0 0) left bottom/100% calc(100% - var(--inset-frame-gap-h)) no-repeat !important;
}

.page-about .about-hero-photo::after,
.page-about .about-body-photo::after{
  top:var(--media-logo-top) !important;
  right:var(--media-logo-right) !important;
  width:var(--media-logo-w) !important;
  height:var(--media-logo-h) !important;
  filter:none !important;
}

.page-about .about-hero-photo{
  --inset-frame-gap-w:var(--align-media-gap-w);
  --inset-frame-gap-h:var(--align-media-gap-h);
}

.page-about .about-body-photo{
  --inset-frame-gap-w:var(--align-media-gap-w);
  --inset-frame-gap-h:var(--align-media-gap-h);
}

@media (max-width: 767px){
  .page-about .about-hero-photo,
  .page-about .about-body-photo,
  .page-about .about-hero-photo img,
  .page-about .about-body-photo img{
    border-radius:0 24px 24px 24px !important;
  }

  .page-about .about-hero-photo::before,
  .page-about .about-body-photo::before{
    inset:16px !important;
    border-radius:0 16px 16px 16px !important;
  }
}

/* Track record page: stronger text alignment for accordion rows */
@media (min-width: 768px){
  #trackAccordion .accordion-button{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 280px 22px;
    align-items:center !important;
    column-gap:22px !important;
    row-gap:0 !important;
    text-align:left;
  }
  #trackAccordion .accordion-button::after{
    grid-column:3;
    justify-self:end;
    margin-left:0 !important;
  }
  #trackAccordion .accordion-button .ms-auto{
    grid-column:2;
    width:280px !important;
    min-width:280px !important;
    margin-left:0 !important;
    padding-left:0 !important;
    justify-self:end;
    text-align:right;
    white-space:nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1100px){
  #trackAccordion .accordion-button{
    grid-template-columns:minmax(0,1fr) 230px 22px;
  }
  #trackAccordion .accordion-button .ms-auto{
    width:230px !important;
    min-width:230px !important;
  }
}

@media (max-width: 767px){
  #trackAccordion .accordion-button{
    display:flex !important;
    flex-direction:column;
    align-items:flex-start !important;
    gap:8px !important;
    text-align:left;
  }
  #trackAccordion .accordion-button .ms-auto{
    width:auto !important;
    min-width:0 !important;
    white-space:normal;
  }
}


/* Founder / Partners page final refinements from Founder.docx review */
@media (min-width: 768px){
  .page-founder .founder-foundation-copy{
    max-width: 700px;
  }
  .page-founder .founder-foundation-bar{
    width:min(100%, 840px) !important;
  }
  .page-founder .founder-foundation-title{
    max-width:26ch !important;
    font-size:clamp(1.95rem, 1.25rem + 1.25vw, 2.45rem) !important;
    line-height:1.04 !important;
    letter-spacing:-0.025em;
  }
  .page-founder .founder-cta-section{
    padding-top:72px !important;
  }
  .page-partners .partners-cta-section{
    padding-top:72px !important;
  }
}

@media (max-width: 767px){
  .page-founder .founder-foundation-title{
    max-width:18ch !important;
  }
  .page-founder .founder-cta-section,
  .page-partners .partners-cta-section{
    padding-top:56px !important;
  }
}

/* Keep founder heading frame visually consistent with the site reference */
.page-founder .founder-foundation-bar{
  background:var(--frame-bg) !important;
}
.page-founder .founder-foundation-bar .eyebrow,
.page-founder .founder-foundation-bar .section-title,
.page-founder .founder-foundation-bar h2{
  color:var(--frame-text) !important;
}

/* Partner capability list: denser, less empty, easier to scan on mobile */
.page-partners .capability-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}
.page-partners .capability-pill{
  min-height:0 !important;
  padding:15px 16px !important;
  border-radius:0 20px 20px 20px !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  text-align:left !important;
}
.page-partners .capability-pill h4{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:0;
  font-size:1rem !important;
  line-height:1.32 !important;
}
.page-partners .capability-pill h4::before{
  content:"";
  width:9px;
  height:9px;
  flex:0 0 9px;
  border-radius:50%;
  margin-top:.36em;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(160,213,133,.18);
}
@media (max-width: 991px){
  .page-partners .capability-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
}
@media (max-width: 575px){
  .page-partners .capability-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
  }
  .page-partners .capability-pill{
    padding:13px 13px !important;
  }
  .page-partners .capability-pill h4{
    font-size:.92rem !important;
  }
}



/* === v19 updates from instructions.docx === */

/* General brand message update */
.values-strip .value-main,
.values-strip .value-sub{
  color:rgba(255,255,255,.82);
}
.values-strip .sep{
  color:var(--sky);
}
@media (max-width: 767px){
  .values-strip{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    text-align:center;
  }
  .values-strip .sep{
    display:none;
  }
  .values-strip .value-main,
  .values-strip .value-sub{
    display:block;
    max-width:30ch;
    letter-spacing:.12em;
  }
}

/* Founder page */
.page-founder .founder-foundation-bar{
  width:min(100%, 980px) !important;
  border-radius:0 28px 28px 28px !important;
}
.page-founder .founder-foundation-title{
  max-width:none !important;
  font-size:clamp(1.7rem, 1.1rem + 1.1vw, 2.18rem) !important;
  line-height:1.06 !important;
}
.page-founder .founder-foundation-copytext{
  max-width:68ch;
}
@media (min-width: 992px){
  .page-founder .founder-foundation-title{
    white-space:nowrap;
  }
}

/* Contact page simplification */
.page-contact .contact-method-card,
.page-contact .contact-method-card--qr{
  gap:16px;
}
.page-contact .contact-card-actions--stack{
  flex-direction:column;
}
.page-contact .contact-card-phone{
  white-space:nowrap;
  font-size:.96rem;
  letter-spacing:.01em;
}
.page-contact .contact-card-whatsapp{
  align-self:flex-start;
}
.page-contact .contact-card-link{
  white-space:normal;
}
.page-contact .cta-box .hero-actions{
  justify-content:flex-start;
}


/* === v21 founder frame text normalize === */
.page-founder .founder-foundation-title{
  white-space:normal !important;
  max-width:22ch !important;
  line-height:1.14 !important;
  letter-spacing:normal !important;
}
@media (min-width: 992px){
  .page-founder .founder-foundation-title{
    max-width:24ch !important;
  }
}


/* === v22 text frame shape normalization === */
.page-hero-card{
  border-radius:0 26px 26px 26px !important;
}
.framed-hero-card{
  border-radius:0 34px 34px 34px !important;
}
.section-frame-bar{
  border-radius:0 28px 28px 28px !important;
}

@media (max-width: 767px){
  .page-hero-card{
    border-radius:0 22px 22px 22px !important;
  }
  .framed-hero-card{
    border-radius:0 24px 24px 24px !important;
  }
  .section-frame-bar{
    border-radius:0 22px 22px 22px !important;
  }
}

/* === v23 broaden text frame shape update (including headers/head blocks) === */
.page-hero-card,
.page-hero-card::before,
.framed-hero-card,
.callout,
.cta-box,
.cardx,
.stat,
.feature,
.detail-card,
.contact-item,
.logo-tile,
.accordion-item,
.accordion-button,
.image-panel .overlay,
.notice,
.proof-mini,
.timeline-item .detail,
.experience-duration,
.modal-content{
  border-radius:0 24px 24px 24px !important;
}

.tag,
.num,
.kicker-pill,
.proof-pill,
.soft-chip,
.logo-stage .caption span,
.experience-years-badge,
.meta-pill,
.hero-card-badge{
  border-radius:0 999px 999px 999px !important;
}

@media (max-width: 767px){
  .page-hero-card,
  .page-hero-card::before,
  .framed-hero-card,
  .callout,
  .cta-box,
  .cardx,
  .stat,
  .feature,
  .detail-card,
  .contact-item,
  .logo-tile,
  .accordion-item,
  .accordion-button,
  .image-panel .overlay,
  .notice,
  .proof-mini,
  .timeline-item .detail,
  .experience-duration,
  .modal-content{
    border-radius:0 20px 20px 20px !important;
  }
}

/* === v25 normalize section header frames site-wide === */
.section-frame-bar,
.page-founder .founder-foundation-bar{
  position:relative !important;
  width:100%;
  min-height:auto !important;
  padding:20px 24px !important;
  background:rgba(245,248,252,.96) !important;
  border:1px solid rgba(63,84,134,.18) !important;
  border-right:1px solid rgba(63,84,134,.18) !important;
  border-radius:0 24px 24px 24px !important;
  box-shadow:var(--shadow-soft) !important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
}

.section-frame-bar::after,
.page-founder .founder-foundation-bar::after{
  display:none !important;
  content:none !important;
}

.section-frame-bar .eyebrow,
.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3,
.page-founder .founder-foundation-bar .eyebrow,
.page-founder .founder-foundation-bar .section-title,
.page-founder .founder-foundation-bar h2{
  display:block !important;
  background:none !important;
  box-shadow:none !important;
  padding:0 !important;
  margin:0 !important;
}

.section-frame-bar .eyebrow,
.page-founder .founder-foundation-bar .eyebrow{
  margin-bottom:4px !important;
  color:var(--sky) !important;
}

.section-frame-bar .section-title,
.section-frame-bar h2,
.section-frame-bar h3,
.page-founder .founder-foundation-bar .section-title,
.page-founder .founder-foundation-bar h2{
  max-width:none !important;
  color:var(--navy) !important;
  line-height:1.12 !important;
}

.page-founder .founder-foundation-title{
  max-width:22ch !important;
  font-size:clamp(1.7rem, 1.1rem + 1.1vw, 2.18rem) !important;
  line-height:1.12 !important;
}

@media (max-width: 767px){
  .section-frame-bar,
  .page-founder .founder-foundation-bar{
    padding:16px 18px !important;
    border-radius:0 20px 20px 20px !important;
  }

  .page-founder .founder-foundation-title{
    max-width:18ch !important;
  }
}


/* === v27 f2.docx refinements === */
.page-track .track-record-note{
  margin-top:12px !important;
  max-width:72ch !important;
  color:var(--muted) !important;
}
.page-track .section-top .track-record-note{
  margin-bottom:0 !important;
}

@media (max-width: 767px){
  .values-strip{
    padding-top:9px !important;
    padding-bottom:9px !important;
    gap:3px !important;
  }
  .values-strip .value-main,
  .values-strip .value-sub{
    max-width:none !important;
    white-space:nowrap;
    font-size:clamp(.56rem,2.15vw,.68rem) !important;
    letter-spacing:.05em !important;
    line-height:1.18 !important;
  }

  :root{
    --media-logo-top:16px !important;
    --media-logo-right:16px !important;
    --media-logo-w:82px !important;
    --media-logo-h:36px !important;
  }

  .page-hero-photo::after,
  .image-panel::after,
  .track-shot .ghost-logo,
  .page-about .about-hero-photo::after,
  .page-about .about-body-photo::after{
    top:var(--media-logo-top) !important;
    right:var(--media-logo-right) !important;
  }

  .hero.hero-v2 .ghost-logo.ghost-logo-custom,
  .page-home .hero.hero-v2 .ghost-logo.ghost-logo-custom{
    top:18px !important;
    right:18px !important;
    width:86px !important;
  }
}
