*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F8F4EE;
    --bg2: #F0E9DF;
    --bg3: #E8DFD2;
    --dark: #16100A;
    --dark2: #1E150D;
    --accent: #743b09;
    --accent2: #9B4F0F;
    --pale: #F5EBE0;
    --muted: #8A7060;
    --white: #FDFAF6;
    --border: rgba(116, 59, 9, .11);
    --bdark: rgba(253, 250, 246, .07);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

a.pc { display: block; text-decoration: none; color: inherit; }

/* ══ LOADER ══ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s ease, visibility 1s ease;
}

#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ld-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: .14em;
    overflow: hidden;
    text-align: center;
}

.ld-logo span {
    display: block;
    transform: translateY(105%);
    animation: ldslide .8s cubic-bezier(.16, 1, .3, 1) .2s forwards;
     text-align: center;
}

.ld-sub {
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 8px;
    overflow: hidden;
     text-align: center;
}

.ld-sub span {
    display: block;
    transform: translateY(100%);
    animation: ldslide .7s cubic-bezier(.16, 1, .3, 1) .4s forwards;
}

.ld-progress {
    width: 200px;
    height: 1px;
    background: rgba(253, 250, 246, .08);
    margin-top: 36px;
    overflow: hidden;
}

.ld-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--accent), var(--accent2));
    animation: ldprog 1.4s cubic-bezier(.4, 0, .2, 1) .3s forwards;
}

.ld-pct {
    font-size: .55rem;
    letter-spacing: .15em;
    color: rgba(253, 250, 246, .25);
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

@keyframes ldslide {
    to {
        transform: translateY(0);
    }
}

@keyframes ldprog {
    to {
        width: 100%;
    }
}

/* ══ CURSOR ══ */
.cur {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 8000;
    transform: translate(-50%, -50%);
    transition: width .4s cubic-bezier(.16, 1, .3, 1), height .4s cubic-bezier(.16, 1, .3, 1), background .3s, opacity .3s;
    mix-blend-mode: multiply;
}

.cur-r {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(116, 59, 9, .3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 7999;
    transform: translate(-50%, -50%);
    transition: width .5s cubic-bezier(.16, 1, .3, 1), height .5s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}

.cur.big {
    width: 64px;
    height: 64px;
    background: rgba(116, 59, 9, .06);
    border-radius: 50%;
}

.cur.big~.cur-r {
    width: 64px;
    height: 64px;
    border-color: transparent;
}

.cur-text {
    position: fixed;
    pointer-events: none;
    z-index: 8001;
    transform: translate(-50%, -50%);
    font-size: .52rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transition: opacity .3s;
    white-space: nowrap;
}

.cur.big .cur-text {
    opacity: 1;
}

@media(max-width:900px) {

    .cur,
    .cur-r,
    .cur-text {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ══ SIDE LABEL ══ */
.side-label {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    font-size: .52rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(116, 59, 9, .35);
    z-index: 200;
    white-space: nowrap;
    transition: opacity .5s;
}

@media(max-width:1200px) {
    .side-label {
        display: none;
    }
}

/* ══ NAV ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 30px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

nav.stuck {
    background: rgba(248, 244, 238, .96);
    backdrop-filter: blur(24px);
    padding: 18px 80px;
    border-bottom: 1px solid var(--border);
}

.n-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.n-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: .06em;
}

.n-logo-main em {
    font-style: normal;
    color: var(--accent);
}

.n-logo-sub {
    font-size: .5rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.n-links {
    display: flex;
    gap: 44px;
    list-style: none;
}

.n-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .3s;
    position: relative;
}

.n-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .35s cubic-bezier(.16, 1, .3, 1);
}

.n-links a:hover {
    color: var(--dark);
}

.n-links a:hover::after {
    width: 100%;
}

.n-btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
}

.n-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent2);
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.n-btn:hover::before {
    transform: translateX(0);
}

.n-btn span {
    position: relative;
    z-index: 1;
}

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    align-items: center;
    gap: 60px;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: -5%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(116, 59, 9, .055) 0%, transparent 65%);
    pointer-events: none;
}

.hero-left {
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.hero-tag {
    font-size: .61rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fu .7s ease .9s forwards;
}

.hero-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.03em;
    font-size: clamp(3.8rem, 8vw, 8rem);
    margin: auto 0;
}

.h-line {
    display: block;
    overflow: hidden;
}

.h-w {
    display: inline-block;
    opacity: 0;
    transform: translateY(108%);
}

.h-w.it {
    font-style: italic;
    color: var(--accent);
}

.h-w.ind {
    padding-left: clamp(30px, 5vw, 80px);
}

.hero-foot {
    opacity: 0;
    animation: fu .7s ease 1.4s forwards;
    border-top: 1px solid var(--border);
    padding-top: 36px;
}

.hero-desc {
    font-size: .88rem;
    line-height: 1.88;
    color: var(--muted);
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.b-prim {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .3s;
}

.b-prim::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent2);
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.b-prim:hover::before {
    transform: translateX(0);
}

.b-prim:hover {
    transform: translateY(-2px);
}

.b-prim span {
    position: relative;
    z-index: 1;
}

.b-txt {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-txt:hover {
    color: var(--dark);
}

.b-txt .ar {
    display: inline-block;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.b-txt:hover .ar {
    transform: translateX(6px);
}

/* hero right — floating visual */
.hero-right {
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    opacity: 0;
    animation: fu .9s ease 1.1s forwards;
}

.hero-card {
    background: var(--dark);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.hero-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
}

.hero-card-label {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .3);
    margin-bottom: 16px;
}

.hero-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.hero-card-num em {
    font-style: italic;
    color: var(--accent2);
}

.hero-card-desc {
    font-size: .78rem;
    color: rgba(253, 250, 246, .38);
    font-weight: 300;
    margin-top: 10px;
    line-height: 1.7;
}

.hero-mini-cards {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 420px;
}

.hmc {
    flex: 1;
    background: var(--bg2);
    padding: 20px;
    border: 1px solid var(--border);
}

.hmc-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.hmc-l {
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.hero-scroll {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fu .6s ease 1.8s forwards;
    z-index: 300;
}

.hs-t {
    font-size: .57rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
}

.hs-l {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: pulse 2.2s ease infinite;
}

/* ══ MARQUEE ══ */
.mq {
    background: var(--accent);
    padding: 15px 0;
    overflow: hidden;
}

.mq-t {
    display: flex;
    animation: mq 32s linear infinite;
    width: max-content;
}

.mq-i {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0 26px;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .6);
}

.mq-d {
    color: rgba(253, 250, 246, .25);
}

/* ══ DRAW LINE ══ */
.draw-line {
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
    opacity: .4;
}

.draw-line.on {
    width: 60px;
}

/* ══ ABOUT ══ */
.about {
    padding: 130px 80px;
    background: var(--bg);
}

.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ab-left {
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ab-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.02em;
}

.ab-h em {
    font-style: italic;
    color: var(--accent);
}

.ab-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.ab-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.ab-photo:hover img {
    transform: scale(1.04);
}

.ab-photo-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(22, 16, 10, .85), transparent);
    z-index: 1;
}

.ab-photo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
}

.ab-photo-role {
    font-size: .56rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .55);
    margin-top: 3px;
}

.ab-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
}

.ab-right {
    padding-left: 80px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ab-text {
    font-size: .9rem;
    line-height: 1.92;
    color: var(--muted);
    font-weight: 300;
}

.ab-text strong {
    color: var(--dark);
    font-weight: 500;
}

.ab-quote {
    border-left: 2px solid var(--accent);
    padding: 20px 24px;
    background: var(--pale);
}

.ab-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
}

.ab-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
}

.ab-stat {
    padding: 26px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ab-stat:nth-child(even) {
    border-right: none;
}

.ab-stat:nth-child(3),
.ab-stat:nth-child(4) {
    border-bottom: none;
}

.sn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.7rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.sl {
    font-size: .57rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
}

/* scramble num */
.scramble {
    display: inline-block;
}

/* ══ WHY ══ */
.why {
    background: var(--bg2);
    padding: 130px 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.why-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.02em;
}

.why-h em {
    font-style: italic;
    color: var(--accent);
}

.why-sub {
    font-size: .88rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.82;
    margin-top: 24px;
    max-width: 320px;
}

.why-items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.wi {
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.wi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(116, 59, 9, .04);
    transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.wi:hover::before {
    width: 100%;
}

.wi-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem;
    color: rgba(116, 59, 9, .4);
    padding-top: 4px;
    position: relative;
}

.wi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.32rem;
    font-weight: 400;
    margin-bottom: 9px;
    position: relative;
}

.wi-desc {
    font-size: .81rem;
    line-height: 1.77;
    color: var(--muted);
    font-weight: 300;
    position: relative;
}

/* ══ SERVICES ══ */
.services {
    background: var(--dark);
    padding: 130px 80px;
}

.sv-l {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .25);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.sv-l::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(253, 250, 246, .12);
}

.sv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 90px;
}

.sv-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -.02em;
}

.sv-h em {
    font-style: italic;
    color: var(--accent2);
}

.sv-sub {
    font-size: .87rem;
    line-height: 1.82;
    color: rgba(253, 250, 246, .3);
    font-weight: 300;
}

.sv-list {
    display: flex;
    flex-direction: column;
}

.sv-row {
    display: grid;
    grid-template-columns: 52px 1fr 160px 44px;
    align-items: start;
    gap: 40px;
    padding: 44px 0;
    border-top: 1px solid var(--bdark);
    transition: padding-left .5s cubic-bezier(.16, 1, .3, 1);
}

.sv-row:last-child {
    border-bottom: 1px solid var(--bdark);
}

.sv-row:hover {
    padding-left: 20px;
}

.sv-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem;
    color: rgba(116, 59, 9, .4);
    padding-top: 6px;
}

.sv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.sv-desc {
    font-size: .79rem;
    line-height: 1.8;
    color: rgba(253, 250, 246, .33);
    font-weight: 300;
    padding-top: 8px;
}

.sv-tags {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 7px;
}

.sv-tag {
    font-size: .57rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .18);
}

.sv-arr {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(253, 250, 246, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(253, 250, 246, .2);
    transition: all .4s;
    align-self: center;
    font-size: .85rem;
}

.sv-row:hover .sv-arr {
    border-color: var(--accent2);
    color: var(--accent2);
}

/* ══ PORTFOLIO ══ */
.portfolio {
    padding: 130px 0 0;
    background: var(--bg);
}

.pt-head {
    padding: 0 80px;
    margin-bottom: 60px;
}

.pt-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pt-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -.02em;
}

.pt-h em {
    font-style: italic;
    color: var(--accent);
}

.ft-bar {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.ft {
    padding: 9px 20px;
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: none;
    font-family: 'Inter', sans-serif;
    transition: all .3s;
}

.ft.on,
.ft:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pale);
}

/* scroll track */
.pt-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 44px 80px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.pt-scroll:active {
    cursor: grabbing;
}

.pt-scroll::-webkit-scrollbar {
    display: none;
}

.pt-track {
    display: flex;
    gap: 3px;
    width: max-content;
}

/* portfolio card */
.pc {
    flex: 0 0 auto;
    width: 370px;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.pc.wide {
    width: 600px;
}

.pc-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.pc:hover .pc-bg {
    transform: scale(1.05);
}

.bg-yls {
    background: linear-gradient(148deg, #152030 0%, #091018 100%);
}

.bg-yo {
    background: linear-gradient(148deg, #21153A 0%, #110920 100%);
}

.bg-al {
    background: linear-gradient(148deg, #390F17 0%, #1D0708 100%);
}

.bg-piv {
    background: linear-gradient(148deg, #0D2010 0%, #061208 100%);
}

.bg-hab {
    background: linear-gradient(148deg, #231708 0%, #130D04 100%);
}

.bg-ita {
    background: linear-gradient(148deg, #1E0F30 0%, #0E0818 100%);
}

.bg-onx {
    background: linear-gradient(148deg, #100F30 0%, #080818 100%);
}

.bg-are {
    background: linear-gradient(148deg, #201308 0%, #120804 100%);
}

.pc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 300;
    color: rgba(253, 250, 246, .55);
    letter-spacing: .04em;
    text-align: center;
    line-height: 1.15;
    transition: color .4s;
}

.pc-sub {
    font-size: .57rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .18);
    margin-top: 14px;
    text-align: center;
    transition: color .4s;
}

.pc:hover .pc-name {
    color: rgba(253, 250, 246, .95);
}

.pc:hover .pc-sub {
    color: rgba(253, 250, 246, .5);
}

/* peek layer */
.pc-peek {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    pointer-events: none;
}

.pc-peek-inner {
    width: 100%;
    background: rgba(22, 16, 10, .92);
    transform: translateY(100%);
    transition: transform .55s cubic-bezier(.16, 1, .3, 1);
    padding: 28px;
}

.pc:hover .pc-peek-inner {
    transform: translateY(0);
}

.pc-cat {
    font-size: .56rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .45);
    margin-bottom: 7px;
}

.pc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.pc-type {
    font-size: .7rem;
    color: rgba(253, 250, 246, .38);
    margin-top: 4px;
}

.pc-arr {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(253, 250, 246, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(253, 250, 246, .35);
    opacity: 0;
    transition: opacity .4s, border-color .3s, color .3s;
    font-size: .8rem;
}

.pc:hover .pc-arr {
    opacity: 1;
}

.pt-drag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 80px 90px;
    opacity: .3;
}

.pt-drag-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
}

.pt-drag-txt {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ══ QUOTE ══ */
.quote-block {
    background: var(--dark);
    padding: 110px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qb-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14rem, 28vw, 26rem);
    font-weight: 300;
    color: rgba(116, 59, 9, .04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.qb-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.qb-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: .7;
    margin-bottom: 20px;
    display: block;
}

.qb-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.48;
    letter-spacing: -.01em;
}

.qb-author {
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.qb-author::before,
.qb-author::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: .5;
}

/* ══ PROCESS ══ */
.process {
    background: var(--bg2);
    padding: 130px 80px;
}

.pr-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -.02em;
    margin-bottom: 90px;
}

.pr-h em {
    font-style: italic;
    color: var(--accent);
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
}

.pr-step {
    padding: 50px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .4s;
}

.pr-step:last-child {
    border-right: none;
}

.pr-step:hover {
    background: var(--white);
}

.pr-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.pr-step:hover .pr-bar {
    transform: scaleX(1);
}

.pr-n {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 300;
    color: rgba(116, 59, 9, .09);
    line-height: 1;
    margin-bottom: 34px;
    transition: color .4s;
}

.pr-step:hover .pr-n {
    color: rgba(116, 59, 9, .17);
}

.pr-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.pr-desc {
    font-size: .79rem;
    line-height: 1.78;
    color: var(--muted);
    font-weight: 300;
}

/* ══ FAQ ══ */
.faq {
    background: var(--bg);
    padding: 130px 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;
    align-items: start;
}

.faq-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.02em;
}

.faq-h em {
    font-style: italic;
    color: var(--accent);
}

.faq-hint {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.82;
    margin-top: 24px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    gap: 20px;
}

.faq-qt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
}

.faq-ic {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .65rem;
    color: var(--muted);
    transition: all .35s;
}

.faq-item.open .faq-ic {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.16, 1, .3, 1);
}

.faq-a-in {
    font-size: .84rem;
    line-height: 1.84;
    color: var(--muted);
    font-weight: 300;
    padding-bottom: 24px;
}

.faq-item.open .faq-a {
    max-height: 180px;
}

/* ══ CTA ══ */
.cta {
    padding: 180px 80px;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(116, 59, 9, .06) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.cta-ey {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.cta-ey::before,
.cta-ey::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: .5;
}

.cta-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 300;
    line-height: .92;
    letter-spacing: -.03em;
    margin-bottom: 48px;
}

.cta-h em {
    font-style: italic;
    color: var(--accent);
}

.cta-sub {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.78;
    max-width: 400px;
    margin: 0 auto 60px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.b-out {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 16px 40px;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all .35s;
    background: transparent;
    display: inline-block;
}

.b-out:hover {
    background: var(--accent);
    color: var(--white);
}

/* ══ FOOTER ══ */
footer {
    background: var(--dark);
    padding: 96px 80px 0;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--bdark);
}

.ft-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: .05em;
}

.ft-logo em {
    font-style: normal;
    color: var(--accent2);
}

.ft-tag {
    font-size: .79rem;
    color: rgba(253, 250, 246, .28);
    font-weight: 300;
    line-height: 1.78;
    max-width: 230px;
}

.ft-ct {
    font-size: .56rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(253, 250, 246, .18);
    margin-bottom: 26px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ft-links a {
    font-size: .8rem;
    color: rgba(253, 250, 246, .33);
    text-decoration: none;
    transition: color .3s;
    font-weight: 300;
}

.ft-links a:hover {
    color: var(--white);
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.ft-copy {
    font-size: .62rem;
    color: rgba(253, 250, 246, .15);
    letter-spacing: .05em;
}

/* ══ SECTION LABEL ══ */
.s-lbl {
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.s-lbl .dl {
    width: 0;
    height: 1px;
    background: var(--accent);
    opacity: .45;
    transition: width 1s cubic-bezier(.16, 1, .3, 1) .2s;
}

.s-lbl.on .dl {
    width: 30px;
}

/* ══ REVEAL ══ */
.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1);
}

.rv.on {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

/* word-by-word */
.wbw span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

.wbw.on span {
    opacity: 1;
    transform: translateY(0);
}

/* ══ PARALLAX ══ */
.parallax-el {
    will-change: transform;
}

/* ══ ANIMATIONS ══ */
@keyframes fu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mq {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .22;
    }
}

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {

    nav,
    nav.stuck {
        padding: 22px 40px;
    }

    .hero {
        padding: 0 40px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .about,
    .why,
    .services,
    .portfolio,
    .process,
    .faq,
    .cta,
    footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .pt-head,
    .pt-scroll,
    .pt-drag {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ab-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .ab-right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-top: 48px;
    }

    .ab-left {
        padding-right: 0;
    }

    .why-grid .why-left {
        max-width: 100%;
    }

    .sv-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sv-row {
        grid-template-columns: 44px 1fr 1fr;
        gap: 20px;
    }

    .sv-arr {
        display: none;
    }

    .pr-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pr-step:nth-child(2) {
        border-right: none;
    }

    .pr-step:nth-child(1),
    .pr-step:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width:768px) {
    .n-links {
        display: none;
    }

    .hero-title {
        font-size: clamp(3.2rem, 11vw, 5.5rem);
    }

    .h-w.ind {
        padding-left: 24px;
    }

    .hero-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .sv-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .sv-num,
    .sv-tags {
        display: none;
    }

    .pr-grid {
        grid-template-columns: 1fr;
    }

    .pr-step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .pr-step:last-child {
        border-bottom: none;
    }

    .pc {
        width: 280px;
        height: 380px;
    }

    .pc.wide {
        width: 340px;
    }

    .pt-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ft-bot {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-h {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }

    .quote-block {
        padding: 80px 30px;
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* ══ HERO BUBBLES ══ */
.bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.b1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 5%;
    background: radial-gradient(circle at 35% 35%, rgba(116, 59, 9, .13) 0%, rgba(116, 59, 9, .06) 40%, transparent 70%);
    animation: bfloat 16s ease-in-out infinite;
}

.b2 {
    width: 280px;
    height: 280px;
    top: 40%;
    right: 38%;
    background: radial-gradient(circle at 40% 35%, rgba(116, 59, 9, .1) 0%, rgba(116, 59, 9, .04) 45%, transparent 70%);
    animation: bfloat 20s ease-in-out infinite;
    animation-delay: -7s;
}

.b3 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 20%;
    background: radial-gradient(circle at 38% 38%, rgba(116, 59, 9, .09) 0%, rgba(116, 59, 9, .03) 50%, transparent 70%);
    animation: bfloat 13s ease-in-out infinite;
    animation-delay: -3s;
}

.b4 {
    width: 320px;
    height: 320px;
    top: 55%;
    left: -40px;
    background: radial-gradient(circle at 40% 35%, rgba(116, 59, 9, .08) 0%, rgba(116, 59, 9, .03) 45%, transparent 70%);
    animation: bfloat 18s ease-in-out infinite;
    animation-delay: -11s;
}

.b5 {
    width: 140px;
    height: 140px;
    top: 22%;
    right: 55%;
    background: radial-gradient(circle at 38% 38%, rgba(116, 59, 9, .07) 0%, transparent 65%);
    animation: bfloat 11s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes bfloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    25% {
        transform: translateY(-22px) translateX(8px) scale(1.03);
    }

    50% {
        transform: translateY(-10px) translateX(-12px) scale(0.97);
    }

    75% {
        transform: translateY(16px) translateX(6px) scale(1.02);
    }
}
.bg-taste {
  background: linear-gradient(148deg, #1A0A2E 0%, #2D1B6B 50%, #0D0520 100%);
}

/*hamburger menu*/
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:none;
  padding:4px;
  z-index:600;
}
.hamburger span{
  display:block;
  width:24px;
  height:1.5px;
  background:var(--dark);
  transition:all .4s cubic-bezier(.16,1,.3,1);
  transform-origin:center;
}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

.mobile-menu{
  position:fixed;
  inset:0;
  background:var(--bg);
  z-index:550;
  display:flex;
  align-items:center;
  justify-content:center;
  clip-path:inset(0 0 100% 0);
  transition:clip-path .7s cubic-bezier(.76,0,.24,1);
}
.mobile-menu.open{clip-path:inset(0 0 0% 0);}
.mm-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  text-align:center;
}
.mm-link{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,10vw,4.5rem);
  font-weight:300;
  color:var(--dark);
  text-decoration:none;
  letter-spacing:-.02em;
  line-height:1.1;
  opacity:0;
  transform:translateY(30px);
  transition:opacity .5s ease,transform .5s ease,color .3s;
}
.mm-link:hover{color:var(--accent);}
.mobile-menu.open .mm-link{opacity:1;transform:translateY(0);}
.mobile-menu.open .mm-link:nth-child(1){transition-delay:.15s;}
.mobile-menu.open .mm-link:nth-child(2){transition-delay:.22s;}
.mobile-menu.open .mm-link:nth-child(3){transition-delay:.29s;}
.mobile-menu.open .mm-link:nth-child(4){transition-delay:.36s;}
.mm-cta{
  margin-top:28px;
  background:var(--accent);
  color:var(--white);
  padding:14px 40px;
  font-size:.7rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  font-family:'Inter',sans-serif;
  font-weight:500;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .5s ease .42s,transform .5s ease .42s,background .3s;
}
.mm-cta:hover{background:var(--accent2);}
.mobile-menu.open .mm-cta{opacity:1;transform:translateY(0);}

@media(max-width:768px){
  .hamburger{display:flex;}
  .n-links,.n-btn{display:none;}
}