/* ============================================
   AUSTIN TOUCHSTONE BUILDERS - DESIGN SYSTEM
   Luxury Editorial Aesthetic
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy-deepest: #0a0e17;
    --navy-deep: #0d1321;
    --navy-medium: #1a2332;
    --navy-light: #2a3444;
    --gold-primary: #c9a227;
    --gold-light: #d4b84a;
    --gold-pale: #f5e6b3;
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #f5e6b3 50%, #c9a227 100%);
    --white: #ffffff;
    --off-white: #f8f6f1;
    --cream: #f5f3ee;
    --warm-gray: #e8e4dc;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: 1400px;
    --container-narrow: 900px;
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s var(--ease-elegant);
    --transition-medium: 0.5s var(--ease-elegant);
    --transition-slow: 0.8s var(--ease-elegant);
}

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--navy-deepest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }
p { font-size: clamp(0.95rem, 1.5vw, 1.1rem); max-width: 70ch; }
a { color: inherit; }

.text-gold { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-small { font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.container-narrow { max-width: var(--container-narrow); }
section { padding: var(--section-padding) 0; position: relative; z-index: 1; background: var(--navy-deepest); }

/* Section with stars visible through */
section.stars-visible { background: transparent; }
section.stars-visible::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(10, 14, 23, 0.6) 0%, rgba(10, 14, 23, 0.9) 100%); z-index: 0; pointer-events: none; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 9998; padding: 1.5rem 0; transition: var(--transition-medium); }
.nav.scrolled { background: rgba(10, 14, 23, 0.95); backdrop-filter: blur(20px); padding: 1rem 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--white); }
.nav-logo-icon { width: 50px; height: 50px; object-fit: contain; background: transparent; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.35rem; }
.nav-logo-tagline { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-primary); display: block; margin-top: 2px; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-link { color: var(--text-light); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding: 0.5rem 0; transition: var(--transition-fast); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold-primary); transition: var(--transition-fast); }
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-cta { background: transparent; border: 1px solid var(--gold-primary); color: var(--gold-primary); padding: 0.75rem 1.5rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: var(--transition-fast); }
.nav-cta:hover { background: var(--gold-primary); color: var(--navy-deepest); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { width: 28px; height: 2px; background: var(--white); transition: var(--transition-fast); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: transparent; }
.hero-drone-image { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: url('../images/projects/observatory/obsdrone.png') center center / cover no-repeat; z-index: 0; transition: opacity 0.1s ease-out; will-change: opacity, transform; }
.hero-bg { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 50% 50%, rgba(10, 14, 23, 0.4) 0%, rgba(10, 14, 23, 0.6) 70%, rgba(10, 14, 23, 0.85) 100%); }
.hero-bg-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 30%, rgba(201, 162, 39, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 40%), radial-gradient(ellipse at 50% 100%, rgba(10, 14, 23, 1) 0%, transparent 30%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; padding: 0 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.5rem 1.25rem; border: 1px solid rgba(201, 162, 39, 0.3); margin-bottom: 2rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); animation: fadeInDown 1s var(--ease-elegant) forwards; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold-primary); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero h1 { margin-bottom: 1.5rem; opacity: 0; animation: fadeInUp 1s var(--ease-elegant) 0.2s forwards; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--text-muted); max-width: 700px; margin: 0 auto 3rem; opacity: 0; animation: fadeInUp 1s var(--ease-elegant) 0.4s forwards; }
.hero-cta-group { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeInUp 1s var(--ease-elegant) 0.6s forwards; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: var(--transition-fast); }
.hero-scroll:hover { color: var(--gold-light); }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-primary), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: var(--transition-fast); }
.btn-primary { background: var(--gold-primary); color: var(--navy-deepest); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-outline:hover { border-color: var(--gold-primary); color: var(--gold-light); }

/* Section Headers */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 1rem; }
.section-title { margin-bottom: 1.5rem; }
.section-desc { color: var(--text-muted); margin: 0 auto; }

/* Cards */
.card { background: var(--navy-medium); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2.5rem; transition: var(--transition-medium); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-gradient); transform: scaleX(0); transform-origin: left; transition: var(--transition-medium); }
.card:hover { transform: translateY(-5px); border-color: rgba(201, 162, 39, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(201, 162, 39, 0.1); border: 1px solid rgba(201, 162, 39, 0.2); margin-bottom: 1.5rem; font-size: 1.5rem; }
.card-title { margin-bottom: 1rem; }
.card-text { color: var(--text-muted); font-size: 0.95rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
.stat-item { padding: 2rem; }
.stat-value { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 300; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* Testimonial */
.testimonial { background: var(--navy-medium); border-left: 3px solid var(--gold-primary); padding: 3rem; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-style: italic; line-height: 1.6; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 50px; height: 50px; background: var(--gold-gradient); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy-deepest); }
.testimonial-name { font-weight: 600; margin-bottom: 0.25rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--navy-medium); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 14, 23, 0.9) 0%, transparent 50%); opacity: 0; transition: var(--transition-medium); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transform: translateY(20px); opacity: 0; transition: var(--transition-medium); z-index: 2; }
.gallery-item:hover .gallery-item-content { transform: translateY(0); opacity: 1; }

/* Form */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--text-light); }
.form-input, .form-textarea { width: 100%; padding: 1rem 1.25rem; background: var(--navy-medium); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--white); font-family: var(--font-body); font-size: 1rem; transition: var(--transition-fast); }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Footer */
.footer { background: var(--navy-deepest); border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 5rem 0 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--text-muted); margin: 1.5rem 0; max-width: 350px; }
.footer-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; color: var(--gold-primary); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.85rem; color: var(--text-muted); }
.footer-certifications { display: flex; gap: 2rem; align-items: center; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.8); opacity: 0.5; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant); }
.reveal.active { 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; }

/* Light Section */
.section-light { background: var(--cream); color: var(--navy-deepest); }
.section-light .section-desc, .section-light .card-text { color: var(--navy-light); }
.section-light .card { background: var(--white); border-color: var(--warm-gray); }

/* Star Field Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s infinite;
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.3);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* Decorative */
.gold-line { width: 60px; height: 2px; background: var(--gold-gradient); }
.noise-overlay::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.03; pointer-events: none; z-index: 1; }

/* Page Headers */
.page-header { padding: 12rem 0 6rem; text-align: center; position: relative; background: transparent; z-index: 1; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(10, 14, 23, 0.5) 0%, rgba(10, 14, 23, 0.85) 60%, var(--navy-deepest) 100%); z-index: 0; }
.page-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.12) 0%, transparent 50%); z-index: 0; }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Two Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-content h2 { margin-bottom: 1.5rem; }
.two-col-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.two-col-image { position: relative; }
.two-col-image img { width: 100%; height: auto; display: block; }
.image-frame { position: absolute; inset: -20px; border: 1px solid rgba(201, 162, 39, 0.3); pointer-events: none; }

/* Feature List */
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.feature-list-icon { width: 24px; height: 24px; background: var(--gold-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feature-list-icon svg { width: 14px; height: 14px; stroke: var(--navy-deepest); }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; counter-reset: step; }
.process-step { position: relative; padding: 2.5rem; background: var(--navy-medium); border: 1px solid rgba(255, 255, 255, 0.05); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-size: 4rem; font-weight: 300; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: absolute; top: 1rem; right: 1.5rem; opacity: 0.3; }
.process-step h4 { margin-bottom: 1rem; color: var(--gold-light); }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* Immersive Gallery Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.slideshow-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slideshow-slide {
    min-width: 100%;
    position: relative;
}

.slideshow-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.slideshow-btn {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
    pointer-events: auto;
}

.slideshow-btn:hover {
    background: rgba(201, 162, 39, 0.3);
    border-color: var(--gold-primary);
}

.slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 14, 23, 0.9);
    flex-wrap: wrap;
}

.slideshow-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slideshow-indicator.active,
.slideshow-indicator:hover {
    background: var(--gold-primary);
}

.slideshow-counter {
    position: absolute;
    bottom: 60px;
    right: 1rem;
    background: rgba(10, 14, 23, 0.8);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.slideshow-fullscreen {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold-light);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.slideshow-fullscreen:hover {
    background: rgba(201, 162, 39, 0.3);
}

/* Thumbnail Grid below slideshow */
.slideshow-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
    background: var(--navy-medium);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-top: none;
}

.slideshow-thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.6;
}

.slideshow-thumbnail:hover,
.slideshow-thumbnail.active {
    border-color: var(--gold-primary);
    opacity: 1;
}

.slideshow-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Section Styling */
.project-section {
    padding: var(--section-padding) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-section:nth-child(odd) {
    background: var(--navy-deep);
}

.project-section:nth-child(even) {
    background: var(--navy-deepest);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy-deepest); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 9999; }
    .nav-menu.active { display: flex; }
    .nav-toggle { display: flex; z-index: 10000; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .slideshow-slide img { height: 400px; }
}

@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .slideshow-slide img { height: 300px; }
    .slideshow-thumbnails { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .slideshow-slide img { height: 250px; }
    .slideshow-btn { width: 40px; height: 40px; font-size: 1rem; }
}
