:root {
    --ivory: #f4f1ea;
    --paper: #faf9f6;
    --charcoal: #181816;
    --muted: #74716a;
    --line: rgba(24,24,22,.15);
    --gold: #b99043;
    --dark: #171714;
    --serif: "Playfair Display",Georgia,serif;
    --sans: "DM Sans",Arial,sans-serif;
    --container: min(1240px,calc(100% - 80px));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--charcoal);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden
}

body.modal-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

a {
    color: inherit;
    text-decoration: none
}

button,input,textarea,select {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: var(--container);
    margin: auto
}

.section {
    padding: 150px 0
}

.section-dark {
    background: var(--dark);
    color: #eee
}

.light-text {
    color: #f4f1ea!important
}

.section-label {
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #7c786f
}

.display {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px,6.1vw,94px);
    line-height: .98;
    letter-spacing: -.045em;
    margin: 0
}

.display em {
    font-style: italic;
    color: #a78449
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase
}

.eyebrow i {
    color: var(--gold);
    font-style: normal;
    padding: 0 6px
}

.page-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: var(--dark);
    display: grid;
    place-items: center;
    transition: opacity .8s,visibility .8s
}

.page-loader img {
    width: 180px;
    height: auto;
    /* filter: invert(1); */
    opacity: .9
}

.page-loader span {
    position: absolute;
    width: 42px;
    height: 1px;
    background: var(--gold);
    bottom: 25%;
    animation: load 1.2s infinite
}

.page-loader.done {
    opacity: 0;
    visibility: hidden
}

@keyframes load {
    0%,100% {
        transform: scaleX(.2)
    }

    50% {
        transform: scaleX(1)
    }
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    color: #000000;
    transition: .45s ease;
    border-bottom: 1px solid transparent;
    background-color: #fff;
}

.site-header.scrolled,.site-header.solid {
    height: 100px;
    background: rgb(255 255 255);
    color: var(--charcoal);
    backdrop-filter: blur(18px);
    border-color: var(--line)
}

.site-header.solid {
    position: relative
}

.brand img {
    width: 85px;
    height: auto;
    /* filter:brightness(0) invert(1); */
    transition: .35s
}

.site-header.scrolled .brand img,.site-header.solid .brand img {
    filter: none
}

.desktop-nav {
    display: flex;
    gap: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.desktop-nav a {
    position: relative
}

.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: .35s
}

.desktop-nav a:hover:after {
    width: 100%
}

.header-cta {
    border: 1px solid currentColor;
    padding: 11px 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .13em
}

.header-cta span,.btn span {
    margin-left: 12px;
    color: var(--gold)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: currentColor
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    margin: 6px
}

.mobile-menu {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: var(--dark);
    color: #f4f1ea;
    padding: 140px 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform .7s cubic-bezier(.77,0,.18,1)
}

.mobile-menu.open {
    transform: none
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mobile-menu nav a {
    font: 400 clamp(42px,12vw,70px)/1 var(--serif);
    letter-spacing: -.04em
}

.mobile-menu-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #3a3a35;
    padding-top: 20px;
    font-size: 11px
}

.hero {
    height: 100svh;
    min-height: 680px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 0 0 90px;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: -4%;
    background: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=2200&q=90") center/cover;
    animation: heroZoom 14s ease-out both
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.58))
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero h1 {
    font: 400 clamp(62px,9vw,138px)/.9 var(--serif);
    letter-spacing: -.055em;
    margin: 18px 0 30px;
    max-width: 1000px
}

.hero h1 .line {
    display: block;
    overflow: hidden
}

.hero h1 .line {
    animation: lineUp 1s .45s both
}

.hero h1 .line+ .line {
    animation-delay: .62s
}

.hero-copy {
    max-width: 510px;
    font-size: 16px;
    color: #e4e1d8
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    padding: 15px 20px;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: .35s
}

.btn-light {
    background: #f4f1ea;
    color: #181816
}

.btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff
}

.btn-dark {
    background: #181816;
    color: #fff
}

.btn-dark:hover {
    background: #b99043
}

.text-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    font-size: 10px;
    letter-spacing: .17em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    padding-bottom: 7px
}

.text-link span {
    transition: .3s
}

.text-link:hover span {
    transform: translateX(6px)
}

.text-link.light {
    color: #fff;
    border-color: rgba(255,255,255,.4)
}

.scroll-note {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 30px;
    font-size: 9px;
    letter-spacing: .2em;
    writing-mode: vertical-rl
}

.scroll-note span {
    height: 55px;
    width: 1px;
    background: rgba(255,255,255,.7);
    margin: 15px auto 0;
    display: block;
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    50% {
        opacity: .2;
        transform: scaleY(.55)
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.02)
    }

    to {
        transform: scale(1.08)
    }
}

@keyframes lineUp {
    from {
        transform: translateY(100%);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

.statement-grid {
    display: grid;
    grid-template-columns: 1fr 3.1fr;
    gap: 70px
}

.statement-bottom {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    margin-top: 70px
}

.statement-bottom p {
    max-width: 570px;
    margin: 0;
    color: #5f5c55
}

.statement-bottom .text-link {
    align-self: end;
    justify-self: end
}

.about {
    background: var(--ivory)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 12vw;
    align-items: center
}

.about-images {
    position: relative;
    min-height: 680px
}

.image-frame {
    position: absolute;
    margin: 0;
    overflow: hidden
}

.image-frame.tall {
    width: 76%;
    height: 620px;
    left: 0;
    top: 0
}

.image-frame.small {
    width: 42%;
    height: 280px;
    right: 0;
    bottom: 0;
    border: 12px solid var(--ivory)
}

.about-copy .display {
    margin: 25px 0 40px
}

.about-copy p {
    color: #5e5a53;
    max-width: 550px
}

.about-copy .lead {
    font-size: 19px;
    color: var(--charcoal)
}

.principle-list {
    margin-top: 45px;
    border-top: 1px solid var(--line)
}

.principle-list div {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px
}

.principle-list span {
    color: var(--gold);
    margin-right: 28px
}

.services {
    padding: 140px 0 110px
}

.section-head {
    margin-bottom: 70px
}

.services .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.service-list {
    border-top: 1px solid #3b3a35
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1.2fr 1.6fr 50px;
    align-items: center;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid #3b3a35;
    transition: .4s
}

.service-item:hover {
    padding-left: 15px
}

.service-number {
    color: #b99043;
    font-size: 10px
}

.service-item h3 {
    font: 400 clamp(25px,3vw,42px)/1 var(--serif);
    margin: 0
}

.service-item p {
    color: #a5a29a;
    max-width: 480px;
    margin: 0;
    font-size: 13px
}

.service-arrow {
    justify-self: end;
    font-size: 23px;
    color: #b99043
}

.service-hover-image {
    position: fixed;
    z-index: 50;
    width: 270px;
    height: 190px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%,-50%) scale(.85);
    transition: opacity .25s,transform .35s;
    overflow: hidden
}

.service-hover-image.show {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1)
}

.projects-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.projects-head>p {
    max-width: 320px;
    color: #716d65;
    font-size: 12px
}

.project-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 100px 28px;
    align-items: start
}

.project-card {
    display: block
}

.project-large {
    grid-row: span 1
}

.project-wide {
    grid-column: 1/-1
}

.project-tall {
    width: 80%;
    justify-self: end
}

.project-image {
    height: 590px;
    position: relative;
    overflow: hidden;
    background: #ddd
}

.project-small .project-image {
    height: 430px
}

.project-wide .project-image {
    height: 620px
}

.project-tall .project-image {
    height: 650px
}

.project-image img {
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1)
}

.project-card:hover img {
    transform: scale(1.045)
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(0,0,0,.65));
    opacity: 0;
    transition: .5s
}

.project-card:hover .project-overlay {
    opacity: 1
}

.project-meta {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    padding-top: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.project-meta h3 {
    font: 400 26px/1 var(--serif);
    text-transform: none;
    letter-spacing: -.02em;
    margin: 0
}

.project-meta span:last-child {
    text-align: right
}

.project-meta b {
    font-size: 16px;
    color: var(--gold);
    margin-left: 7px
}

.featured {
    height: 92vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
    overflow: hidden
}

.featured-media,.featured-overlay {
    position: absolute;
    inset: 0
}

.featured-media img {
    transition: transform 1.2s
}

.featured-overlay {
    background: rgba(0,0,0,.46)
}

.featured-content {
    position: relative
}

.featured-content .display {
    max-width: 900px;
    margin: 20px 0 55px
}

.featured-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #eee;
    font-size: 11px
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--line)
}

.philosophy-grid article {
    padding: 32px 28px 30px 0;
    border-right: 1px solid var(--line)
}

.philosophy-grid article+article {
    padding-left: 28px
}

.philosophy-grid span,.why-grid span {
    color: var(--gold);
    font-size: 10px
}

.philosophy-grid h3 {
    font: 400 25px/1.1 var(--serif);
    margin: 25px 0 15px
}

.philosophy-grid p {
    color: #66625b;
    font-size: 12px;
    max-width: 240px
}

.process {
    padding: 145px 0
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    position: relative;
    margin-top: 120px
}

.timeline-line {
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background: #3b3a35
}

.timeline-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold)
}

.timeline article {
    position: relative
}

.step {
    width: 20px;
    height: 20px;
    border: 1px solid #77736b;
    border-radius: 50%;
    font-size: 0;
    background: var(--dark);
    position: relative;
    z-index: 2
}

.timeline h3 {
    font: 400 30px/1 var(--serif);
    margin: 35px 0 15px
}

.timeline p {
    color: #9a978f;
    font-size: 12px;
    max-width: 180px
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line)
}

.why-grid>div {
    padding: 38px 35px 38px 0;
    border-bottom: 1px solid var(--line)
}

.why-grid>div:nth-child(3n+2),.why-grid>div:nth-child(3n+3) {
    padding-left: 35px;
    border-left: 1px solid var(--line)
}

.why-grid h3 {
    font: 400 25px/1.1 var(--serif);
    margin: 20px 0 10px
}

.why-grid p {
    color: #6b675f;
    font-size: 12px
}

.materials {
    padding: 140px 0;
    overflow: hidden
}

.materials-top {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 50px
}

.materials-top h2 {
    grid-column: 2;
    margin-top: -15px
}

.materials-top p {
    grid-column: 2;
    color: #a29f97
}

.material-strip {
    display: flex;
    gap: 18px;
    margin-top: 75px;
    width: max-content;
    animation: materialMove 32s linear infinite
}

.material-strip figure {
    margin: 0;
    width: 270px
}

.material-strip figure:nth-child(2n) {
    width: 340px
}

.material-strip img {
    height: 370px
}

.material-strip figcaption {
    color: #aaa79f;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding-top: 12px
}

@keyframes materialMove {
    to {
        transform: translateX(-35%)
    }
}

.experience {
    background: var(--ivory)
}

.experience-stage {
    height: 75vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    background: #c9c4ba
}

.experience-image {
    position: absolute;
    inset: 0
}

.experience-image img {
    transform: scale(1.04);
    transition: transform 1s
}

.experience-stage:hover .experience-image img {
    transform: scale(1.08)
}

.experience-layer {
    position: absolute;
    font: 400 clamp(55px,10vw,140px)/1 var(--serif);
    color: #fff;
    opacity: .8;
    mix-blend-mode: soft-light
}

.layer-1 {
    left: 7%;
    top: 12%
}

.layer-2 {
    right: 8%;
    top: 38%
}

.layer-3 {
    left: 20%;
    bottom: 8%
}

.experience-caption {
    position: absolute;
    right: 5%;
    bottom: 5%;
    background: rgba(20,20,18,.83);
    color: #fff;
    width: 330px;
    padding: 24px
}

.experience-caption span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .2em
}

.experience-caption strong {
    display: block;
    font: 400 23px var(--serif);
    margin: 10px 0
}

.experience-caption p {
    margin: 0;
    color: #bbb7ae;
    font-size: 11px
}

.before-after .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.before-after .section-head>p {
    font-size: 11px;
    color: #6d6962;
    max-width: 300px
}

.comparison {
    height: 620px;
    position: relative;
    overflow: hidden;
    user-select: none
}

.comparison-img {
    position: absolute;
    inset: 0
}

.comparison-img.before {
    width: 50%;
    overflow: hidden;
    z-index: 2
}

.comparison-img.after img {
    object-position: center
}

.comparison-img.before img {
    width: 100vw;
    max-width: none
}

.comparison-label {
    position: absolute;
    top: 25px;
    z-index: 4;
    background: rgba(20,20,18,.8);
    color: #fff;
    padding: 8px 12px;
    font-size: 9px;
    letter-spacing: .18em
}

.before-label {
    left: 25px
}

.after-label {
    right: 25px
}

.comparison-handle {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    border: 0;
    background: #fff;
    padding: 0
}

.comparison-handle:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%,-50%);
    border: 1px solid #fff;
    border-radius: 50%;
    background: #181816;
    color: #fff
}

.comparison-handle span {
    position: relative;
    z-index: 2;
    color: #fff
}

.testimonial-wrap {
    max-width: 900px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px
}

.quote-mark {
    font: 120px/1 var(--serif);
    color: var(--gold);
    height: 90px
}

.testimonial-wrap blockquote {
    font: 400 clamp(32px,5vw,60px)/1.1 var(--serif);
    margin: 10px 0 25px;
    letter-spacing: -.035em
}

.placeholder-note {
    font-size: 10px;
    color: #77736b
}

.testimonial-meta {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #a9a69e
}

.testimonial-meta span {
    color: var(--gold);
    padding: 0 8px
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px
}

.social-grid div {
    height: 310px;
    overflow: hidden
}

.social-grid img {
    transition: .8s
}

.social-grid div:hover img {
    transform: scale(1.05)
}

.social .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end
}

.cta {
    height: 78vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center
}

.cta-bg,.cta-overlay {
    position: absolute;
    inset: 0
}

.cta-bg {
    background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2200&q=90") center/cover
}

.cta-overlay {
    background: rgba(10,10,9,.62)
}

.cta-content {
    position: relative
}

.cta-content .display {
    max-width: 850px;
    margin: 25px 0
}

.cta-content>p {
    color: #d3d0c8;
    max-width: 470px
}

.cta-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 35px
}

.contact {
    background: var(--ivory)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12vw
}

.contact-intro .display {
    margin: 25px 0 35px
}

.contact-intro>p {
    max-width: 470px;
    color: #66625b
}

.contact-details {
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.contact-details>a {
    font: 400 27px var(--serif)
}

.contact-details p {
    color: #66625b;
    font-size: 12px
}

.contact-form {
    padding-top: 35px
}

.contact-form label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .17em;
    margin-bottom: 22px
}

.contact-form input,.contact-form textarea,.contact-form select,.modal-content input,.modal-content select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #aaa69d;
    background: transparent;
    padding: 10px 0;
    color: var(--charcoal);
    outline: 0;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none
}

.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus {
    border-color: var(--gold)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.contact-form textarea {
    resize: vertical
}

.form-note {
    font-size: 9px!important;
    color: #888!important;
    margin-top: 15px
}

.footer {
    padding: 80px 0 25px
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 65px;
    border-bottom: 1px solid #383832
}

.footer-top img {
    width: 135px;
    height: auto;
    /* filter: invert(1); */
}

.footer-top p {
    text-align: right;
    color: #a5a29a;
    font: 400 20px/1.25 var(--serif)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding: 55px 0
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-label {
    color: #77746d;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 12px
}

.footer-grid a,.footer-grid span:not(.footer-label) {
    font-size: 11px;
    color: #ddd9d0
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #383832;
    padding-top: 20px;
    color: #77746d;
    font-size: 15px;
}

.footer-bottom div {
    display: flex;
    gap: 25px
}

.floating-whatsapp,.floating-call {
    position: fixed;
    z-index: 800;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    border: 1px solid rgba(255,255,255,.3);
    background: var(--dark);
    color: #fff
}

.floating-whatsapp {
    bottom: 24px;
    background: #22221e
}

.floating-call {
    display: none;
    bottom: 84px
}

.consultation-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    place-items: center;
    padding: 25px
}

.consultation-modal.show {
    display: grid
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,8,.72);
    backdrop-filter: blur(10px);
    animation: fade .4s
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px,100%);
    background: var(--paper);
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    max-height: 92vh;
    overflow: auto;
    animation: modalIn .55s cubic-bezier(.2,.8,.2,1)
}

.modal-image {
    min-height: 650px
}

.modal-content {
    padding: 55px 48px
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 15px;
    border: 0;
    background: none;
    font-size: 30px;
    color: #fff;
    z-index: 2;
    mix-blend-mode: difference
}

.modal-content h2 {
    font: 400 clamp(36px,4vw,56px)/.98 var(--serif);
    margin: 18px 0
}

.modal-content h2 em {
    color: var(--gold);
    font-style: italic
}

.modal-content>p {
    font-size: 12px;
    color: #6a665f;
    max-width: 390px;
    margin-bottom: 25px
}

.modal-content form {
    display: grid;
    gap: 11px
}

.modal-content input,.modal-content select {
    padding: 12px 0
}

.modal-content .btn {
    margin-top: 10px
}

.maybe-later {
    border: 0;
    background: none;
    margin-top: 18px;
    color: #76726a;
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase
}

@keyframes fade {
    from {
        opacity: 0
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(.97)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.cursor-dot,.cursor-view {
    position: fixed;
    z-index: 3000;
    pointer-events: none;
    display: none
}

.cursor-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    mix-blend-mode: difference
}

.cursor-view {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #b99043;
    color: #181816;
    place-items: center;
    font-size: 9px;
    letter-spacing: .1em;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: .25s
}

.project-page {
    background: var(--paper)
}

.project-hero {
    height: 88vh;
    min-height: 650px;
    position: relative;
    color: #fff
}

.project-hero>img {
    position: absolute;
    inset: 0
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.1),rgba(0,0,0,.62))
}

.project-hero-content {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%)
}

.project-hero-content span {
    font-size: 9px;
    letter-spacing: .2em
}

.project-hero-content h1 {
    font: 400 clamp(55px,8vw,120px)/.9 var(--serif);
    letter-spacing: -.05em;
    max-width: 950px;
    margin: 20px 0
}

.project-hero-content p {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.project-overview-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px
}

.project-overview-grid>div:last-child {
    max-width: 900px
}

.project-overview-grid p {
    max-width: 650px;
    color: #68645d;
    margin-top: 45px
}

.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-bottom: 150px
}

.project-gallery img {
    height: 560px
}

.project-gallery .wide {
    grid-column: 1/-1;
    height: 760px
}

.material-palette {
    padding: 130px 0
}

.material-palette h2 {
    max-width: 800px;
    margin: 25px 0 70px
}

.swatches {
    display: flex;
    gap: 12px
}

.swatches span {
    width: 140px;
    height: 140px;
    display: grid;
    place-items: end start;
    padding: 12px;
    background: #a57c4b;
    color: #fff;
    font-size: 10px
}

.swatches span:nth-child(2) {
    background: #aaa59a
}

.swatches span:nth-child(3) {
    background: #9b8a5a
}

.swatches span:nth-child(4) {
    background: #d8d0c2;
    color: #333
}

.project-next a {
    display: block
}

.project-next h2 {
    margin-top: 30px
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .9s,transform .9s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-img {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.1s cubic-bezier(.77,0,.18,1)
}

.reveal-img.visible {
    clip-path: inset(0)
}

@media (min-width: 1000px) {
    body.custom-cursor .cursor-dot {
        display:block
    }

    .hero .hero-content {
        padding-bottom: 15px
    }
}

@media (max-width: 900px) {
    :root {
        --container:min(100% - 44px,700px)
    }

    .site-header {
        height: 78px;
        padding: 0 22px
    }

    .desktop-nav,.header-cta {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .brand img {
        width: 75px;
    }

    .site-header.scrolled .brand img {
        filter: none
    }

    .section {
        padding: 105px 0
    }

    .statement-grid,.about-grid,.contact-grid,.project-overview-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .statement-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 45px
    }

    .statement-bottom .text-link {
        justify-self: start
    }

    .about-images {
        min-height: 570px
    }

    .about-copy .display {
        margin: 20px 0 30px
    }

    .services .section-head,.projects-head,.before-after .section-head,.social .section-head {
        display: block
    }

    .service-list {
        margin-top: 50px
    }

    .service-item {
        grid-template-columns: 45px 1fr 35px
    }

    .service-item p {
        display: none
    }

    .service-hover-image {
        display: none
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 65px
    }

    .project-wide,.project-tall {
        grid-column: auto;
        width: 100%;
        justify-self: auto
    }

    .project-image,.project-small .project-image,.project-wide .project-image,.project-tall .project-image {
        height: 500px
    }

    .project-meta {
        grid-template-columns: 1fr 1.5fr
    }

    .project-meta span:last-child {
        display: none
    }

    .featured {
        height: 78vh
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr
    }

    .philosophy-grid article {
        padding: 25px 20px 25px 0
    }

    .philosophy-grid article+article {
        padding-left: 20px
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 60px;
        padding-left: 35px
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 9px;
        width: 1px;
        height: auto;
        right: auto
    }

    .timeline-line span {
        width: 100%;
        height: 0
    }

    .materials-top {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .materials-top h2,.materials-top p {
        grid-column: auto
    }

    .material-strip {
        margin-top: 50px
    }

    .experience-stage {
        height: 65vh;
        min-height: 500px
    }

    .comparison {
        height: 500px
    }

    .social-grid {
        grid-template-columns: 1fr 1fr
    }

    .social-grid div {
        height: 240px
    }

    .modal-panel {
        grid-template-columns: 1fr;
        max-height: 92vh
    }

    .modal-image {
        height: 210px;
        min-height: 0
    }

    .modal-content {
        padding: 35px 28px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-top {
        align-items: start
    }

    .footer-top p {
        font-size: 15px
    }

    .project-gallery {
        padding-bottom: 100px
    }

    .project-gallery img,.project-gallery .wide {
        height: 450px
    }
}

@media (max-width: 600px) {
    :root {
        --container:calc(100% - 34px)
    }

    body {
        font-size: 14px
    }

    .hero {
        min-height: 650px;
        padding-bottom: 70px
    }

    .hero h1 {
        font-size: clamp(52px,16vw,78px)
    }

    .hero-copy {
        font-size: 14px;
        max-width: 340px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px
    }

    .scroll-note {
        right: 18px
    }

    .display {
        font-size: clamp(43px,13vw,65px)
    }

    .section {
        padding: 85px 0
    }

    .about-images {
        min-height: 430px
    }

    .image-frame.tall {
        height: 390px;
        width: 82%
    }

    .image-frame.small {
        height: 190px;
        width: 45%;
        border-width: 8px
    }

    .service-item {
        padding: 22px 0
    }

    .service-item h3 {
        font-size: 28px
    }

    .project-image,.project-small .project-image,.project-wide .project-image,.project-tall .project-image {
        height: 420px
    }

    .project-meta {
        display: block
    }

    .project-meta h3 {
        margin: 8px 0
    }

    .featured {
        min-height: 570px
    }

    .featured-content .display {
        margin-bottom: 35px
    }

    .featured-bottom {
        display: block
    }

    .featured-bottom .btn {
        margin-top: 22px
    }

    .philosophy-grid,.why-grid,.social-grid,.form-row {
        grid-template-columns: 1fr
    }

    .philosophy-grid article+article,.why-grid>div:nth-child(3n+2),.why-grid>div:nth-child(3n+3) {
        padding-left: 0;
        border-left: 0
    }

    .why-grid>div {
        padding: 25px 0
    }

    .materials {
        padding: 90px 0
    }

    .material-strip figure,.material-strip figure:nth-child(2n) {
        width: 245px
    }

    .material-strip img {
        height: 310px
    }

    .experience-stage {
        height: 600px
    }

    .experience-layer {
        font-size: 58px
    }

    .experience-caption {
        left: 15px;
        right: 15px;
        width: auto
    }

    .comparison {
        height: 400px
    }

    .contact-form {
        padding-top: 0
    }

    .footer {
        padding-top: 60px
    }

    .footer-top {
        display: block
    }

    .footer-top p {
        text-align: left;
        margin-top: 25px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom div {
        margin-top: 12px;
        gap: 15px
    }

    .floating-call {
        display: grid
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px
    }

    .floating-call {
        right: 18px
    }

    .modal-content {
        padding: 28px 22px
    }

    .modal-image {
        height: 160px
    }

    .modal-close {
        color: #fff
    }

    .project-hero {
        height: 75vh;
        min-height: 580px
    }

    .project-hero-content {
        bottom: 45px
    }

    .project-gallery {
        grid-template-columns: 1fr
    }

    .project-gallery .wide {
        grid-column: auto;
        height: 430px
    }

    .project-gallery img {
        height: 380px
    }

    .swatches {
        overflow: auto
    }

    .swatches span {
        min-width: 120px;
        height: 120px
    }
}

@media (prefers-reduced-motion:reduce) {
    *,*:before,*:after {
        scroll-behavior: auto!important;
        animation-duration: .01ms!important;
        transition-duration: .01ms!important
    }

    .material-strip {
        animation: none
    }

    .hero-media {
        animation: none
    }
}
