/* ============================================================ */
/* STYLE.CSS — Mazza Consulting & Coaching                      */
/* ============================================================ */

/* ============================================================ */
/* SECTION: VARIABLES & GLOBAL RESET                            */
/* ============================================================ */

:root {
    --primary:       #0d2b4e;
    --accent:        #163d72;
    --dark:          #1B1B1B;
    --white:         #ffffff;
    --off-white:     #f5f7fa;
    --light-gray:    #e8edf2;
    --text-muted:    #5a6a7a;
    --gold:          #c8a84b;
    --footer-bg:     #091c30;
    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Raleway', Arial, sans-serif;
    --font-serif:    'Lora', Georgia, serif;
    --transition:    all 0.3s ease;
    --shadow-sm:     0 2px 10px rgba(0,0,0,0.08);
    --shadow-md:     0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg:     0 12px 48px rgba(0,0,0,0.18);
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}


/* ============================================================ */
/* SECTION: TYPOGRAPHY                                          */
/* ============================================================ */

h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
}

h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
}

h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--primary);
}

p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--dark);
}

strong {
    font-weight: 700;
    color: var(--primary);
}


/* ============================================================ */
/* SECTION: UTILITY — CONTAINER & BUTTONS & ANIMATIONS         */
/* ============================================================ */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Primary Button (body sections) --- */
.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 14px 42px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Hero Button --- */
.btn-hero {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3.5px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    border: 2px solid var(--white);
    border-radius: 6px;
    padding: 18px 56px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35), 0 3px 10px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background-color: #080f18;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.5);
}

/* --- Fade-In-Up Animation --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

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


/* ============================================================ */
/* HEADER SECTION                                               */
/* ============================================================ */

.main-header {
    width: 100%;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}


.main-nav {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 18px 0;
    transition: padding 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    height: 96px;
    max-height: 96px;
    width: auto;
    display: block;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--dark);
    text-transform: uppercase;
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

/* --- Hamburger (mobile only) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.ham-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
}

.hamburger.ham-active .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.ham-active .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.ham-active .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


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

.hero {
    width: 100%;
    height: 760px;
    position: relative;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 3px 16px rgba(0,0,0,0.55);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-cta-text {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/* ============================================================ */
/* SECTION 1: ICON BAR                                          */
/* ============================================================ */

.icon-bar {
    width: 100%;
    background: linear-gradient(135deg, #0d2b4e 0%, #163d72 50%, #0d2b4e 100%);
    padding: 36px 0;
    border-top: 2px solid #060f1a;
    border-bottom: 3px solid #060f1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.icon-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 160px;
}

.icon-item img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.icon-item:hover img {
    transform: scale(1.1) translateY(-4px);
}

.icon-item span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
}


/* ============================================================ */
/* SECTION 2: ABOUT — SUPPORTING LEADERS                        */
/* ============================================================ */

.section-about {
    width: 100%;
    padding: 90px 0;
    background-color: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: stretch;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 28px;
}

.about-text p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.9;
    color: #2a2a2a;
    margin-bottom: 22px;
}

.about-text p:last-of-type {
    margin-bottom: 32px;
}

.about-image {
    display: flex;
    flex-direction: column;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    flex: 1;
}


/* ============================================================ */
/* SECTION 3: PARALLAX — WHY CHOOSE                             */
/* ============================================================ */

.parallax-why {
    width: 100%;
    position: relative;
    background-image: url('images/parallax-home.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 50px;
    text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-list li {
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.65;
    color: rgba(255,255,255,0.97);
    padding: 0 20px;
    position: relative;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.why-list li::before {
    content: '—';
    color: var(--gold);
    font-weight: 700;
    margin-right: 12px;
}


/* ============================================================ */
/* FAT FOOTER SECTION                                           */
/* ============================================================ */

.fat-footer {
    width: 100%;
    background-color: var(--footer-bg);
    padding: 80px 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* -- Left Column: Contact -- */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

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

.footer-contact address p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin-bottom: 8px;
}

.footer-contact address a[href^="tel"] {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    color: #7bbfe8;
    display: inline-block;
}

.footer-contact address a[href^="tel"]:hover {
    color: var(--white);
}

.footer-contact address a[href^="mailto"] {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(255,255,255,0.65);
}

.footer-contact address a[href^="mailto"]:hover {
    color: var(--white);
}

/* -- Center Column: Badge -- */
.footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cclc-badge {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
}

/* -- Right Column: Map -- */
.footer-map {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
    filter: grayscale(20%);
}


/* ============================================================ */
/* COPYRIGHT FOOTER BAR                                         */
/* ============================================================ */

.copyright-bar {
    width: 100%;
    background-color: #081626;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

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

.copyright-inner p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: rgba(255,255,255,0.45);
}

.copyright-inner a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(255,255,255,0.55);
}

.copyright-inner a:hover {
    color: var(--white);
}


/* ============================================================ */
/* SUB-PAGE TITLE BAR (shared across all inner pages)           */
/* ============================================================ */

.page-title-bar {
    width: 100%;
    min-height: 320px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-title-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.page-title-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.18;
    color: var(--white);
    text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}

.page-title-content .title-subtitle {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.55;
    color: rgba(255,255,255,0.90);
    font-style: italic;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}


/* ============================================================ */
/* CONSULTING PAGE — SECTION 1: TWO COLUMN                      */
/* ============================================================ */

.section-consulting {
    width: 100%;
    padding: 90px 0;
    background-color: var(--white);
}

.consulting-two-col {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: stretch;
}

.consulting-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 26px;
}

.consulting-text p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.consulting-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.consulting-list li {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #2a2a2a;
    padding-left: 22px;
    position: relative;
}

.consulting-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.consulting-list li strong {
    color: var(--primary);
    font-weight: 700;
}

.consulting-image {
    display: flex;
    flex-direction: column;
}

.consulting-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    flex: 1;
}


/* ============================================================ */
/* CONSULTING PAGE — SECTION 2: APPROACH & METHODOLOGY          */
/* ============================================================ */

.section-approach {
    width: 100%;
    padding: 80px 0;
    background-color: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.approach-inner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 20px;
}

.approach-inner > p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
    margin-bottom: 48px;
    max-width: 900px;
}

.approach-subsection {
    margin-bottom: 38px;
}

.approach-subsection h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.approach-subsection p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
}

.approach-sublist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    padding-left: 4px;
}

.approach-sublist li {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: #2a2a2a;
    padding-left: 22px;
    position: relative;
}

.approach-sublist li::before {
    content: '◦';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 16px;
}

.approach-sublist li strong {
    color: var(--primary);
    font-weight: 700;
}


/* ============================================================ */
/* CONSULTING PAGE — BOTTOM CTA                                 */
/* ============================================================ */

.section-page-cta {
    width: 100%;
    padding: 70px 0;
    background-color: var(--white);
    text-align: center;
}

.section-page-cta.cta-shaded {
    background-color: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
}

.section-page-cta p {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: var(--dark);
}

.section-page-cta p a {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--primary);
    font-style: italic;
}

.section-page-cta p a:hover {
    color: var(--accent);
}


/* ============================================================ */
/* TEAM PAGE — SHARED SECTION WRAPPER                           */
/* ============================================================ */

.section-team-member {
    width: 100%;
    padding: 80px 0;
    background-color: var(--white);
}

.section-team-member.alt-bg {
    background-color: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}


/* ============================================================ */
/* TEAM PAGE — GINA FEATURED SECTION                            */
/* ============================================================ */

.team-featured-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.team-member-name {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member-name .creds {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--text-muted);
    font-style: normal;
}

.team-member-role {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 26px;
}

.team-featured-text p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
    margin-bottom: 18px;
}

.team-featured-text p:last-of-type {
    margin-bottom: 0;
}

.team-subsection-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--primary);
    margin: 28px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-gray);
}

.team-contact-link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: var(--accent);
    display: inline-block;
    margin-top: 18px;
}

.team-contact-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- Right Sidebar --- */
.team-featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.team-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.credentials-block {
    background-color: var(--off-white);
    border-left: 4px solid var(--primary);
    border-radius: 0 4px 4px 0;
    padding: 22px 24px;
}

.credentials-block h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 14px;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credentials-list li {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: #333;
    padding-left: 18px;
    position: relative;
}

.credentials-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
    font-weight: 700;
}

.credentials-list li strong {
    color: var(--primary);
    font-weight: 700;
}


/* ============================================================ */
/* TEAM PAGE — ADVISOR SECTIONS (Rey, Kelly)                    */
/* ============================================================ */

.team-advisor-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
}

.team-advisor-name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-advisor-org {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.team-advisor-text p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.team-advisor-website {
    margin-top: 6px;
}

.team-advisor-website a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--accent);
}

.team-advisor-website a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.team-advisor-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}


/* ============================================================ */
/* TEAM PAGE — OUR NETWORK SECTION                              */
/* ============================================================ */

.section-network {
    width: 100%;
    padding: 80px 0;
    background-color: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.network-inner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 24px;
}

.network-inner p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.9;
    color: #2a2a2a;
    max-width: 900px;
    margin-bottom: 18px;
}

.network-inner p strong {
    color: var(--primary);
    font-weight: 700;
}

.network-inner p em {
    font-style: italic;
    color: var(--primary);
}


/* ============================================================ */
/* FAQ PAGE — MAIN Q&A SECTION                                  */
/* ============================================================ */

.section-faq {
    width: 100%;
    padding: 88px 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.faq-intro-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 36px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-q {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--primary);
    margin-bottom: 8px;
}

.faq-a {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: #2a2a2a;
}

.faq-a strong {
    color: var(--primary);
    font-weight: 700;
}

.faq-image {
    position: sticky;
    top: 150px;
}

.faq-image img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}


/* ============================================================ */
/* FAQ PAGE — LET US HELP YOU THRIVE SECTION                    */
/* ============================================================ */

.section-thrive {
    width: 100%;
    padding: 80px 0 40px;
    background-color: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.thrive-inner h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: var(--primary);
    margin-bottom: 16px;
}

.thrive-inner > p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 0;
    max-width: 100%;
}


/* ============================================================ */
/* RESPONSIVE — TABLET & MOBILE                                 */
/* ============================================================ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    h1,
    .hero-title {
        font-size: 52px;
    }

    h2 {
        font-size: 36px;
    }

    .parallax-content h2 {
        font-size: 40px;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-inner {
        grid-template-columns: 1fr 360px;
        gap: 44px;
    }

    .consulting-two-col {
        grid-template-columns: 1fr 340px;
        gap: 44px;
    }

    .page-title-content h1 {
        font-size: 44px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-map {
        grid-column: span 2;
    }

    .footer-map iframe {
        height: 220px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

    /* Header */
    .main-nav {
        padding: 10px 0;
    }

    .site-logo {
        height: 62px;
        max-height: 62px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    padding 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    box-shadow 0.3s ease,
                    visibility 0s linear 0.4s;
        box-shadow: none;
        z-index: 999;
    }

    .nav-links.nav-open {
        max-height: 400px;
        padding: 24px 0 32px;
        visibility: visible;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    padding 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    box-shadow 0.3s ease,
                    visibility 0s linear 0s;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 14px;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        height: 460px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: 0.01em;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2.5px;
    }

    .hero-cta-text {
        font-size: 17px;
    }

    .btn-hero {
        padding: 15px 38px;
        font-size: 13px;
    }

    /* Icon Bar */
    .icon-bar-inner {
        justify-content: center;
        gap: 32px 48px;
    }

    .icon-item {
        min-width: 130px;
        align-items: center;
    }

    /* About */
    .section-about {
        padding: 60px 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .consulting-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .consulting-image img {
        height: 300px;
        min-height: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image {
        position: static;
    }

    .faq-image img {
        height: 300px;
    }

    .faq-intro-heading {
        font-size: 28px;
    }

    .thrive-inner h2 {
        font-size: 30px;
    }

    .team-featured-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .team-advisor-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-advisor-photo {
        order: -1;
    }

    .team-advisor-photo img {
        height: 240px;
    }

    .team-photo img {
        height: 280px;
    }

    .team-member-name {
        font-size: 26px;
    }

    .network-inner h2 {
        font-size: 30px;
    }

    .page-title-bar {
        background-attachment: scroll;
        min-height: 260px;
    }

    .page-title-content h1 {
        font-size: 34px;
    }

    .page-title-content .title-subtitle {
        font-size: 16px;
    }

    .approach-inner h2 {
        font-size: 30px;
    }

    .approach-subsection h3 {
        font-size: 22px;
    }

    .section-page-cta p {
        font-size: 20px;
    }

    .section-page-cta p a {
        font-size: 24px;
    }

    .about-image img {
        height: 320px;
        min-height: 320px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    /* Parallax */
    .parallax-why {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .parallax-content h2 {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .why-list li {
        font-size: 18px;
        padding: 0 10px;
    }

    /* Footer */
    .fat-footer {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-map {
        grid-column: auto;
    }

    .footer-map iframe {
        height: 200px;
    }

    /* Copyright */
    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    .parallax-content h2 {
        font-size: 28px;
    }

    .icon-item span {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .icon-item img {
        height: 60px;
    }
}
