:root {
    --gold: #c9a84c;
    --gold2: #e3c86f;
    --burgundy: #530202;
    --burgundy-dark: #330000;
    --charcoal: #090706;
    --charcoal2: #12100f;
    --cream: #f1e9dc;
    --muted: #b9aa96
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--charcoal);
    color: var(--cream);
    font-family: Montserrat, Inter, system-ui, sans-serif
}

img,
video {
    max-width: 100%;
    display: block
}

.serif {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif
}

.wrap {
    max-width: 1220px;
    margin: auto;
    padding: 0 24px
}

.section {
    padding: 110px 0;
    position: relative;
    overflow: hidden
}

.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .45em;
    color: rgba(201, 168, 76, .7);
    display: flex;
    align-items: center;
    gap: 16px
}

.eyebrow:before,
.eyebrow:after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold))
}

.eyebrow:after {
    background: linear-gradient(90deg, var(--gold), transparent)
}

h1,
h2,
h3,
p {
    margin: 0
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: .08em
}

.gold {
    color: var(--gold)
}

.gold-text {
    background: linear-gradient(120deg, #9d7728, #f5df8d, #b18a31);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: .45s;
    padding: 26px 0
}

.nav.scrolled {
    background: rgba(9, 7, 6, .86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, .18);
    padding: 12px 0
}

.nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav img {
    height: 54px
}

.nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: rgba(241, 233, 220, .65);
    text-decoration: none;
    margin-left: 26px
}

.nav a:hover {
    color: var(--gold)
}

.menuBtn {
    display: none
}

.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    background: url('assets/hero.jpg') center/cover no-repeat
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(90, 11, 22, .35), rgba(0, 0, 0, .25)), linear-gradient(180deg, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .88))
}

.side {
    width: 56px;
    background: rgba(0, 0, 0, .52);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 36px
}

.side span {
    color: rgba(201, 168, 76, .55);
    writing-mode: vertical-rl;
    letter-spacing: .3em;
    font-size: 10px
}

.side a {
    color: rgba(201, 168, 76, .55);
    text-decoration: none;
}

.side a:hover {
    color: var(--gold);
}

.hero-content {
    position: relative;
    z-index: 3;
    align-self: flex-end;
    padding: 0 24px 11vh 5vw
}

.hero-logo {
    width: min(420px, 68vw);
    margin-bottom: 28px
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(76px, 12vw, 150px);
    line-height: .82;
    letter-spacing: .11em;
    text-transform: uppercase
}

.hero .in {
    display: block;
    font-size: .48em;
    letter-spacing: .36em;
    color: rgba(201, 168, 76, .82);
    margin: .12em 0
}

.hero p {
    text-transform: uppercase;
    letter-spacing: .2em;
    margin: 30px 0 38px;
    color: rgba(241, 233, 220, .82)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201, 168, 76, .45);
    padding: 16px 28px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-family: 'Cormorant Garamond';
    font-size: 13px;
    color: var(--gold);
    transition: .35s;
    background: rgba(9, 7, 6, .25)
}

.btn.primary {
    background: var(--gold);
    color: #120d08
}

.btn:hover {
    background: var(--gold);
    color: #120d08;
    transform: translateY(-2px)
}

.grid2 {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center
}

.cream {
    background: #f1eaea;
    color: #211915
}

.story p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    line-height: 1.55;
    color: rgba(33, 25, 21, .72);
    margin-top: 22px
}

.portrait {
    position: relative;
    max-width: 430px;
    margin: auto;
    padding: 14px;
    border: 1px solid rgba(201, 168, 76, .45)
}

.portrait img {
    aspect-ratio: 1;
    object-fit: cover
}

.nameplate {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 36px;
    text-align: center;
    background: rgba(9, 7, 6, .78);
    border: 1px solid rgba(201, 168, 76, .35);
    padding: 18px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(90, 11, 22, .18);
    padding-top: 28px;
    margin-top: 38px
}

.stats b {
    display: block;
    font: 34px 'Cormorant Garamond';
    color: #9c7a2d
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, .12)
}

.card {
    background: var(--charcoal2);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border: 1px solid rgba(201, 168, 76, .09)
}

.card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    opacity: .78;
    transition: .7s
}

.card:hover img {
    transform: scale(1.08);
    opacity: .95
}

.card .body {
    padding: 24px
}

.card h3 {
    font-family: 'Cormorant Garamond';
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--cream)
}

.card p {
    color: rgba(241, 233, 220, .5);
    line-height: 1.7;
    margin-top: 10px;
    font-family: 'Cormorant Garamond';
    font-size: 18px
}

.burgundy {
    background: linear-gradient(180deg, rgba(83, 2, 2, .92), 90%, rgba(9, 7, 6, .95)),
      url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    position: relative;
}

.burgundy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 7, 6, .28), rgba(9, 7, 6, .78));
    pointer-events: none;
}

#expertise .wrap {
    position: relative;
    z-index: 1;
}

.expertise-section {
    padding-top: 118px;
    padding-bottom: 96px;
}

.expertise-head {
    text-align: center;
    margin-bottom: 48px;
}

.expertise-head .eyebrow {
    justify-content: center;
}

.expertise-head p {
    font: italic 19px 'Cormorant Garamond', serif;
    color: rgba(241, 233, 220, .55);
    margin-top: 18px;
}

.tabs,
.expertise-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid rgba(201, 168, 76, .22);
    margin: 42px 0 44px;
}

.tabs button,
.expertise-tabs button {
    background: transparent;
    color: rgba(241, 233, 220, .45);
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 16px 20px;
    text-transform: uppercase;
    letter-spacing: .16em;
    cursor: pointer;
    transition: .3s;
}

.tabs button.active,
.expertise-tabs button.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

.expertise-stage {
    display: grid;
    grid-template-columns: .78fr 1.65fr;
    gap: 56px;
    align-items: center;
}

.expertise-copy {
    max-width: 420px;
}

.expertise-copy h3 {
    font-size: clamp(30px, 3vw, 42px);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.ex-subtitle {
    font: italic 19px 'Cormorant Garamond', serif;
    color: rgba(201, 168, 76, .75);
    margin: 10px 0 22px;
}

.ex-description {
    font: 20px 'Cormorant Garamond', serif;
    line-height: 1.65;
    color: rgba(241, 233, 220, .72);
}

.expertise-gallery {
    position: relative;
    min-width: 0;
}

.ex-viewport {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.ex-track {
    height: 100%;
    display: flex;
    transition: transform .72s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.ex-slide {
    position: relative;
    flex: 0 0 76%;
    height: 100%;
    padding: 0 7px;
    opacity: .36;
    filter: blur(7px);
    transform: scale(.94);
    transition: opacity .72s ease, filter .72s ease, transform .72s ease;
}

.ex-slide.active {
    opacity: 1;
    filter: none;
    transform: scale(1);
}

.ex-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.ex-slide::after {
    content: '';
    position: absolute;
    inset: 0 7px;
    background: rgba(74, 14, 15, .62);
    pointer-events: none;
}

.ex-slide.active::after {
    background: linear-gradient(to top, rgba(74,14,15,.72), transparent 48%);
    box-shadow: inset 0 0 0 1px rgba(201,168,76,.5), inset 0 0 38px rgba(201,168,76,.08);
}

.ex-label {
    position: absolute;
    top: 20px;
    left: 26px;
    z-index: 2;
    opacity: 0;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(74, 14, 15, .7);
    border-left: 2px solid var(--gold);
    padding: 9px 14px;
    transition: .35s;
}

.ex-slide.active .ex-label {
    opacity: 1;
}

.ex-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.42);
    background: rgba(74,14,15,.64);
    color: rgba(241,233,220,.72);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 8;
    transition: .3s;
}

.ex-arrow:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,.82);
    background: rgba(74,14,15,.9);
}

.ex-prev { left: 8px; }
.ex-next { right: 8px; }

.ex-progress-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
}

.ex-progress-wrap span {
    font-size: 12px;
    color: rgba(201,168,76,.75);
    letter-spacing: .22em;
    min-width: 24px;
}

.ex-progress-line {
    flex: 1;
    height: 1px;
    background: rgba(241,233,220,.14);
}

.ex-progress-line div {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #9d7728, #f5df8d);
    transition: width .5s ease;
}

.ex-ornament {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.ex-ornament span {
    width: 90px;
    height: 1px;
    background: rgba(201,168,76,.22);
}

.ex-ornament b {
    color: rgba(201,168,76,.38);
    font-weight: 400;
}

@media(max-width:900px) {
    .expertise-stage {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .expertise-copy {
        max-width: 100%;
    }

    .ex-viewport {
        height: 360px;
    }

    .ex-slide {
        flex-basis: 82%;
    }

    .tabs button,
    .expertise-tabs button {
        font-size: 11px;
        padding: 14px 12px;
    }
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, .16)
}

.client {
    min-height: 390px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.client:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 7, 16, .35), rgba(43, 7, 16, .94))
}

.client>* {
    position: relative
}

.project-wrap {
    position: relative;
    border: 1px solid rgba(201, 168, 76, .24);
    padding: 18px;
    display: grid;
    gap: 18px;
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.screen {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72) contrast(1.08);
    transition: 4s;
}

.screen.playing img {
    transform: scale(1.12);
}

.play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, .7);
    color: var(--gold);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .28);
    font-size: 28px;
}

.project-details {
    text-align: left;
    display: grid;
    gap: 12px;
    justify-items: start;
}

.project-details h3,
.project-details p {
    margin-top: 0;
}

.project-details .eyebrow {
    justify-content: flex-start;
}

.project-details .eyebrow:before,
.project-details .eyebrow:after {
    display: none;
}

.project-cta {
    display: flex;
    justify-content: center;
}

.project-tabs button {
    border: 1px solid rgba(201, 168, 76, .18);
    background: transparent;
    color: rgba(241, 233, 220, .55);
    padding: 14px 18px;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
}

.project-tabs button.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08)
}

.services,
#services {
    display: none !important;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, .12)
}

.service {
    background: #15110f;
    padding: 38px;
    transition: .35s
}

.service:hover {
    background: var(--burgundy-dark)
}

.quote {
    min-height: 55vh;
    display: grid;
    align-items: start;
    justify-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(201, 168, 76, .08), transparent 50%), #080606
}

.quote-signature {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 200px;
    max-width: 100%;
    height: auto;
}

.quote h2 {
    font-size: clamp(38px, 6vw, 82px);
    max-width: 1000px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr
}

.info {
    background: var(--burgundy-dark);
    padding: 48px;
    border: 1px solid rgba(201, 168, 76, .22)
}

.form {
    background: #15110f;
    padding: 48px;
    border: 1px solid rgba(201, 168, 76, .16)
}

input,
textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(201, 168, 76, .35);
    padding: 16px 0;
    color: var(--cream);
    outline: none
}

label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: rgba(201, 168, 76, .55)
}

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

footer {
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0;
    color: rgba(241, 233, 220, .45)
}

footer .footgrid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 40px
}

footer h4 {
    color: var(--gold);
    letter-spacing: .28em;
    text-transform: uppercase;
    font-size: 12px
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: 1s
}

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

@media(max-width:900px) {
    .navlinks {
        display: none
    }

    .menuBtn {
        display: block
    }

    .side {
        display: none
    }

    .grid2,
    .contact-grid,
    .gallery,
    footer .footgrid {
        grid-template-columns: 1fr
    }

    .cards,
    .services {
        grid-template-columns: 1fr
    }

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

    .hero-content {
        padding: 0 22px 72px
    }

    .section {
        padding: 78px 0
    }

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

    .gallery {
        height: auto
    }

    .gallery img {
        height: 280px
    }

    .hero-logo {
        width: 260px
    }

    .nav img {
        height: 42px
    }
}