/* ====== VARIABLES ====== */
:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --text: #f0ede8;
    /* Warm white */
    --text-muted: #6b6560;
    --accent: #c9a96e;
    /* Golden warm */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --transition: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* ====== TYPOGRAPHY ====== */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h2 em {
    font-style: italic;
    color: var(--accent);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-round {
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

.btn-primary-light {
    background: var(--text);
    color: var(--bg);
}

.btn-primary-light:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(240, 237, 232, 0.3);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-dark-custom {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

.btn-dark-custom:hover {
    background: #b8946a;
    transform: translateY(-2px);
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 3px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5% 8rem;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(240, 237, 232, 0.7);
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.01% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ====== GALLERY ====== */
.gallery-section {
    padding: 7rem 0;
    background: var(--bg);
}

.gallery-section .section-header {
    margin-bottom: 3rem;
}

.gallery-section .section-header h2 em {
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 180px;
    gap: 1rem;
}

.g-item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.g-item.g-tall {
    grid-row: span 2;
}

.g-item.g-wide {
    grid-column: span 2;
}

/* CSS Gallery Placeholders - Dark cinematic tones */
.photo-ph-1 {
    background: linear-gradient(135deg, #1a0f0f, #2d1a1a);
}

.photo-ph-2 {
    background: linear-gradient(135deg, #0f1a1a, #1a2d2d);
}

.photo-ph-3 {
    background: linear-gradient(135deg, #1a1a0f, #2d2d1a);
}

.photo-ph-4 {
    background: linear-gradient(135deg, #1a0f0f, #4d2020);
}

.photo-ph-5 {
    background: linear-gradient(135deg, #0f0f1a, #1a1a4d);
}

.photo-ph-6 {
    background: linear-gradient(135deg, #0f1a0f, #1a4d1a);
}

/* Gallery hover overlay */
.g-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.g-item:hover .g-overlay {
    opacity: 1;
}

.g-overlay span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    font-style: italic;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.3rem;
}

/* ====== LAYANAN ====== */
.services-photo {
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-card-photo {
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card-photo:hover {
    background: rgba(201, 169, 110, 0.05);
    border-color: rgba(201, 169, 110, 0.2);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.service-card-photo i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card-photo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card-photo p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

/* ====== ABOUT ====== */
.about-photo {
    padding: 7rem 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-side {
    position: relative;
}

.about-img-frame {
    overflow: hidden;
}

.about-img-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    filter: grayscale(30%);
}

.exp-badge-photo {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--bg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.exp-badge-photo h2 {
    font-size: 3rem;
    color: var(--bg);
    margin: 0;
}

.exp-badge-photo p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(10, 10, 10, 0.8);
    margin: 0;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-content h2 em {
    color: var(--accent);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.about-stats div {
    border-top: 1px solid var(--accent);
    padding-top: 1rem;
    flex: 1;
}

.about-stats h3 {
    font-size: 2rem;
    color: var(--accent);
    margin: 0;
}

.about-stats span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ====== CTA PHOTO ====== */
.cta-photo {
    padding: 8rem 0;
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-photo h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-photo h2 em {
    color: var(--accent);
}

.cta-photo p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ====== FOOTER PHOTO ====== */
.footer-photo {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-photo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-photo a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 0.3rem;
}

.social-photo a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

/* ====== ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-img-frame img {
        height: 400px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .navbar .btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .g-item.g-tall,
    .g-item.g-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}