/* ===================================================
   NO LIMITATIONS INTERIOR DESIGNS
   Design System: Cinzel + Josefin Sans | Luxury Dark
   Colors: #0A0A0A | #5865F2 (Indigo) | #8B0057 (Magenta)
=================================================== */

/* ---- VARIABLES ---- */
:root {
    --gold:        #5865F2;
    --gold-light:  #818CF8;
    --gold-dark:   #3730A3;
    --magenta:     #8B0057;
    --magenta-light: #C40080;
    --magenta-glow: rgba(139, 0, 87, 0.4);
    --dark:        #0A0A0A;
    --dark-2:      #111111;
    --dark-3:      #1A1A1A;
    --dark-4:      #242424;
    --text:        #F5F0E8;
    --text-muted:  #9A8F80;
    --white:       #FFFFFF;
    --border:      rgba(88, 101, 242, 0.2);
    --glass:       rgba(88, 101, 242, 0.05);

    --font-heading: 'Cinzel', serif;
    --font-body:    'Josefin Sans', sans-serif;

    --nav-height:  80px;
    --transition:  0.3s ease;
    --radius:      4px;
    --radius-lg:   12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- PRELOADER ---- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 180px;
    animation: logoReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes logoReveal {
    from { opacity: 0; transform: scale(0.6) translateY(30px); filter: blur(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

.preloader-bar-wrap {
    width: 240px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    margin-top: 40px;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--magenta), var(--gold));
    border-radius: 2px;
    animation: loadBar 2s ease-out 0.6s forwards;
}

@keyframes loadBar {
    0%   { width: 0%; }
    60%  { width: 70%; }
    100% { width: 100%; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-top: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.2s both;
}

/* ---- PARTICLES CANVAS ---- */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ---- LAYOUT ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; z-index: 1; }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: 300;
}

/* ---- GOLD LINE DIVIDER ---- */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--gold));
    margin: 20px 0 40px;
}

.gold-line.centered { margin: 20px auto 40px; }

/* ---- BUTTONS ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.25);
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.45);
    color: var(--white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3);
}

.mt-3 { margin-top: 1.5rem; }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 1px 0 var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 52px;
    width: auto;
    transition: transform var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
    cursor: pointer;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--gold);
}

.nav-links > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px; right: 16px;
    height: 1px;
    background: var(--gold);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
    cursor: pointer;
}

.dropdown li a:hover {
    color: var(--gold);
    background: var(--glass);
    padding-left: 28px;
}

/* CTA Nav Button */
.nav-cta {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-light)) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 16px var(--magenta-glow);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px var(--magenta-glow) !important;
    filter: brightness(1.15);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,0,87,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(88, 101, 242,0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,0,87,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 2.2s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 2.4s both;
}

.hero-title .line-1 { display: block; color: var(--white); }
.hero-title .line-2 { display: block; color: var(--gold); text-shadow: 0 0 40px rgba(88, 101, 242,0.3); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 2.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 2.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 3.2s both;
    cursor: pointer;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- STATS BAND ---- */
.stats-band {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { }

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- SERVICES ---- */
.services-section { background: var(--dark-2); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    background: var(--dark-3);
    padding: 48px 36px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,0,87,0.0), rgba(88, 101, 242,0.0));
    transition: opacity 0.4s ease;
    opacity: 0;
}

.service-card:hover::before { opacity: 1; }

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--gold));
    transition: width 0.4s ease;
}

.service-card:hover::after { width: 100%; }
.service-card:hover { transform: translateY(-4px); }

.service-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-card:hover .service-num { color: rgba(88, 101, 242,0.2); }

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-card:hover h3 { color: var(--gold); }

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ---- ABOUT TEASER ---- */
.about-section {
    background: var(--dark);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 72%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid var(--dark);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.about-badge {
    position: absolute;
    bottom: 90px; left: 20%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.about-feature-icon svg { width: 20px; height: 20px; }

.about-feature h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview { background: var(--dark-2); }

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 4px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 3; }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---- SUPPLY / MATERIALS ---- */
.supply-section { background: var(--dark); }

.supply-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.supply-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}

.supply-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px var(--gold);
    border-color: var(--gold);
}

.supply-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.supply-card h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.supply-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- QUOTE BANNER ---- */
.quote-banner {
    background: linear-gradient(135deg, var(--magenta) 0%, #5A0035 50%, var(--dark-2) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '"';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.5;
    position: relative;
}

.quote-attr {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: var(--dark-2);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-section .section-title { font-size: clamp(2rem, 4vw, 3rem); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--white);
}

.contact-item-value a { transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold); }

/* ---- FORM ---- */
.form-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(88, 101, 242,0.1);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-3); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    min-height: 42vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,0,87,0.2) 0%, transparent 60%),
        var(--dark);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero-bg-text {
    position: absolute;
    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---- GALLERY PAGE ---- */
.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-full-item {
    overflow: hidden;
    height: 280px;
    position: relative;
    cursor: pointer;
}

.gallery-full-item.tall { height: 560px; }

.gallery-full-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-full-item:hover img { transform: scale(1.06); }

/* ---- SERVICES PAGE ---- */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image {
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    width: 100%;
}

.service-detail-list {
    margin: 24px 0;
}

.service-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-detail-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
}

/* ---- ABOUT PAGE ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.value-card-icon {
    width: 52px; height: 52px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- SUPPLY PAGE ---- */
.supply-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    margin-top: 60px;
}

.supply-detail-card {
    background: var(--dark-3);
    padding: 48px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background 0.3s;
}

.supply-detail-card:hover { background: var(--dark-4); }

.supply-detail-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    color: var(--gold);
}

.supply-detail-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.supply-detail-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    z-index: 1;
}

.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px; height: 40px;
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-links h4, .footer-contact h4 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition), padding-left var(--transition);
    cursor: pointer;
}

.footer-links ul li a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact ul li svg { width: 16px; height: 16px; min-width: 16px; margin-top: 3px; color: var(--gold); }

.footer-contact ul li a { transition: color var(--transition); }
.footer-contact ul li a:hover { color: var(--gold); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px; height: 44px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    z-index: 100;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--dark); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 380px; }
    .gallery-masonry { grid-template-rows: repeat(2, 220px); }
    .supply-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 68px; }
    .section-pad { padding: 72px 0; }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateY(-110%);
        transition: transform 0.35s ease;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }

    .has-dropdown .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        display: none;
    }

    .has-dropdown.open .dropdown { display: block; }

    .services-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
    .gallery-masonry .gallery-item { height: 200px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .supply-grid { grid-template-columns: 1fr; }
    .supply-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
    .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .gallery-full-grid { grid-template-columns: 1fr; }
    .form-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
