:root{
  --ivory:#F5F0EA;
  --rose:#DEC7CA;
  --merlot:#541B2C;
  --cherry:#27171C;
  --taupe:#A99A90;
  --soft:#EEE5DF;
  --white:#FFFDFC;
  --page:clamp(22px,5vw,84px);
  --serif:"Italiana",Georgia,serif;
  --sans:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);
  --line:rgba(39,23,28,.13);
  --line-light:rgba(245,240,234,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--ivory)}
body{margin:0;background:var(--ivory);color:var(--cherry);font-family:var(--sans);font-weight:300;line-height:1.65;overflow-x:hidden}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{display:block;max-width:100%}
figure,blockquote{margin:0}
::selection{background:var(--rose);color:var(--cherry)}

.grain{position:fixed;inset:0;z-index:200;pointer-events:none;opacity:.018;mix-blend-mode:multiply;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E")}

/* shared */
.section-shell{padding:68px var(--page)}
section{scroll-margin-top:76px}
.eyebrow{margin:0 0 17px;font-size:8px;font-weight:500;letter-spacing:.23em;text-transform:uppercase;color:rgba(39,23,28,.58)}
.eyebrow-light{color:rgba(245,240,234,.66)}
.rule{display:block;width:42px;height:1px;background:rgba(84,27,44,.35)}
.reveal{opacity:0;transform:translateY(16px);transition:opacity .72s var(--ease),transform .72s var(--ease)}
.reveal.is-visible{opacity:1;transform:none}
.delay-1{transition-delay:.07s}.delay-2{transition-delay:.14s}

.button{display:inline-flex;align-items:center;justify-content:center;gap:22px;min-height:48px;padding:14px 20px;font-size:9px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;transition:transform .25s var(--ease),background .25s ease,color .25s ease}
.button:hover{transform:translateY(-2px)}
.button-primary{background:var(--merlot);color:var(--ivory)}
.button-primary:hover{background:var(--cherry)}
.button-light{background:var(--ivory);color:var(--merlot)}
.button-light:hover{background:var(--rose);color:var(--cherry)}
.text-action{display:inline-flex;align-items:center;width:max-content;padding-bottom:4px;border-bottom:1px solid rgba(84,27,44,.25);font-size:8px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:rgba(39,23,28,.72);transition:border-color .25s ease,color .25s ease}
.text-action:hover{border-color:var(--merlot);color:var(--merlot)}

/* header */
.site-header{position:fixed;top:0;left:0;right:0;z-index:100;height:64px;padding:8px var(--page);display:grid;grid-template-columns:1fr auto 1fr;align-items:center;background:rgba(245,240,234,.94);border-bottom:1px solid rgba(39,23,28,.08);backdrop-filter:blur(14px);transition:background .3s ease,border-color .3s ease}
.site-header.is-scrolled{background:rgba(245,240,234,.98);border-color:var(--line)}
.header-logo{display:block;width:78px;line-height:0;justify-self:start}
.header-logo img{width:100%;height:auto}
.desktop-nav{display:none}
.menu-button{position:relative;z-index:110;width:42px;height:42px;padding:9px;border:0;background:transparent;cursor:pointer;justify-self:end}
.menu-button span{display:block;width:100%;height:1px;margin:7px 0;background:var(--cherry);transition:transform .3s var(--ease),opacity .2s ease}
.menu-button.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
.menu-button.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
.mobile-nav{position:fixed;inset:0;z-index:90;display:grid;place-content:center;gap:20px;text-align:center;background:rgba(245,240,234,.99);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}
.mobile-nav.is-open{opacity:1;visibility:visible}
.mobile-nav a{font-family:var(--serif);font-size:38px;line-height:1.08;color:var(--merlot)}

/* hero */
.hero{padding-top:64px;background:var(--ivory)}
.hero-copy{padding:52px var(--page) 50px}
.hero h1{max-width:720px;margin:0;font-family:var(--serif);font-size:clamp(47px,12.4vw,60px);font-weight:400;line-height:.97;letter-spacing:-.026em;color:var(--cherry)}
.hero h1 em{display:block;font-style:italic;color:var(--merlot)}
.hero-lede{max-width:600px;margin:25px 0 29px;font-size:15px;line-height:1.76;color:rgba(39,23,28,.68)}
.hero-actions{display:flex;align-items:center;gap:19px;flex-wrap:wrap}
.hero-image{position:relative;height:clamp(350px,92vw,500px);overflow:hidden;background:var(--rose)}
.hero-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(39,23,28,0),rgba(39,23,28,.10));pointer-events:none}
.hero-image img{width:100%;height:100%;object-fit:cover;object-position:center 52%;filter:saturate(.86) contrast(.96) brightness(1.02)}
.hero-image figcaption{position:absolute;z-index:2;right:18px;bottom:15px;font-size:7px;font-weight:500;letter-spacing:.17em;text-transform:uppercase;color:rgba(245,240,234,.82)}

/* positioning */
.positioning{display:grid;gap:28px;background:var(--ivory);border-bottom:1px solid var(--line)}
.positioning-label{max-width:160px}
.positioning-copy h2{max-width:1060px;margin:0 0 20px;font-family:var(--serif);font-size:clamp(39px,10vw,52px);font-weight:400;line-height:1.06;letter-spacing:-.02em;color:var(--cherry)}
.positioning-copy h2 em{font-style:italic;color:var(--merlot)}
.positioning-copy p{max-width:790px;margin:0;font-size:15px;line-height:1.82;color:rgba(39,23,28,.66)}

/* what we build */
.build{background:rgba(222,199,202,.22)}
.section-heading{max-width:820px;margin-bottom:38px}
.section-heading h2{margin:0 0 15px;font-family:var(--serif);font-size:clamp(42px,10.5vw,57px);font-weight:400;line-height:1.04;letter-spacing:-.02em;color:var(--merlot)}
.section-heading>p:last-child{max-width:670px;margin:0;font-size:15px;line-height:1.75;color:rgba(39,23,28,.64)}
.build-grid{display:grid;border-top:1px solid var(--line)}
.build-card{padding:27px 0;border-bottom:1px solid var(--line)}
.service-number{display:block;margin-bottom:25px;font-family:var(--serif);font-size:13px;color:rgba(84,27,44,.55)}
.build-card h3{margin:0 0 11px;font-family:var(--serif);font-size:30px;font-weight:400;line-height:1.07;color:var(--cherry)}
.build-card p{max-width:580px;margin:0;font-size:14px;line-height:1.74;color:rgba(39,23,28,.64)}

/* approach */
.approach{background:var(--cherry);color:var(--ivory)}
.approach-visual{height:clamp(330px,82vw,470px);overflow:hidden;background:var(--rose)}
.approach-visual img{width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(.82) contrast(.95)}
.approach-content{padding-top:60px;padding-bottom:64px}
.approach-intro{max-width:760px;margin-bottom:34px}
.approach-intro h2{margin:0 0 15px;font-family:var(--serif);font-size:clamp(42px,10.6vw,58px);font-weight:400;line-height:1.04;letter-spacing:-.02em;color:var(--ivory)}
.approach-intro>p:last-child{max-width:620px;margin:0;font-size:14px;line-height:1.76;color:rgba(245,240,234,.66)}
.approach-steps{border-top:1px solid var(--line-light)}
.approach-step{padding:25px 0;border-bottom:1px solid var(--line-light)}
.approach-step span{display:block;margin-bottom:15px;font-family:var(--serif);font-size:12px;color:rgba(222,199,202,.72)}
.approach-step h3{margin:0 0 9px;font-family:var(--serif);font-size:28px;font-weight:400;line-height:1.08;color:var(--rose)}
.approach-step p{max-width:480px;margin:0;font-size:13px;line-height:1.72;color:rgba(245,240,234,.66)}

/* thesis */
.venture-thesis{display:grid;gap:30px;background:var(--white)}
.venture-thesis-title h2{max-width:660px;margin:0;font-family:var(--serif);font-size:clamp(43px,10.8vw,60px);font-weight:400;line-height:1.04;letter-spacing:-.02em;color:var(--cherry)}
.venture-thesis-title h2 em{font-style:italic;color:var(--merlot)}
.venture-thesis-copy{max-width:720px}
.venture-thesis-copy p{margin:0 0 15px;font-size:15px;line-height:1.8;color:rgba(39,23,28,.67)}
.venture-thesis-copy .thesis-lead{font-family:var(--serif);font-size:22px;line-height:1.48;color:var(--cherry)}

/* why SHE */
.why-she{display:grid;gap:30px;background:var(--rose)}
.why-she-title h2{max-width:640px;margin:0;font-family:var(--serif);font-size:clamp(43px,10.8vw,60px);font-weight:400;line-height:1.03;letter-spacing:-.02em;color:var(--merlot)}
.why-she-title h2 em{font-style:italic}
.why-she-copy{max-width:700px}
.why-she-copy p{margin:0 0 14px;font-size:15px;line-height:1.78;color:rgba(39,23,28,.68)}
.why-she-copy .why-lead{font-family:var(--serif);font-size:22px;line-height:1.47;color:var(--cherry)}
.why-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:23px}
.why-tags span{padding:7px 11px;border:1px solid rgba(84,27,44,.22);border-radius:999px;font-size:7px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--merlot)}

/* founder */
.founder{display:grid;gap:24px;background:var(--ivory);border-bottom:1px solid var(--line)}
.founder-heading h2{margin:0 0 7px;font-family:var(--serif);font-size:clamp(39px,10vw,52px);font-weight:400;line-height:1;color:var(--merlot)}
.founder-role{margin:0;font-size:7px;font-weight:500;letter-spacing:.17em;text-transform:uppercase;color:rgba(39,23,28,.52)}
.founder-quote{max-width:720px}
.founder-quote blockquote{margin:0 0 17px;font-family:var(--serif);font-size:19px;line-height:1.5;color:rgba(39,23,28,.80)}
.founder-link{font-size:7px}

/* contact */
.contact{padding:70px var(--page);background:var(--merlot);color:var(--ivory)}
.contact-inner{max-width:960px}
.contact h2{max-width:900px;margin:0 0 17px;font-family:var(--serif);font-size:clamp(44px,10.6vw,64px);font-weight:400;line-height:1.03;letter-spacing:-.02em;color:var(--ivory)}
.contact-inner>p:not(.eyebrow){max-width:640px;margin:0 0 29px;font-size:15px;line-height:1.76;color:rgba(245,240,234,.72)}
.contact-actions{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.contact-email{padding-bottom:3px;border-bottom:1px solid rgba(245,240,234,.34);font-family:var(--serif);font-size:19px;color:var(--ivory);overflow-wrap:anywhere}

/* footer */
.site-footer{display:grid;justify-items:center;gap:13px;padding:22px var(--page);text-align:center;background:var(--ivory);border-top:1px solid var(--line)}
.footer-logo{display:block;width:82px;line-height:0}
.footer-logo img{width:100%;height:auto}
.site-footer p{margin:0;font-size:7px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(39,23,28,.46)}
.footer-links{display:flex;gap:17px;font-size:7px;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:rgba(39,23,28,.64)}
.footer-links a:hover{color:var(--merlot)}

@media(min-width:720px){
  .section-shell{padding-top:80px;padding-bottom:80px}
  .site-header{height:70px;padding-top:9px;padding-bottom:9px}
  .header-logo{width:88px}
  .hero{padding-top:70px}
  .hero-copy{padding-top:67px;padding-bottom:62px}
  .hero h1{font-size:clamp(58px,7.5vw,74px)}
  .hero-image{height:520px}
  .positioning{grid-template-columns:150px minmax(0,1fr);gap:46px}
  .positioning-copy h2{font-size:clamp(48px,5.8vw,66px)}
  .build-grid{grid-template-columns:1fr 1fr}
  .build-card{padding:31px 30px 34px}
  .build-card:nth-child(odd){padding-left:0;border-right:1px solid var(--line)}
  .build-card:nth-child(even){padding-right:0}
  .approach-visual{height:520px}
  .approach-steps{display:grid;grid-template-columns:1fr 1fr}
  .approach-step{padding:27px 26px;border-right:1px solid var(--line-light)}
  .approach-step:nth-child(odd){padding-left:0}
  .approach-step:nth-child(even){border-right:0;padding-right:0}
  .venture-thesis,.why-she,.founder{grid-template-columns:.88fr 1.12fr;gap:54px;align-items:start}
  .site-footer{grid-template-columns:1fr auto 1fr;justify-items:stretch;align-items:center;text-align:left}
  .footer-logo{width:94px;justify-self:start}
  .site-footer p{text-align:center}
  .footer-links{justify-self:end}
}

@media(min-width:900px){
  .site-header{height:74px}
  .header-logo{width:94px}
  .desktop-nav{display:flex;justify-self:center;align-items:center;gap:30px;font-size:10px;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:rgba(39,23,28,.74)}
  .desktop-nav a{position:relative;padding:8px 0}
  .desktop-nav a:after{content:"";position:absolute;left:0;right:100%;bottom:2px;height:1px;background:var(--merlot);transition:right .3s var(--ease)}
  .desktop-nav a:hover:after{right:0}
  .menu-button{display:none}
  .mobile-nav{display:none}
  .hero{display:grid;grid-template-columns:minmax(0,.94fr) minmax(500px,1.06fr);min-height:690px;padding-top:74px}
  .hero-copy{display:flex;flex-direction:column;justify-content:center;padding:68px var(--page)}
  .hero h1{font-size:clamp(60px,5.65vw,86px);line-height:.94;max-width:770px}
  .hero h1 em{display:block}
  .hero-lede{font-size:16px;max-width:590px}
  .hero-image{height:auto;min-height:616px}
  .hero-image img{object-position:center}
  .section-shell{padding-top:94px;padding-bottom:94px}
  .positioning{grid-template-columns:160px minmax(0,1fr);gap:64px}
  .positioning-copy h2{font-size:clamp(54px,4.9vw,76px);max-width:1080px}
  .section-heading h2{font-size:clamp(50px,4.4vw,68px)}
  .build-card h3{font-size:34px}
  .approach{display:grid;grid-template-columns:minmax(420px,.82fr) minmax(0,1.18fr);align-items:stretch}
  .approach-visual{height:auto;min-height:720px}
  .approach-content{padding:86px var(--page)}
  .approach-steps{grid-template-columns:1fr 1fr}
  .venture-thesis-title h2,.why-she-title h2{font-size:clamp(50px,4.35vw,68px)}
  .founder-heading h2{font-size:clamp(44px,3.8vw,58px)}
  .founder-quote blockquote{font-size:22px;max-width:720px}
  .contact{padding:94px var(--page)}
  .contact h2{font-size:clamp(54px,5vw,78px)}
}

@media(min-width:1240px){
  .site-header{padding-left:max(var(--page),calc((100vw - 1540px)/2));padding-right:max(var(--page),calc((100vw - 1540px)/2))}
  .hero-copy,.section-shell,.contact,.approach-content{padding-left:max(var(--page),calc((100vw - 1540px)/2));padding-right:max(var(--page),calc((100vw - 1540px)/2))}
  .hero h1{font-size:clamp(70px,5.3vw,92px)}
}

@media(max-width:430px){
  .section-shell{padding-top:58px;padding-bottom:58px}
  .hero-copy{padding-top:45px;padding-bottom:46px}
  .hero h1{font-size:clamp(43px,11.8vw,52px)}
  .hero-image{height:350px}
  .positioning-copy h2{font-size:clamp(36px,9.6vw,44px)}
  .section-heading h2,.approach-intro h2,.venture-thesis-title h2,.why-she-title h2{font-size:clamp(38px,10vw,46px)}
  .contact{padding-top:60px;padding-bottom:60px}
  .contact h2{font-size:clamp(40px,10.5vw,49px)}
  .contact-email{font-size:18px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .button,.text-action{transition:none}
}
