/* =========================================================
   GeM Master Consultancy – main stylesheet
   Brand colours are at the top (:root). Change them once here
   and the whole website updates.
   ========================================================= */
:root{
  --purple:#6528DE; --purple-2:#7C3AED; --purple-d:#4A1BB0; --purple-soft:#EFE9FF; --purple-soft2:#F7F4FF;
  --yellow:#F6B100; --yellow-2:#FFC21A; --yellow-soft:#FFF6DF;
  --green:#16A34A; --green-soft:#E9F9EF; --blue:#2F6FEB; --blue-soft:#E8F0FF; --orange:#F08A12; --orange-soft:#FFF1E0;
  --ink:#1A1452; --text:#4B4868; --muted:#77748F; --line:#E9E6F5;
  --bg:#FFFFFF; --bg-alt:#F9F8FE; --surface:#FFFFFF; --band1:#3A149C; --band2:#5A22D6; --cta1:#2A0E6E; --cta2:#4B1AAE;
  --shadow:0 6px 24px rgba(58,20,156,.07);
  --head:'Lexend',system-ui,'Segoe UI',Arial,sans-serif; --body:'Poppins',system-ui,'Segoe UI',Arial,sans-serif;
  box-sizing:border-box; padding-top:env(safe-area-inset-top,0px); padding-bottom:env(safe-area-inset-bottom,0px);
}
@media (prefers-color-scheme:dark){:root:not([data-theme="light"]){
  --ink:#F1EEFF; --text:#C9C4E4; --muted:#9B96B8; --line:#2E2750; --bg:#120E24; --bg-alt:#17122E; --surface:#1C1638;
  --purple-soft:#2A1F57; --purple-soft2:#1E1740; --yellow-soft:#2E2614; --green-soft:#12301F; --blue-soft:#17264A; --orange-soft:#33240F;
  --shadow:0 6px 24px rgba(0,0,0,.35);
}}
:root[data-theme="dark"]{
  --ink:#F1EEFF; --text:#C9C4E4; --muted:#9B96B8; --line:#2E2750; --bg:#120E24; --bg-alt:#17122E; --surface:#1C1638;
  --purple-soft:#2A1F57; --purple-soft2:#1E1740; --yellow-soft:#2E2614; --green-soft:#12301F; --blue-soft:#17264A; --orange-soft:#33240F;
  --shadow:0 6px 24px rgba(0,0,0,.35);
}
html{scroll-padding-top:calc(80px + env(safe-area-inset-top,0px));scroll-behavior:smooth}
*,*::before,*::after{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--text);font-family:var(--body);font-size:15px;line-height:1.65;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--head);color:var(--ink);margin:0;line-height:1.15;letter-spacing:-.01em}
p{margin:0}
.wrap{max-width:1200px;margin:0 auto;padding:0 24px}
.y{color:var(--yellow)} .p{color:var(--purple-2)}
:focus-visible{outline:3px solid var(--yellow);outline-offset:2px;border-radius:6px}
svg.i{width:1em;height:1em;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:none}

header{position:sticky;top:0;z-index:50;background:var(--bg);border-bottom:1px solid var(--line);padding-top:env(safe-area-inset-top,0px)}
.nav{display:flex;align-items:center;justify-content:space-between;height:70px;gap:20px;position:relative}
.logo{display:flex;align-items:center;gap:9px}
.logo svg{width:44px;height:36px}
.logo b{display:block;font-family:var(--head);font-weight:700;font-size:21px;line-height:1;color:var(--purple)}
.logo b span{color:var(--yellow)}
.logo small{display:block;font-size:11.5px;letter-spacing:.33em;color:var(--purple);margin-top:3px;font-family:var(--head);font-weight:500}
.menu{display:flex;gap:34px;list-style:none;margin:0;padding:0}
.menu a{display:block;font-family:var(--head);font-weight:500;font-size:14.5px;color:var(--ink);padding:24px 0;position:relative}
.menu a:hover,.menu a.on{color:var(--purple-2)}
.menu a.on::after{content:"";position:absolute;left:-8px;right:-8px;bottom:0;height:2px;background:var(--purple-2);border-radius:2px}
.burger{display:none;background:none;border:0;color:var(--ink);font-size:26px;padding:6px;cursor:pointer}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-family:var(--head);font-weight:600;font-size:14.5px;border-radius:999px;padding:12px 24px;border:1.5px solid transparent;cursor:pointer;transition:background .2s,box-shadow .2s;white-space:nowrap;background:none;color:inherit}
.btn-p{background:linear-gradient(90deg,var(--purple-d),var(--purple-2));color:#fff;box-shadow:0 8px 20px rgba(101,40,222,.25)}
.btn-p:hover{box-shadow:0 10px 26px rgba(101,40,222,.4)}
.btn-o{border-color:var(--purple-2);color:var(--purple-2);background:var(--surface)}
.btn-o:hover{background:var(--purple-soft)}
.btn-y{background:var(--yellow);color:#1A1452}
.btn-y:hover{background:var(--yellow-2)}
.btn-g{background:linear-gradient(90deg,#15803D,#22C55E);color:#fff}
.btn-w{border-color:rgba(255,255,255,.55);color:#fff}
.btn-w:hover{background:rgba(255,255,255,.1)}
.btn-sm{padding:9px 18px;font-size:13px}
.btn-block{width:100%}

.tag{display:inline-block;background:var(--purple-soft);color:var(--purple-2);font-family:var(--head);font-weight:600;font-size:12.5px;padding:4px 13px;border-radius:999px;margin-bottom:12px}
.tag.g{background:var(--green);color:#fff}
.sec{padding:64px 0}
.sec.alt{background:var(--bg-alt)}
.sh{font-size:clamp(26px,3vw,34px);font-weight:700}
.blk{display:block}
.sub{margin-top:8px;max-width:68ch}
.head-row{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;flex-wrap:wrap;margin-bottom:28px}
.card{background:var(--surface);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow)}
.ic{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;font-size:24px;flex:none;background:var(--purple-soft);color:var(--purple-2)}
.ic.y{background:var(--yellow-soft);color:var(--yellow)} .ic.g{background:var(--green-soft);color:var(--green)} .ic.b{background:var(--blue-soft);color:var(--blue)} .ic.o{background:var(--orange-soft);color:var(--orange)}
.ic.sm{width:40px;height:40px;font-size:19px}
.ic.lg{width:64px;height:64px;font-size:30px}

.hero{background:linear-gradient(100deg,var(--purple-soft2) 0%,var(--bg) 45%);overflow:hidden}
.hero-g{display:grid;grid-template-columns:1.05fr 1fr;align-items:center;gap:24px;min-height:440px}
.hero-t{padding:44px 0}
.hero h1{font-size:clamp(34px,4.4vw,52px);font-weight:800;line-height:1.08}
.hero .lead{margin-top:16px;font-size:16px;max-width:52ch}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-top:26px}
.hero-img{position:relative;justify-self:end;align-self:end;margin-right:calc(-1 * max(24px, (100vw - 1200px)/2 + 24px));line-height:0}
.hero-img img{width:auto;height:auto;max-width:52vw;max-height:500px;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%);mask-image:linear-gradient(90deg,transparent 0,#000 7%)}
.feats{display:flex;margin-top:28px;flex-wrap:wrap}
.feat{flex:1 1 90px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;padding:0 10px;border-right:1px solid var(--line);font-family:var(--head);font-weight:600;font-size:13px;color:var(--ink);line-height:1.3}
.feat:last-child{border-right:0}
.feats.inline{gap:12px 0}
.feats.inline .feat{flex:0 1 auto;flex-direction:row;text-align:left;font-size:12px;gap:8px;border-right:0;padding:0 16px 0 0}
.feats.inline .ic{width:34px;height:34px;font-size:16px;border:1.5px solid var(--purple-2);background:transparent}
.overlay-card{position:absolute;background:#fff;border-radius:12px;box-shadow:0 12px 30px rgba(26,20,82,.18);padding:14px 16px;color:#1A1452;z-index:2}
.steps-card{right:4%;bottom:6%;width:205px;display:flex;flex-direction:column;gap:9px;line-height:1.3}
.steps-card div{display:flex;align-items:center;gap:9px;font-family:var(--head);font-size:12.5px;font-weight:500}
.steps-card .ic{width:26px;height:26px;font-size:14px;border-radius:7px}
.purpose{right:4%;bottom:6%;width:230px;line-height:1.4}
.purpose h4{color:var(--purple-2);font-size:14px}
.purpose .q{font-size:34px;line-height:.8;color:var(--purple-2);font-family:Georgia,serif;margin:8px 0 4px}
.purpose p{font-size:13px;line-height:1.5;color:#3d3868}

.band{background:linear-gradient(90deg,var(--band1),var(--band2));color:#fff}
.band .wrap{display:grid;grid-template-columns:repeat(4,1fr);padding-top:24px;padding-bottom:24px}
.stat{display:flex;align-items:center;gap:16px;padding:6px 20px;border-right:1px solid rgba(255,255,255,.22)}
.stat:last-child{border-right:0}
.stat svg.i{font-size:40px;stroke-width:1.6}
.stat b{display:block;font-family:var(--head);font-size:24px;font-weight:700;line-height:1.1}
.stat span{font-size:13px;opacity:.85}

.g2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.g3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.g4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.g5{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.g6{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.g7{display:grid;grid-template-columns:repeat(7,1fr);gap:12px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.tile{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:12px;padding:22px 12px;font-family:var(--head);font-weight:600;font-size:14px;color:var(--ink);line-height:1.3}
.mini4{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:24px 0}
.mini4 div{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;font-family:var(--head);font-weight:600;font-size:12.5px;color:var(--ink);line-height:1.3}
.rounded-img{border-radius:22px;overflow:hidden;box-shadow:var(--shadow)}
.rounded-img img{width:100%;height:100%;object-fit:cover}

.process{display:flex;align-items:flex-start;justify-content:space-between;gap:6px}
.pstep{flex:1;display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px}
.pstep .ic{width:74px;height:74px;font-size:30px}
.pstep b{font-family:var(--head);color:var(--ink);font-size:14px}
.pstep span{font-family:var(--head);font-weight:600;font-size:13.5px;color:var(--ink);line-height:1.3}
.parrow{color:var(--muted);font-size:20px;margin-top:28px}

.eco{display:flex;align-items:stretch;gap:10px}
.eco .card{flex:1;padding:22px 18px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px}
.eco .card h4{font-size:15px;letter-spacing:.04em}
.eco .card b{font-family:var(--head);color:var(--ink);font-size:14px;line-height:1.35}
.eco .card p{font-size:12.5px;color:var(--muted)}
.eco .arr{align-self:center;color:var(--ink);font-size:20px}
.eco .l{background:var(--purple-soft2);border-color:#D9CCFF} .eco .l h4{color:var(--purple-2)}
.eco .f{background:var(--yellow-soft);border-color:#FBE3A0} .eco .f h4{color:#D99A00}
.eco .e{background:var(--blue-soft);border-color:#C9DBFF} .eco .e h4{color:var(--blue)}
.eco .gr{background:var(--green-soft);border-color:#BDEBCF} .eco .gr h4{color:var(--green)}

.fmsg{display:grid;grid-template-columns:320px 1fr 250px;gap:30px;align-items:center}
.fcard{background:linear-gradient(135deg,var(--purple-d),var(--purple-2));border-radius:18px;color:#fff;display:grid;grid-template-columns:42% 1fr;align-items:stretch;overflow:hidden;min-height:220px}
.fcard img{height:100%;width:100%;object-fit:cover;object-position:top}
.fcard div{align-self:center}
.fcard div{padding:18px 16px 18px 6px}
.fcard .qq{font-family:Georgia,serif;font-size:44px;line-height:.6;color:var(--yellow)}
.fcard em{display:block;font-family:'Caveat',cursive;font-size:19px;line-height:1.25;margin:8px 0}
.fcard small{font-size:11px;opacity:.9}
.chk{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.chk li{display:flex;gap:10px;align-items:center;font-family:var(--head);font-size:13px;font-weight:500;color:var(--ink);background:var(--surface);border:1px solid var(--line);border-radius:10px;padding:9px 12px}
.chk li svg{color:var(--purple-2);font-size:17px}

.tm{padding:20px;display:flex;gap:14px}
.tm img{width:48px;height:48px;border-radius:50%;object-fit:cover;flex:none}
.tm q{display:block;font-size:13px;line-height:1.6}
.tm b{display:block;margin-top:10px;font-family:var(--head);color:var(--ink);font-size:13.5px}
.tm small{color:var(--muted);font-size:12px}

.faq{display:grid;grid-template-columns:1fr 1fr;gap:12px 24px;align-items:start}
.faq details{background:var(--surface);border:1px solid var(--line);border-radius:10px}
.faq summary{list-style:none;display:flex;align-items:center;gap:12px;padding:13px 16px;cursor:pointer;font-family:var(--head);font-weight:500;font-size:14px;color:var(--ink)}
.faq summary::-webkit-details-marker{display:none}
.faq summary .q{color:var(--purple-2);font-size:20px}
.faq summary .pl{margin-left:auto;color:var(--yellow);font-size:18px;transition:transform .2s}
.faq details[open] summary .pl{transform:rotate(45deg)}
.faq details p{padding:0 16px 14px 48px;font-size:13.5px}
.faq .extra{display:none}
.faq.all .extra{display:block}

.cta{position:relative;background:linear-gradient(90deg,var(--cta1),var(--cta2));color:#fff;overflow:hidden}
.cta .bgimg{position:absolute;right:0;top:0;height:100%;width:auto;max-width:none;opacity:.45;mix-blend-mode:luminosity;pointer-events:none;-webkit-mask-image:linear-gradient(90deg,transparent,#000 40%);mask-image:linear-gradient(90deg,transparent,#000 40%)}
.cta .wrap{position:relative;display:grid;grid-template-columns:1fr 260px;gap:30px;align-items:center;padding-top:44px;padding-bottom:44px}
.cta .tag{background:var(--purple-2);color:#fff}
.cta h2{color:#fff;font-size:clamp(24px,2.8vw,32px);font-weight:700}
.cta p{margin-top:8px;opacity:.9}
.cta ul{list-style:none;margin:0;padding:0 0 0 26px;border-left:1px solid rgba(255,255,255,.2);display:grid;gap:14px}
.cta li{display:flex;align-items:center;gap:12px;font-size:14px}
.cta li svg{width:34px;height:34px;padding:8px;border-radius:50%;background:rgba(255,255,255,.13)}

footer{background:var(--surface);border-top:1px solid var(--line)}
footer .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:22px;padding-bottom:22px;flex-wrap:wrap}
footer nav{display:flex;gap:28px;font-family:var(--head);font-size:14px;color:var(--ink);flex-wrap:wrap;justify-content:center}
footer nav a:hover,footer nav a.on{color:var(--purple-2)}
.soc{display:flex;gap:8px;justify-content:flex-end}
.soc a{width:32px;height:32px;border-radius:50%;background:#1A1452;color:#fff;display:grid;place-items:center;font-size:15px}
.copy{font-size:12px;color:var(--muted);text-align:right;margin-top:6px}

.story{display:grid;grid-template-columns:1fr 1.05fr;gap:30px;align-items:center}
.founder{display:grid;grid-template-columns:260px 1fr 270px;gap:36px;align-items:start}
.founder .ph{border-radius:22px;background:linear-gradient(160deg,#E9DFFF,#F7F3FF);overflow:hidden}
.founder .quote{margin-top:18px;background:var(--purple-soft2);border-radius:12px;padding:16px 18px 16px 58px;position:relative;font-size:13.5px;color:var(--purple-2);font-weight:500}
.founder .quote::before{content:"\201C";position:absolute;left:16px;top:4px;font-family:Georgia,serif;font-size:52px;color:var(--yellow);line-height:1}
.founder .quote small{display:block;margin-top:6px;color:var(--ink)}
.founder .side{border-left:2px dashed var(--line);padding-left:26px}
.mv{padding:26px;display:flex;gap:22px;align-items:flex-start}
.mv.p1{background:var(--purple-soft2);border-color:#CDB9FF}
.mv.p2{background:var(--yellow-soft);border-color:#FBE3A0}
.mv h3{font-size:19px;margin-bottom:6px}
.value{padding:24px 16px;text-align:center}
.value svg{font-size:30px;margin:0 auto 12px;display:block}
.value h4{font-size:15.5px;margin-bottom:6px}
.value p{font-size:12.5px;color:var(--muted)}

.pkg{padding:26px 26px 28px;display:flex;flex-direction:column}
.pkg.a{border-color:#D6C7FF} .pkg.b{border-color:#FCDDA0}
.pkg .top{display:flex;justify-content:space-between;align-items:flex-start;gap:16px}
.pkg .num{display:inline-block;font-family:var(--head);font-weight:600;font-size:11.5px;letter-spacing:.06em;padding:3px 12px;border-radius:999px;background:var(--purple-soft);color:var(--purple-2);margin-bottom:10px}
.pkg.b .num{background:var(--yellow-soft);color:#C98A00}
.pkg h3{font-size:22px}
.pkg .st{font-size:13.5px;margin-top:3px}
.pkg .best{margin:16px 0 14px;padding:12px 14px;border-radius:10px;background:var(--bg-alt);border:1px solid var(--line);font-size:13px}
.pkg.b .best{background:var(--yellow-soft);border-color:#FBE9BD}
.pkg .inc{font-family:var(--head);font-size:12px;color:var(--muted);margin-bottom:8px}
.ticks{list-style:none;padding:0;margin:0 0 22px;display:grid;gap:7px}
.ticks li{display:flex;gap:10px;align-items:center;font-size:13.5px;color:var(--ink)}
.ticks li::before{content:"";flex:none;width:17px;height:17px;border-radius:50%;background:var(--purple-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/11px no-repeat}
.ticks.yl li::before{background-color:var(--yellow)}
.pkg .btn{margin-top:auto;border-radius:10px;white-space:normal}
.gbm{background:linear-gradient(90deg,var(--purple-soft2),var(--purple-soft))}
.gbm-g{display:grid;grid-template-columns:1fr 1fr 1fr;gap:22px;align-items:center}
.gbm-g .gi img{border-radius:16px;-webkit-mask-image:radial-gradient(ellipse at center,#000 60%,transparent 78%);mask-image:radial-gradient(ellipse at center,#000 60%,transparent 78%)}
.combo{background:linear-gradient(90deg,var(--green-soft),var(--bg))}
.combo-g{display:grid;grid-template-columns:1fr 1.25fr;gap:30px;align-items:center}
.eq{display:flex;align-items:center;gap:10px}
.eq .card{flex:1;padding:18px 10px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:6px;font-family:var(--head);font-weight:600;font-size:13px;color:var(--ink);line-height:1.3;position:relative}
.eq .card small{font-family:var(--body);font-weight:400;color:var(--muted)}
.eq .op{width:30px;height:30px;border-radius:50%;background:var(--purple-2);color:#fff;display:grid;place-items:center;font-weight:700;flex:none}
.eq .res{border-color:#9DDDB5}
.eq .res .tag{position:absolute;top:-12px;right:8px;margin:0;font-size:11px}
.combo-feats{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-top:18px}
.combo-feats div{display:flex;flex-direction:column;align-items:center;text-align:center;gap:6px;font-family:var(--head);font-weight:600;font-size:11.5px;color:var(--ink);line-height:1.3}
.choose{display:flex;align-items:center;gap:10px}
.choose .card{flex:1;display:flex;align-items:center;gap:14px;padding:18px}
.choose b{display:block;font-family:var(--head);color:var(--ink);font-size:13.5px;line-height:1.3}
.choose small{font-size:12px;color:var(--muted)}
.choose .arr{color:var(--purple-2);font-size:20px}

.cgrid{display:grid;grid-template-columns:1.3fr 1fr;gap:28px}
.form-card{padding:26px}
.form-card h2{font-size:26px}
.fg{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px}
.field{display:flex;flex-direction:column;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-family:var(--head);font-weight:500;font-size:13px;color:var(--ink)}
.field input,.field select,.field textarea{font:inherit;font-size:14px;color:var(--ink);background:var(--surface);border:1px solid var(--line);border-radius:8px;padding:11px 13px;width:100%}
.field textarea{min-height:92px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--purple-2);box-shadow:0 0 0 3px rgba(124,58,237,.15)}
.field .err{font-size:12px;color:#DC2626;display:none}
.field.bad input,.field.bad select,.field.bad textarea{border-color:#DC2626}
.field.bad .err{display:block}
.phone{display:flex}
.phone span{display:flex;align-items:center;gap:6px;padding:0 12px;border:1px solid var(--line);border-right:0;border-radius:8px 0 0 8px;font-size:14px;color:var(--ink);background:var(--bg-alt)}
.phone input{border-radius:0 8px 8px 0}
.flag{width:20px;height:14px;border-radius:2px;background:linear-gradient(#FF9933 33%,#fff 33% 66%,#138808 66%)}
.ok{display:none;text-align:center;padding:30px 10px}
.ok .ic{margin:0 auto 14px}
.ok h3{font-size:22px}
.ok p{margin:8px auto 18px;max-width:42ch}
.ok .row{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.form-card.sent form{display:none}
.form-card.sent .ok{display:block}
.chan{display:flex;align-items:center;gap:16px;padding:16px 18px;margin-top:12px}
.chan b{display:block;font-family:var(--head);color:var(--ink);font-size:14px}
.chan strong{display:block;font-family:var(--head);color:var(--ink);font-size:15px;font-weight:600}
.chan small{color:var(--muted);font-size:12px}
.chan .go{margin-left:auto;color:var(--purple-2);font-size:18px}
.office{display:grid;grid-template-columns:340px 1fr;gap:20px}
.map{position:relative;border-radius:14px;overflow:hidden;min-height:230px;display:block}
.map img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.map span{position:absolute;right:12px;bottom:12px;background:#fff;color:#1A1452;font-family:var(--head);font-size:12.5px;font-weight:600;padding:7px 13px;border-radius:999px;box-shadow:var(--shadow);display:flex;gap:6px;align-items:center}
.ways .card{display:flex;gap:14px;align-items:center;padding:18px}
.ways b{display:block;font-family:var(--head);color:var(--ink);font-size:14px}
.ways small{font-size:12px;color:var(--muted);line-height:1.5;display:block}
.ways .go{margin-left:auto;color:var(--purple-2)}


@media (max-width:1080px){
  .g5,.g6,.g7{grid-template-columns:repeat(3,1fr)}
  .fmsg,.founder{grid-template-columns:1fr}
  .founder .side{border-left:0;padding-left:0;grid-template-columns:1fr 1fr}
  .founder .ph{max-width:280px}
  .fcard{max-width:460px}
  .gbm-g{grid-template-columns:1fr 1fr}.gbm-g .gi{display:none}
  .combo-g{grid-template-columns:1fr}
  .fmsg .chk{grid-template-columns:1fr 1fr}
}
@media (max-width:880px){
  .menu{display:none;position:absolute;top:70px;left:-24px;right:-24px;flex-direction:column;gap:0;background:var(--surface);border-bottom:1px solid var(--line);padding:6px 24px 14px;box-shadow:var(--shadow)}
  .menu.open{display:flex}
  .menu a{padding:12px 0}
  .menu a.on::after{display:none}
  .burger{display:block}
  .nav>.btn{display:none}
  .hero-g,.split,.story,.g2,.office,.cta .wrap,.gbm-g,.cgrid{grid-template-columns:1fr}
  .hero-img{order:-1;margin:0 -24px;justify-self:stretch}
  .hero-img img{width:100%;max-width:100%;max-height:none;-webkit-mask-image:linear-gradient(180deg,#000 85%,transparent);mask-image:linear-gradient(180deg,#000 85%,transparent)}
  .hero-t{padding:10px 0 40px}
  .band .wrap{grid-template-columns:1fr 1fr;gap:16px 0}
  .stat:nth-child(2){border-right:0}
  .g3,.g4{grid-template-columns:1fr 1fr}
  .faq{grid-template-columns:1fr}
  .process,.eco,.choose{flex-direction:column;align-items:stretch}
  .process .parrow,.eco .arr,.choose .arr{transform:rotate(90deg);align-self:center;margin:0}
  .pstep{flex-direction:row;text-align:left;gap:16px}
  .pstep .ic{width:56px;height:56px;font-size:24px}
  .cta ul{border-left:0;padding-left:0}
  .mini4{grid-template-columns:1fr 1fr}
  .combo-feats{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:560px){
  .wrap{padding:0 18px}
  .hero-img{margin:0 -18px}
  .menu{left:-18px;right:-18px}
  .g3,.g4,.g5,.g6,.g7{grid-template-columns:1fr 1fr}
  .g3.tms,.ways{grid-template-columns:1fr}
  .fg{grid-template-columns:1fr}
  .feat{border-right:0;flex-basis:45%;margin-bottom:12px}
  .eq{flex-direction:column;align-items:stretch}.eq .op{align-self:center}
  .stat{padding:6px 10px;gap:10px}.stat svg.i{font-size:30px}.stat b{font-size:19px}
  .sec{padding:48px 0}
  .fmsg .chk,.founder .side{grid-template-columns:1fr}
  footer .wrap{flex-direction:column;align-items:center;text-align:center}
  .soc{justify-content:center}.copy{text-align:center}
  .steps-card,.purpose{display:none}
}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}

/* Handwritten tagline on hero photo (edit text in the HTML) */
.hand{position:absolute;top:6%;right:5%;max-width:40%;font-family:'Caveat',cursive;font-size:clamp(20px,2.2vw,30px);line-height:1.05;color:#3A2A8C;transform:rotate(-6deg);z-index:2;text-align:left}
.hand::after{content:"";display:block;width:70%;height:10px;margin-top:6px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 9C40 3 80 2 118 4M20 11C50 7 80 6 104 7' fill='none' stroke='%23F6B100' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") left/contain no-repeat}


/* Hero photo fills the full hero height */
.hero-img{align-self:stretch;justify-self:stretch;min-height:470px}
.hero-img img{position:absolute;inset:0;width:100%;height:100%;max-width:none;max-height:none;object-fit:cover;object-position:18% center}
.hand{top:6%;left:3%;right:auto;max-width:25%;font-size:clamp(18px,1.8vw,26px)}
@media (max-width:880px){
  .hero-img{min-height:0;aspect-ratio:1058/704}
  .hero-img img{object-position:center}
  .hand{left:4%;max-width:22%;font-size:clamp(14px,3.4vw,22px)}
}
@media (max-width:560px){.hand{display:none}}

