:root{
  --red:#DB1A1A;
  --offwhite:#FFF6F6;
  --lightteal:#8CC7C4;
  --deepteal:#2C687B;
  --ink:#183842;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{background:#fff; color:var(--deepteal); font-family:'Inter', sans-serif; line-height:1.65; font-size:16px;}
h1,h2,h3,h4{font-family:'Fraunces', serif; font-weight:500; letter-spacing:-0.01em; color:var(--deepteal);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.container{max-width:1080px; margin:0 auto; padding:0 48px;}
.eyebrow{font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:var(--red); font-weight:500;}

/* Header / Nav */
.site-header{background:#fff; z-index:1000;}
.nav{display:flex; justify-content:space-between; align-items:center; padding:24px 48px; border-bottom:1px solid rgba(24,56,66,0.35); position:relative;}
.nav .links{display:flex; align-items:center; gap:8px; font-size:13px;}
.nav .links a{opacity:0.8; font-weight:700; padding:9px 14px; border-radius:6px; transition:background-color .15s, color .15s, opacity .15s;}
.nav .links a:hover, .nav .links a.active, .nav .links a:focus{opacity:1; color:#fff; background-color:var(--deepteal);}
.nav .links .home-icon{display:flex; align-items:center; opacity:1; padding:6px 10px; border:1.5px solid var(--deepteal); border-radius:6px;}
.nav .links .home-icon:hover{background-color:var(--deepteal);}
.nav .links .home-icon svg{display:block;}
.nav .cta{font-size:13px; color:var(--red); font-weight:500; border-bottom:1px solid var(--red); padding-bottom:2px; white-space:nowrap;}
.nav-right{display:flex; align-items:center; gap:24px;}
.nav-toggle{display:none; background:none; border:none; cursor:pointer; padding:6px; align-items:center; justify-content:center;}
.nav-toggle svg{display:block;}
.mobile-menu{display:none; flex-direction:column; border-bottom:1px solid rgba(24,56,66,0.35); background:#fff;}
.mobile-menu a{padding:16px 24px; font-size:14px; font-weight:700; border-bottom:1px solid #f5f5f5; opacity:0.8; transition:background-color .15s, color .15s, opacity .15s;}
.mobile-menu a:hover, .mobile-menu a:active, .mobile-menu a.active{opacity:1; color:#fff; background-color:var(--deepteal);}
.mobile-menu.open{display:flex;}

@media (min-width:821px){
  .site-header{position:sticky; top:0;}
}
@media (max-width:820px){
  .nav{padding:18px 20px; border-bottom:none;}
  .nav .links{display:flex; gap:0;}
  .nav .links a:not(.home-icon){display:none;}
  .nav .cta{display:none;}
  .nav-toggle{display:flex;}
}

/* Buttons */
.btn{display:inline-block; font-size:13px; padding:14px 32px; border-radius:2px; letter-spacing:0.03em; font-weight:500;}
.btn-primary{background:var(--red); color:#fff;}
.btn-dark{background:var(--deepteal); color:#fff;}

/* Hero (page headers) */
.page-hero{padding:90px 48px 70px; text-align:center; border-bottom:1px solid #f0f0f0;}
.page-hero h1{font-size:clamp(28px, 6vw, 42px); max-width:720px; margin:14px auto 14px;}
.page-hero p{opacity:0.8; font-size:15px; max-width:520px; margin:0 auto;}
@media (max-width:600px){
  .page-hero{padding:56px 24px 46px;}
}

/* Services grid with hover tooltip */
.services-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:#f0f0f0; border:1px solid #f0f0f0; margin-top:8px;}
.service-item{background:#fff; padding:40px; position:relative; cursor:default;}
.service-item h3{font-size:19px; margin-bottom:8px;}
.service-item .tag{font-size:11px; opacity:0.5; letter-spacing:0.06em; text-transform:uppercase;}
.service-item .tooltip{
  position:absolute; left:40px; right:40px; bottom:0; top:0;
  background:var(--deepteal); color:#fff; padding:40px;
  opacity:0; transform:translateY(6px); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  display:flex; align-items:center;
}
.service-item:hover .tooltip{opacity:1; transform:translateY(0);}
.service-item .tooltip p{font-size:13.5px; line-height:1.6;}
@media (max-width:720px){
  .services-grid{grid-template-columns:1fr;}
  .service-item .tooltip{position:static; opacity:1; transform:none; pointer-events:auto; margin-top:12px; padding:20px;}
}

/* Approach flow (3 moves, icon-led) */
.flow-section{padding:90px 48px;}
.flow{display:flex; align-items:stretch; justify-content:center; gap:0; max-width:900px; margin:24px auto 0;}
.flow-step{flex:0 0 220px; text-align:center; padding:28px 18px; border-radius:12px; display:flex; flex-direction:column;}
html.js .flow-step{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease;}
html.js .flow-step.reveal{opacity:1; transform:translateY(0);}
.flow-step .icon{width:64px; height:64px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(44,104,123,0.2); border-radius:50%;}
.flow-step .num{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5; margin-bottom:8px;}
.flow-step h3{font-size:18px; margin-bottom:10px;}
.flow-step p{font-size:13px; opacity:0.85; max-width:190px; margin:0 auto;}
.step-diagnose{background-color:rgba(143,42,42,0.2);}
.step-diagnose p{color:#2C687B;}
.step-design{background-color:rgba(27,58,66,0.2);}
.step-design p{color:#1B3A42;}
.step-deliver{background-color:rgba(44,104,123,0.2);}
.step-deliver p{color:#8F2A2A;}
.flow-arrow{flex:0 0 60px; display:flex; align-items:center; justify-content:center; padding-top:22px;}
html.js .flow-arrow svg path{stroke-dasharray:40; stroke-dashoffset:40; transition:stroke-dashoffset .8s ease;}
html.js .flow.reveal .flow-arrow svg path{stroke-dashoffset:0;}
@media (max-width:760px){
  .flow{flex-direction:column; align-items:center; gap:8px;}
  .flow-arrow{transform:rotate(90deg); padding:4px 0;}
  .flow-step{flex:none; width:100%; max-width:260px;}
}
.bridge-section{padding:90px 48px; background:#FBFDFC; border-top:1px solid #f0f0f0; border-bottom:1px solid #f0f0f0;}
.bridge-head{text-align:center; margin-bottom:56px;}
.bridge-head h2{font-size:26px; max-width:480px; margin:14px auto 0;}
.bridge-diagram{position:relative; max-width:760px; margin:0 auto;}
.btrack{display:flex; align-items:flex-end; justify-content:space-between; position:relative;}
.bpost{flex:0 0 200px; text-align:center; z-index:2;}
html.js .bpost{opacity:0; transform:translateY(10px); transition:opacity .6s ease, transform .6s ease;}
html.js .bpost.reveal{opacity:1; transform:translateY(0);}
html.js .bpost.solution{transition-delay:2.6s;}
.bpost .dot{width:14px; height:14px; border-radius:50%; margin:0 auto 18px; background:var(--deepteal);}
.bpost.solution .dot{background:var(--red);}
.bpost .k{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5; margin-bottom:6px;}
.bpost .v{font-family:'Fraunces',serif; font-size:19px;}
.bpost.solution .v{color:var(--red);}
.bpost p{font-size:12.5px; opacity:0.8; margin-top:8px; max-width:180px; margin-left:auto; margin-right:auto;}
.barch{flex:1; height:80px; position:relative; margin:0 -10px;}
.barch svg{width:100%; height:100%; display:block; overflow:visible;}
html.js .barch path.arch-left{stroke-dasharray:300; stroke-dashoffset:300; transition:stroke-dashoffset 1s cubic-bezier(.4,0,.2,1) 0s;}
html.js .barch path.arch-right{stroke-dasharray:300; stroke-dashoffset:300; transition:stroke-dashoffset 1s cubic-bezier(.4,0,.2,1) 1.6s;}
html.js .bridge-diagram.reveal .barch path{stroke-dashoffset:0;}
.barch-label{position:absolute; top:-38px; left:50%; transform:translateX(-50%); text-align:center;}
html.js .barch-label{opacity:0; transition:opacity .5s ease 1s;}
html.js .bridge-diagram.reveal .barch-label{opacity:1;}
.barch-label .k{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5;}
.barch-label .v{font-family:'Fraunces',serif; font-size:16px; color:#3a9088; font-weight:500; border:1.5px solid var(--red); border-radius:6px; padding:3px 12px; display:inline-block; margin-top:4px;}

@media (max-width:640px){
  .bridge-section{padding:56px 24px;}
  .bridge-diagram{display:flex; flex-direction:column; align-items:center;}
  .barch-label{position:static; transform:none; margin-bottom:28px; opacity:1; transition:none;}
  .btrack{flex-direction:column; align-items:center; gap:0;}
  .bpost{flex:none; width:100%; max-width:280px;}
  .barch{width:2px; height:56px; flex:none; margin:4px 0; background:var(--lightteal); opacity:0.5; border-radius:1px;}
  .barch svg{display:none;}
}

/* Process strip */
.strip{display:grid; grid-template-columns:repeat(3,1fr); border-bottom:1px solid #f0f0f0;}
.scard{padding:56px 40px; border-right:1px solid #f0f0f0;}
.scard:last-child{border-right:none;}
.scard .num{font-size:12px; opacity:0.4; margin-bottom:14px;}
.scard h3{font-size:17px; margin-bottom:10px;}
.scard p{font-size:13px; opacity:0.8;}
@media (max-width:720px){ .strip{grid-template-columns:1fr;} .scard{border-right:none; border-bottom:1px solid #f0f0f0;} }

/* Story + founder side by side (about page) */
.story-founder{display:grid; grid-template-columns:1.4fr 1fr; gap:56px; max-width:960px; margin:0 auto; align-items:start;}
.story-col p{font-size:14.5px; opacity:0.85; margin-bottom:18px;}
.story-col p:last-child{margin-bottom:0;}
.founder-col{background:var(--tan, #FBFDFC); border:1px solid #f0f0f0; border-radius:12px; padding:32px 24px;}
.founder-col .photo-wrap{border-radius:50%; overflow:hidden; background:var(--lightteal);}
.founder-col .photo-wrap img{width:100%; height:100%; object-fit:cover; filter:grayscale(15%) contrast(1.02);}
.founder-col .k{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5; margin-bottom:4px;}
.founder-col .role{font-size:13px; color:var(--red); font-weight:500; margin-bottom:14px; text-align:center;}
@media (max-width:820px){
  .story-founder{grid-template-columns:1fr; gap:32px;}
  .founder-col{max-width:360px; margin:0 auto;}
}

/* Person / founder card */
.people{padding:90px 48px; border-bottom:1px solid #f0f0f0;}
.people-head{text-align:center; margin-bottom:56px;}
.people-head h2{font-size:26px; margin-top:14px;}
.person{display:flex; align-items:center; gap:48px; max-width:680px; margin:0 auto;}
.person .photo-wrap{flex:0 0 180px; height:180px; border-radius:50%; overflow:hidden; background:var(--lightteal);}
.person .photo-wrap img{width:100%; height:100%; object-fit:cover; filter:grayscale(15%) contrast(1.02);}
.person .info .k{font-size:11px; letter-spacing:0.12em; text-transform:uppercase; opacity:0.5; margin-bottom:6px;}
.person .info h3{font-size:24px; margin-bottom:4px;}
.person .info .role{font-size:13px; color:var(--red); font-weight:500; margin-bottom:14px;}
.person .info p{font-size:13.5px; opacity:0.85; max-width:380px;}
@media (max-width:640px){ .person{flex-direction:column; text-align:center;} }

/* Generic content sections */
.section{padding:90px 48px; border-bottom:1px solid #f0f0f0;}
.section-head{text-align:center; margin-bottom:56px;}
.section-head h2{font-size:26px; margin-top:14px;}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:48px; max-width:900px; margin:0 auto;}
.two-col p{font-size:14px; opacity:0.85; margin-bottom:14px;}
@media (max-width:720px){ .two-col{grid-template-columns:1fr;} }

/* Cards (work / clients) */
.card-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px;}
.card{border:1px solid #f0f0f0; border-radius:6px; padding:28px; background:#fff;}
.card .tag{font-size:11px; color:var(--red); font-weight:500; letter-spacing:0.06em; text-transform:uppercase; margin-bottom:10px;}
.card h3{font-size:17px; margin-bottom:8px;}
.card p{font-size:13px; opacity:0.8;}
@media (max-width:820px){ .card-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .card-grid{grid-template-columns:1fr;} }

.logo-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:#f0f0f0; border:1px solid #f0f0f0; margin-top:8px;}
.logo-tile{background:#fff; height:110px; display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-size:14px; padding:16px;}
.logo-tile img{max-width:100%; max-height:100%; object-fit:contain;}
@media (max-width:720px){ .logo-grid{grid-template-columns:repeat(2,1fr);} }

blockquote{font-family:'Fraunces',serif; font-size:20px; text-align:center; max-width:640px; margin:40px auto 0; color:var(--deepteal); font-style:normal;}
blockquote cite{display:block; font-family:'Inter',sans-serif; font-size:12px; opacity:0.6; margin-top:14px; font-style:normal;}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; max-width:900px; margin:0 auto;}
.contact-details .row{display:flex; gap:14px; margin-bottom:22px; font-size:14px;}
.contact-details .row .k{font-size:11px; letter-spacing:0.1em; text-transform:uppercase; opacity:0.5; display:block; margin-bottom:2px;}
.contact-form label{display:block; font-size:12px; letter-spacing:0.04em; text-transform:uppercase; opacity:0.6; margin-bottom:6px;}
.contact-form input, .contact-form textarea{
  width:100%; padding:12px 14px; border:1px solid #ddd; border-radius:4px; font-family:'Inter',sans-serif; font-size:14px;
  margin-bottom:18px; color:var(--deepteal);
}
.contact-form textarea{min-height:120px; resize:vertical;}
.contact-form button{border:none; cursor:pointer; font-family:'Inter',sans-serif;}
@media (max-width:720px){ .contact-grid{grid-template-columns:1fr;} }

/* CTA band */
.cta-band{padding:80px 48px; text-align:center;}
.cta-band h2{font-size:26px; margin-bottom:20px;}

/* Footer */
.foot{padding:28px 48px; border-top:1px solid #f0f0f0; display:flex; justify-content:space-between; font-size:11px; opacity:0.55; flex-wrap:wrap; gap:10px;}

/* Scroll cue (home only) */
.scroll-cue{display:flex; flex-direction:column; align-items:center; gap:8px; margin-top:56px; cursor:pointer; opacity:0.55;}
.scroll-cue span{font-size:10px; letter-spacing:0.14em; text-transform:uppercase;}
.scroll-cue .chev{animation:bob 1.8s ease-in-out infinite;}
@keyframes bob{0%,100%{transform:translateY(0); opacity:0.4;} 50%{transform:translateY(6px); opacity:0.9;}}

/* General mobile spacing */
@media (max-width:600px){
  .container, .section, .people, .cta-band, .foot{padding-left:24px; padding-right:24px;}
  .section, .people{padding-top:56px; padding-bottom:56px;}
  .cta-band{padding-top:56px; padding-bottom:56px;}
  .card-grid{gap:16px;}
  .contact-grid{gap:36px;}
  blockquote{font-size:17px;}
}
