
/* ============================================
   THOUS — The House of Uncle Smuzi
   Master Stylesheet
   Colors: Navy #0F2340 | Deep Navy #0A1930
           Ivory #FAF7F0 | Gold #B8894F
   ============================================ */

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

:root {
    --navy: #0F2340;
    --navy-deep: #0A1930;
    --navy-light: #1a3a5c;
    --ivory: #FAF7F0;
    --ivory-dark: #f0ebe3;
    --gold: #B8894F;
    --gold-light: #d4a76a;
    --gold-dark: #8f6a3a;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Calibri', sans-serif;
    background-color: var(--ivory);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cambria', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 35, 64, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.logo { display: flex; flex-direction: column; align-items: flex-start; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: 4px;
    line-height: 1;
}
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--ivory);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

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

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

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

.nav-cta {
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ivory);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 137, 79, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 137, 79, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold);
    padding: 0.4rem 1.2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--ivory);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(250, 247, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 137, 79, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid var(--ivory);
}
.btn-outline:hover {
    background: var(--ivory);
    color: var(--navy-deep);
}

.btn-dark {
    background: var(--navy);
    color: var(--ivory);
    border: 1.5px solid var(--navy);
}
.btn-dark:hover {
    background: transparent;
    color: var(--navy);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-dark {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--ivory);
}

.section-dark h2, .section-dark h3 { color: var(--ivory); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-dark .section-header p { color: rgba(250, 247, 240, 0.7); }

/* ============================================
   GRID & CARDS
   ============================================ */

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid rgba(15, 35, 64, 0.06);
}

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

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body { padding: 2rem; }

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-dark {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184, 137, 79, 0.15);
}

.card-dark h3 { color: var(--ivory); }
.card-dark p { color: rgba(250, 247, 240, 0.7); }

/* ============================================
   EVENTS
   ============================================ */

.event-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.event-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-meta-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.section-dark .event-meta-item { color: rgba(250, 247, 240, 0.7); }

/* ============================================
   PRICING
   ============================================ */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.pricing-table th, .pricing-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 35, 64, 0.1);
}

.pricing-table th {
    background: var(--navy);
    color: var(--ivory);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table tr:hover td { background: rgba(184, 137, 79, 0.05); }

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   LIBRARY & ARCHETYPES
   ============================================ */

.archetype-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.archetype-carousel::-webkit-scrollbar { height: 6px; }
.archetype-carousel::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.archetype-slide {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
}

.archetype-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.archetype-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.manual-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid rgba(15, 35, 64, 0.06);
}

.manual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.manual-cover {
    width: 140px;
    min-width: 140px;
    object-fit: cover;
}

.manual-info {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manual-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.manual-info .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0.5rem 0 1rem;
}

/* ============================================
   FORMS
   ============================================ */

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.section-dark .form-group label { color: var(--ivory); }

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1.5px solid rgba(15, 35, 64, 0.15);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    transition: var(--transition);
    color: var(--text-dark);
}

.section-dark .form-control {
    background: rgba(255,255,255,0.05);
    border-color: rgba(184, 137, 79, 0.2);
    color: var(--ivory);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 137, 79, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.section-dark .form-control::placeholder { color: rgba(250, 247, 240, 0.4); }

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8894F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}
select.form-control option {
    color: #000000;
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-deep);
    color: var(--ivory);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(250, 247, 240, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-col a {
    color: rgba(250, 247, 240, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 137, 79, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(250, 247, 240, 0.4);
    font-size: 0.85rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 137, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; }
    .hero { padding-top: 6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .manual-card { flex-direction: column; }
    .manual-cover { width: 100%; height: 200px; }
    .manual-info { padding: 1.5rem; }
    .event-meta { gap: 1rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .page-hero { min-height: 40vh; }
}

/* ============================================
   UTILITY & COMPONENTS
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

.divider-left { margin-left: 0; margin-right: auto; }

.gold-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
    vertical-align: middle;
    margin: 0 1rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(184, 137, 79, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(184, 137, 79, 0.2);
}

/* Tier cards */
.tier-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.tier-card.featured {
    border-color: var(--gold);
    background: rgba(184, 137, 79, 0.05);
}

.tier-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
}

.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin: 1rem 0;
}

.tier-price span {
    font-size: 1rem;
    color: rgba(250, 247, 240, 0.5);
    font-family: 'Inter', sans-serif;
}

.tier-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.tier-features li {
    padding: 0.5rem 0;
    color: rgba(250, 247, 240, 0.7);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tier-features li::before {
    content: '✦';
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Movement cards */
.movement-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184, 137, 79, 0.15);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.movement-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.movement-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.movement-card h3 {
    color: var(--ivory);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.movement-card p {
    color: rgba(250, 247, 240, 0.7);
    font-size: 0.95rem;
}

/* Journal cards */
.journal-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.journal-card .category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(184, 137, 79, 0.1);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.journal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.journal-card .date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* OI Wheel placeholder */
.oi-wheel-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 2rem auto;
    border: 2px dashed rgba(184, 137, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--gold);
    position: relative;
}

.oi-wheel-placeholder::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(184, 137, 79, 0.2);
    border-radius: 50%;
}

.oi-wheel-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Page hero */
.page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--ivory);
}

/* About */
.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-block {
    border-left: 3px solid var(--gold);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.section-dark .quote-block {
    color: var(--ivory);
    border-left-color: var(--gold);
}

/* Service detail */
.service-detail { padding: 2rem 0; }

.service-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail .price-range {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 1rem 0;
}

/* Advertise */
.advertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(184, 137, 79, 0.15);
    border-radius: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(250, 247, 240, 0.6);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .advertise-stats { grid-template-columns: 1fr; }
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(184, 137, 79, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 137, 79, 0.4);
}

/* Event page specific */
.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .event-detail-grid { grid-template-columns: 1fr; }
}

/* Two column text */
.text-columns-2 {
    column-count: 2;
    column-gap: 3rem;
}

@media (max-width: 768px) {
    .text-columns-2 { column-count: 1; }
}

/* Process / steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.process-step-content h4 {
    margin-bottom: 0.5rem;
}

/* Dropdown nav */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy-deep);
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    color: var(--ivory);
    text-transform: none;
    letter-spacing: 0.5px;
}

.dropdown-menu a:hover {
    background: rgba(184, 137, 79, 0.1);
    color: var(--gold);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .section { padding: 7rem 2rem; }
    .hero { padding: 10rem 2rem 5rem; }
    .nav-container { padding: 0 3rem; }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .section { padding: 4rem 1.5rem; }
    .hero { min-height: 80vh; padding: 7rem 1.5rem 3rem; }
    .page-hero { min-height: 40vh; padding: 7rem 1.5rem 3rem; }

    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

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

    .archetype-slide { flex: 0 0 280px; }
    .archetype-slide img { height: 360px; }

    .event-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
    .event-hero { height: 300px; }

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

/* Mobile (below 768px) */
@media (max-width: 767px) {
    .section { padding: 3rem 1rem; }
    .hero { min-height: 70vh; padding: 5rem 1rem 3rem; }
    .page-hero { min-height: 35vh; padding: 5rem 1rem 2.5rem; }

    .hero h1 { font-size: 2.2rem; letter-spacing: 1px; }
    .page-hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(184,137,79,0.1); }
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.9rem;
    }
    .nav-links a::after { display: none; }
    .nav-cta {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 1rem;
        box-shadow: none;
    }
    .dropdown-menu a {
        padding: 0.6rem 0;
        font-size: 0.8rem;
        color: rgba(250,247,240,0.6);
    }
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ivory);
        margin: 5px 0;
        transition: var(--transition);
    }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Cards */
    .card-body { padding: 1.5rem; }
    .card-image { height: 180px; }
    .card-body h3 { font-size: 1.2rem; }

    .movement-card { padding: 2rem 1.5rem; }
    .movement-number { font-size: 2.5rem; }
    .movement-card h3 { font-size: 1.1rem; }

    .tier-card { padding: 2rem 1.5rem; }
    .tier-price { font-size: 2rem; }
    .tier-features li { font-size: 0.85rem; }

    /* Archetype carousel */
    .archetype-carousel { gap: 1rem; padding: 0.5rem 0 1.5rem; }
    .archetype-slide { flex: 0 0 260px; }
    .archetype-slide img { height: 340px; }

    /* Manual cards */
    .manual-card { flex-direction: column; }
    .manual-cover { width: 100%; height: 200px; min-width: auto; }
    .manual-info { padding: 1.5rem; }

    /* Events */
    .event-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .event-hero { height: 220px; margin-bottom: 1rem; }
    .event-meta { gap: 1rem; flex-direction: column; }
    .event-meta-item { font-size: 0.85rem; }

    /* Pricing table */
    .pricing-table { font-size: 0.85rem; }
    .pricing-table th, .pricing-table td { padding: 0.8rem 0.6rem; }
    .price-tag { font-size: 1.2rem; }

    /* Forms */
    .form-group { margin-bottom: 1.2rem; }
    .form-control { padding: 0.9rem 1rem; font-size: 16px; }

    /* Buttons */
    .btn { padding: 0.9rem 1.8rem; font-size: 0.8rem; }
    .hero-cta-group { flex-direction: column; gap: 0.8rem; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }

    /* Footer */
    .footer { padding: 3rem 1rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.8rem; }

    /* Advertise stats */
    .advertise-stats { grid-template-columns: 1fr; gap: 1rem; }
    .stat-item { padding: 1.5rem; }
    .stat-number { font-size: 2.5rem; }

    /* Process steps */
    .process-step { gap: 1rem; }
    .process-step-number { width: 40px; height: 40px; min-width: 40px; font-size: 1.1rem; }

    /* Journal */
    .journal-card .card-body { padding: 1.5rem; }

    /* Quote block */
    .quote-block { padding-left: 1.5rem; font-size: 1.05rem; }

    /* Scroll top */
    .scroll-top { width: 40px; height: 40px; bottom: 1rem; right: 1rem; }

    /* About image */
    .about-image { margin-top: 1.5rem; }

    /* Text columns */
    .text-columns-2 { column-count: 1; }

    /* Service detail */
    .service-detail h3 { font-size: 1.3rem; }
    .service-detail .price-range { font-size: 1.1rem; }
}

/* Small mobile (below 480px) */
@media (max-width: 479px) {
    .hero h1 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .hero-label { font-size: 0.65rem; padding: 0.3rem 0.8rem; letter-spacing: 2px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-label { font-size: 0.7rem; letter-spacing: 3px; }

    .logo-text { font-size: 1.5rem; letter-spacing: 3px; }
    .logo-sub { font-size: 0.5rem; letter-spacing: 2px; }

    .archetype-slide { flex: 0 0 220px; }
    .archetype-slide img { height: 290px; }

    .btn { padding: 0.8rem 1.5rem; font-size: 0.75rem; letter-spacing: 1.5px; }

    .tier-price { font-size: 1.8rem; }
    .tier-name { font-size: 1.3rem; }

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

    .card-body { padding: 1.2rem; }
    .card-image { height: 160px; }

    .event-hero { height: 180px; }

    .pricing-table { display: block; overflow-x: auto; white-space: nowrap; }
    .pricing-table thead, .pricing-table tbody, .pricing-table tr { display: table; width: 100%; }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .card:hover, .movement-card:hover, .tier-card:hover, .journal-card:hover, .archetype-slide:hover, .manual-card:hover {
        transform: none;
    }
    .archetype-carousel { cursor: grab; }
    .archetype-carousel:active { cursor: grabbing; }
    .btn { min-height: 44px; }
    .nav-links a { min-height: 44px; display: flex; align-items: center; }
}

/* 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;
    }
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .card-dark, .movement-card, .tier-card {
        border-width: 2px;
    }
    .form-control {
        border-width: 2px;
    }
}

/* ============================================
   LOGO & FAVICON STYLES
   ============================================ */

.logo img {
    height: 42px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 36px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .logo img {
        height: 36px;
    }
    .navbar.scrolled .logo img {
        height: 32px;
    }
}
