:root {
    --paper:#f8f7f2;
    --ink:#26392f;
    --muted:#61695f;
    --green:#244d3b;
    --line:#d8dcd1;
    --peach:#f4aa7d;
    --lilac:#dcd3f2;
    --mint:#e5eee2;
    --max:1160px;
}
* {
    box-sizing:border-box;
}
html {
    scroll-behavior:smooth;
    scroll-padding-top:110px;
}
body {
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'DM Sans',system-ui,sans-serif;
    font-size:16px;
    line-height:1.65;
}
a {
    color:inherit;
    text-decoration:none;
}
button {
    font:inherit;
}
svg,img {
    display:block;
    max-width:100%;
}
h1,h2,h3,p {
    margin:0;
}
h1,h2,h3,.brand {
    font-family:'Space Grotesk',system-ui,sans-serif;
}
h1,h2,h3 {
    line-height:1.08;
    letter-spacing:-.055em;
}
h1 {
    font-size:clamp(3.2rem,6.2vw,5.1rem);
    font-weight:600;
}
h2 {
    font-size:clamp(2.2rem,4vw,3.3rem);
    font-weight:500;
}
h3 {
    font-size:1.45rem;
    font-weight:500;
    letter-spacing:-.035em;
}
p {
    color:var(--muted);
}
.wrap {
    width:min(var(--max),calc(100% - 96px));
    margin:auto;
}
.skip-link {
    position:fixed;
    top:8px;
    left:12px;
    transform:translateY(-180%);
    z-index:30;
    padding:12px;
    background:var(--green);
    color:white;
}
.skip-link:focus {
    transform:none;
}
:focus-visible {
    outline:3px solid #8a4aa0;
    outline-offset:5px;
}
.site-header {
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(248,247,242,.96);
    border-bottom:1px solid var(--line);
}
.nav {
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}
.brand {
    font-size:1.65rem;
    font-weight:700;
    letter-spacing:-.08em;
    white-space:nowrap;
}
.brand em {
    font-style:normal;
    color:#b8542d;
}
.brand small {
    font-size:.65em;
    font-weight:500;
    letter-spacing:-.04em;
}
.nav-links {
    display:flex;
    align-items:center;
    gap:32px;
    font-size:.86rem;
    font-weight:500;
}
.nav-links a:not(.nav-contact):hover {
    color:#a84926;
}
.nav-contact {
    border:1px solid var(--ink);
    border-radius:6px;
    padding:9px 17px;
}
.nav-contact span {
    margin-left:18px;
}
.menu-toggle {
    display:none;
}
.eyebrow {
    text-transform:uppercase;
    font-size:.7rem;
    letter-spacing:.16em;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--ink);
}
.eyebrow:before {
    content:'';
    width:7px;
    height:7px;
    border-radius:50%;
    background:#698468;
}
.hero {
    display:grid;
    grid-template-columns:1.06fr 1fr;
    align-items:center;
    gap:12px;
    padding:78px 0 66px;
}
.hero h1 {
    margin:25px 0;
}
.hero h1 em {
    font-style:normal;
    position:relative;
    display:inline-block;
    z-index:0;
}
.hero h1 em:after {
    content:'';
    position:absolute;
    bottom:2px;
    left:0;
    right:0;
    height:15px;
    background:var(--peach);
    z-index:-1;
    border-radius:50% 30% 35% 20%;
    transform:rotate(-2deg);
}
.hero-description {
    max-width:465px;
    font-size:1.02rem;
    line-height:1.8;
}
.hero-description strong {
    color:var(--ink);
    font-weight:600;
}
.actions {
    display:flex;
    gap:25px;
    align-items:center;
    margin-top:30px;
    flex-wrap:wrap;
}
.button {
    display:inline-flex;
    align-items:center;
    gap:24px;
    border:1px solid var(--green);
    background:var(--green);
    color:white;
    padding:13px 22px;
    border-radius:6px;
    font-size:.85rem;
    font-weight:500;
    transition:transform .2s,box-shadow .2s;
}
.button:hover {
    transform:translateY(-2px);
    box-shadow:3px 4px 0 #bdc5b6;
}
.text-link {
    font-size:.85rem;
    font-weight:600;
    display:inline-flex;
    gap:18px;
    align-items:center;
}
.text-link:hover {
    text-decoration:underline;
    text-underline-offset:5px;
}
.hero-note {
    font-size:.7rem;
    margin-top:27px;
    letter-spacing:.015em;
}
.hero-art {
    margin:0 -20px 0 0;
    position:relative;
}
.hero-art img {
    width:100%;
    height:auto;
}
.hero-art figcaption {
    text-align:center;
    font-size:.65rem;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--muted);
}
.stack-strip {
    border-block:1px solid var(--line);
    padding:23px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}
.stack-strip>span {
    font-size:.68rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    max-width:100px;
    color:var(--muted);
}
.stack-items {
    display:flex;
    gap:clamp(20px,4vw,54px);
    flex-wrap:wrap;
    align-items:center;
}
.stack-items span {
    font-family:'Space Grotesk',sans-serif;
    font-weight:600;
    font-size:1rem;
}
.stack-items b {
    margin-right:7px;
    color:#6a7863;
    font-size:1.1rem;
}
.section {
    padding:90px 0;
}
.section-heading {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:38px;
}
.section-heading .eyebrow {
    margin-bottom:16px;
}
.section-heading>p {
    max-width:300px;
    font-size:.9rem;
}
.expertise-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.expertise-card {
    border:1px solid var(--line);
    border-radius:10px;
    padding:30px 27px;
    background:#fcfbf7;
}
.expertise-card h3 {
    margin:25px 0 15px;
}
.expertise-card p {
    font-size:.87rem;
    line-height:1.8;
}
.icon-tile {
    width:58px;
    height:58px;
    border-radius:13px;
    display:grid;
    place-items:center;
    border:1px solid var(--ink);
}
.icon-tile svg {
    width:32px;
    height:32px;
    fill:none;
    stroke:var(--ink);
    stroke-width:1.6;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.peach {
    background:var(--peach);
}
.lilac {
    background:var(--lilac);
}
.mint {
    background:#c5d9bc;
}
.tagline {
    margin-top:24px;
    padding-top:18px;
    border-top:1px solid var(--line);
    font-size:.7rem;
    font-weight:500;
    color:var(--ink);
}
.projects-section {
    background:#eeefe7;
    border-block:1px solid var(--line);
}
.project-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}
.project-card {
    border:1px solid #cbd0c4;
    background:var(--paper);
    border-radius:10px;
    overflow:hidden;
}
.project-visual {
    height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    border-bottom:1px solid #cbd0c4;
    background-image:radial-gradient(#26392f20 1px,transparent 1px);
    background-size:18px 18px;
}
.project-visual svg {
    height:190px;
    width:310px;
    transition:transform .25s;
}
.project-card:hover .project-visual svg {
    transform:translateY(-4px) rotate(-1deg);
}
.project-content {
    padding:27px 30px;
}
.project-meta {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:.65rem;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--muted);
}
.status {
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;
}
.status:before {
    content:'';
    width:6px;
    height:6px;
    background:#486b45;
    border-radius:50%;
}
.status.planned:before {
    background:#9b643e;
}
.project-content h3 {
    font-size:1.6rem;
    margin-bottom:12px;
}
.project-content p {
    font-size:.88rem;
    min-height:76px;
}
.project-content .text-link {
    margin-top:23px;
    width:100%;
    justify-content:space-between;
    border-top:1px solid var(--line);
    padding-top:18px;
}
.about {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:100px;
    align-items:start;
}
.about h2 {
    margin-top:18px;
}
.about-copy p+p {
    margin-top:18px;
}
.about-copy p {
    font-size:1rem;
}
.principles {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:27px 0;
}
.principles span {
    font-size:.7rem;
    padding:5px 11px;
    border:1px solid var(--line);
    border-radius:5px;
}
.signature {
    font-family:'Space Grotesk',sans-serif;
    font-size:1.1rem;
    font-weight:500;
}
.signature small {
    display:block;
    font-family:'DM Sans',sans-serif;
    font-size:.75rem;
    color:var(--muted);
    font-weight:400;
    margin-top:2px;
}
.contact {
    padding:0 0 80px;
}
.contact-box {
    background:var(--green);
    color:#faf9f2;
    border-radius:12px;
    padding:54px 58px;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:35px;
    position:relative;
    overflow:hidden;
}
.contact-box h2 {
    font-size:clamp(2rem,3.4vw,2.9rem);
    letter-spacing:-.045em;
}
.contact-box p {
    color:#d4ddce;
    max-width:475px;
    margin-top:17px;
    font-size:.9rem;
}
.contact-box .eyebrow {
    color:#d4ddce;
    margin-bottom:18px;
}
.contact-box .eyebrow:before {
    background:#f4aa7d;
}
.button-light {
    background:var(--paper);
    color:var(--green);
    border-color:var(--paper);
}
.contact-email {
    font-size:.75rem;
    text-align:center;
    color:#d4ddce;
    margin-top:14px;
}
.footer {
    border-top:1px solid var(--line);
    padding:27px 0 33px;
}
.footer-inner {
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:center;
}
.footer-note {
    font-size:.7rem;
    margin-top:4px;
}
.footer-links {
    display:flex;
    gap:25px;
    font-size:.8rem;
}
.footer-links a:hover {
    text-decoration:underline;
}
.reveal {
    animation:enter .6s ease both;
}
@keyframes enter {
    from {
        opacity:0;
        transform:translateY(12px);
    }
    to {
        opacity:1;
        transform:none;
    }
}
@media(min-width:1400px) {
    .hero {
        padding-top:92px;
        padding-bottom:82px;
    }
}
@media(max-width:1050px) {
    .wrap {
        width:calc(100% - 64px);
    }
    .nav-links {
        gap:22px;
    }
    .hero {
        gap:0;
    }
    .hero-art {
        margin-right:-15px;
    }
    .hero h1 {
        font-size:clamp(3rem,6.6vw,4.3rem);
    }
    .stack-items {
        gap:22px;
    }
    .stack-items span {
        font-size:.88rem;
    }
    .about {
        gap:50px;
    }
    .contact-box {
        padding:42px;
    }
    .expertise-card {
        padding:24px 20px;
    }
    .project-content {
        padding:24px;
    }
}
@media(max-width:760px) {
    html {
        scroll-padding-top:95px;
    }
    .wrap {
        width:calc(100% - 40px);
    }
    .nav {
        height:74px;
    }
    .brand {
        font-size:1.5rem;
    }
    .menu-toggle {
        display:block;
        background:transparent;
        border:1px solid var(--ink);
        padding:7px 12px;
        border-radius:5px;
        font-size:.8rem;
    }
    .nav-links {
        display:none;
        position:absolute;
        top:74px;
        left:0;
        right:0;
        background:var(--paper);
        padding:20px;
        border-bottom:1px solid var(--line);
        align-items:stretch;
        gap:5px;
    }
    .nav-links.open {
        display:flex;
        flex-direction:column;
    }
    .nav-links a {
        padding:11px 10px;
    }
    .nav-contact {
        margin-top:5px;
    }
    .hero {
        grid-template-columns:minmax(0,1fr);
        padding:45px 0 34px;
        gap:22px;
    }
    .hero h1 {
        font-size:clamp(2.5rem,11.2vw,4.5rem);
        max-width:600px;
    }
    .hero-description {
        max-width:530px;
    }
    .hero-art {
        max-width:460px;
        margin:0 auto;
        width:100%;
    }
    .hero-art figcaption {
        margin-top:-8px;
    }
    .hero-note {
        margin-top:20px;
    }
    .stack-strip {
        align-items:flex-start;
        padding:20px 0;
        gap:20px;
    }
    .stack-strip>span {
        flex:0 0 80px;
    }
    .stack-items {
        gap:12px 22px;
    }
    .stack-items span {
        font-size:.85rem;
    }
    .section {
        padding:60px 0;
    }
    .section-heading {
        display:block;
        margin-bottom:28px;
    }
    .section-heading>p {
        margin-top:20px;
        max-width:450px;
    }
    .section-heading>.text-link {
        margin-top:20px;
    }
    .expertise-grid {
        grid-template-columns:1fr;
    }
    .expertise-card {
        padding:25px;
    }
    .expertise-card h3 {
        margin-top:20px;
    }
    .project-grid {
        grid-template-columns:1fr;
        gap:25px;
    }
    .project-content p {
        min-height:0;
    }
    .about {
        grid-template-columns:1fr;
        gap:28px;
    }
    .contact {
        padding-bottom:50px;
    }
    .contact-box {
        grid-template-columns:1fr;
        padding:32px 25px;
        gap:25px;
    }
    .contact-box>div:last-child {
        justify-self:start;
    }
    .contact-email {
        text-align:left;
    }
    .footer-inner {
        align-items:flex-start;
        flex-direction:column;
        gap:20px;
    }
    .footer-links {
        gap:24px;
    }
    .project-visual {
        height:215px;
    }
}
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto;
    }
    *,*:before,*:after {
        animation:none!important;
        transition:none!important;
    }
}
