/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #c9a84c;
    --gold-light: #d4b65e;
    --gold-dim: rgba(201, 168, 76, 0.12);
    --black: #0a0a0a;
    --black-mid: #111111;
    --black-card: #161616;
    --white: #f5f3ef;
    --white-pure: #ffffff;
    --text: #1a1a1a;
    --text-mid: #555;
    --text-dim: #888;
    --border: #e0ddd6;
    --border-dark: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
}

em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--gold);
}

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

.tag-light {
    color: var(--gold);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

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

.btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.btn-large {
    padding: 18px 44px;
    font-size: 0.95rem;
}

.btn-nav {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--black);
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
}

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

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero.jpg') center/cover no-repeat;
    transform: scale(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10,10,10,0.7) 0%,
            rgba(10,10,10,0.4) 40%,
            rgba(10,10,10,0.6) 70%,
            rgba(10,10,10,0.95) 100%
        );
}

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    padding: 160px 0 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}

.hero h1 em {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hero-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
    padding: 32px 0;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === Sections === */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--black);
}

/* === About / Bento === */
.about-header {
    margin-bottom: 64px;
}

.about-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
}

.bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 480px;
}

.bento-large {
    grid-row: 1 / -1;
    background: var(--black);
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.bento-large::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
}

.bento-large .bento-inner { position: relative; }

.bento-large h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.bento-large p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.bento-small {
    background: var(--white-pure);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.bento-small:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.bento-small h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 8px;
}

.bento-small p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.bento-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* === Image Break === */
.image-break {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
}

.image-break-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.image-break-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.image-break-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

/* === Categories === */
.section-header-left {
    margin-bottom: 56px;
}

.section-header-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.section-dark .section-header-left h2 {
    color: #fff;
}

.section-dark .section-header-left em {
    color: var(--gold);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--black);
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cat-item:hover {
    background: var(--black-card);
    color: var(--gold);
}

.cat-arrow {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.cat-item:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* === Why Us === */
.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.why-item:first-child {
    border-top: 1px solid var(--border);
}

.why-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.why-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.85;
}

/* === CTA === */
.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('cta-bg.jpg') center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 36px;
    letter-spacing: -0.03em;
}

/* === Contact === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
}

.contact-left em {
    color: var(--gold);
}

.contact-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

.contact-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
}

.contact-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

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

/* === Footer === */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .section { padding: 80px 0; }

    .hero h1 { font-size: 2.5rem; }

    .hero-content { padding: 140px 0 40px; }

    .hero-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .bento-large {
        grid-row: auto;
        min-height: 300px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section { padding: 100px 0; }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links-grid {
        gap: 48px;
    }

    .image-break { height: 30vh; }

    .image-break-text strong { font-size: 1.4rem; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        border-bottom: 1px solid var(--border-dark);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn { text-align: center; }

    .about-header h2 { font-size: 1.8rem; }

    .contact-card { padding: 28px 20px; }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
