:root{
    --ivory: #FAFAF7;
    --ivory2: #F3F2EC;
    --ivory3: #EAE8DF;
    --green: #1C3D2A;
    --green2: #2A5438;
    --green3: #3E7555;
    --green-light: rgba(28, 61, 42, 0.07);
    --gold: #A8780A;
    --gold2: #C49018;
    --gold3: #DFB040;
    --gold-pale: #FBF4DC;
    --brown: #6B4226;
    --text: #1A1A14;
    --text2: #3D3D30;
    --muted: #7A7A68;
    --border: rgba(28, 61, 42, 0.12);
    --border-gold: rgba(168, 120, 10, 0.2);
    --shadow-sm: 0 2px 12px rgba(28, 61, 42, 0.07);
    --shadow-md: 0 8px 40px rgba(28, 61, 42, 0.1);
    --shadow-lg: 0 24px 72px rgba(28, 61, 42, 0.13);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* ── CURSOR ── */
#dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, background .25s;
}

#ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(28, 61, 42, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

body:has(a:hover) #dot,
body:has(button:hover) #dot {
    width: 16px;
    height: 16px;
    background: var(--gold2);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(28, 61, 42, 0.1);
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.nav-brand-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
    letter-spacing: -.01em;
}

.nav-brand-sub {
    font-size: .6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-top: 1px;
}

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

.nav-links a {
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text2);
    text-decoration: none;
    position: relative;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--green);
}

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

.lang-row {
    display: flex;
    gap: 3px;
}

.lang-row button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 4px 9px;
    border-radius: 4px;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .07em;
    cursor: none;
    transition: all .22s;
    font-family: 'Jost', sans-serif;
}

.lang-row button.on,
.lang-row button:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 5px;
}

.ham span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--green);
    transition: all .3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* soft mesh bg */
.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(62, 117, 85, .07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 5% 20%, rgba(223, 176, 64, .06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 90%, rgba(28, 61, 42, .05) 0%, transparent 60%);
}

/* subtle dot grid */
.hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image: radial-gradient(circle, rgba(28, 61, 42, .18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* large decorative circle */
.hero-circle {
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 680px;
    height: 680px;
    border-radius: 50%;
    border: 1px solid rgba(28, 61, 42, .07);
    pointer-events: none;
}

.hero-circle::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(168, 120, 10, .1);
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: 130px;
    border-radius: 50%;
    border: 1px solid rgba(28, 61, 42, .05);
}

/* floating leaf particles */
.hero-lf {
    position: absolute;
    pointer-events: none;
    font-size: 1.2rem;
    opacity: 0;
    animation: lfloat var(--d, 9s) ease-in-out var(--dl, 0s) infinite;
}

@keyframes lfloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }

    30% {
        opacity: .3;
    }

    70% {
        opacity: .2;
    }

    100% {
        transform: translateY(-80px) rotate(180deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 4;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 56px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--green);
    letter-spacing: -.02em;
}

.hero-h1 span {
    display: block;
    color: var(--text);
    font-weight: 400;
    font-style: italic;
}

.hero-sub {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 24px 0 36px;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.btn-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.btn-fill:hover::before {
    transform: scaleX(1);
}

.btn-fill span {
    position: relative;
    z-index: 1;
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(28, 61, 42, .28);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--green);
    padding: 13px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(28, 61, 42, .25);
    font-weight: 500;
    font-size: .82rem;
    text-decoration: none;
    cursor: none;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--green);
    background: rgba(28, 61, 42, .04);
}

/* hero stat bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.hstat {
    padding: 18px 16px;
    border-right: 1px solid var(--border);
    transition: background .3s;
}

.hstat:last-child {
    border-right: none;
}

.hstat:hover {
    background: var(--green-light);
}

.hstat-n {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
}

.hstat-l {
    font-size: .67rem;
    color: var(--muted);
    margin-top: 5px;
    letter-spacing: .03em;
}

/* hero right — 3d floating card */
.hero-right {
    perspective: 1200px;
}

.card3d {
    transform-style: preserve-3d;
    animation: tilt 7s ease-in-out infinite;
    position: relative;
}

@keyframes tilt {

    0%,
    100% {
        transform: rotateY(-5deg) rotateX(3deg);
    }

    50% {
        transform: rotateY(5deg) rotateX(-3deg);
    }
}

.card3d-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 32px 80px rgba(28, 61, 42, .12), 0 2px 0 rgba(255, 255, 255, .8) inset;
    position: relative;
    overflow: hidden;
}

.card3d-body::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 117, 85, .08), transparent 70%);
}

.card3d-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 176, 64, .1), transparent 70%);
}

.c3d-icon {
    font-size: 3.6rem;
    margin-bottom: 16px;
    display: block;
    animation: iconbob 4s ease-in-out infinite;
}

@keyframes iconbob {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.c3d-h {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 9px;
    position: relative;
    z-index: 1;
}

.c3d-p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

.c3d-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}

.c3d-m {
    background: var(--ivory2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: all .3s;
}

.c3d-m:hover {
    background: var(--green-light);
    border-color: rgba(28, 61, 42, .2);
    transform: translateY(-3px);
}

.c3d-m .mi {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.c3d-m h4 {
    font-size: .72rem;
    font-weight: 600;
    color: var(--green);
}

.c3d-m p {
    font-size: .62rem;
    color: var(--muted);
    margin-top: 2px;
}

.card3d-shadow {
    position: absolute;
    bottom: -26px;
    left: 8%;
    right: 8%;
    height: 26px;
    background: radial-gradient(ellipse, rgba(28, 61, 42, .18), transparent 70%);
    border-radius: 50%;
    animation: cshadow 7s ease-in-out infinite;
}

@keyframes cshadow {

    0%,
    100% {
        transform: scaleX(.9);
        opacity: .7;
    }

    50% {
        transform: scaleX(1.08);
        opacity: .4;
    }
}

/* ── MARQUEE ── */
.mq-wrap {
    background: var(--green);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.mq-track {
    display: flex;
    width: max-content;
    animation: mqscroll 36s linear infinite;
}

.mq-track:hover {
    animation-play-state: paused;
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    padding: 0 28px;
    white-space: nowrap;
}

.mq-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    flex-shrink: 0;
}

@keyframes mqscroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── SECTION COMMONS ── */
section {
    padding: 112px 56px;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--green);
    margin-bottom: 16px;
}

.title.dark {
    color: var(--text);
}

.subtitle {
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 500px;
}

/* ── ABOUT ── */
#about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--ivory2);
    border-radius: 28px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: framehov 6s ease-in-out infinite;
}

@keyframes framehov {

    0%,
    100% {
        transform: rotateY(-2deg) rotateX(1deg);
    }

    50% {
        transform: rotateY(2deg) rotateX(-1deg);
    }
}

.about-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(55deg, transparent, transparent 40px, rgba(28, 61, 42, .025) 40px, rgba(28, 61, 42, .025) 41px);
}

.about-accent {
    position: absolute;
    left: -12px;
    top: 12%;
    width: 4px;
    height: 55%;
    border-radius: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold2), transparent);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    border: 2px solid #fff;
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 16px 48px rgba(28, 61, 42, .2);
    transform: rotate(3deg);
    animation: badgebob 5s ease-in-out infinite;
}

@keyframes badgebob {

    0%,
    100% {
        transform: rotate(3deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-7px);
    }
}

.about-badge .bn {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold3);
    display: block;
    line-height: 1;
}

.about-badge .bl {
    font-size: .62rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
    margin-top: 3px;
}

/* about image placeholder note */
.img-note {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(28, 61, 42, .7);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .6);
    font-size: .7rem;
    text-align: center;
    padding: 9px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.about-p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.tag {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 500;
    background: var(--ivory2);
    color: var(--green);
    border: 1px solid var(--border);
    transition: all .3s;
    cursor: none;
}

.tag:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.about-feats {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 28px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--ivory);
    transition: all .3s;
}

.feat:hover {
    background: var(--green-light);
    border-color: rgba(28, 61, 42, .2);
    transform: translateX(5px);
}

.feat-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feat-txt h4 {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
}

.feat-txt p {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 1px;
}

/* ── FIRMS ── */
#firms {
    background: var(--ivory2);
    position: relative;
    overflow: hidden;
}

.firms-ornament {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(28, 61, 42, .06);
    pointer-events: none;
}

.firms-ornament::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(168, 120, 10, .06);
}

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

.firms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.firm-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    cursor: none;
}

.firm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green3), var(--gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.firm-card:hover::before {
    transform: scaleX(1);
}

.firm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 72px rgba(28, 61, 42, .12);
    border-color: rgba(28, 61, 42, .18);
}

.firm-num {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(28, 61, 42, .06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
}

.firm-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--green-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 20px;
    transition: transform .3s;
}

.firm-card:hover .firm-icon-wrap {
    transform: scale(1.08) rotate(-5deg);
}

.firm-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.firm-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 22px;
}

.firm-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green-light);
    border: 1px solid var(--border);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.firm-badge::before {
    content: '●';
    font-size: .45rem;
    color: var(--gold2);
}

/* ── SERVICES ── */
#services {
    background: #fff;
}

.serv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 60px;
}

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

.serv-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    cursor: none;
}

.serv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.serv-card:hover::after {
    transform: scaleX(1);
}

.serv-card:hover {
    transform: translateY(-7px);
    border-color: rgba(28, 61, 42, .18);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.serv-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--gold-pale);
    border: 1px solid rgba(168, 120, 10, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: transform .3s;
}

.serv-card:hover .serv-ico {
    transform: scale(1.1) rotate(-6deg);
}

.serv-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 9px;
}

.serv-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.78;
}

.serv-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--green2);
    opacity: 0;
    transform: translateY(4px);
    transition: all .3s;
}

.serv-card:hover .serv-more {
    opacity: 1;
    transform: translateY(0);
}

/* ── COLD STORAGE ── */
#storage {
    background: var(--green);
    position: relative;
    overflow: hidden;
}

#storage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255, 255, 255, .03) 80px, rgba(255, 255, 255, .03) 81px),
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255, 255, 255, .03) 80px, rgba(255, 255, 255, .03) 81px);
    pointer-events: none;
}

.stor-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 60px;
}

.stor-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold3);
    line-height: 1;
    text-shadow: 0 0 60px rgba(223, 176, 64, .25);
    text-align: right;
}

.stor-big-label {
    font-size: .73rem;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 8px;
    text-align: right;
}

.stor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stor-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    overflow: hidden;
    transition: all .4s;
}

.stor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .25);
}

.stor-head {
    padding: 30px;
    background: rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.stor-head::after {
    content: '❄';
    position: absolute;
    right: -6px;
    bottom: -16px;
    font-size: 5rem;
    opacity: .05;
}

.stor-n {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .08);
    line-height: 1;
    margin-bottom: 8px;
}

.stor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.25;
}

.stor-loc {
    font-size: .65rem;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.stor-body {
    padding: 26px 30px;
}

.stor-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.stor-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .58);
}

.stor-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold2);
    flex-shrink: 0;
    opacity: .8;
}

.bar-wrap {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: .64rem;
    color: rgba(255, 255, 255, .32);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bar-track {
    height: 5px;
    background: rgba(255, 255, 255, .08);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--green3), var(--gold2));
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
}

.bar-fill.go {
    width: var(--w, 70%);
}

.bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 16px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .25));
    animation: bshim 2s ease-in-out infinite;
}

.bar-fill {
    position: relative;
}

@keyframes bshim {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.bar-num {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold3);
}

.bar-unit {
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-left: 4px;
}

/* ── PROCESS ── */
#process {
    background: var(--ivory2);
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 176, 64, .06), transparent 70%);
    pointer-events: none;
}

.proc-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 68px;
}

.proc-intro .eyebrow {
    justify-content: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-line {
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--green3), var(--gold2));
    opacity: .2;
}

.step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 2;
}

.step-orb {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all .4s;
}

.step:hover .step-orb {
    transform: scale(1.12) translateY(-6px);
    border-color: var(--gold2);
    box-shadow: 0 18px 50px rgba(168, 120, 10, .15);
}

.step-n {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold3);
    font-size: .62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.step-t {
    font-weight: 600;
    font-size: .87rem;
    color: var(--text);
    margin-bottom: 7px;
}

.step-d {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.65;
}

.steps-hl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.shl {
    padding: 28px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .3s;
}

.shl:last-child {
    border-right: none;
}

.shl:hover {
    background: var(--green-light);
}

.shl-n {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
}

.shl-l {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 5px;
}

/* ── WHY US ── */
#why {
    background: #fff;
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 117, 85, .05), transparent 70%);
    pointer-events: none;
}

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

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

.why-card {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    transition: all .4s;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(28, 61, 42, .04), transparent);
    transition: height .4s;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(28, 61, 42, .2);
    box-shadow: var(--shadow-md);
}

.why-ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--gold-pale);
    border: 1px solid rgba(168, 120, 10, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: transform .3s;
}

.why-card:hover .why-ico {
    transform: scale(1.1) rotate(5deg);
}

.why-t {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 9px;
}

.why-d {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.78;
}

/* ── GALLERY ── */
#gallery {
    background: var(--ivory2);
}

.gal-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 44px;
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
}

.gi {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green3);
    position: relative;
    cursor: none;
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s;
}

.gi:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gi:nth-child(1) {
    grid-row: span 2;
    font-size: 4.5rem;
}

.gi-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 61, 42, .82), transparent 52%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.gi:hover .gi-ov {
    opacity: 1;
}

.gi-ov-t {
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
}

.gal-note {
    text-align: center;
    margin-top: 18px;
    font-size: .75rem;
    color: var(--muted);
}

/* ── CONTACT ── */
#contact {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 117, 85, .05), transparent 70%);
    pointer-events: none;
}

.con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.cb {
    margin-bottom: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cb-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    background: var(--green-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cb h4 {
    font-size: .7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cb p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.7;
}

.con-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.cf-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 26px;
}

.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 7px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 12px 15px;
    color: var(--text);
    font-family: 'Jost', sans-serif;
    font-size: .87rem;
    outline: none;
    transition: all .3s;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(28, 61, 42, .07);
}

.fg textarea {
    height: 108px;
    resize: vertical;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ── FOOTER ── */
footer {
    background: var(--green);
    padding: 64px 56px 28px;
}

.ft-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ft-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold3);
}

.ft-tagline {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 10px;
    line-height: 1.75;
}

.ft-col h5 {
    font-size: .62rem;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-col a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .22s;
}

.ft-col a:hover {
    color: var(--gold3);
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-bot p,
.ft-bot a {
    font-size: .7rem;
    color: rgba(255, 255, 255, .22);
    text-decoration: none;
}

.ft-bot a:hover {
    color: rgba(255, 255, 255, .5);
}

/* ── SCROLL REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease;
}

.rv.on {
    opacity: 1;
    transform: translateY(0);
}

.rl {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity .75s ease, transform .75s ease;
}

.rl.on {
    opacity: 1;
    transform: translateX(0);
}

.rr {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .75s ease, transform .75s ease;
}

.rr.on {
    opacity: 1;
    transform: translateX(0);
}

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    nav {
        padding: 0 24px;
    }

    section {
        padding: 80px 24px;
    }

    footer {
        padding: 44px 24px 24px;
    }

    .hero-inner {
        padding: 96px 24px 60px;
        gap: 40px;
    }

    .about-grid,
    .firms-head,
    .serv-head,
    .stor-intro,
    .con-grid,
    .gal-head,
    .why-head {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .stor-big-num,
    .stor-big-label {
        text-align: left;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none;
    }

    .ham {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .firms-grid,
    .stor-grid,
    .serv-grid,
    .gal-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps,
    .steps-hl {
        grid-template-columns: 1fr 1fr;
    }

    .steps-line {
        display: none;
    }

    .gi:nth-child(1) {
        grid-row: auto;
    }

    #dot,
    #ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    .btn-fill,
    .btn-ghost,
    .firm-card,
    .serv-card,
    .why-card,
    .gi,
    .tag,
    .lang-row button,
    .ham {
        cursor: pointer;
    }
}

@media(max-width:560px) {

    .firms-grid,
    .stor-grid,
    .serv-grid,
    .gal-grid,
    .why-grid,
    .steps,
    .steps-hl {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hstat:nth-child(even) {
        border-right: none;
    }

    .hstat:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .ft-top {
        grid-template-columns: 1fr;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }
}

nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, .98);
    padding: 22px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    backdrop-filter: blur(16px);
}

