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

:root {
    --bg-deep: #060e06;
    --bg-primary: #0a140a;
    --bg-card: #0d1a0d;
    --bg-card-hover: #111f11;
    --bg-elevated: #111c11;
    --green-dark: #1a3a1a;
    --green-mid: #2a5a2a;
    --green-accent: #3d7a3d;
    --gold: #c8a44e;
    --gold-light: #dfc078;
    --gold-dim: rgba(200, 164, 78, 0.15);
    --gold-glow: rgba(200, 164, 78, 0.3);
    --off-white: #f0ece4;
    --off-white-dim: rgba(240, 236, 228, 0.7);
    --off-white-muted: rgba(240, 236, 228, 0.45);
    --text-primary: #f0ece4;
    --text-secondary: rgba(240, 236, 228, 0.65);
    --text-muted: rgba(240, 236, 228, 0.4);
    --border: rgba(200, 164, 78, 0.12);
    --border-strong: rgba(200, 164, 78, 0.25);
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-gold: 0 0 40px rgba(200, 164, 78, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(6, 14, 6, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nav__logo-text {
    letter-spacing: 0.02em;
}

.nav__logo:hover .nav__logo-icon {
    border-color: var(--gold-light);
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

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

.nav__cta {
    background: var(--gold-dim);
    border: 1px solid var(--border-strong);
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--gold) !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
    background: rgba(200, 164, 78, 0.25);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26, 58, 26, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(200, 164, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(10, 20, 10, 1) 0%, transparent 60%);
    pointer-events: none;
}

.hero__bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 164, 78, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 78, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--border-strong);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--off-white);
    max-width: 720px;
    margin-bottom: 24px;
}

.hero__accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.hero__sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 100px;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(200, 164, 78, 0.3);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 164, 78, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--border-strong);
}

.btn--outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline-light {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(240, 236, 228, 0.25);
}

.btn--outline-light:hover {
    background: rgba(240, 236, 228, 0.08);
    border-color: var(--off-white);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── HERO STATS ── */
.hero__stats {
    position: absolute;
    right: 24px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.stat-card {
    background: rgba(13, 26, 13, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 200px;
    transition: transform var(--transition), border-color var(--transition);
}

.stat-card:hover {
    transform: translateX(-4px);
    border-color: var(--border-strong);
}

.stat-card--1 { border-left: 3px solid var(--gold); }
.stat-card--2 { border-left: 3px solid var(--green-accent); }
.stat-card--3 { border-left: 3px solid var(--gold-light); }

.stat-card__number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

/* ── SECTIONS ── */
.section {
    padding: 120px 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section__title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.section__desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── SERVICES ── */
.services {
    background:
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(26, 58, 26, 0.3) 0%, transparent 60%),
        var(--bg-deep);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: background var(--transition);
}

.service-card:hover .service-card__icon {
    background: rgba(200, 164, 78, 0.22);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── GALLERY ── */
.gallery {
    background: var(--bg-primary);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 7;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 14, 6, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── ABOUT ── */
.about {
    background:
        radial-gradient(ellipse 50% 50% at 100% 20%, rgba(26, 58, 26, 0.3) 0%, transparent 60%),
        var(--bg-deep);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.about__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.about__content {
    max-width: 480px;
}

.about__body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.value svg {
    flex-shrink: 0;
}

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

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--bg-deep) 100%);
}

.cta-section__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 164, 78, 0.08) 0%, transparent 60%);
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-section__text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-section__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
    background: var(--bg-primary);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact__detail span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

/* ── FORM ── */
.contact__form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact__form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 6px;
}

.contact__form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    background: rgba(240, 236, 228, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--gold);
    background: rgba(200, 164, 78, 0.04);
}

.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23c8a44e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form__group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    gap: 12px;
}

.form__success.show {
    display: flex;
}

.form__success p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ── FOOTER ── */
.footer {
    padding: 80px 0 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__brand p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer__links h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 20px;
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}

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

.footer__links address {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero__stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .gallery__item--large {
        grid-column: span 7;
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 5;
    }

    .about__inner {
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6, 14, 6, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform var(--transition);
    }

    .nav__links.open {
        transform: translateY(0);
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 24px 80px;
        min-height: auto;
    }

    .hero__stats {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        min-width: auto;
    }

    .section {
        padding: 80px 0;
    }

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

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

    .about__image img {
        height: 360px;
    }

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

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

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

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

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .btn--lg {
        width: 100%;
        justify-content: center;
    }
}
