/* ============ TOKENS ============ */
  /* S Labs brand system per Brand Guidelines v1.0:
     Primary — Navy Blue #0E296E + White. Secondary — Warm Gold, Sage Green, Teal, Soft Gray.
     Primary font: Montserrat. Secondary font: Rubik. */
  :root{
    --paper:#FFFFFF;
    --paper-raised:#FFFFFF;
    --paper-deep:#FFFFFF;
    --ink:#000000;
    --ink-soft:rgba(0,0,0,.82);
    --ink-faint:rgba(0,0,0,.42);
    --line:rgba(0,0,0,.14);
    --line-strong:rgba(0,0,0,.26);
    --sage:#5B6D9C;
    --sage-soft:#939FBE;
    --sage-tint:rgba(14,41,110,.09);
    --sage-tint-strong:rgba(14,41,110,.15);
    --tint-blue-1:#F4F8FD;
    --tint-blue-2:#E9F1FB;
    --sage-strong:#0E296E;
    --sage-strong-hover:#0A1E4F;
    --on-sage:#FFFFFF;
    --band-bg:#FFFFFF;
    --band-fg:var(--ink);
    --band-fg-soft:var(--ink-soft);
    --band-fg-faint:var(--ink-faint);
    --band-border:var(--line-strong);
    --accent-on-dark:var(--sage-strong);
    --hero-fg:#000000;
    --hero-fg-soft:rgba(0,0,0,.66);
    --hero-accent:#0E296E;
    --hero-border:rgba(0,0,0,.2);
    --hero-track:rgba(0,0,0,.14);
    --brandtile-1:#091B48;
    --brandtile-2:#0E296E;
    --brandtile-3:#5B6D9C;
    --brandtile-4:#7A89AF;
    /* Secondary brand palette — for accents only, used sparingly */
    --accent-gold:#C89B3C;
    --accent-sage-green:#7A9B6F;
    --accent-teal:#2E7D7D;
    --accent-gray:#6B7280;
    --shadow:0 24px 50px -28px rgba(0,0,0,.16);
    --radius-s:6px;
    --radius-m:14px;
    --radius-l:22px;
    --font-display:'Rubik','Segoe UI',Roboto,-apple-system,sans-serif;
    --font-body:'Montserrat',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
    --font-mono:'Montserrat',ui-monospace,'SFMono-Regular',Menlo,monospace;
    --ease:cubic-bezier(.22,.61,.36,1);
  }
  /* Intentionally single-theme: this site always renders in white/black/green,
     regardless of the viewer's system dark-mode setting. */
  /* ============ RESET / BASE ============ */
  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;} }
  body{
    margin:0; background:var(--paper); color:var(--ink);
    font-family:var(--font-body); font-size:16px; line-height:1.6;
    -webkit-font-smoothing:antialiased; overflow-x:hidden;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{margin:0; padding:0; list-style:none;}
  h1,h2,h3,h4,p{margin:0;}
  p{ font-weight:500; }
  h1,h2,h3,h4{font-family:var(--font-display); text-wrap:balance; font-weight:600; letter-spacing:-.015em; color:var(--sage-strong);}
  button{font:inherit; color:inherit; background:none; border:none; cursor:pointer;}
  :focus-visible{outline:2px solid var(--sage-strong); outline-offset:3px; border-radius:2px;}
  .wrap{ max-width:1240px; margin:0 auto; padding:0 32px; }
  @media (max-width:720px){ .wrap{padding:0 20px;} }
  @media (max-width:400px){ .wrap{padding:0 16px;} }
  .eyebrow{
    font-family:var(--font-mono); font-size:13px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--sage); display:flex; align-items:center; gap:10px; font-weight:500;
  }
  .eyebrow::before{ content:""; width:22px; height:1px; background:var(--sage); display:block; }
  .eyebrow.on-dark{ color:var(--accent-on-dark); }
  .eyebrow.on-dark::before{ background:var(--accent-on-dark); }
  .section{ padding:112px 0; border-top:1px solid var(--line); position:relative; }
  .section.tight{ padding:88px 0; }
  /* ============ SECTION BACKGROUND RHYTHM (logo-blue tints) ============ */
  #purpose-vision-mission{ background:var(--tint-blue-1); }
  #how-we-build{ background:var(--tint-blue-1); }
  #contact{ background:var(--tint-blue-2); }
  @media (max-width:720px){ .section{padding:76px 0;} .section.tight{padding:60px 0;} }
  .section-head{ max-width:760px; margin-bottom:56px; }
  .section-head h2{ font-size:clamp(28px,4vw,44px); line-height:1.12; margin-top:14px; }
  .section-head p.lede{ margin-top:18px; color:var(--ink-soft); max-width:640px; }
  .btn{
    display:inline-flex; align-items:center; gap:10px; font-family:var(--font-mono);
    font-size:13px; letter-spacing:.06em; text-transform:uppercase; font-weight:500;
    padding:15px 26px; border-radius:999px; transition:transform .35s var(--ease), background .3s, color .3s, border-color .3s;
    white-space:nowrap;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{ background:var(--sage-strong); color:var(--on-sage); }
  .btn-primary:hover{ background:var(--sage-strong-hover); }
  .btn-ghost{ border:1px solid var(--line-strong); color:var(--ink); }
  .btn-ghost:hover{ border-color:var(--sage); color:var(--sage); }
  .btn-ghost.on-dark{ border-color:var(--hero-border); color:var(--hero-fg); }
  .btn-ghost.on-dark:hover{ border-color:var(--hero-accent); color:var(--hero-accent); }
  .btn svg{ width:14px; height:14px; }
  /* ============ NAV ============ */
  .nav{
    position:sticky; top:0; z-index:100;
    border-bottom:1px solid var(--line);
  }
  .nav::before{
    content:""; position:absolute; inset:0; z-index:-1;
    backdrop-filter:blur(14px) saturate(1.1);
    background:color-mix(in srgb, var(--paper) 82%, transparent);
  }
  .nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:112px; gap:12px; }
  .brandmark{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-size:21px; font-weight:600; letter-spacing:-.01em; min-width:0; }
  .brandmark .brand-logo{ height:96px; width:auto; max-width:135px; object-fit:contain; flex-shrink:0; }
  @media (max-width:400px){ .nav .wrap{ height:88px; } .brandmark .brand-logo{ height:70px; max-width:105px; } }
  .foot-brand .brandmark .brand-logo{ height:130px; width:auto; max-width:170px; object-fit:contain; }
  .nav-links{ display:flex; align-items:center; gap:34px; }
  .nav-links a{ font-family:var(--font-mono); font-size:15px; font-weight:500; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-soft); transition:color .25s; position:relative; }
  .nav-links a:hover{ color:var(--sage); }
  .nav-links a:active,
  .nav-links a.active{ color:var(--sage-strong); font-weight:800; }
  .nav-cta{ display:flex; align-items:center; gap:18px; }
  .nav-toggle{ display:none; width:38px; height:38px; align-items:center; justify-content:center; }
  .nav-toggle span{ content:""; display:block; width:20px; height:1.5px; background:var(--ink); position:relative; transition:transform .3s, opacity .3s; }
  .nav-toggle{ flex-direction:column; gap:5px; }
  @media (max-width:880px){
    .nav-links{ position:fixed; inset:112px 0 0 0; background:var(--paper); flex-direction:column; justify-content:flex-start; padding:40px 24px; gap:26px; transform:translateY(-8px); opacity:0; pointer-events:none; transition:opacity .3s var(--ease), transform .3s var(--ease); overflow-y:auto; }
    .nav-links a{ font-size:15px; }
    .nav-links.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
    .nav-toggle{ display:flex; }
    .nav-cta .btn-primary{ display:none; }
  }
  @media (max-width:400px){ .nav-links{ inset:88px 0 0 0; padding:28px 20px; gap:20px; } }
  /* ============ HERO / SLIDER (SPLIT 50/50 IMAGE & TEXT) ============ */
  .hero{
    position:relative;
    background:linear-gradient(180deg, #FFFFFF 0%, #F7FAFD 100%);
    overflow:hidden;
    min-height:640px;
    height:calc(86vh);
    max-height:800px;
    display:flex;
    align-items:center;
    border-bottom:1px solid var(--line);
  }
  .hero-inner{
    position:relative;
    width:100%;
    height:100%;
    min-height:540px;
  }
  .slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .75s var(--ease), visibility .75s;
    display:flex;
    align-items:center;
    width:100%;
    height:100%;
  }
  .slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
  }
  .slide-split{
    display:grid;
    grid-template-columns:1.06fr 0.94fr;
    gap:56px;
    align-items:center;
    width:100%;
    padding:40px 0 70px;
  }
  .slide-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:var(--hero-fg);
    transform:translateX(-14px);
    opacity:0;
    transition:transform .65s var(--ease), opacity .65s var(--ease);
  }
  .slide.active .slide-copy{
    transform:translateX(0);
    opacity:1;
  }
  .slide-copy .eyebrow{ color:var(--hero-accent); }
  .slide-copy .eyebrow::before{ background:var(--hero-accent); }
  .slide-copy h1{
    font-size:clamp(30px, 3.8vw, 48px);
    font-weight:700;
    line-height:1.12;
    margin-top:16px;
    color:var(--sage-strong);
    letter-spacing:-.02em;
  }
  .slide-copy p{
    margin-top:18px;
    font-size:16.5px;
    line-height:1.65;
    color:var(--hero-fg-soft);
    max-width:540px;
  }
  .slide-copy p + p{ margin-top:10px; }
  .slide-cta{ display:flex; gap:16px; margin-top:32px; flex-wrap:wrap; }
  .slide-cta .btn-primary{ background:var(--hero-accent); color:#FFFFFF; }
  .slide-cta .btn-primary:hover{ background:var(--sage-strong-hover); }
  
  .slide-media-wrap{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    height:auto;
    max-height:460px;
    border-radius:var(--radius-l);
    overflow:hidden;
    box-shadow:0 24px 48px -18px rgba(18,63,115,.2), 0 0 0 1px var(--line);
    transform:translateX(14px) scale(.98);
    opacity:0;
    transition:transform .65s var(--ease), opacity .65s var(--ease);
    background:#eef4fb;
  }
  .slide.active .slide-media-wrap{
    transform:translateX(0) scale(1);
    opacity:1;
  }
  .slide-media-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 7s ease-out;
  }
  .slide.active .slide-media-wrap img{
    transform:scale(1.04);
  }
  
  .hero-controls{
    position:absolute;
    z-index:4;
    left:0;
    right:0;
    bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:22px;
  }
  .hero-dots{ display:flex; gap:10px; }
  .hero-dot{ width:34px; height:4px; background:rgba(10,20,36,.14); border-radius:2px; overflow:hidden; position:relative; cursor:pointer; }
  .hero-dot span{ position:absolute; inset:0; background:var(--hero-accent); transform:scaleX(0); transform-origin:left; }
  .hero-dot.active span{ transform:scaleX(1); transition:transform 7s linear; }
  .hero-dot.done span{ transform:scaleX(1); transition:none; }
  .hero-arrows{
    position:absolute;
    z-index:4;
    left:0;
    right:0;
    bottom:16px;
    display:flex;
    justify-content:space-between;
    padding:0 32px;
    pointer-events:none;
  }
  .hero-arrow{
    pointer-events:auto;
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid var(--line-strong);
    background:var(--paper);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--hero-fg);
    transition:background .25s, border-color .25s, transform .25s;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
  }
  .hero-arrow:hover{ background:var(--sage-tint); border-color:var(--sage); color:var(--sage); transform:scale(1.05); }
  .hero-arrow svg{ width:16px; height:16px; }

  @media (max-width:960px){
    .hero{ min-height:auto; height:auto; max-height:none; padding:40px 0 60px; }
    .hero-inner{ min-height:auto; }
    .slide{ position:relative; height:auto; display:none; }
    .slide.active{ display:block; }
    .slide-split{ grid-template-columns:1fr; gap:36px; padding:20px 0 40px; }
    .slide-media-wrap{ height:auto; max-height:none; order:-1; }
    .hero-arrows{ display:none; }
  }
  @media (max-width:640px){
    .slide-copy h1{ font-size:28px; }
    .slide-copy p{ font-size:15.5px; }
  }
  /* ============ SHARED IMAGE + COPY BLOCK ============ */
  .phil-top-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:stretch; margin-bottom:52px; }
  .phil-image{ width:100%; height:100%; align-self:stretch; object-fit:cover; border-radius:var(--radius-l); border:1px solid var(--line); }
  @media (max-width:860px){ .phil-top-grid{ grid-template-columns:1fr; gap:32px; } .phil-image{ min-height:220px; height:auto; } }
  /* ============ CARD GRIDS ============ */
  .grid{ display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; }
  .grid-3{ grid-template-columns:repeat(3,1fr); }
  .grid-2{ grid-template-columns:repeat(2,1fr); }
  @media (max-width:860px){ .grid-3{ grid-template-columns:repeat(2,1fr);} }
  @media (max-width:600px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }
  .cell{ background:var(--paper); padding:36px 32px; }
  .cell h3{ font-size:20px; margin-top:14px; }
  .cell p{ margin-top:10px; color:var(--ink-soft); font-size:16px; line-height:1.65; }
  @media (max-width:480px){ .cell{ padding:28px 22px; } }
  .icon-tile{ width:58px; height:58px; border-radius:14px; background:var(--sage-tint); display:flex; align-items:center; justify-content:center; margin-bottom:6px; flex-shrink:0; }
  .icon-tile svg{ width:30px; height:30px; stroke:var(--sage-strong); stroke-width:2.1; }
  .icon-tile.sm{ width:48px; height:48px; border-radius:11px; }
  .icon-tile.sm svg{ width:24px; height:24px; stroke-width:2.2; }
  .icon-tile.believe-icon{ width:68px; height:68px; background:transparent; border-radius:0; margin-bottom:10px; }
  .icon-tile.believe-icon img{ width:100%; height:100%; object-fit:contain; }
  .cat-chips{ display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
  .cat-chip{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:13.5px; letter-spacing:.03em; color:var(--sage-strong); background:var(--sage-tint); border-radius:999px; padding:9px 16px 9px 12px; }
  .cat-chip svg{ width:20px; height:20px; stroke:var(--sage-strong); stroke-width:2.4; }
  /* ============ ABOUT ============ */
  .about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:flex-start; }
  @media (max-width:860px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }
  .about-grid .lede-block h2{ font-size:clamp(26px,3.6vw,38px); }
  .about-copy p{ color:var(--ink-soft); font-size:17px; margin-bottom:18px; }
  .about-copy p:last-child{ margin-bottom:0; }
  .pull{ font-family:var(--font-body); font-weight:500; font-size:19px; color:var(--sage-strong); margin-top:26px; line-height:1.5; padding-left:18px; border-left:3px solid var(--sage); }
  /* ============ PVM (purpose/vision/mission) ============ */
  .pvm{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; }
  @media (max-width:860px){ .pvm{ grid-template-columns:1fr; } }
  .pvm-cell{ background:var(--paper); padding:44px 34px; display:flex; flex-direction:column; gap:16px; }
  .pvm-cell h3{ font-size:22px; line-height:1.25; }
  @media (max-width:480px){ .pvm-cell{ padding:32px 22px; } }
  .pvm-cell p{ color:var(--ink-soft); font-size:16px; line-height:1.7; }
  .better-list{ display:flex; flex-direction:column; gap:7px; margin-top:4px; }
  .better-list span{ font-family:var(--font-body); font-weight:500; font-size:16.5px; color:var(--sage-strong); display:flex; align-items:center; gap:9px; }
  .better-list span::before{ content:""; width:9px; height:9px; border-radius:50%; background:var(--sage-strong); flex-shrink:0; }
  .tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
  .tag{ font-family:var(--font-mono); font-size:13px; padding:6px 12px; border-radius:999px; background:var(--sage-tint); color:var(--sage); letter-spacing:.02em; }
  /* ============ TIMELINE (how we build) — horizontal track ============ */
  .timeline{ position:relative; margin-top:32px; overflow-x:auto; padding:6px 4px 22px; -webkit-overflow-scrolling:touch; scroll-snap-type:x proximity; }
  .timeline-track{ position:relative; display:flex; gap:0; width:max-content; min-width:100%; }
  .tl-item{ scroll-snap-align:start; }
  .timeline-track::before{ content:""; position:absolute; left:28px; right:28px; top:28px; height:2px; background:var(--line-strong); }
  .tl-item{ display:flex; flex-direction:column; align-items:flex-start; gap:16px; padding:0 20px; position:relative; flex:0 0 230px; }
  .tl-item .tl-num{ width:56px; height:56px; border-radius:50%; background:var(--paper); border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:14px; color:var(--sage); position:relative; z-index:1; }
  @media (max-width:640px){ .tl-item{ flex:0 0 200px; } .tl-item .tl-num{ width:44px; height:44px; font-size:12px; } .timeline-track::before{ top:22px; } }
  .tl-item.active .tl-num{ background:var(--sage); color:var(--on-sage); border-color:var(--sage); }
  .tl-body h4{ font-size:18px; }
  .tl-body p{ margin-top:8px; color:var(--ink-soft); font-size:15.5px; }
  /* ============ BRANDS ============ */
  .brand-strip{ display:flex; gap:10px; flex-wrap:wrap; margin:26px 0 48px; }
  .brand-strip span{ font-family:var(--font-mono); font-size:14px; color:var(--ink-soft); display:flex; align-items:center; gap:10px; }
  .brand-strip span:not(:last-child)::after{ content:"/"; margin-left:10px; color:var(--line-strong); }
  .brand-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:940px; margin:0 auto; }
  @media (max-width:560px){ .brand-grid{ grid-template-columns:1fr; } }
  .brand-card{ background:var(--paper-raised); border:1px solid var(--line); border-radius:var(--radius-m); overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
  .brand-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
  .brand-media{ width:100%; height:320px; background:#FFFFFF; display:flex; align-items:center; justify-content:center; padding:36px; box-sizing:border-box; overflow:hidden; position:relative; }
  .brand-photo{ max-width:92%; max-height:150px; width:auto; height:auto; object-fit:contain; display:block; transition:transform .4s var(--ease); }
  .brand-card:hover .brand-photo{ transform:scale(1.05); }
  .brand-media-ww{ background:#D1FFFD; }
  .brand-photo-ww{ max-height:142px; max-width:90%; }
  .brand-photo-kixoff{ max-height:112px; max-width:92%; }
  .brand-photo-petayur{ max-height:146px; max-width:88%; }
  .brand-photo-gpg{ max-height:136px; max-width:92%; }
  /* ============ HORIZONTAL ROW (What We Believe) ============ */
  .horiz-row{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; padding:6px 4px 22px; }
  .horiz-row .cell{ border:1px solid var(--line); border-radius:var(--radius-m); transition:border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
  .horiz-row .cell:hover{ border:2px solid var(--sage-strong); background:var(--sage-tint-strong); transform:translateY(-6px); box-shadow:0 28px 54px -22px rgba(14,41,110,.38); }
  .horiz-row .cell:hover .icon-tile{ background:var(--sage-strong); }
  .horiz-row .cell:hover .icon-tile svg{ stroke:#FFFFFF; }
  .horiz-row .cell:hover .icon-tile.believe-icon{ background:transparent; transform:translateY(-2px); }
  @media (max-width:860px){ .horiz-row{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .horiz-row{ grid-template-columns:1fr; } }
  /* ============ FUTURE band ============ */
  .band-dark{ background:var(--band-bg); color:var(--band-fg); }
  .band-dark .eyebrow{ color:var(--accent-on-dark); }
  .band-dark .eyebrow::before{ background:var(--accent-on-dark); }
  .band-dark .section-head p.lede{ color:var(--band-fg-soft); }
  .pill-row{ display:flex; flex-wrap:wrap; gap:12px; margin:34px 0; }
  .pill{ font-family:var(--font-mono); font-size:14px; letter-spacing:.03em; padding:11px 20px; border-radius:999px; border:1px solid var(--band-border); color:var(--band-fg); }
  .future-copy{ display:flex; flex-direction:column; gap:18px; max-width:520px; }
  .future-copy p{ color:var(--band-fg-soft); font-size:15.5px; line-height:1.7; }
  /* ============ CONTACT ============ */
  .contact-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:64px; }
  @media (max-width:860px){ .contact-wrap{ grid-template-columns:1fr; gap:44px; } }
  .enquiry-list{ display:flex; flex-direction:column; }
  .enquiry-item{ display:flex; justify-content:space-between; align-items:baseline; gap:20px; padding:22px 0; border-top:1px solid var(--line); }
  .enquiry-item:last-child{ border-bottom:1px solid var(--line); }
  .enquiry-item h4{ font-size:17px; font-weight:600; font-family:var(--font-body); white-space:nowrap; }
  .enquiry-item p{ color:var(--ink-soft); font-size:15.5px; text-align:right; }
  @media (max-width:560px){
    .enquiry-item{ flex-direction:column; align-items:flex-start; gap:6px; }
    .enquiry-item h4{ white-space:normal; }
    .enquiry-item p{ text-align:left; }
  }
  .contact-card{ background:var(--band-bg); color:var(--band-fg); border:1px solid var(--band-border); border-radius:var(--radius-l); padding:48px 40px; display:flex; flex-direction:column; gap:22px; }
  .contact-card h3{ font-size:24px; }
  @media (max-width:480px){ .contact-card{ padding:32px 24px; } .contact-card h3{ font-size:21px; } }
  .contact-card p{ color:var(--band-fg-soft); font-size:15px; line-height:1.7; }
  /* ============ FOOTER ============ */
  footer{ background:var(--tint-blue-2); color:var(--band-fg); border-top:1px solid var(--line); padding:72px 0 32px; }
  .foot-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:48px; border-bottom:1px solid var(--band-border); }
  .foot-brand .brandmark{ color:var(--band-fg); }
  .foot-brand p{ margin-top:14px; max-width:340px; color:var(--band-fg-soft); font-size:14.5px; line-height:1.65; }
  .foot-links{ display:flex; gap:14px; flex-wrap:wrap; font-family:var(--font-mono); font-size:15px; font-weight:500; }
  .foot-links a{ color:var(--band-fg-soft); transition:color .25s; }
  .foot-links a:hover{ color:var(--accent-on-dark); }
  .foot-nav-col{ display:flex; flex-direction:column; align-items:flex-end; gap:20px; }
  @media (max-width:640px){ .foot-nav-col{ align-items:flex-start; } }
  .foot-contact{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
  @media (max-width:640px){ .foot-contact{ align-items:flex-start; } }
  .foot-contact-item{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-body); font-size:16px; font-weight:600; color:var(--sage-strong); transition:color .25s; }
  .foot-contact-item:hover{ color:var(--sage-strong-hover); }
  .foot-contact-item svg{ width:22px; height:22px; stroke:var(--sage-strong); stroke-width:2.2; flex-shrink:0; }
  .foot-bottom{ display:flex; justify-content:space-between; padding-top:26px; font-family:var(--font-mono); font-size:13px; color:var(--band-fg-faint); flex-wrap:wrap; gap:10px; }
  /* ============ CLICK-TO-REVEAL CARDS ============ */
  .reveal-box{ cursor:pointer; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
  .reveal-box:hover{ transform:translateY(-3px); }
  .reveal-box:focus-visible{ outline:2px solid var(--sage-strong); outline-offset:-2px; }
  .reveal-box template{ display:none; }
  .reveal-cta{ display:inline-flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--sage); margin-top:16px; }
  .reveal-cta svg{ width:11px; height:11px; }
  .modal-overlay{ position:fixed; inset:0; background:rgba(5,12,24,.6); backdrop-filter:blur(3px); display:flex; align-items:center; justify-content:center; padding:24px; z-index:1000; opacity:0; pointer-events:none; transition:opacity .3s var(--ease); }
  .modal-overlay.open{ opacity:1; pointer-events:auto; }
  .modal-card{ background:var(--paper); border-radius:var(--radius-l); max-width:540px; width:100%; max-height:84vh; overflow-y:auto; padding:44px 40px; position:relative; transform:translateY(16px) scale(.97); transition:transform .35s var(--ease); box-shadow:0 50px 90px -30px rgba(0,0,0,.45); }
  .modal-overlay.open .modal-card{ transform:translateY(0) scale(1); }
  .modal-close{ position:absolute; top:16px; right:16px; width:36px; height:36px; border-radius:50%; border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; background:var(--paper); color:var(--ink); transition:border-color .25s, color .25s; }
  .modal-close:hover{ border-color:var(--sage); color:var(--sage); }
  .modal-close svg{ width:15px; height:15px; }
  #modalBody .icon-tile{ margin-bottom:18px; }
  #modalBody h3, #modalBody h4{ font-size:23px; margin-bottom:14px; }
  #modalBody .eyebrow{ margin-bottom:14px; }
  #modalBody p{ color:var(--ink-soft); font-size:16.5px; line-height:1.7; margin-bottom:14px; }
  #modalBody p:last-child{ margin-bottom:0; }
  @media (max-width:640px){ .modal-card{ padding:34px 26px; } }
  /* ============ REVEAL ============ */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }
