:root {
    --gold: #C9A84C;
    --gold-l: #E2C46F;
    --gold-d: #9A7A30;
    --gd: #0E2018;
    --gm: #1B3C2A;
    --gl: #2A5C3E;
    --w: #FFFFFF;
    --dim: rgba(255, 255, 255, 0.65);
    --dim2: rgba(255, 255, 255, 0.38)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--gd);
    color: var(--w);
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 6%;
    background: rgba(7, 16, 11, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    border: 1.5px solid rgba(201, 168, 76, 0.35)
}

.logo-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .4px
}

.logo-text span {
    display: block;
    font-size: 9.5px;
    color: var(--dim2);
    letter-spacing: 2.8px;
    text-transform: uppercase
}

.nav-ul {
    display: flex;
    gap: 26px;
    list-style: none
}

.nav-ul a {
    color: var(--dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .25s
}

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

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: var(--gd) !important;
    font-weight: 600 !important;
    padding: 9px 20px;
    border-radius: 7px;
    position: relative;
    overflow: visible;
    animation: btnPulse 2s ease-in-out infinite
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--gold-l), var(--gold), var(--gold-d));
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite;
    filter: blur(4px)
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; transform: scale(1) }
    50% { opacity: 0.8; transform: scale(1.03) }
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6), 0 0 15px rgba(201, 168, 76, 0.3)
    }
    50% {
        box-shadow: 0 0 0 12px rgba(201, 168, 76, 0), 0 0 30px rgba(201, 168, 76, 0.5)
    }
}

/* LANGUAGE TOGGLE */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all .25s;
    font-family: 'DM Sans', sans-serif
}

.lang-toggle:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold)
}

.lang-toggle .lang-label {
    display: block;
    line-height: 1
}

/* HAND POINTER */
.hand-pointer {
    position: fixed;
    z-index: 250;
    pointer-events: none;
    font-size: 34px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(201, 168, 76, 0.6)) drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
    animation: handFloat 2s ease-in-out infinite
}

@keyframes handFloat {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-8px) }
}

/* SCROLL HINT BUTTON */
.scroll-hint-btn {
    position: fixed;
    left: 32px;
    bottom: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    transition: opacity .3s, background .28s, border-color .28s, transform .28s;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 150
}

.scroll-hint-btn svg {
    width: 18px;
    height: 18px
}

.scroll-hint-btn:hover {
    background: rgba(201, 168, 76, .22);
    border-color: var(--gold);
    transform: scale(1.1)
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(6px) }
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 6% 70px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 75% 80% at 62% 42%, rgba(42, 92, 62, 0.52) 0%, transparent 68%), linear-gradient(158deg, #091610 0%, #1B3C2A 55%, #091610 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    width: 100%
}

.hero-left {
    position: relative;
    z-index: 2;
    animation: slideInLeft 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.hero-right {
    position: relative;
    z-index: 2;
    animation: slideInRight 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.32);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.bdot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: bl 2s infinite
}

@keyframes bl {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 16px
}

h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 1rem;
    color: var(--dim);
    line-height: 1.78;
    margin-bottom: 34px;
    font-weight: 300
}

.hero-sub strong {
    color: var(--gold);
    font-weight: 600
}

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

.bg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: var(--gd);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 26px rgba(201, 168, 76, .30);
    transition: transform .28s, box-shadow .28s
}

.bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(201, 168, 76, .44)
}

.bo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--w);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    text-decoration: none;
    transition: border-color .28s, background .28s
}

.bo:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .07)
}

/* hero visual */
.hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 11/6;
    max-width: 900px;
    border: 2px solid rgba(201, 168, 76, .3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.15);
    animation: float 6s ease-in-out infinite;
    background: rgba(201, 168, 76, 0.05)
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-12px)
    }
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(7, 16, 11, .8) 100%)
}

.hc1 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60px;
    height: 60px;
    border-top: 2.5px solid var(--gold);
    border-right: 2.5px solid var(--gold);
    border-radius: 0 13px 0 0
}

.hc2 {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    border-bottom: 2.5px solid var(--gold);
    border-left: 2.5px solid var(--gold);
    border-radius: 0 0 0 13px
}

.hero-chip {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    z-index: 3;
    background: rgba(7, 16, 11, .87);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    gap: 0
}

.cs {
    text-align: center;
    flex: 1;
    padding: 0 8px
}

.cs:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.cn {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1
}

.cl {
    font-size: 10px;
    color: var(--dim2);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
    display: block
}

/* SEC */
section {
    padding: 96px 6%
}

.sh {
    text-align: center;
    margin-bottom: 58px
}

.stag {
    display: inline-block;
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 11px
}

.sh h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.18
}

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

.dv {
    width: 50px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-d));
    margin: 16px auto 0;
    border-radius: 2px
}

.sh p {
    margin-top: 13px;
    font-size: .96rem;
    color: var(--dim);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75
}

/* ABOUT */
#about {
    background: linear-gradient(160deg, var(--gm) 0%, var(--gd) 100%)
}

.ag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto
}

.at p {
    color: var(--dim);
    font-size: .96rem;
    line-height: 1.85;
    margin-bottom: 16px
}

.ahl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px
}

.hi {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 17px;
    background: rgba(255, 255, 255, .03);
    border-left: 2.5px solid var(--gold);
    border-radius: 0 10px 10px 0
}

.hic {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, .13);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hic svg {
    width: 17px;
    height: 17px
}

.ht strong {
    display: block;
    font-size: 13px;
    color: var(--w);
    font-weight: 600;
    margin-bottom: 2px
}

.ht span {
    font-size: 12px;
    color: var(--dim2)
}

.aiw {
    position: relative
}

.ai {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    border: 1px solid rgba(201, 168, 76, .18)
}

.fb {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    color: var(--gd);
    border-radius: 13px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(201, 168, 76, .36)
}

.fb strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    display: block;
    line-height: 1
}

.fb span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

/* DOMAINS */
#domains {
    background: var(--gd);
    position: relative
}

#domains::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.dg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto
}

.dc {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(201, 168, 76, .09);
    border-radius: 13px;
    padding: 21px;
    transition: transform .3s, border-color .3s, background .3s;
    cursor: default
}

.dc:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, .36);
    background: rgba(201, 168, 76, .045)
}

.di {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, .09);
    border: 1px solid rgba(201, 168, 76, .16);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.di svg {
    width: 21px;
    height: 21px
}

.dc h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--w);
    margin-bottom: 4px
}

.dc p {
    font-size: 12px;
    color: var(--dim2);
    line-height: 1.55
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 6px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all .28s ease;
    cursor: pointer
}

.brochure-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold)
}

.brochure-link span {
    white-space: nowrap
}

.dc:hover .brochure-link {
    opacity: 1;
    transform: translateY(0)
}

.brochure-link:hover {
    background: rgba(201, 168, 76, .15);
    border-color: var(--gold)
}

/* DIRECTOR */
#director {
    background: linear-gradient(160deg, var(--gm) 0%, var(--gd) 100%)
}

.dw {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 58px;
    align-items: start
}

.df {
    position: relative
}

.dp {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 1.5px solid rgba(201, 168, 76, .26)
}

.dd1 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 62px;
    height: 62px;
    border-top: 2.5px solid var(--gold);
    border-right: 2.5px solid var(--gold);
    border-radius: 0 13px 0 0
}

.dd2 {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 62px;
    height: 62px;
    border-bottom: 2.5px solid var(--gold);
    border-left: 2.5px solid var(--gold);
    border-radius: 0 0 0 13px
}

.dnp {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 16, 11, .92) 0%, transparent 100%);
    border-radius: 0 0 20px 20px;
    padding: 38px 18px 18px
}

.dnp strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--w)
}

.dnp span {
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600
}

.dqm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 105px;
    color: var(--gold);
    opacity: .13;
    line-height: .7;
    display: block;
    margin-bottom: -14px
}

.drt {
    color: var(--gold);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block
}

.dm {
    color: var(--dim);
    font-size: .95rem;
    line-height: 1.92;
    font-style: italic;
    padding-left: 16px;
    border-left: 2.5px solid rgba(201, 168, 76, .28);
    margin-bottom: 26px
}

.ds {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--gold);
    font-style: italic
}

/* CONDITIONS */
#conditions {
    background: var(--gd)
}

#conditions::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: -96px -6% 0;
    margin-bottom: 58px
}

/* FAQ */
#faq {
    background: linear-gradient(160deg, var(--gm) 0%, var(--gd) 100%);
    position: relative
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .3s, background .3s
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, .28);
    background: rgba(201, 168, 76, .04)
}

.faq-item.active {
    border-color: rgba(201, 168, 76, .38);
    background: rgba(201, 168, 76, .06)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--w);
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color .25s
}

.faq-question:hover {
    color: var(--gold)
}

.faq-question span {
    flex: 1
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--gold);
    transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.faq-item.active .faq-icon {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease
}

.faq-item.active .faq-answer {
    max-height: 300px
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--dim);
    font-size: 13.5px;
    line-height: 1.78
}

.faq-answer p strong {
    color: var(--gold);
    font-weight: 600
}

.cw {
    max-width: 860px;
    margin: 0 auto
}

.cc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px
}

.ccard {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 15px;
    padding: 28px
}

.ccard.hl {
    background: rgba(201, 168, 76, .065);
    border-color: rgba(201, 168, 76, .32)
}

.ccard h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.ccard h3 svg {
    width: 17px;
    height: 17px
}

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

.cul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--dim);
    font-size: 13px;
    line-height: 1.55
}

.cul li::before {
    content: '◆';
    color: var(--gold);
    font-size: 8.5px;
    margin-top: 5px;
    flex-shrink: 0
}

.pb {
    background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .04));
    border: 1px solid rgba(201, 168, 76, .26);
    border-radius: 15px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    justify-content: space-between
}

.pc {
    text-align: center
}

.pl {
    font-size: 10.5px;
    color: var(--dim2);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 7px
}

.pa {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold)
}

.pn {
    color: var(--dim2);
    font-size: 12.5px;
    line-height: 1.65;
    border-left: 2px solid rgba(201, 168, 76, .26);
    padding-left: 14px;
    max-width: 250px
}

/* CTA */
#cta {
    background: linear-gradient(135deg, var(--gd) 0%, #091410 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 6%
}

#cta::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(201, 168, 76, .065) 0%, transparent 70%);
    pointer-events: none
}

.ci {
    position: relative;
    z-index: 1
}

.ci h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 13px
}

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

.ci p {
    color: var(--dim);
    font-size: .98rem;
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.75
}

.cn2 {
    margin-top: 16px;
    color: var(--dim2);
    font-size: 12px
}

/* CONTACT */
#contact {
    padding: 60px 6%;
    background: #07100A
}

.cr {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center
}

.citem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 168, 76, .11);
    border-radius: 12px;
    min-width: 200px
}

.cion {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, .1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cion svg {
    width: 17px;
    height: 17px
}

.cinf span {
    display: block;
    font-size: 10px;
    color: var(--dim2);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 3px
}

.cinf a,
.cinf strong {
    color: var(--w);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .25s
}

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

/* FOOTER */
footer {
    padding: 26px 6%;
    background: #040905;
    border-top: 1px solid rgba(201, 168, 76, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain
}

.fl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 700
}

footer p {
    color: var(--dim2);
    font-size: 11.5px
}

.footer-info {
    font-size: 10px;
    color: var(--dim2);
    text-align: center;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 168, 76, .06)
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 12px;
    align-items: center
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 8px;
    transition: all .28s
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--dim)
}

.social-link:hover {
    background: rgba(201, 168, 76, .2);
    border-color: var(--gold);
    transform: translateY(-2px)
}

.social-link:hover svg {
    fill: var(--gold)
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
    transition: all .28s;
    z-index: 999
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .55)
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

/* FORM MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease
}

.modal-overlay.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-container iframe {
    width: 100%;
    height: 100%;
    border: none
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.28s
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: #fff
}

.modal-close:hover {
    background: var(--gold);
    transform: scale(1.1)
}

.modal-close:hover svg {
    stroke: var(--gd)
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
}

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

/* RESPONSIVE */
@media(max-width:900px) {
    #hero {
        padding-bottom: 50px
    }

    .hero-content {
        grid-template-columns: 1fr
    }

    .hero-right {
        display: block;
        order: -1
    }

    .hero-img-wrap {
        aspect-ratio: 9/6;
        max-width: 100%;
        margin: 0 auto 30px;
        width: 100%
    }

    .hero-chip {
        padding: 10px 14px;
        bottom: 8px;
        left: 12px;
        right: 12px
    }

    .cn {
        font-size: 1.4rem
    }

    .cl {
        font-size: 8px
    }

    .hero-left {
        text-align: center
    }

    .badge {
        margin: 0 auto 24px
    }

    .hero-btns {
        justify-content: center
    }

    .ag,
    .dw,
    .cc {
        grid-template-columns: 1fr
    }

    .aiw {
        margin-top: 20px
    }

    .fb {
        right: 0;
        bottom: -16px
    }

    nav {
        padding: 12px 5%
    }

    nav .nav-ul {
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(7, 16, 11, 0.98);
        backdrop-filter: blur(18px);
        padding: 16px 5%;
        gap: 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        max-height: calc(100vh - 62px);
        overflow-y: auto
    }

    nav .nav-ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05)
    }

    nav .nav-ul li:last-child {
        border-bottom: none
    }

    nav .nav-ul a {
        display: block;
        padding: 14px 0;
        font-size: 15px
    }

    .btn-nav {
        justify-content: center;
        padding: 12px 20px
    }

    nav .nav-ul li:last-child {
        padding: 12px 0
    }

    .burger {
        display: flex
    }

    .lang-toggle {
        padding: 5px 8px;
        font-size: 10px
    }

    .hand-pointer {
        font-size: 30px
    }
}

@media(max-width:580px) {
    .hand-pointer {
        font-size: 26px
    }

    .hero-btns {
        flex-direction: column
    }

    .bg,
    .bo {
        justify-content: center;
        text-align: center
    }

    .pb {
        flex-direction: column;
        align-items: flex-start
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 16px
    }

    .footer-logo {
        order: -1
    }

    .social-links {
        justify-content: center
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px
    }

    .modal-container {
        height: 95vh;
        max-width: 100%
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: 8px;
        right: 8px
    }

    .modal-close svg {
        width: 18px;
        height: 18px
    }
}
