/* ============================================
   CIA Development — Luxury Design System
   Liquid Glass · Premium · Exclusivity
   ============================================ */

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus {
    top: 16px;
}

:root {
    /* Luxury Palette */
    --ink:       #0b0e13;
    --ink-light: #111720;
    --ink-mid:   #181e2a;
    --ink-soft:  #1f2737;
    --slate:     #2a3347;
    --mist:      #8994a8;
    --silver:    #b0b8c8;
    --cloud:     #d4dae6;
    --pearl:     #eef1f6;
    --cream:     #f8f9fb;
    --white:     #ffffff;

    /* Gold Accent */
    --gold:      #c9a96e;
    --gold-light:#ddc48e;
    --gold-dark: #a8894f;
    --gold-glow: rgba(201, 169, 110, 0.15);

    /* Blue Accent (retained for links/CTA) */
    --blue-700:  #1e5fad;
    --blue-600:  #2d7bc4;
    --blue-500:  #3a8fd9;
    --blue-400:  #52a3e8;

    /* Glass */
    --glass-bg:        rgba(255, 255, 255, 0.04);
    --glass-bg-hover:  rgba(255, 255, 255, 0.07);
    --glass-border:    rgba(255, 255, 255, 0.08);
    --glass-border-hi: rgba(255, 255, 255, 0.14);
    --glass-blur:      blur(24px) saturate(140%);

    /* Light glass (for light sections) */
    --glass-light-bg:        rgba(255, 255, 255, 0.55);
    --glass-light-border:    rgba(255, 255, 255, 0.7);
    --glass-light-blur:      blur(20px) saturate(120%);

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', 'DM Sans', Georgia, serif;
    --font-sans:    'DM Sans', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(100px, 14vw, 200px);
    --container-max:   1200px;
    --container-wide:  1400px;
    --container-narrow: 800px;

    /* Transitions */
    --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart:  cubic-bezier(0.25, 1, 0.5, 1);
    --transition-base: 0.4s var(--ease-out-quart);
    --transition-slow: 0.7s var(--ease-out-expo);
    --transition-reveal: 1s var(--ease-out-expo);
}

/* ============================================
   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;
    font-size: 16px;
}

/* Respect the user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
    .cursor-glow { display: none !important; }
}

body {
    font-family: var(--font-body);
    color: var(--pearl);
    background: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

::selection {
    background: var(--gold);
    color: var(--ink);
}

/* ============================================
   Container
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.25s; }
.reveal:nth-child(5) { transition-delay: 0.3s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   Liquid Glass Components
   ============================================ */

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hi);
}

.glass-light {
    background: var(--glass-light-bg);
    backdrop-filter: var(--glass-light-blur);
    -webkit-backdrop-filter: var(--glass-light-blur);
    border: 1px solid var(--glass-light-border);
    border-radius: 24px;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease-out-quart);
}

.nav.scrolled {
    padding: 14px 0;
    background: rgba(11, 14, 19, 0.8);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mist);
    transition: color var(--transition-base);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.nav-cta {
    background: transparent !important;
    color: var(--gold) !important;
    padding: 10px 28px !important;
    border: 1px solid var(--gold) !important;
    border-radius: 100px;
    font-size: 0.8125rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    transition: all var(--transition-base) !important;
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--pearl);
    transition: all 0.3s var(--ease-out-quart);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(11, 14, 19, 0.96);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-quart);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--pearl);
    transition: color var(--transition-base);
    letter-spacing: 0.02em;
}

.mobile-link:hover {
    color: var(--gold);
}

/* ============================================
   Hero — Cinematic
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(30, 95, 173, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle animated grain */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 64px);
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 32px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    line-height: 1.8;
    color: var(--mist);
    max-width: 560px;
    margin: 0 auto 56px;
    font-weight: 300;
}

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

.hero-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
    opacity: 0.5;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
    50% { opacity: 0.6; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.02);
    box-shadow: 0 8px 40px rgba(201, 169, 110, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--pearl);
    border: 1px solid var(--glass-border-hi);
}

.btn-ghost:hover {
    border-color: var(--mist);
    color: var(--white);
    transform: scale(1.02);
}

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

/* ============================================
   Section Base
   ============================================ */

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

.section-header {
    margin-bottom: clamp(56px, 8vw, 96px);
}

.section-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--mist);
    max-width: 540px;
    margin-top: 24px;
    font-weight: 300;
}

/* Section divider line */
.section-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

/* ============================================
   Showcase — Product Cards
   ============================================ */

.section-showcase {
    background: var(--ink);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.showcase-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.6s var(--ease-out-expo);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hi);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.showcase-card-visual {
    position: relative;
    overflow: hidden;
}

.showcase-card-screenshot {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.showcase-card-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s var(--ease-out-expo);
    opacity: 0.88;
}

.showcase-card:hover .showcase-card-screenshot img {
    transform: scale(1.04);
    opacity: 1;
}

/* Gradient overlay on image bottom */
.showcase-card-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--ink-light), transparent);
    pointer-events: none;
}

.showcase-card-info {
    padding: 28px 32px 36px;
}

.showcase-card-category {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.showcase-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.showcase-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--mist);
    margin-bottom: 20px;
}

.showcase-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap var(--transition-base), color var(--transition-base);
}

.showcase-card:hover .showcase-card-link {
    gap: 14px;
    color: var(--gold-light);
}

/* ============================================
   Story — Brand Narrative
   ============================================ */

.section-story {
    background: var(--ink-light);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(64px, 10vw, 140px);
    align-items: center;
}

.story-content {
    max-width: 480px;
}

.story-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    font-style: italic;
    position: relative;
    padding-left: 28px;
    border-left: 2px solid var(--gold);
}

.story-body {
    margin-top: 32px;
    font-size: 0.9375rem;
    line-height: 1.9;
    color: var(--mist);
    font-weight: 300;
}

.story-visual {
    position: relative;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-stat {
    padding: 32px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all var(--transition-base);
}

.story-stat:hover {
    border-color: var(--glass-border-hi);
    background: var(--glass-bg-hover);
}

.story-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.story-stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gold);
    display: inline;
}

.story-stat-label {
    font-size: 0.75rem;
    color: var(--mist);
    margin-top: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   Services — The Atelier
   ============================================ */

.section-services {
    background: var(--ink);
}

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

.service-card {
    padding: clamp(32px, 4vw, 44px);
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hi);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold);
    margin-bottom: 24px;
    border: 1px solid rgba(201, 169, 110, 0.12);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(201, 169, 110, 0.14);
    border-color: rgba(201, 169, 110, 0.25);
}

.service-title {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--mist);
    font-weight: 300;
}

/* ============================================
   Values — Brand Pillars
   ============================================ */

.section-values {
    background: var(--ink-light);
    border-top: 1px solid var(--glass-border);
}

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

.value-card {
    text-align: center;
    padding: clamp(40px, 5vw, 60px) clamp(24px, 3vw, 40px);
}

.value-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 24px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    font-style: italic;
}

.value-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--mist);
    font-weight: 300;
}

/* ============================================
   Membership CTA — Exclusive
   ============================================ */

.section-cta {
    background: var(--ink);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
    border-radius: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    /* Top highlight edge */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.2);
}

.cta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--mist);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.cta-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    opacity: 0.4;
}

/* ============================================
   Contact
   ============================================ */

.section-contact {
    background: var(--ink-light);
    border-top: 1px solid var(--glass-border);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mist);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238994a8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--ink-mid);
    color: var(--pearl);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background: var(--glass-bg-hover);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 56px 0;
    background: var(--ink);
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 56px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 36px;
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--mist);
    transition: color var(--transition-base);
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--slate);
    letter-spacing: 0.02em;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-links {
        justify-content: center;
    }

    .showcase-card-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .story-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Smooth page load
   ============================================ */

body.loaded .hero .reveal {
    opacity: 1;
    transform: translateY(0);
}

body:not(.loaded) .hero .reveal {
    transition-delay: 0s;
}

body.loaded .hero .reveal:nth-child(1) { transition-delay: 0.2s; }
body.loaded .hero .reveal:nth-child(2) { transition-delay: 0.35s; }
body.loaded .hero .reveal:nth-child(3) { transition-delay: 0.5s; }
body.loaded .hero .reveal:nth-child(4) { transition-delay: 0.65s; }
body.loaded .hero .reveal:nth-child(5) { transition-delay: 0.8s; }
body.loaded .hero .reveal:nth-child(6) { transition-delay: 0.95s; }

/* ============================================
   Custom cursor glow (desktop)
   ============================================ */

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.025) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}
