:root {
    --bg-dark: #050609;
    --bg-dark-soft: #0b0d13;
    --bg-light: #f7f5f1;
    --bg-page: #fcfbf9;

    --text-light: #f7f7f7;
    --text-muted-light: #c6c5c1;
    --text-dark: #181818;
    --text-muted: #575550;

    --accent: #caa46a;
    --accent-soft: rgba(202, 164, 106, 0.16);

    --border-light: #e4e0d7;
    --border-dark: #252730;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;

    --shadow-soft-dark: 0 30px 70px rgba(0, 0, 0, 0.7);
    --shadow-soft-light: 0 18px 40px rgba(27, 25, 20, 0.08);

    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;

    --max-width: 1120px;

    --transition-2: 0.3s ease;
    --cubic-out: cubic-bezier(0.19, 1, 0.22, 1);
}

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-page);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

/* GLOBAL */

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.6rem;
}

.section {
    padding: 5.5rem 0;
}

.section-dark {
    background: radial-gradient(circle at top, #171824 0, var(--bg-dark) 50%);
    color: var(--text-light);
}

.section-light {
    background: var(--bg-page);
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
}

.narrow {
    max-width: 780px;
    margin: 0 auto;
}

/* ================= HEADER + MENU ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 6, 9, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-logo img {
    display: block;
}

/* Desktop nav container */
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

/* Desktop links row */
.header .nav-links-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.header .nav-links-desktop a {
    color: var(--text-muted-light);
    position: relative;
    padding-bottom: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header .nav-links-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

/* Hover underline */
.header .nav-links-desktop a:hover::after {
    width: 100%;
}

/* Active underline */
.header .nav-links-desktop a.nav-links-desktop-active::after {
    width: 100%;
}

/* Active text color */
.header .nav-links-desktop a.nav-links-desktop-active {
    color: var(--text-light);
}

/* Menu icon (mobile trigger) */
.menu-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 30px;
    right: 48px;
    width: 30%;
    height: 90%;
    background: #212121;
    /* you can switch to var(--bg-dark) if you want fully on-brand */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 24px;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px 12px 32px;
    color: #fff;
    opacity: 0.85;
}

.menu-header span {
    font-size: 16px;
    font-weight: 400;
}

.close-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-menu svg {
    border: 1px solid #666;
    border-radius: 999px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    opacity: 1;
}

.menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 32px 32px 32px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-link {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-overlay.active .menu-link:nth-child(2) {
    transition-delay: 0.15s;
}

.menu-overlay.active .menu-link:nth-child(3) {
    transition-delay: 0.2s;
}

.menu-overlay.active .menu-link:nth-child(4) {
    transition-delay: 0.25s;
}

.menu-overlay.active .menu-link:nth-child(5) {
    transition-delay: 0.3s;
}

.menu-overlay.active .menu-link:nth-child(6) {
    transition-delay: 0.35s;
}

.menu-link:hover {
    opacity: 0.7;
}

.menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.4s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact,
.menu-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.menu-footer a:hover {
    opacity: 1;
}

/* ---------- HERO ---------- */

.hero {
    padding-top: 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    color: var(--text-muted-light);
    margin-bottom: 1.2rem;
}

.hero-copy h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin: 0 0 1.4rem;
}

.hero-subtitle {
    max-width: 480px;
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    /* justify-content: "center"; */
    align-items: center;
    margin-bottom: 1.4rem;
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.portrait-frame {
    border-radius: 26px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: radial-gradient(circle at top left, #22243a 0, #05060b 55%);
    box-shadow: var(--shadow-soft-dark);
}

.portrait-placeholder {
    border-radius: 22px;
    background: linear-gradient(145deg, #303247, #181927);
    background-image: url('./Artboard\ 1.jpg.jpeg');
    /* background-image: url('./image00001.jpeg'); */
    /* background-size: cover;
    background-position: 0px -100px; */
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    height: 340px;
}

.hero-note-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 15, 0.9);
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: var(--accent);
    color: #111;
    box-shadow: 0 20px 40px var(--accent-soft);
}

.btn-primary:hover {
    filter: brightness(1.02);
    box-shadow: 0 26px 54px rgba(202, 164, 106, 0.35);
}

.btn-link {
    background: transparent;
    border: 1px solid;
    color: var(--text-muted-light);
    font-size: 0.9rem;
    padding: 0.8rem 1.4rem;
    cursor: pointer;
    border-radius: var(--radius-pill);
    text-align: center;
    /* text-decoration: underline; */
    /* text-underline-offset: 0.3em; */
}

.btn-link:hover {
    color: var(--text-light);
}

/* TYPOGRAPHY FOR SECTIONS */

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 1.4rem;
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 0 0 0.9rem;
}

.lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 2rem;
}

.section-header {
    /* max-width: 720px; */
    margin-bottom: 2.5rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.section-dark .section-sub {
    color: var(--text-muted-light);
}

/* GRIDS */

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-md {
    gap: 1.8rem;
}

.gap-lg {
    gap: 2.4rem;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}



/* Outer layout: text block (left) + portrait (right) */
.coaching-outer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

/* Inside the left column: 2 text columns */
.coaching-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Portrait */
.coaching-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.coaching-portrait .portrait-frame {
    background: #fff;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    box-shadow: var(--shadow-soft-light);
}

.coaching-portrait .portrait-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.coaching-portrait .portrait-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Responsive: portrait moves BELOW text */
@media (max-width: 720px) {
    .coaching-outer-grid {
        grid-template-columns: 1fr;
    }

    .coaching-text-grid {
        grid-template-columns: 1fr;
    }

    .coaching-portrait {
        margin-top: 1.6rem;
    }
}

/* Outer layout */
.coaching-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

/* Left: Full text block */
.coaching-left-full {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Two columns for the lists */
.coaching-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

/* Right: Portrait block */
.coaching-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.coaching-right .portrait-frame {
    background: #fff;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px;
    width: 100%;
    box-shadow: var(--shadow-soft-light);
}

.coaching-right .portrait-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 720px) {

    .coaching-wrapper {
        grid-template-columns: 1fr;
    }

    .coaching-two-columns {
        grid-template-columns: 1fr;
    }

    .coaching-right {
        margin-top: 2rem;
    }
}




/* LISTS & TAGS */

.list-bullets {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.section-dark .list-bullets {
    color: var(--text-muted-light);
}

.list-bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
}

.list-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    color: var(--accent);
}

.list-bullets.compact li {
    margin-bottom: 0.4rem;
}

.section-heading-lined {
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
}

.section-heading-lined::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 1px;
    background: var(--accent);
}

.tag-row {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-row li {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CARDS & PANELS */

.cards-grid {
    margin-top: 2.2rem;
}

.card-dark {
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    background: linear-gradient(145deg, #191b28, #090a12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft-dark);
    font-size: 0.96rem;
    color: var(--text-muted-light);
}

.about-panel {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.about-block {
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.4rem;
    background: #fdfbf7;
    box-shadow: var(--shadow-soft-light);
    border: 1px solid var(--border-light);
    font-size: 0.94rem;
    color: var(--text-muted);
}

.about-block.subtle-border {
    background: transparent;
    box-shadow: none;
}

/* TIMELINE */

.timeline {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 2rem;
    padding-left: 1.4rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.9rem;
}

.timeline-dot {
    position: absolute;
    left: -1.1rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(202, 164, 106, 0.25);
}

.timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
}

/* CLIENT CHIPS */

.chip-column h3 {
    margin-bottom: 0.8rem;
}

.chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.chip-list li {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: #fdfbf7;
    color: var(--text-muted);
}

/* ================= CLIENT LOGO WALL ================= */

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    padding-top: 1rem;
}

.client-logos img {
    width: 100%;
    max-width: 160px;
    opacity: 0.8;
    filter: brightness(0) invert(0);
    /* Monochrome black logos */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
    transform: scale(1.06);
}

/* Dark mode compatibility */
.section-dark .client-logos img {
    filter: brightness(0) invert(1);
    /* White logos on dark sections */
}

/* QUOTES */

.quote-card {
    border-radius: var(--radius-md);
    padding: 1.4rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 11, 18, 0.9);
    font-size: 0.96rem;
    color: var(--text-muted-light);
}

.quote-card p {
    margin-bottom: 0.7rem;
}

.quote-card span {
    font-size: 0.82rem;
    opacity: 0.85;
}

/* FAQ */

.faq {
    border-top: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 0.9rem 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.96rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1rem;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

/* CONTACT FORM */

.contact-form {
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.5rem;
    background: rgba(8, 8, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-soft-dark);
    font-size: 0.95rem;
}

.field {
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

label {
    font-size: 0.82rem;
    color: var(--text-muted-light);
}

input,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(3, 3, 6, 0.95);
    color: var(--text-light);
    padding: 0.65rem 0.7rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-soft);
}

textarea {
    resize: vertical;
}

.form-note {
    margin-top: 0.7rem;
    font-size: 0.8rem;
}

/* FOOTER */

.site-footer {
    background: #050509;
    padding: 1.6rem 0 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-muted-light);
    font-size: 0.82rem;
}

.footer-link {
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

/* TEXT UTILS */

.muted {
    color: var(--text-muted);
}

.section-dark .muted {
    color: var(--text-muted-light);
}

/* SCROLL REVEAL */

.fade {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (min-width: 768px) {
    .menu-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-overlay {
        width: 100%;
        border-radius: 0;
        top: 0;
        right: 0;
        height: 100%;
    }

    .header {
        padding: 12px 24px;
    }

    .header .nav-links-desktop {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        order: -1;
    }

    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 4.5rem 0;
    }

    .contact-form {
        margin-top: 1.3rem;
    }
}

@media (max-width: 720px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .timeline {
        margin-left: 0.6rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* .btn-link {
        align-self: center;
    } */

    /* .hero-meta {
        text-align: center;
    } */

    .container {
        padding: 0 1.2rem;
    }
}