body { margin: 0; }
.oh-site, .oh-site *, .oh-site *::before, .oh-site *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #c9a26a;
    --comp: #3c6b8f;
    --ink: #191713;
    --ink2: #221f1a;
    --text: #54504a;
    --muted: #8d8880;
    --line: #e6e2db;
    --cream: #f7f4ef;
    --bg: #ffffff;
    --serif: 'Montserrat', system-ui, sans-serif;
    --sans: 'Instrument Sans', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth
}

.oh-site {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    overflow-x: clip;
    width: 100%;
    max-width: none
}

.oh-site img {
    display: block
}

.oh-site a {
    color: var(--ink)
}

.oh-site a:hover {
    color: var(--accent)
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px
}

/* NAV over hero */
header.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,10,8,0.75) 0%, rgba(12,10,8,0.55) 40%, rgba(12,10,8,0.85) 100%)
}

.oh-site nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease
}

.oh-site nav.scrolled {
    background: rgba(20,17,14,0.92);
    backdrop-filter: saturate(140%) blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08)
}

.oh-site nav.scrolled .nav-inner {
    height: 74px
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height .3s ease
}

.logo {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    line-height: 1
}

.logo-img {
    height: 52px;
    width: auto;
    display: block
}

.logo:hover {
    color: #fff
}

.logo-name {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.01em
}

.logo-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 6px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color .15s
}

.nav-links a:hover {
    color: #fff
}

.nav-cta {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--ink) !important;
    padding: 11px 24px;
    border-radius: 0;
    transition: background .2s, border-color .2s
}

.nav-cta:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink) !important
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 40px 90px
}

.hero-kicker {
    font-family: var(--serif);
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px
}

.hero-kicker::before {
    content: "";
    width: 44px;
    height: 1px;
    background: var(--accent)
}

.oh-site h1 {
    font-family: var(--serif);
    font-size: clamp(38px,4.6vw,66px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 34px
}

.hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.hero-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    max-width: 440px
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 34px;
    transition: all .2s;
    cursor: pointer;
    border: none
}

.btn-solid {
    background: var(--accent);
    color: var(--ink)
}

.btn-solid:hover {
    background: #fff;
    color: var(--ink)
}

.btn-line {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5)
}

.btn-line:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: var(--accent);
    color: var(--ink)
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line)
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.hero-meta {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.2)
}

.hero-meta-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.hm-item {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 10px
}

.hm-item strong {
    color: #fff;
    font-weight: 600
}

.hm-star {
    color: var(--accent)
}

/* CLIENT BAR */
.clients {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 34px 0
}

.clients-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center
}

.clients-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0
}

.clients-list {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center
}

.client-name {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    color: #a39d93;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color .2s
}

.client-name:hover {
    color: var(--ink)
}

/* SECTION HEADS */
.kicker {
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px
}

.kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--accent)
}

h2.sh {
    font-family: var(--serif);
    font-size: clamp(28px,3vw,42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: uppercase
}

.sdesc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8
}

/* ABOUT */
.about {
    padding: 120px 0
}

.about-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center
}

.about-photo {
    overflow: hidden;
    aspect-ratio: 4/5
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-top: 22px
}

.about-stats {
    display: flex;
    gap: 56px;
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid var(--line)
}

.stat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 800;
    line-height: 1
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 9px
}

.about-cta {
    margin-top: 44px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.text-link {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
    transition: color .2s
}

.text-link:hover {
    color: var(--accent)
}

/* SERVICES editorial list */
.services {
    background: var(--cream);
    padding: 120px 0
}

.services-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px
}

.services-head .sdesc {
    max-width: 440px;
    justify-self: end
}

.svc-list {
    border-top: 1px solid var(--line)
}

.svc-row {
    display: grid;
    grid-template-columns: 80px 1.1fr 1.6fr auto;
    gap: 32px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: padding .25s
}

.svc-row:hover {
    padding-left: 14px
}

.svc-num {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted)
}

.svc-name {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink)
}

.svc-desc {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.7
}

.svc-arrow {
    color: var(--muted);
    transition: color .2s, transform .25s
}

.svc-row:hover .svc-arrow {
    color: var(--accent);
    transform: translateX(6px)
}

.svc-more {
    margin-top: 48px;
    text-align: center
}

.svc-extra {
    display: none
}

.svc-extra.open {
    display: block
}

#svc-toggle {
    background: none;
    border: none;
    cursor: pointer
}

/* WORK GALLERY */
.work {
    padding: 120px 0
}

.work-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px
}

.work-item {
    position: relative;
    overflow: hidden
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.work-item:hover img {
    transform: scale(1.04)
}

.work-item .wi-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 44px 26px 22px;
    background: linear-gradient(to top, rgba(12,10,8,0.72), transparent);
    color: #fff;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase
}

.wi-a {
    grid-column: span 4;
    aspect-ratio: 16/9
}

.wi-b {
    grid-column: span 2;
    aspect-ratio: auto
}

.wi-c {
    grid-column: span 2;
    aspect-ratio: 4/3
}

.wi-d {
    grid-column: span 2;
    aspect-ratio: 4/3
}

.wi-e {
    grid-column: span 2;
    aspect-ratio: 4/3
}

/* QUOTES dark */
.quotes {
    background: var(--ink);
    color: #fff;
    padding: 120px 0
}

.quotes .kicker {
    color: rgba(255,255,255,0.5)
}

.quotes h2.sh {
    color: #fff;
    margin-bottom: 16px
}

.quotes-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 52px
}

.quotes-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 14px
}

.quotes-rating .qr-stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 15px
}

.quotes-rating strong {
    color: #fff
}

.carousel {
    position: relative
}

.carousel-viewport {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 2px
}

.carousel-viewport::-webkit-scrollbar {
    display: none
}

.quote-card {
    flex: 0 0 calc((100% - 80px)/3);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.02);
    padding: 38px 34px
}

.carousel-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px
}

.car-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s,border-color .2s,color .2s
}

.car-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink)
}

.car-dots {
    display: flex;
    gap: 9px;
    margin-left: auto
}

.car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s,transform .2s
}

.car-dot.active {
    background: var(--accent);
    transform: scale(1.25)
}

.quote-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 22px
}

.quote-text {
    font-family: var(--sans);
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    flex: 1
}

.quote-name {
    margin-top: 26px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase
}

.quote-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    margin-top: 5px
}

/* AREAS */
.areas {
    padding: 120px 0
}

.areas-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: start
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0 40px;
    margin-top: 44px
}

.area-item {
    font-size: 15px;
    color: var(--text);
    padding: 13px 0;
    border-bottom: 1px solid var(--line)
}

.areas-note {
    margin-top: 30px;
    font-size: 14px;
    color: var(--muted)
}

/* CLOSING CTA over image */
.closing {
    position: relative;
    padding: 150px 40px;
    color: #fff;
    text-align: center
}

.closing-bg {
    position: absolute;
    inset: 0
}

.closing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.closing-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(12,10,8,0.62)
}

.closing-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto
}

.closing .kicker {
    color: rgba(255,255,255,0.6);
    justify-content: center
}

.closing h2 {
    font-family: var(--serif);
    font-size: clamp(30px,3.6vw,50px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 22px
}

.closing p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 44px
}

.closing-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* FOOTER */
.oh-site footer {
    background: var(--ink);
    color: #fff;
    padding: 90px 40px 36px;
    border-top: 1px solid rgba(255,255,255,0.08)
}

.footer-top {
    max-width: 1240px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px
}

.footer-name {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 300px
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.footer-contact a {
    font-size: 14.5px;
    color: rgba(255,255,255,0.8);
    text-decoration: none
}

.footer-contact a:hover {
    color: var(--accent)
}

.footer-col-head {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 22px
}

.footer-col-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-col-list a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color .15s
}

.footer-col-list a:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease
}

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

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

/* QUOTE MODAL */
.qm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12,10,8,0.72);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease,visibility .28s ease
}

.qm-overlay.open {
    opacity: 1;
    visibility: visible
}

.qm-panel {
    position: relative;
    width: 100%;
    max-width: 714px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--ink);
    color: #fff;
    border: 1px solid rgba(201,162,106,0.4);
    padding: 44px 32px 32px;
    transform: translateY(16px) scale(.985);
    transition: transform .3s ease
}

.qm-overlay.open .qm-panel {
    transform: none
}

.qm-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.22);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s,color .2s,border-color .2s;
    z-index: 2
}

.qm-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink)
}

.qm-kicker {
    font-family: var(--serif);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px
}

.qm-title {
    font-family: var(--serif);
    font-size: clamp(28px,3.4vw,38px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.qm-intro {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    margin-bottom: 0px
}



/* Closed modal must not intercept clicks.
   Uses #quote-modal (not .qm-overlay) so it outranks the rule above. */
#quote-modal:not(.open) {
    pointer-events: none !important;
}

#quote-modal.open {
    pointer-events: auto;
}



body.qm-lock {
    overflow: hidden
}

@media (max-width:520px) {
    .qm-panel {
        padding: 40px 20px 28px
    }
}

@media (max-width: 960px) {
    .nav-links a:not(.nav-cta) {
        display: none
    }

    .nav-inner {
        padding: 0 20px
    }

    .logo-img {
        height: 42px
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 12px;
        letter-spacing: 0.06em;
        white-space: nowrap
    }

    .about-inner,.areas-inner,.services-head {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .services-head .sdesc {
        justify-self: start
    }

    .svc-row {
        grid-template-columns: 48px 1fr auto;
        gap: 18px
    }

    .svc-desc {
        display: none
    }

    .quote-card {
        flex: 0 0 100%
    }

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

    .wi-a,.wi-b,.wi-c,.wi-d,.wi-e {
        grid-column: span 2;
        aspect-ratio: 16/10
    }

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

/* ===== Button color fixes (beat .oh-site a / .oh-site a:hover) ===== */
.oh-site a.btn-solid {
    color: var(--ink)
}

.oh-site a.btn-solid:hover {
    background: #fff;
    color: var(--ink)
}

.oh-site a.btn-line {
    color: #fff;
    border-color: rgba(255,255,255,0.5)
}

.oh-site a.btn-line:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}

.oh-site a.btn-dark {
    color: #fff
}

.oh-site a.btn-dark:hover {
    background: var(--accent);
    color: var(--ink)
}

.oh-site a.btn-outline {
    color: var(--ink);
    border-color: var(--line)
}

.oh-site a.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.oh-site a.text-link {
    color: var(--ink)
}

.oh-site a.text-link:hover {
    color: var(--accent)
} 
 