:root {
    --paper: #f5f1e8;
    --paper-deep: #ebe6da;
    --ink: #20343b;
    --ink-soft: #52686e;
    --teal: #246d72;
    --teal-deep: #174d53;
    --copper: #ca713b;
    --line: rgba(32, 52, 59, .17)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

.topbar {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(245, 241, 232, .9);
    backdrop-filter: blur(15px)
}

.topbar-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid var(--teal);
    color: var(--teal);
    font: 700 .7rem "Space Mono", monospace;
    letter-spacing: -.12em
}

.brand-copy {
    display: flex;
    flex-direction: column
}

.brand-copy strong {
    font-size: .82rem;
    letter-spacing: .03em
}

.brand-copy small {
    margin-top: 3px;
    color: var(--ink-soft);
    font: .56rem "Space Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase
}

.desktop-nav {
    display: flex;
    gap: 30px
}

.desktop-nav a {
    color: var(--ink-soft);
    font-size: .73rem;
    font-weight: 700
}

.desktop-nav a:hover {
    color: var(--teal)
}

.header-phone {
    color: var(--teal-deep);
    font: 700 .72rem "Space Mono", monospace
}

.header-phone:first-letter {
    color: var(--copper)
}

.menu-toggle,
.mobile-menu {
    display: none
}

.hero {
    display: grid;
    min-height: 690px;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    align-items: center;
    gap: 78px;
    padding-top: 92px;
    padding-bottom: 90px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--teal);
    font: 700 .68rem "Space Mono", monospace;
    letter-spacing: .16em;
    text-transform: uppercase
}

.eyebrow:before {
    width: 24px;
    height: 2px;
    background: var(--copper);
    content: ""
}

.hero h1,
.section h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .84
}

.hero h1 {
    max-width: 620px;
    margin-top: 25px;
    font-size: clamp(4rem, 8.5vw, 6.4rem)
}

h1 em,
h2 em {
    color: var(--teal);
    font-style: normal
}

.hero-description {
    max-width: 460px;
    margin: 31px 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75
}

.hero-description strong {
    color: var(--ink)
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px
}

.button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .035em;
    transition: transform .2s, background .2s
}

.button:hover {
    transform: translateY(-3px)
}

.button-primary {
    background: var(--teal);
    color: var(--paper)
}

.button-primary:hover {
    background: var(--teal-deep)
}

.button-quiet {
    border: 1px solid var(--line)
}

.button-quiet:hover {
    border-color: var(--teal);
    color: var(--teal)
}

.hero-note {
    margin-top: 62px;
    color: var(--ink-soft);
    font: .65rem "Space Mono", monospace
}

.hero-note:first-letter {
    color: var(--copper)
}

.portrait {
    position: relative;
    min-height: 548px
}

.portrait:before {
    position: absolute;
    top: 38px;
    right: -18px;
    width: 84%;
    height: 86%;
    border: 1px solid rgba(36, 109, 114, .32);
    content: ""
}

.portrait:after {
    position: absolute;
    right: -2px;
    bottom: 26px;
    width: 66px;
    height: 66px;
    border-right: 2px solid var(--copper);
    border-bottom: 2px solid var(--copper);
    content: ""
}

.portrait-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 86%;
    height: 90%;
    overflow: hidden;
    background: var(--teal-deep)
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.76) contrast(1.04)
}

.photo-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: linear-gradient(125deg, rgba(202, 113, 59, .15), transparent 44%), var(--teal-deep);
    color: var(--paper)
}

.photo-fallback span {
    font: 600 clamp(5rem, 11vw, 9rem) "Barlow Condensed", sans-serif;
    letter-spacing: -.08em
}

.photo-fallback small {
    position: absolute;
    right: 26px;
    bottom: 23px;
    left: 27px;
    border-top: 1px solid rgba(245, 241, 232, .28);
    padding-top: 10px;
    color: rgba(245, 241, 232, .74);
    font: .56rem "Space Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase
}

.portrait-label {
    position: absolute;
    right: -4px;
    bottom: 2px;
    font: 700 .6rem "Space Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom
}

.portrait-index {
    position: absolute;
    right: 0;
    bottom: 36px;
    color: rgba(32, 52, 59, .22);
    font: .66rem "Space Mono", monospace
}

.info-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(235, 230, 218, .56)
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.info-cell {
    display: flex;
    min-height: 116px;
    align-items: center;
    gap: 15px;
    border-right: 1px solid var(--line);
    padding: 20px 28px
}

.info-cell:first-child {
    padding-left: 0
}

.info-cell:last-child {
    border: 0
}

.info-icon {
    color: var(--copper);
    font-size: 1.45rem
}

.info-cell span:last-child {
    display: flex;
    flex-direction: column
}

.info-cell small {
    margin-bottom: 6px;
    color: var(--ink-soft);
    font: .58rem "Space Mono", monospace;
    letter-spacing: .1em;
    text-transform: uppercase
}

.info-cell strong,
.info-cell a {
    font-size: .83rem;
    font-weight: 800
}

.section {
    padding: 126px 0
}

.dark-section {
    background: var(--teal-deep);
    color: var(--paper)
}

.dark-section .eyebrow {
    color: #e8a06e
}

.dark-section h2 {
    color: var(--paper)
}

.section-heading {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px
}

.section-heading h2 {
    max-width: 620px;
    font-size: clamp(3.1rem, 6vw, 5.4rem)
}

.section-heading p,
.scope-intro p,
.experience p {
    max-width: 410px;
    margin: 10px 0 0;
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.8
}

.dark-section .section-heading p {
    color: rgba(245, 241, 232, .69)
}

.method-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 1px;
    background: rgba(245, 241, 232, .23)
}

.method-grid article {
    min-height: 270px;
    padding: 29px;
    background: var(--teal-deep)
}

.method-grid article:hover {
    background: #205e63
}

.method-grid small {
    color: #e8a06e;
    font: .68rem "Space Mono", monospace
}

.method-grid h3 {
    margin: 70px 0 12px;
    font-size: 1.17rem
}

.method-grid p {
    max-width: 260px;
    margin: 0;
    color: rgba(245, 241, 232, .67);
    font-size: .82rem;
    line-height: 1.7
}

.scope-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 92px
}

.scope-intro h2,
.experience h2 {
    max-width: 410px;
    margin: 24px 0 20px;
    font-size: clamp(2.9rem, 5vw, 4.8rem)
}

.scope-intro p {
    max-width: 350px
}

.scope-intro p+p {
    margin-top: 14px
}

.scope-list {
    border-top: 1px solid var(--line)
}

.scope-list>div {
    display: grid;
    grid-template-columns: 56px 1fr 30px;
    align-items: center;
    gap: 22px;
    min-height: 102px;
    border-bottom: 1px solid var(--line)
}

.scope-list>div:hover {
    padding-inline: 15px;
    background: rgba(36, 109, 114, .06)
}

.scope-list small {
    color: var(--copper);
    font: .64rem "Space Mono", monospace
}

.scope-list span {
    display: flex;
    flex-direction: column
}

.scope-list strong {
    font-size: 1.05rem
}

.scope-list em {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: .76rem;
    font-style: normal
}

.scope-list b {
    color: var(--teal);
    font-size: 1.2rem
}

.experience {
    display: grid;
    grid-template-columns: 1fr .9fr;
    min-height: 360px;
    padding-top: 56px;
    padding-bottom: 56px;
    background: var(--paper-deep)
}

.experience>div:first-child {
    padding-left: 56px
}

.experience h2 {
    max-width: 470px
}

.experience p {
    max-width: 430px
}

.experience-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
    padding: 40px
}

.experience-stat strong {
    color: var(--teal);
    font: 600 clamp(5.5rem, 10vw, 8.7rem) "Barlow Condensed", sans-serif;
    letter-spacing: -.06em;
    line-height: .8
}

.experience-stat b {
    margin-top: 20px;
    font-size: .78rem
}

.experience-stat small {
    max-width: 205px;
    margin-top: 9px;
    color: var(--ink-soft);
    font: .62rem/1.6 "Space Mono", monospace
}

.contact-section {
    padding: 115px 0 135px;
    background: var(--ink);
    color: var(--paper)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: end;
    gap: 90px
}

.contact-section .eyebrow {
    color: #e8a06e
}

.contact-section h2 {
    max-width: 680px;
    margin: 23px 0 25px;
    color: var(--paper);
    font-size: clamp(3.7rem, 7.5vw, 7.2rem)
}

.contact-section h2 em {
    color: #e8a06e
}

.contact-section p {
    max-width: 435px;
    color: rgba(245, 241, 232, .69);
    font-size: .94rem;
    line-height: 1.75
}

.contact-side {
    border-top: 1px solid rgba(245, 241, 232, .22);
    padding-top: 25px
}

.contact-side small {
    display: block;
    margin-bottom: 13px;
    color: rgba(245, 241, 232, .54);
    font: .61rem "Space Mono", monospace;
    letter-spacing: .12em;
    text-transform: uppercase
}

.contact-phone {
    display: block;
    color: var(--paper);
    font: 600 clamp(2rem, 4vw, 3.5rem) "Barlow Condensed", sans-serif
}

.contact-phone:hover {
    color: #e8a06e
}

.contact-side p {
    margin-top: 27px
}

.footer {
    border-top: 1px solid rgba(245, 241, 232, .15);
    background: var(--ink);
    color: rgba(245, 241, 232, .56)
}

.footer-inner {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font: .59rem/1.6 "Space Mono", monospace;
    letter-spacing: .06em;
    text-transform: uppercase
}

.footer-inner span:last-child {
    text-align: right
}