/* ============================================
   Golden Hour Nashville — Main Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
    --gold: #D4AF69;
    --gold-light: #E8D5A3;
    --gold-dark: #B8923E;
    --cream: #FAF6F0;
    --cream-dark: #F0E9DC;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --dark: #2A2A2A;
    --gray: #6B6B6B;
    --gray-light: #A0A0A0;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    --nav-height: 120px;
    --container-width: 1280px;
    --section-padding: clamp(80px, 10vw, 120px);

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section {
    padding: var(--section-padding) 0;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
    animation: preloaderLine 1.2s var(--ease-smooth) infinite;
}

@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
    50% { transform: scaleX(1); opacity: 1; }
}

.preloader-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    display: flex;
    align-items: center;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212, 175, 105, 0.1);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s var(--ease-smooth), filter 0.3s var(--ease-smooth);
}

.nav.scrolled .nav-logo-img {
    opacity: 0.95;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    border: 1px solid var(--gold) !important;
    padding: 8px 24px !important;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.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);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 105, 0.3);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
}

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

.btn-sm {
    padding: 12px 28px;
    font-size: 0.75rem;
}

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

/* --- Section Headers --- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 600px;
    font-weight: 300;
    font-style: italic;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.1);
    animation: heroZoom 20s var(--ease-smooth) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.25) 40%,
        rgba(10, 10, 10, 0.5) 100%
    );
}

.hero-deco {
    position: absolute;
    opacity: 0;
    animation: fadeIn 2s 1s forwards;
}

.hero-deco-tl {
    top: 40px;
    left: 40px;
    width: 160px;
}

.hero-deco-br {
    bottom: 40px;
    right: 40px;
    width: 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--nav-height) 20px 0;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-title-line {
    display: block;
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 75%;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    z-index: 3;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.about-deco-frame {
    position: absolute;
    top: -20px;
    right: 20%;
    width: 140px;
    z-index: 1;
    opacity: 0.6;
}

.about-content {
    padding: 24px 0;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 0.95rem;
}

.about-text {
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 32px 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* --- Marquee --- */
.marquee {
    padding: 28px 0;
    background: var(--charcoal);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
}

.marquee-track svg {
    color: var(--gold);
    flex-shrink: 0;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* --- Services --- */
.services {
    background: var(--white);
}

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

.service-card {
    position: relative;
    padding: 48px 36px;
    background: var(--cream);
    border-radius: 4px;
    text-align: center;
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.service-card-featured {
    background: var(--charcoal);
    color: var(--white);
}

.service-card-featured .service-features li {
    color: var(--gray-light);
    border-color: rgba(255, 255, 255, 0.08);
}

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

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 2px;
    font-weight: 700;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.service-price {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-style: italic;
    margin-bottom: 28px;
}

.service-features {
    text-align: left;
    margin-bottom: 32px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.services-note {
    text-align: center;
    margin-top: 56px;
    padding: 32px;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-note p {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    font-family: var(--font-accent);
    font-size: 1.05rem;
}

/* --- Portfolio / Gallery --- */
.portfolio {
    background: var(--charcoal);
}

.portfolio .section-label { color: var(--gold-light); }
.portfolio .section-title { color: var(--white); }
.portfolio .section-subtitle { color: var(--gray-light); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

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

.gallery-caption {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-sub {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* --- Parallax Divider --- */
.parallax-divider {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -20%;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.parallax-content blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 16px;
}

.parallax-content cite {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--gold-light);
    font-style: normal;
    letter-spacing: 0.1em;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--cream);
    overflow: hidden;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s var(--ease-smooth);
}

.testimonial-card {
    min-width: 100%;
    padding: 16px 32px;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.testimonial-venue {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.3s, color 0.3s;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.testimonial-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* --- Contact --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.contact-text {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-detail span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.contact-social a svg {
    width: 20px;
    height: 20px;
}

.contact-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 105, 0.05);
}

/* --- Form --- */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--cream);
    padding: clamp(32px, 4vw, 48px);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    border-radius: 2px;
    color: var(--charcoal);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 105, 0.1);
}

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

.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'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form .btn {
    margin-top: 12px;
}

.form-success {
    position: absolute;
    inset: 0;
    background: var(--cream);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.form-success.visible {
    opacity: 1;
    visibility: visible;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray);
    max-width: 360px;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
    opacity: 0.75;
    transition: opacity 0.3s;
}

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

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-links-group h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--gold-light);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 36px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    color: var(--white);
    z-index: 2;
    transition: color 0.3s;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-close svg { width: 28px; height: 28px; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    color: var(--white);
    z-index: 2;
    transition: color 0.3s;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-prev svg,
.lightbox-next svg { width: 32px; height: 32px; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    transform: scale(0.95);
    transition: transform 0.4s var(--ease-smooth);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-accent);
    color: var(--gold-light);
    font-size: 1rem;
    font-style: italic;
}

/* --- Scroll Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
        gap: 32px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
        --section-padding: clamp(56px, 8vw, 80px);
    }

    .hero {
        min-height: 550px;
    }

    .section-header {
        margin-bottom: clamp(36px, 5vw, 48px);
    }

    .parallax-divider {
        height: 280px;
        min-height: 220px;
    }

    .nav-logo-img {
        height: 60px;
        width: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }

    .hero-title-line {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .about-images {
        height: 380px;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 16px;
    }

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

    .testimonial-card {
        padding: 12px 20px;
    }

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

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

    .footer {
        padding: 56px 0 36px;
    }

    .footer-top {
        margin-bottom: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    :root {
        --section-padding: clamp(48px, 8vw, 64px);
    }

    .service-card {
        padding: 36px 24px;
    }

    .form-success,
    .contact-form-wrapper {
        padding: clamp(24px, 4vw, 36px);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 14px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        padding-top: calc(var(--nav-height) + 16px);
    }

    .about-images {
        height: 320px;
    }

    .about-img-1 {
        width: 70%;
        height: 80%;
    }

    .about-img-2 {
        width: 50%;
        height: 50%;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 32px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .contact-details {
        gap: 20px;
    }

    .footer-bottom {
        gap: 12px;
    }
}
