/* ========================================
   OBSIDIAN RISING - Elite Design System
   Black + White + Rose Gold
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --black: #0D0D0D;
    --black-soft: #161616;
    --black-light: #1E1E1E;
    --white: #FFFFFF;
    --white-warm: #F8F6F3;
    --white-cream: #FAF9F7;
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A5A5;
    --rose-gold-dark: #9A5B64;
    --rose-gold-glow: rgba(183, 110, 121, 0.15);
    --charcoal: #1A1A1A;
    --gray: #8A8A8A;
    --gray-light: #C4C4C4;
    --border-dark: rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 8rem 5%;
    --container-max: 1400px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ========================================
   SPLASH SCREEN
   ======================================== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 100vw;
}

.splash-logo {
    width: 350px;
    max-width: 80vw;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: splashLogoIn 1s ease forwards 0.3s;
}

.splash-welcome {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--rose-gold);
    letter-spacing: 0.3em;
    opacity: 0;
    transform: translateY(20px);
    animation: splashTextIn 1s ease forwards 1s;
}

@media (max-width: 768px) {
    .splash-logo {
        width: 250px;
        max-width: 70vw;
    }

    .splash-welcome {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
}

@keyframes splashLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 500; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

p {
    font-weight: 300;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.text-rose { color: var(--rose-gold); }
.text-muted { color: var(--gray); }
.text-center { text-align: center; }

.bg-dark { background: var(--black); }
.bg-light { background: var(--white); color: var(--charcoal); }

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    max-width: 100vw;
    overflow: hidden;
}

nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width 0.4s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--rose-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--rose-gold-glow);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-outline-rose {
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
}

.btn-outline-rose:hover {
    background: var(--rose-gold);
    color: var(--white);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS (Estrela Style)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered reveals */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.15;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, var(--rose-gold), transparent);
    animation: lineFloat 8s ease-in-out infinite;
}

.hero-lines::before {
    left: 20%;
    animation-delay: 0s;
}

.hero-lines::after {
    left: 80%;
    animation-delay: 4s;
}

@keyframes lineFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(0%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 5%;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero-text h1 .line {
    display: block;
}

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

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.7s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual Circle */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid var(--border-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.hero-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--rose-gold);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.hero-circle-inner {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid var(--border-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-circle-inner span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--rose-gold-light);
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--rose-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    color: inherit;
}

/* ========================================
   PANELS / CARDS
   ======================================== */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.panel {
    background: var(--white-cream);
    padding: 2.5rem;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    cursor: default;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.panel:hover::before {
    transform: scaleX(1);
}

.panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.panel-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--rose-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.panel h4 {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.panel p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Dark Panels */
.panel-dark {
    background: var(--black-soft);
    border: 1px solid var(--border-dark);
}

.panel-dark:hover {
    border-color: var(--rose-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.panel-dark h4 {
    color: var(--white);
}

.panel-dark p {
    color: var(--gray-light);
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service-card {
    background: var(--black-soft);
    border: 1px solid var(--border-dark);
    padding: 3rem;
    position: relative;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--rose-gold);
}

.service-card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: var(--rose-gold);
    opacity: 0.15;
    line-height: 1;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.service-card > p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--rose-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.service-features li:last-child {
    border-bottom: none;
}

/* ========================================
   ABOUT / SPLIT SECTIONS
   ======================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-image {
    background: var(--black-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 80%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-style: italic;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--rose-gold);
    opacity: 0.3;
}

.split-content {
    background: var(--white);
    color: var(--charcoal);
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-label {
    text-align: left;
}

.split-content h2 {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.split-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Credentials Row */
.credentials-row {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credential-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--rose-gold);
    line-height: 1;
}

.credential-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--black);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
}

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

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

.cta-section p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--black-soft);
    border: 1px solid var(--border-dark);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 20px var(--rose-gold-glow);
}

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

/* Light Form Variant */
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
    background: var(--white);
    border-color: var(--border-light);
    color: var(--charcoal);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--black);
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}

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

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

.footer-col a {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--rose-gold-light);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray);
}

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

.social-links a {
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

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

/* ========================================
   PAGE HEADERS (Interior Pages)
   ======================================== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.page-header h1 {
    margin-bottom: 1rem;
}

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

/* ========================================
   INSIGHTS / BLOG CARDS
   ======================================== */
.insight-card {
    background: var(--black-soft);
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.insight-card:hover {
    border-color: var(--rose-gold);
    transform: translateY(-8px);
}

.insight-card-image {
    aspect-ratio: 16/9;
    background: var(--black-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-style: italic;
}

.insight-card-content {
    padding: 2rem;
}

.insight-card-meta {
    font-size: 0.75rem;
    color: var(--rose-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.insight-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.insight-card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--rose-gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.insight-card-link:hover {
    color: var(--rose-gold-light);
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-dark);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: var(--rose-gold);
    transform: rotate(45deg);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.timeline-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ========================================
   CONTACT INFO GRID
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h5 {
    color: var(--rose-gold);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray-light);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--rose-gold-light);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 50vh;
    }

    .split-content {
        padding: 4rem 5%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }

    nav {
        padding: 1rem 4%;
    }

    nav .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
        position: relative;
        flex-shrink: 0;
        z-index: 1001;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .credentials-row {
        justify-content: center;
    }

    .split-content {
        padding: 3rem 5%;
    }
}

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .btn {
        padding: 1rem 1.5rem;
    }
}

/* ========================================
   FEATURED IN SECTION
   ======================================== */
.featured-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    border: 1px solid var(--border-dark);
    background: var(--black-soft);
    transition: var(--transition-smooth);
}

.featured-link:hover {
    border-color: var(--rose-gold);
    transform: translateY(-4px);
}

.featured-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.featured-link:hover .featured-name {
    color: var(--rose-gold);
}

/* ========================================
   TESTIMONIALS CAROUSEL
   ======================================== */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    position: relative;
    height: 450px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-card.prev {
    transform: translateX(-50px);
}

.testimonial-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-gold);
    background: var(--rose-gold-glow);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    margin-bottom: 2rem;
    overflow-y: auto;
    flex: 1;
    max-height: 250px;
}

.testimonial-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.author-org {
    font-size: 0.8rem;
    color: var(--rose-gold);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: var(--charcoal);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--charcoal);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.testimonial-dot:hover,
.testimonial-dot.active {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--rose-gold);
}

.faq-question[aria-expanded="true"] {
    color: var(--rose-gold);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--rose-gold);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Testimonials & FAQ Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .testimonials-track {
        height: 520px;
    }

    .testimonial-content {
        max-height: 280px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

    .featured-link {
        padding: 1rem 1.5rem;
    }

    .featured-name {
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--rose-gold);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    font-weight: 600;
    text-decoration: none;
}

.skip-to-main:focus {
    top: 0;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

:focus-visible {
    outline: 3px solid var(--rose-gold) !important;
    outline-offset: 2px !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
