/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', system-ui, sans-serif; background: #040910; color: #fff; overflow-x: hidden; }

/* ── Typography ── */
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-inter { font-family: 'Inter', system-ui, sans-serif; }
.font-cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ── Navigation ── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A84C;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #D4AF5A !important; }

/* ── Mobile Menu ── */
#mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }

/* ── Hero ── */
.hero-headline { opacity: 0; transform: translateY(40px); animation: heroIn 1s ease forwards 0.3s; }
.hero-eyebrow { opacity: 0; transform: translateY(20px); animation: heroIn 1s ease forwards 0.15s; }
.hero-sub { opacity: 0; transform: translateY(20px); animation: heroIn 1s ease forwards 0.45s; }
.hero-ctas { opacity: 0; transform: translateY(20px); animation: heroIn 1s ease forwards 0.6s; }

@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Indicator ── */
.scroll-indicator { animation: bounce 2s infinite; display: block; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

/* ── Section Eyebrow ── */
.section-eyebrow { letter-spacing: 0.3em; }

/* ── Section Title ── */
.section-title { }

/* ── Section Subtitle ── */
.section-subtitle { }

/* ── Buttons ── */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #C9A84C;
    color: #040910;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.cta-primary:hover {
    background: #D4AF5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}
.cta-primary svg { transition: transform 0.3s ease; }
.cta-primary:hover svg { transform: translateX(4px); }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.cta-secondary:hover {
    border-color: #C9A84C;
    color: #D4AF5A;
    transform: translateY(-2px);
}

/* ── Service Cards ── */
.service-card {
    transition: background 0.5s ease;
}
.service-card:hover {
    background: rgba(255,255,255,0.03);
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}
.gallery-img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* ── Input Fields ── */
.input-field {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
}
.input-field::placeholder { color: rgba(255,255,255,0.3); }
.input-field:focus { border-bottom-color: #C9A84C; }

/* ── Submit Button ── */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #C9A84C;
    color: #040910;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-submit:hover {
    background: #D4AF5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}
.btn-submit svg { transition: transform 0.3s ease; }
.btn-submit:hover svg { transform: translateX(4px); }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
