:root {
    --bg-dark: #080808;
    --bg-surface: #111111;
    --bg-card: #1a1a1a;
    --accent: #ffffff;
    --accent-gold: #c9a84c;
    --accent-muted: #888888;
    --text-main: #efefef;
    --text-dim: #999999;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.18);
    --font-display: 'Cormorant Garamond', 'Didot', Georgia, serif;
    --font-body: 'Jost', 'Inter', system-ui, sans-serif;
    --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 2px;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.08;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.15em;
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 0.12em;
}

h4 {
    font-size: 1rem;
    letter-spacing: 0.18em;
}

h5 {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2.2rem;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1px;
    background: var(--accent-gold);
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: 9rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .eyebrow {
    padding-left: 0;
    padding-right: 2.2rem;
}

.section-header .eyebrow::before {
    display: none;
}

.section-header .eyebrow::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--accent-gold);
    margin: 1rem auto 0;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: 0.04em;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 0;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
}

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

.logo-link img {
    height: 46px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-link:hover img {
    opacity: 0.75;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* ── Hero ── */
.hero {
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0.35) 0%,
        rgba(8,8,8,0.15) 40%,
        rgba(8,8,8,0.55) 80%,
        rgba(8,8,8,0.95) 100%
    );
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    padding: 2rem;
    animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero .eyebrow {
    color: var(--accent-gold);
    animation: heroFadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    animation: heroFadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(239,239,239,0.7);
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeUp 1s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.95rem 2.8rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    transition: var(--transition);
    border: 1px solid;
    cursor: pointer;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

/* ── About ── */
.about {
    background: var(--bg-dark);
}

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

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -1.5rem 1.5rem 1.5rem -1.5rem;
    border: 1px solid var(--accent-gold);
    opacity: 0.3;
    border-radius: var(--radius);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    position: relative;
    z-index: 1;
}

.about-text .eyebrow {
    margin-bottom: 0.8rem;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 0.5rem;
}

/* ── Features ── */
.features {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.feature-card {
    background: var(--bg-surface);
    padding: 3.5rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    background: var(--bg-card);
    transform: none;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card h4 {
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* ── Pricing ── */
.pricing {
    background: var(--bg-dark);
}

.pricing-group {
    margin-bottom: 7rem;
    padding-bottom: 7rem;
    border-bottom: 1px solid var(--border);
}

.pricing-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.price-card {
    background: var(--bg-surface);
    padding: 3rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    border-color: var(--border-strong);
}

.price-card.featured {
    border-color: var(--accent-gold);
    background: var(--bg-card);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.06);
    position: relative;
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 0 0 3px 3px;
}

.price-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.price-header h5 {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--text-main);
}

.price-card.featured .price-amount {
    color: var(--accent-gold);
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.price-features li::before {
    content: '—';
    color: var(--accent-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ── Gallery ── */
.gallery {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.3);
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    filter: grayscale(0.6) brightness(0.85);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0) brightness(1);
}

/* ── Contact ── */
.contact {
    background: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.contact-info .eyebrow {
    margin-bottom: 1rem;
}

.contact-info h3 {
    margin-bottom: 3rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.info-item {
    margin-bottom: 2.2rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.info-item p,
.info-item a {
    font-size: 0.95rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--accent-gold);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.6rem;
    color: var(--text-dim);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease, background 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--bg-card);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(153,153,153,0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group.full .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ── Footer ── */
footer {
    padding: 4.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--bg-surface);
}

.footer-logo {
    height: 38px;
    margin-bottom: 2.2rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.2rem;
}

.social-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.35s ease;
}

.social-links a:hover {
    color: var(--text-main);
}

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

.copyright {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    opacity: 0.6;
}

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

@media (max-width: 992px) {
    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 360px;
    }

    .about-image::before {
        display: none;
    }
}

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

    section {
        padding: 5.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5px;
    }

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

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}