/*
==================================================
Elevate Event Collective
Author: Scott + ChatGPT
Version: 1.0
==================================================
*/

/*=============================
    FONTS
=============================*/

@font-face {
    font-family: "Cinzel";
    src: url("../fonts/Cinzel-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/*=============================
    ROOT VARIABLES
=============================*/

:root{

    --navy:#0B1D33;
    --gold:#C8A14B;
    --sage:#7D8D7A;
    --cream:#F7F3ED;
    --stone:#D9D6D0;

    --max-width:1280px;

    --shadow:
        0 20px 60px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*=============================
    RESET
=============================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--cream);

    color:var(--navy);

    font-family:"Montserrat",sans-serif;

    line-height:1.7;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}

/*=============================
    TYPOGRAPHY
=============================*/

h1,h2,h3,h4{

    font-family:"Cinzel",serif;

    font-weight:700;

    letter-spacing:1px;

}

h1{

    font-size:clamp(3rem,6vw,5.8rem);

    line-height:1.05;

}

h2{

    font-size:clamp(2rem,4vw,3.5rem);

}

p{

    font-size:1.05rem;

    color:#4c5b67;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    display:block;

    max-width:100%;

}

/*=============================
    LAYOUT
=============================*/

.container{

    width:min(92%, var(--max-width));

    margin:auto;

}

section{

    padding:7rem 0;

}

/*=============================
    HEADER
=============================*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247,243,237,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: height var(--transition), box-shadow var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
    transition: height var(--transition);
}

.site-header.scrolled .container {
    height: 66px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.logo-mark {
    height: 38px;
    width: auto;
    flex-shrink: 0;
    transition: height var(--transition);
}

.logo-text {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    color: var(--navy);
    line-height: 1.1;
    white-space: nowrap;
}

.site-header.scrolled .logo-mark {
    height: 30px;
}

.site-header.scrolled .logo-text {
    font-size: .9rem;
}

/* Desktop Nav */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,.15);
    margin: 0 .25rem;
}

.nav-social {
    display: flex;
    align-items: center;
    color: var(--navy);
    opacity: .55;
    transition: opacity var(--transition), color var(--transition);
}

.nav-social:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-cta {
    padding: 11px 24px !important;
    font-size: .8rem !important;
    letter-spacing: 1px;
    margin-left: .5rem;
}

/* Mobile Toggle */

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.mobile-toggle.open .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--cream);
    z-index: 999;
    padding: 6rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding-bottom: 1.2rem;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-cta {
    display: inline-block;
    background: var(--navy);
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    text-align: center;
    border-bottom: none !important;
    margin-top: .5rem;
    transition: background var(--transition), transform var(--transition) !important;
}

.mobile-cta:hover {
    background: var(--gold) !important;
    transform: translateY(-2px);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 50%;
    color: var(--navy);
    transition: border-color var(--transition), color var(--transition);
}

.mobile-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,29,51,.45);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/*=============================
    HERO
=============================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:

    linear-gradient(
        rgba(247,243,237,.90),
        rgba(247,243,237,.88)
    ),

    url("../images/hero.jpg")
    center center/cover;

}

.hero-content{

    max-width:700px;

}

.eyebrow{

    display:inline-block;

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:1.4rem;

}

.hero p{

    max-width:600px;

    margin:2rem 0;

    font-size:1.15rem;

}

.hero-buttons{

    display:flex;

    gap:1rem;

    flex-wrap:wrap;

}

/*=============================
    BUTTONS
=============================*/

.btn-primary{

    background:var(--navy);

    color:white;

    padding:18px 34px;

    border-radius:50px;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--gold);

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid var(--navy);

    padding:18px 34px;

    border-radius:50px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--navy);

    color:white;

}

/*=============================
    SHARED
=============================*/

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4.5rem;
}

.section-header h2 {
    margin-top: .75rem;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .75rem;
    font-weight: 700;
}

/*=============================
    HERO
=============================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 86px;
    background: var(--cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.hero-content h1 {
    margin: 1.4rem 0 2rem;
    line-height: 1.05;
}

.hero-content > p {
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 2.8rem;
    line-height: 1.85;
    color: #5a6a76;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-logo {
    width: 100%;
    max-width: 420px;
}

/*=============================
    PROOF BAR
=============================*/

.proof-bar {
    background: white;
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
    padding: 2.4rem 0;
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: 0 4rem;
    text-align: center;
}

.proof-num {
    font-family: "Cinzel", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.proof-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--stone);
    flex-shrink: 0;
}

/*=============================
    MISSION
=============================*/

.mission {
    background: var(--navy);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200,161,75,.12);
    pointer-events: none;
}

.mission::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(200,161,75,.08);
    pointer-events: none;
}

.mission-inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-badge img {
    width: 140px;
}

.mission-text .eyebrow { color: var(--gold); }

.mission-text h2 {
    color: white;
    margin: .75rem 0 1.8rem;
    line-height: 1.15;
}

.mission-text p {
    color: rgba(255,255,255,.65) !important;
    font-size: 1.05rem !important;
    line-height: 1.9;
    max-width: 580px;
}

.mission-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 2rem;
    color: var(--gold);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.mission-link:hover { gap: 1rem; }

/*=============================
    HOW IT WORKS
=============================*/

.process {
    padding: 8rem 0;
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(200,161,75,.2), var(--gold));
}

.process-step {
    padding: 0 2.5rem;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: var(--gold);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(200,161,75,.3);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: .9rem;
    line-height: 1.3;
}

.process-step p {
    font-size: .92rem !important;
    line-height: 1.8;
    color: #5a6a76 !important;
}

/*=============================
    SERVICES
=============================*/

.services-teaser {
    padding: 8rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 3rem 2.4rem;
    border: 1px solid var(--stone);
    border-radius: 6px;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 6px 6px 0 0;
    background: var(--stone);
    transition: background var(--transition);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    transform: translateY(-6px);
}

.service-card:hover::before {
    background: var(--gold);
}

.service-card--featured {
    background: var(--navy);
    border-color: var(--navy);
}

.service-card--featured::before {
    background: var(--gold);
}

.service-card--featured h3,
.service-card--featured p {
    color: white !important;
}

.service-card--featured p {
    color: rgba(255,255,255,.7) !important;
}

.service-card--featured .service-icon {
    background: rgba(200,161,75,.2);
    color: var(--gold);
}

.service-card--featured .service-tag {
    color: rgba(255,255,255,.45) !important;
    border-color: rgba(255,255,255,.15) !important;
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(200,161,75,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: .9rem;
}

.service-card p {
    font-size: .92rem !important;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-tag {
    font-size: .72rem !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa !important;
    border-top: 1px solid var(--stone);
    padding-top: 1rem;
    display: block;
}

/*=============================
    QUOTE BAND
=============================*/

.quote-band {
    background: var(--sage);
    padding: 6rem 0;
}

.quote-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.quote-mark {
    font-family: "Cinzel", serif;
    font-size: 5rem;
    color: rgba(255,255,255,.25);
    line-height: .5;
    margin-bottom: 1.5rem;
}

.quote-inner blockquote {
    font-family: "Cinzel", serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    line-height: 1.45;
    letter-spacing: .5px;
}

.quote-inner blockquote em {
    font-style: italic;
    color: rgba(255,255,255,.85);
}

.quote-attribution {
    margin-top: 1.8rem;
    font-size: .82rem !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6) !important;
}

/*=============================
    WHO WE SERVE
=============================*/

.serve {
    padding: 8rem 0;
    background: var(--cream);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.serve-card {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 6px;
    padding: 2.4rem 2rem;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.serve-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.07);
    transform: translateY(-4px);
}

.serve-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.serve-card h3 {
    font-size: .95rem;
    margin-bottom: .7rem;
}

.serve-card p {
    font-size: .88rem !important;
    line-height: 1.75;
    color: #5a6a76 !important;
}

/*=============================
    CTA BANNER
=============================*/

.cta-banner {
    padding: 7rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(200,161,75,.1);
    pointer-events: none;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin: .5rem 0 .8rem;
}

.cta-banner p {
    color: rgba(255,255,255,.55) !important;
    font-size: .95rem !important;
}

.cta-btn {
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--gold) !important;
    padding: 20px 44px;
    font-size: .9rem;
}

.cta-btn:hover {
    background: white !important;
    color: var(--navy) !important;
}

/*=============================
    FOOTER
=============================*/

.site-footer {
    background: var(--navy);
    color: white;
    padding: 5rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr auto 1fr 1.2fr;
    gap: 0 4rem;
    align-items: start;
    padding-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.4rem;
}

.footer-logo-mark {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    color: white;
    line-height: 1.1;
    white-space: nowrap;
}

.footer-tagline {
    color: rgba(255,255,255,.6) !important;
    font-size: .9rem !important;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.6rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
    align-self: stretch;
}

.footer-heading {
    font-family: "Cinzel", serif;
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-nav a {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255,255,255,.65) !important;
    font-size: .9rem !important;
    margin-bottom: .6rem;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,.65);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-cta {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--gold) !important;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: var(--transition);
}

.footer-cta:hover {
    letter-spacing: 1.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.4rem 0;
}

.footer-bottom p {
    color: rgba(255,255,255,.35) !important;
    font-size: .8rem !important;
    text-align: center;
}

/*=============================
    MOBILE
=============================*/

@media(max-width:900px){

.desktop-nav{

display:none;

}

.mobile-toggle{

display:flex;

}

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.footer-inner{

grid-template-columns:1fr 1fr;

gap:3rem;

}

.footer-brand{

grid-column:1 / -1;

}

.footer-divider{

display:none;

}

section{

padding:5rem 0;

}

.hero-grid{

grid-template-columns:1fr;

gap:3rem;

padding:5rem 0;

}


.proof-grid{

flex-wrap:wrap;

gap:2rem;

}

.proof-item{

padding:0 2rem;

}

.proof-divider{

display:none;

}

.mission-inner{

grid-template-columns:1fr;

gap:2.5rem;

}

.mission-badge img{

width:80px;

}

.process-steps{

grid-template-columns:1fr;

gap:3rem;

}

.process-steps::before{

display:none;

}

.process-step{

padding:0;

text-align:left;

display:grid;

grid-template-columns:64px 1fr;

gap:1.5rem;

align-items:start;

}

.step-number{

margin:0;

flex-shrink:0;

}

.process-step h3,
.process-step p{

grid-column:2;

margin-top:0;

}

.process-step h3{

margin-top:1rem;

}

.services-grid{

grid-template-columns:1fr;

}

.serve-grid{

grid-template-columns:1fr 1fr;

}

.cta-banner-inner{

flex-direction:column;

text-align:center;

}

}

@media(max-width:560px){

.footer-inner{

grid-template-columns:1fr;

gap:2.5rem;

}

.footer-tagline{

max-width:100%;

}

.serve-grid{

grid-template-columns:1fr;

}

.services-grid{

gap:1.2rem;

}

.hero-visual{

display:none;

}

}