/* ============================================
   INNER AUTHORITY PROJECT - HOMEPAGE STYLES
   Premium, Editorial, Spacious
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #F8F6F2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: #0B233F;
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8975A;
    margin-bottom: 20px;
    display: block;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 160px 0;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 35, 63, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0B233F;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #B8975A;
}

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

.nav-menu a {
    font-size: 14px;
    color: #0B233F;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-menu a:hover {
    color: #B8975A;
}

.nav-cta {
    background: #0B233F;
    color: #F8F6F2 !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #1a3a5f;
}

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

.cta-button {
    display: inline-block;
    background: #0B233F;
    color: #F8F6F2;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #0B233F;
}

.cta-button:hover {
    background: transparent;
    color: #0B233F;
}

.text-link {
    display: inline-block;
    color: #0B233F;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #0B233F;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.text-link:hover {
    color: #B8975A;
    border-color: #B8975A;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.hero {
    padding-top: 200px;
    padding-bottom: 160px;
    background: #F8F6F2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 540px;
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #0B233F;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-description {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.proof-standard {
    font-size: 13px;
    color: #B8975A;
    font-weight: 500;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ============================================
   SECTION 2: RECOGNITION
   ============================================ */

.recognition {
    background: #F8F6F2;
    padding: 180px 0;
}

.section-headline {
    font-size: 54px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
    color: #0B233F;
    line-height: 1.25;
}

.section-subheadline {
    font-size: 22px;
    text-align: center;
    color: #666;
    margin-bottom: 100px;
}

.recognition-signals {
    max-width: 800px;
    margin: 0 auto 80px;
}

.signal {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(11, 35, 63, 0.1);
}

.signal:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.signal-number {
    font-size: 14px;
    font-weight: 600;
    color: #B8975A;
    min-width: 30px;
}

.signal p {
    font-size: 20px;
    color: #0B233F;
    line-height: 1.5;
    font-weight: 400;
}

.recognition-close {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    text-align: center;
    color: #0B233F;
    font-weight: 500;
    margin-top: 60px;
}

/* ============================================
   SECTION 3: THE CONDITION
   ============================================ */

.condition {
    background: #0B233F;
    color: #F8F6F2;
    padding: 180px 0;
}

.condition .eyebrow {
    color: #B8975A;
    text-align: center;
}

.section-title {
    font-size: 58px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #F8F6F2;
}

.section-subtitle {
    font-size: 21px;
    text-align: center;
    color: rgba(248, 246, 242, 0.8);
    margin-bottom: 100px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.condition-item {
    text-align: center;
}

.condition-item h3 {
    font-size: 26px;
    font-weight: 400;
    color: #F8F6F2;
    margin-bottom: 20px;
}

.condition-item p {
    font-size: 17px;
    color: rgba(248, 246, 242, 0.65);
    line-height: 1.7;
}

/* ============================================
   SECTION 4: CORE PHILOSOPHY
   ============================================ */

.philosophy {
    background: #F8F6F2;
    padding: 180px 0;
    text-align: center;
}

.philosophy .eyebrow {
    text-align: center;
}

.philosophy-statement {
    font-size: 24px;
    color: #4a4a4a;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.philosophy-elements span {
    font-size: 16px;
    color: #0B233F;
    font-weight: 400;
}

.philosophy-elements .separator {
    color: #B8975A;
}

.philosophy-close {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SECTION 5: THE INNER AUTHORITY LOOP
   ============================================ */

.loop {
    background: #FFFFFF;
    padding: 180px 0;
}

.loop .section-headline {
    margin-bottom: 100px;
}

.loop-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
}

.loop-step {
    text-align: center;
}

.loop-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0B233F;
    color: #F8F6F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 15px;
}

.loop-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0B233F;
    letter-spacing: 1px;
}

.loop-arrow {
    font-size: 24px;
    color: #B8975A;
}

.loop-statement {
    font-size: 20px;
    text-align: center;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.loop-insight {
    text-align: center;
    padding: 30px;
    background: rgba(184, 151, 90, 0.1);
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.loop-insight p {
    font-size: 16px;
    color: #0B233F;
    font-weight: 500;
}

.loop-return {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.loop-return::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to left, #B8975A 0%, #B8975A 50%, transparent 50%);
    border-radius: 50% 50% 0 0;
}

.loop-return-arrow {
    font-size: 36px;
    color: #B8975A;
    margin-bottom: 10px;
    font-weight: 300;
}

.loop-return-text {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* ============================================
   SECTION 6: THE INNER AUTHORITY METHOD
   ============================================ */

.method {
    background: #F8F6F2;
    padding: 180px 0;
}

.method .eyebrow {
    text-align: center;
}

.method .section-title {
    color: #0B233F;
    margin-bottom: 100px;
}

.method-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.method-step {
    text-align: center;
    max-width: 150px;
}

.step-badge {
    background: transparent;
    color: #0B233F;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 2px solid #B8975A;
    padding-bottom: 10px;
}

.method-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.method-connector {
    width: 40px;
    height: 2px;
    background: #B8975A;
    opacity: 0.4;
    margin-top: 20px;
}

.method-close {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    text-align: center;
    color: #0B233F;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   SECTION 7: EVIDENCE
   ============================================ */

.evidence {
    background: #FFFFFF;
    padding: 180px 0;
}

.evidence .eyebrow {
    text-align: center;
}

.evidence .section-title {
    color: #0B233F;
    margin-bottom: 100px;
}

.evidence-transitions {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.transition {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(11, 35, 63, 0.08);
}

.transition:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.before {
    font-size: 18px;
    color: #aaa;
    text-align: right;
    font-style: italic;
    line-height: 1.6;
}

.arrow {
    font-size: 24px;
    color: #B8975A;
    font-weight: 400;
}

.after {
    font-size: 18px;
    color: #0B233F;
    font-weight: 500;
    line-height: 1.6;
}

.evidence-close {
    font-size: 19px;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ============================================
   SECTION 8: FOUNDER STORY
   ============================================ */

.founder {
    background: #F8F6F2;
    padding: 180px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.founder-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #0B233F;
    line-height: 1.15;
}

.founder-background {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 45px;
}

.founder-quotes {
    margin-bottom: 40px;
}

.founder-quotes blockquote {
    font-size: 19px;
    color: #0B233F;
    line-height: 1.65;
    margin-bottom: 28px;
    padding-left: 30px;
    border-left: 3px solid #B8975A;
    font-style: italic;
}

.founder-revelation {
    font-size: 18px;
    color: #0B233F;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.7;
}

.founder-credential {
    font-size: 13px;
    color: #999;
    margin-top: 40px;
}

/* ============================================
   SECTION 9: CLIENT EVIDENCE
   ============================================ */

.clients {
    background: #FFFFFF;
    padding: 180px 0;
}

.client-evidence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.evidence-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: 3px solid #B8975A;
    padding-left: 30px;
}

.evidence-item blockquote {
    font-size: 18px;
    color: #0B233F;
    line-height: 1.75;
    font-style: normal;
    margin-bottom: 25px;
}

.evidence-attribution {
    font-size: 15px;
    color: #0B233F;
    font-weight: 600;
    margin-top: 25px;
    line-height: 1.4;
}

.evidence-role {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* ============================================
   SECTION 10: THE PRIVATE EXPERIENCE
   ============================================ */

.experience {
    background: #0B233F;
    color: #F8F6F2;
    padding: 180px 0;
    text-align: center;
}

.experience .eyebrow {
    color: #B8975A;
}

.experience-intro {
    font-size: 19px;
    color: rgba(248, 246, 242, 0.8);
    max-width: 750px;
    margin: 0 auto 100px;
    line-height: 1.8;
}

.experience-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.experience-option {
    padding: 60px 50px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(248, 246, 242, 0.15);
    transition: all 0.3s;
    flex: 1;
}

.experience-option:last-child {
    border-right: none;
}

.experience-option h3 {
    font-size: 26px;
    font-weight: 400;
    color: #F8F6F2;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: 'Cormorant', serif;
}

.experience-option p {
    font-size: 17px;
    color: rgba(248, 246, 242, 0.7);
    line-height: 1.7;
}

.experience-close {
    font-size: 19px;
    color: rgba(248, 246, 242, 0.8);
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.experience .cta-button {
    background: #F8F6F2;
    color: #0B233F;
    border-color: #F8F6F2;
}

.experience .cta-button:hover {
    background: transparent;
    color: #F8F6F2;
}

/* ============================================
   SECTION 11: FINAL INVITATION
   ============================================ */

.invitation {
    background: #F8F6F2;
    padding: 180px 0;
}

.invitation-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
}

.invitation-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #0B233F;
    line-height: 1.25;
}

.invitation-description {
    font-size: 19px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.invitation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

.footer {
    background: #0B233F;
    color: #F8F6F2;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #B8975A;
    margin-bottom: 10px;
}

.footer-statement {
    font-size: 13px;
    color: rgba(248, 246, 242, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #F8F6F2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(248, 246, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #B8975A;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(248, 246, 242, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(248, 246, 242, 0.5);
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 100px;
    }
    
    .hero-content,
    .founder-content,
    .invitation-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .section-headline {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 46px;
    }
    
    .condition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .client-evidence,
    .experience-options {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-option {
        border-right: none;
        border-bottom: 1px solid rgba(248, 246, 242, 0.15);
        padding: 50px 30px;
    }
    
    .experience-option:last-child {
        border-bottom: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-image img {
        object-fit: cover;
        object-position: center 20%;
        height: 500px;
    }
    
    .section-headline {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .condition-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .loop-diagram {
        flex-direction: column;
        gap: 20px;
    }
    
    .loop-arrow {
        transform: rotate(90deg);
    }
    
    .loop-return {
        margin-top: 30px;
    }
    
    .loop-return-arrow {
        font-size: 40px;
    }
    
    .method-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .method-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .method-step {
        max-width: 100%;
    }
    
    .transition {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .before {
        text-align: center;
    }
    
    .after {
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .signal {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .founder-image img,
    .invitation-image img {
        object-fit: cover;
        object-position: center 20%;
        height: 500px;
    }
    
    .founder-title,
    .invitation-title {
        font-size: 36px;
    }
    
    .client-evidence {
        gap: 50px;
    }
    
    .experience-options {
        flex-direction: column;
    }
}
