/* ============================================
   Karen Safo-Barnieh
   Clean. Minimal. Authority & warmth.
   ============================================ */

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

:root {
    --ivory:      #FAF8F5;
    --ivory-mid:  #F2EDE6;
    --green:      #1C3A2A;
    --green-mid:  #243F30;
    --brass:      #B8986A;
    --brass-light:#C9A87A;
    --charcoal:   #2D2D2D;
    --body-col:   #4A4444;
    --muted:      #88847C;
    --white:      #FFFFFF;
    --display:    'Cormorant Garamond', Georgia, serif;
    --body:       'DM Sans', -apple-system, sans-serif;
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--brass); color: var(--white); }

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

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--brass); }

/* --- Reveal on scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.5rem 0;
    background: var(--ivory);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.nav.scrolled {
    padding: 1rem 0;
    border-bottom-color: rgba(0,0,0,0.07);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}
.nav-links {
    display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
    transition: color 0.25s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-cta {
    color: var(--brass) !important;
    border: 1px solid var(--brass);
    padding: 0.45rem 1.25rem;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover {
    background: var(--brass); color: var(--white) !important;
}
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 1px; background: var(--charcoal); transition: all 0.3s; }


/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer; border: none;
    transition: all 0.3s var(--ease);
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-outline {
    background: transparent; color: var(--charcoal);
    border: 1px solid rgba(45,45,45,0.3);
}
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--ivory); }

.btn-light { background: var(--ivory); color: var(--green); }
.btn-light:hover { background: var(--ivory-mid); }

.btn-outline-light {
    background: transparent; color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.6); }

.btn-full { width: 100%; }


/* ============================================
   Shared type elements
   ============================================ */
.section-label {
    display: block;
    font-size: 0.6rem; font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--brass); margin-bottom: 1rem;
}
.section-label.light { color: rgba(255,255,255,0.45); }

.section-heading {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    line-height: 1.08; color: var(--charcoal); margin-bottom: 2rem;
}
.section-heading em { font-style: italic; color: var(--green); font-weight: 300; }
.section-heading.light { color: var(--white); }
.section-heading.light em { color: var(--brass); }

.body-text {
    font-size: 0.95rem; font-weight: 300; color: var(--body-col);
    line-height: 1.85; margin-bottom: 1.25rem;
}
.body-text.light { color: rgba(255,255,255,0.65); }


/* ============================================
   Hero — split layout
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.hero-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 4rem 6rem 5rem;
    background: var(--ivory);
}
.hero-label {
    font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 2rem;
}
.hero-name {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 1.05; color: var(--charcoal); margin-bottom: 1.75rem;
}
.hero-name em { font-style: italic; color: var(--green); font-weight: 300; }
.hero-tagline {
    font-size: 1.05rem; font-weight: 300; color: var(--body-col);
    line-height: 1.7; margin-bottom: 2.5rem; max-width: 360px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-image {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.hero-image img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
}


/* ============================================
   Press / As Seen In
   ============================================ */
.press {
    padding: 3rem 0;
    background: var(--ivory);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.press-label {
    font-size: 0.58rem; font-weight: 500; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--muted);
    text-align: center; margin-bottom: 1.75rem;
}
.press-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; flex-wrap: wrap;
}
.press-logo-img {
    height: 28px; width: auto; display: block;
    filter: grayscale(100%) opacity(0.28);
    transition: filter 0.35s;
}
.press-logo-img:hover { filter: grayscale(0%) opacity(0.65); }
.press-divider {
    width: 1px; height: 18px;
    background: rgba(0,0,0,0.1); flex-shrink: 0;
}

@media (max-width: 768px) {
    .press-divider { display: none; }
    .press-logos { gap: 1.5rem 2rem; }
    .press-logo-img { height: 22px; }
}

/* ============================================
   About
   ============================================ */
.about { padding: 8rem 0; background: var(--ivory); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
}
.about-image { overflow: hidden; }
.about-image img {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; object-position: center top;
    filter: grayscale(10%);
    transition: filter 0.6s;
}
.about-image img:hover { filter: grayscale(0%); }

/* Accolades */
.accolades {
    display: flex; gap: 2.5rem;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    flex-wrap: wrap;
}
.accolade-number, .accolade-text {
    font-family: var(--display); font-size: 2.2rem; font-weight: 400;
    color: var(--brass); display: block; line-height: 1; margin-bottom: 0.35rem;
}
.accolade-label {
    font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
}


/* ============================================
   Advisory
   ============================================ */
.advisory { padding: 8rem 0; background: var(--green); }
.advisory-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: end; margin-bottom: 5rem;
}
.advisory-intro {
    font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.6);
    line-height: 1.85;
}
.advisory-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: rgba(255,255,255,0.07);
}
.advisory-card {
    padding: 3rem 2.5rem;
    background: var(--green);
    transition: background 0.3s;
}
.advisory-card:hover { background: var(--green-mid); }
.advisory-card-number {
    font-family: var(--display); font-style: italic; font-size: 1.1rem;
    color: var(--brass); display: block; margin-bottom: 1.25rem;
}
.advisory-card h3 {
    font-family: var(--display); font-size: 1.6rem; font-weight: 400;
    color: var(--white); margin-bottom: 1rem; line-height: 1.15;
}
.advisory-card p {
    font-size: 0.85rem; font-weight: 300;
    color: rgba(255,255,255,0.55); line-height: 1.8;
}


/* ============================================
   Journal
   ============================================ */
.journal { padding: 8rem 0; background: var(--ivory-mid); }
.journal-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 2.5rem;
}
.article-card {
    display: block; padding: 3rem 3.5rem;
    background: var(--ivory); border: 1px solid rgba(0,0,0,0.07);
    max-width: 780px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.article-card:hover {
    border-color: var(--brass);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.article-tag {
    font-size: 0.58rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 1.25rem;
}
.article-title {
    font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 400; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.2;
}
.article-excerpt {
    font-size: 0.9rem; font-weight: 300; color: var(--body-col);
    line-height: 1.8; margin-bottom: 1.75rem;
}
.article-read {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--brass);
    text-decoration: underline; text-underline-offset: 4px;
}


/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 8rem 0; background: var(--ivory);
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.cta-heading {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--charcoal); margin-bottom: 1.25rem; line-height: 1.1;
}
.cta-heading em { font-style: italic; color: var(--green); font-weight: 300; }
.cta-text {
    font-size: 1rem; font-weight: 300; color: var(--body-col);
    line-height: 1.8; margin-bottom: 2.5rem;
    max-width: 520px; margin-left: auto; margin-right: auto;
}


/* ============================================
   Footer
   ============================================ */
.footer { background: var(--green); padding: 5rem 0 2.5rem; }
.footer-inner {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem; gap: 4rem;
}
.footer-brand { flex: 1; }
.footer-logo {
    font-family: var(--display); font-size: 1.5rem; font-style: italic;
    color: var(--white); display: block; margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.45);
    line-height: 1.7; max-width: 240px; margin-bottom: 1.75rem;
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
    color: rgba(255,255,255,0.35); transition: color 0.25s, transform 0.25s;
    display: flex; align-items: center;
}
.social-links a:hover { color: var(--brass); transform: translateY(-2px); }
.footer-nav { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
    font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45); transition: color 0.25s; text-transform: uppercase;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); text-transform: uppercase; }


/* ============================================
   Practice page — Page Hero
   ============================================ */
.page-hero {
    padding: 11rem 0 7rem;
    background: var(--green);
    text-align: center;
}
.page-hero-title {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: var(--white); line-height: 1.05; margin-bottom: 1.5rem;
}
.page-hero-title em { font-style: italic; color: var(--brass); font-weight: 300; }
.page-hero-sub {
    font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6);
    max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75;
}

/* ============================================
   Practice page — Services
   ============================================ */
.services { padding: 8rem 0; background: var(--ivory); }
.services-header { margin-bottom: 4rem; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 1px solid rgba(0,0,0,0.07);
}
.service-item {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(0,0,0,0.07);
    transition: background 0.3s;
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: var(--ivory-mid); }
.service-num {
    font-family: var(--display); font-style: italic; font-size: 1.1rem;
    color: var(--brass); display: block; margin-bottom: 1.5rem;
}
.service-name {
    font-family: var(--display); font-size: 2rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 1rem; line-height: 1.1;
}
.service-divider { width: 24px; height: 1px; background: var(--brass); margin-bottom: 1.5rem; }
.service-desc {
    font-size: 0.85rem; font-weight: 300; color: var(--body-col);
    line-height: 1.8; margin-bottom: 1.5rem;
}
.service-list { list-style: none; margin-bottom: 1.75rem; }
.service-list li {
    font-size: 0.8rem; font-weight: 300; color: var(--muted);
    padding: 0.4rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-list li:last-child { border-bottom: none; }
.service-link {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--brass);
    text-decoration: underline; text-underline-offset: 4px;
    transition: color 0.25s;
}
.service-link:hover { color: var(--green); }

/* ============================================
   Practice page — Testimonials
   ============================================ */
.testimonials { padding: 8rem 0; background: var(--ivory-mid); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
    max-width: 960px; margin: 0 auto;
}
.testimonial-card {
    padding: 3rem; background: var(--ivory);
    border: 1px solid rgba(0,0,0,0.06);
    transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--brass); }
.testimonial-quote {
    font-family: var(--display); font-size: 4rem;
    color: var(--brass); line-height: 0.5; margin-bottom: 1.75rem;
}
.testimonial-text {
    font-size: 0.9rem; font-weight: 300; color: var(--body-col);
    line-height: 1.9; margin-bottom: 1.75rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-line { width: 20px; height: 1px; background: var(--brass); flex-shrink: 0; }
.testimonial-author strong { font-size: 0.75rem; font-weight: 500; display: block; color: var(--charcoal); }
.testimonial-author span { font-size: 0.65rem; color: var(--muted); }

/* ============================================
   Practice page — FAQ
   ============================================ */
.faq { padding: 8rem 0; background: var(--ivory); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; background: none; border: none; cursor: pointer;
    font-family: var(--body); font-size: 0.9rem; font-weight: 400;
    color: var(--charcoal); text-align: left; gap: 2rem; transition: color 0.25s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
    font-family: var(--display); font-size: 1.4rem; color: var(--brass);
    flex-shrink: 0; transition: transform 0.3s;
    font-style: normal;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.9rem; font-weight: 300; color: var(--body-col); line-height: 1.9; }

/* ============================================
   Practice page — Contact
   ============================================ */
.contact { padding: 8rem 0; background: var(--ivory-mid); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.contact-desc {
    font-size: 0.95rem; font-weight: 300; color: var(--body-col);
    line-height: 1.85; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; font-weight: 300; color: var(--body-col); transition: color 0.25s;
}
.contact-item:hover { color: var(--green); }
.contact-icon { color: var(--brass); }
.contact-form { background: var(--ivory); padding: 3rem; border: 1px solid rgba(0,0,0,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: 0.58rem; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 0;
    font-family: var(--body); font-size: 0.9rem; font-weight: 300;
    color: var(--charcoal); background: transparent;
    border: none; border-bottom: 1px solid rgba(0,0,0,0.15);
    outline: none; transition: border-color 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--brass); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23B8986A' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 4px center;
    cursor: pointer;
}
.form-note { font-size: 0.62rem; color: var(--muted); text-align: center; margin-top: 1rem; }


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-image { min-height: 65vh; position: relative; }
    .hero-image img { position: absolute; }
    .hero-text { padding: 7rem 2.5rem 4rem; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 460px; }

    .advisory-header { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
    .advisory-grid { grid-template-columns: 1fr; }

    .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
    .service-item:last-child { border-bottom: none; }

    .footer-inner { flex-direction: column; gap: 2.5rem; }
    .footer-nav { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
        background: var(--ivory); flex-direction: column;
        padding: 5rem 2rem; gap: 0;
        border-left: 1px solid rgba(0,0,0,0.06);
        transition: right 0.4s var(--ease);
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }

    .hero-text { padding: 6rem 1.5rem 3rem; }
    .hero-name { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }

    .about { padding: 5rem 0; }
    .advisory { padding: 5rem 0; }
    .advisory-header { margin-bottom: 3rem; }
    .journal { padding: 5rem 0; }
    .cta { padding: 5rem 0; }
    .services { padding: 5rem 0; }
    .testimonials { padding: 5rem 0; }
    .faq { padding: 5rem 0; }
    .contact { padding: 5rem 0; }

    .accolades { gap: 1.5rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .page-hero { padding: 9rem 0 5rem; }
}
