/* ============================================
   MIRAKI ELITE EVENTS - GLOBAL STYLESHEET
   Dark Premium Theme · Maroon & Gold
   ============================================ */

:root {
    --bg-primary: #0A0506;
    --bg-secondary: #120A0D;
    --bg-tertiary: #1A1014;
    --maroon: #4A0E2E;
    --maroon-deep: #350820;
    --maroon-light: #6B1A42;
    --gold: #D4AF7A;
    --gold-bright: #E8C896;
    --gold-deep: #A8845A;
    --text-primary: #F5F0EA;
    --text-secondary: #B5A99E;
    --text-muted: #6B5F5A;
    --border: rgba(212, 175, 122, 0.15);
    --border-hover: rgba(212, 175, 122, 0.35);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   SUBTLE GRAIN OVERLAY (Premium Feel)
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.83 0 0 0 0 0.69 0 0 0 0 0.48 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.eyebrow::before {
    content: '— ';
    color: var(--gold);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p { color: var(--text-secondary); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 5, 6, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 5, 6, 0.95);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1) sepia(0.4) saturate(2) hue-rotate(-15deg);
    transition: filter 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.7rem 1.5rem !important;
    border: 1px solid var(--border-hover);
    border-radius: 30px;
    color: var(--gold) !important;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--bg-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary span { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 122, 0.3);
}

.btn-primary:hover::before { opacity: 1; }

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(74, 14, 46, 0.4), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 122, 0.08), transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 122, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 122, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tagline::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 .accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-meta {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    z-index: 2;
    text-align: right;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-meta-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* ============================================
   CARDS / GRID
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    background: var(--bg-tertiary);
    box-shadow: var(--shadow);
}

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

.card-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
    align-items: start;
}

.feature-row:hover {
    padding-left: 1rem;
    border-bottom-color: var(--border-hover);
}

.feature-row:hover .feature-num {
    background: var(--gold);
    color: var(--bg-primary);
}

.feature-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    position: relative;
}

.process-step {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
}

.process-stage {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   QUOTE / CALLOUT
   ============================================ */
.quote-block {
    background: linear-gradient(135deg, var(--maroon-deep), var(--bg-secondary));
    border-radius: 24px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -3rem;
    left: 3rem;
    font-family: var(--font-display);
    font-size: 20rem;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   PILLARS (Services in detail)
   ============================================ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pillar {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.pillar:hover {
    border-color: var(--border-hover);
    background: var(--bg-tertiary);
    transform: translateY(-4px);
}

.pillar-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar ul {
    list-style: none;
    padding: 0;
}

.pillar ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.pillar ul li:last-child { border-bottom: none; }

.pillar ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 0.85rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(74, 14, 46, 0.3), transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) sepia(0.4) saturate(2) hue-rotate(-15deg);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
    padding: 12rem 0 6rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(74, 14, 46, 0.4), transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 175, 122, 0.06), transparent 50%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.page-header p {
    max-width: 700px;
    font-size: 1.2rem;
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Progressive enhancement: only hide reveals when JS is enabled.
   The .js-enabled class is added to <html> by main.js immediately. */
.js-enabled .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled .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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active { right: 0; }
    .nav-toggle { display: block; }

    .nav-menu a { font-size: 1rem; }

    .hero-meta { display: none; }
    .scroll-indicator { display: none; }

    .stat-item:not(:last-child)::after { display: none; }

    .quote-block { padding: 3rem 2rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-header { padding: 9rem 0 4rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* ============================================
   ICONS (Inline SVG)
   ============================================ */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.12), rgba(212, 175, 122, 0.04));
    border: 1px solid rgba(212, 175, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.icon-circle .icon {
    width: 28px;
    height: 28px;
}

.card:hover .icon-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: rotate(-8deg) scale(1.05);
}

.pillar .icon-circle {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
}

.pillar .icon-circle .icon {
    width: 22px;
    height: 22px;
}

/* ============================================
   MOMENTS SECTION (Services Page) — Typographic Journey
   ============================================ */
.moments-section {
    padding: 7rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.moments-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(74, 14, 46, 0.25), transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(212, 175, 122, 0.04), transparent 50%);
    pointer-events: none;
}

.moments-section .container { position: relative; z-index: 1; }

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.moment-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.moment-card::before {
    /* faint gold top-line on hover */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.moment-card::after {
    /* big watermark number behind */
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.moment-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(74, 14, 46, 0.08) 100%);
}

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

.moment-card:hover .moment-num {
    color: var(--gold);
    transform: scale(1.05);
}

.moment-card:hover .moment-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--bg-primary);
    border-color: var(--gold);
}

.moment-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
    color: var(--maroon-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    transition: all 0.4s ease;
    font-feature-settings: "lnum";
}

.moment-icon {
    position: absolute;
    top: 2.5rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.08), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
}

.moment-icon .icon {
    width: 22px;
    height: 22px;
}

.moment-stage {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.moment-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.15;
}

.moment-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    flex-grow: 1;
}

.moment-meta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.moment-meta span:nth-child(even) { color: var(--gold); opacity: 0.4; }

.moment-card-cta {
    background: linear-gradient(135deg, var(--maroon-deep), var(--bg-tertiary));
    border-color: var(--border-hover);
    justify-content: center;
}

.moment-card-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.moment-card-cta p {
    flex-grow: 0;
}

.moment-card-cta:hover {
    background: linear-gradient(135deg, var(--maroon), var(--bg-tertiary));
}

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

@media (max-width: 600px) {
    .moments-grid {
        grid-template-columns: 1fr;
    }
    .moment-card {
        padding: 2rem 1.5rem;
    }
    .moment-num {
        font-size: 4rem;
    }
    .moment-icon {
        top: 2rem;
        right: 1.5rem;
    }
}

/* ============================================
   PAGE HEADER WITH IMAGE
   ============================================ */
.page-header-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: contrast(1.1) saturate(0.6);
    z-index: 0;
}

.page-header.with-image::before {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(74, 14, 46, 0.5), transparent 60%),
        linear-gradient(180deg, rgba(10, 5, 6, 0.7) 0%, var(--bg-primary) 100%);
    z-index: 1;
}

.page-header.with-image .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   ENHANCED CONTACT DETAIL ICON
   ============================================ */
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 122, 0.08), transparent);
    transition: all 0.3s ease;
}

.contact-detail-icon .icon {
    width: 20px;
    height: 20px;
}

.contact-detail:hover .contact-detail-icon {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.contact-detail {
    transition: padding 0.3s ease;
}

.contact-detail:hover {
    padding-left: 0.5rem;
}

/* ============================================
   SOCIAL ICONS (SVG)
   ============================================ */
.social-links a .icon {
    width: 16px;
    height: 16px;
    stroke-width: 1.6;
}

/* Override responsive contact */
@media (max-width: 968px) {
    .contact-info h3 {
        margin-top: 0;
    }
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-info p {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-detail-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-detail-value {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}

.contact-detail-value:hover { color: var(--gold); }

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-tertiary);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
    font-family: var(--font-body);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-wrapper { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}
