/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Raleway', sans-serif;
    background: #0a0a0a;
    color: #f5f0e8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: #d4a853; color: #0a0a0a; padding: 8px 20px; border-radius: 0 0 8px 8px;
    z-index: 9999; font-weight: 600; font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --emerald-deep: #064e3b;
    --emerald-dark: #022c22;
    --emerald-mid: #059669;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --gold-pale: #f5e6b8;
    --cream: #f5f0e8;
    --cream-dark: #e8dfd0;
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --text-muted: #a09888;
    --text-subtle: #6b6560;
    --border: rgba(212,168,83,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.nav.scrolled { background: rgba(10,10,10,0.95); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); letter-spacing: 0.02em; }
.nav__logo-icon { color: var(--gold); }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__menu a { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; transition: color var(--transition); }
.nav__menu a:hover { color: var(--gold); }
.nav__cta {
    background: var(--gold); color: #0a0a0a !important; padding: 10px 24px;
    border-radius: 100px; font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.08em;
    text-transform: uppercase; transition: all var(--transition);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,168,83,0.3); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle-line { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all var(--transition); }

/* Mobile nav */
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; gap: 28px;
        transform: translateX(100%); transition: transform var(--transition);
    }
    .nav__menu.open { transform: translateX(0); }
    .nav__menu a { font-size: 1.1rem; color: var(--cream); }
    .nav__toggle.active .nav__toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
    .nav__toggle.active .nav__toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 72px 24px 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__gradient { position: absolute; inset: 0; z-index: 1; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.6) 60%, #0a0a0a 100%);
}
.hero__content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 40px 0 120px; }
.hero__eyebrow {
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
}
.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700; line-height: 1.05;
    color: var(--cream); margin-bottom: 24px;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted);
    max-width: 560px; margin: 0 auto 40px; line-height: 1.8;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero__scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-subtle); font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 100px; font-weight: 600; font-size: 0.9375rem;
    transition: all var(--transition); letter-spacing: 0.02em;
}
.btn--gold { background: var(--gold); color: #0a0a0a; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,0.3); }
.btn--outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: #0a0a0a; }
.btn--outline-light { border: 1.5px solid rgba(245,240,232,0.3); color: var(--cream); background: transparent; }
.btn--outline-light:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header__eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 20px; }
.section-header__line { width: 60px; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--bg); }
.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);
    overflow: hidden; transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(212,168,83,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,83,0.1); }
.service-card__img { height: 200px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card:hover .service-card__img img { transform: scale(1.08); }
.service-card__body { padding: 28px; }
.service-card__name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.service-card__desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services__grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--bg-elevated); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__image-stack { position: relative; }
.about__img-main { border-radius: var(--radius-lg); overflow: hidden; position: relative; z-index: 1; }
.about__img-main img { width: 100%; height: 500px; object-fit: cover; }
.about__img-accent {
    position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px;
    border-radius: var(--radius); overflow: hidden; z-index: 2;
    border: 4px solid var(--bg-elevated);
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__gold-bar {
    position: absolute; top: -20px; left: -20px; width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius); z-index: 0; opacity: 0.15;
}
.about__eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.about__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 24px; }
.about__text { font-size: 1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.about__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pillar { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--transition); }
.pillar:hover { border-color: rgba(212,168,83,0.3); }
.pillar__number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.pillar__name { font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.pillar__desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; gap: 60px; }
    .about__img-accent { right: -20px; bottom: -20px; width: 140px; height: 140px; }
    .about__pillars { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) { .about__pillars { grid-template-columns: 1fr; } }

/* ===== GALLERY ===== */
.gallery { padding: 120px 0 80px; background: var(--bg); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.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.06); }
.gallery__item-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); }
.gallery__item--wide { grid-column: span 6; }
.gallery__item:nth-child(2) { grid-column: 7 / span 3; }
.gallery__item:nth-child(3) { grid-column: 10 / span 3; }
.gallery__item:nth-child(4) { grid-column: 7 / span 3; }
.gallery__item:nth-child(5) { grid-column: 10 / span 3; }

@media (max-width: 768px) {
    .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery__item, .gallery__item--wide,
    .gallery__item:nth-child(2), .gallery__item:nth-child(3),
    .gallery__item:nth-child(4), .gallery__item:nth-child(5) { grid-column: span 1; }
    .gallery__item { height: 220px; }
    .gallery__item-overlay { opacity: 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; background: var(--bg-elevated); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 36px; transition: all var(--transition);
}
.testimonial:hover { border-color: rgba(212,168,83,0.3); transform: translateY(-4px); }
.testimonial__stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--gold); }
.testimonial__text { font-size: 1rem; color: var(--cream-dark); line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testimonial__author { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 900px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta { position: relative; padding: 120px 0; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__gradient { position: absolute; inset: 0; z-index: 1; }
.cta__photo { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(6,78,59,0.6) 50%, rgba(10,10,10,0.9) 100%); }
.cta__content { position: relative; z-index: 3; text-align: center; max-width: 700px; margin: 0 auto; }
.cta__eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.cta__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 20px; }
.cta__text { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 40px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--bg); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact__eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.contact__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 40px; }
.contact__details { display: flex; flex-direction: column; gap: 28px; }
.contact__detail { display: flex; gap: 16px; }
.contact__detail-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact__detail-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 4px; }
.contact__detail-value { font-size: 1rem; color: var(--cream); line-height: 1.6; }
.contact__detail-value a { color: var(--cream); transition: color var(--transition); }
.contact__detail-value a:hover { color: var(--gold); }

/* Form */
.contact__form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact__form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: 28px; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form__input {
    width: 100%; padding: 14px 16px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--cream); font-family: 'Raleway', sans-serif;
    font-size: 0.9375rem; transition: all var(--transition); outline: none;
}
.form__input::placeholder { color: var(--text-subtle); }
.form__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,83,0.1); }
.form__select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a853' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form__select option { background: #1a1a1a; color: var(--cream); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__success { margin-top: 16px; padding: 14px 18px; background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.3); border-radius: var(--radius); color: #34d399; font-size: 0.9375rem; text-align: center; }
.form__error-msg { color: #f87171; font-size: 0.8125rem; margin-top: 4px; display: none; }
.form__input.error { border-color: #f87171; }
.form__input.error + .form__error-msg { display: block; }

@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; gap: 48px; } }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 0; background: #060606; border-top: 1px solid var(--border); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: 16px; }
.footer__logo-icon { color: var(--gold); }
.footer__tagline { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer__heading { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__links a { display: block; font-size: 0.9375rem; color: var(--text-muted); padding: 6px 0; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; }
.footer__contact a { color: var(--text-muted); transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer__bottom p { font-size: 0.8125rem; color: var(--text-subtle); }

@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
    .reveal.revealed { 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; }
}
