/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --navy:        #0a1628;
    --navy-deep:   #060f1d;
    --charcoal:    #141e30;
    --charcoal-lt: #1c2940;
    --slate:       #2a3a52;
    --gold:        #c9a84c;
    --gold-light:  #dfc06a;
    --gold-dim:    rgba(201, 168, 76, 0.15);
    --cream:       #f0e6d0;
    --text:        #c8cdd5;
    --text-muted:  #7e8a9a;
    --white:       #eef0f2;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;
    --section-pad: clamp(5rem, 10vw, 9rem);
    --container:   1140px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--navy-deep);
    line-height: 1.75;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo image */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: 48px;
    width: auto;
    border-radius: 50%;
    transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }

.footer-logo-img {
    height: 42px;
    width: auto;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    color: var(--gold) !important;
    transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--slate);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 var(--section-pad);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 168, 76, 0.04), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(42, 58, 82, 0.3), transparent);
    pointer-events: none;
}
.hero-content { position: relative; max-width: 780px; }

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.75rem;
}
.hero-line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.35s; }
.hero-line:nth-child(2) { animation-delay: 0.5s; }
.hero-line:nth-child(3) { animation-delay: 0.65s; }
.hero-line.accent { color: var(--gold); }

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 660px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.85s forwards;
}
.hero-subtitle strong { color: var(--white); font-weight: 500; }

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.15s forwards;
}

/* Hero social icons */
.hero-social {
    display: flex;
    gap: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.3s forwards;
}
.hero-social a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}
.hero-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.25;
}
.section-title .accent { color: var(--gold); }

/* ============================================
   EXPERIENCE TIMELINE (Home)
   ============================================ */
.experience {
    padding: var(--section-pad) 0;
    background: var(--charcoal);
}
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.exp-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: start;
}
.exp-item:last-child { border-bottom: none; }

.exp-period {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.7;
    padding-top: 0.15rem;
}
.exp-content h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.exp-location {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.5rem;
}
.exp-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   SERVICES PREVIEW (Home)
   ============================================ */
.services-preview {
    padding: var(--section-pad) 0;
    background: var(--navy);
}
.section-header { margin-bottom: 4rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem;
    border-radius: 3px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1.25rem;
    display: block;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.service-card p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
}
.service-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ============================================
   AUDIENCE
   ============================================ */
.audience {
    padding: var(--section-pad) 0;
    background: var(--navy-deep);
}
.audience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.audience-list { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; }
.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--charcoal);
    border-radius: 3px;
    border-left: 2px solid var(--gold-dim);
    transition: border-color 0.3s;
}
.audience-item:hover { border-left-color: var(--gold); }
.audience-marker {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 0.55rem;
    flex-shrink: 0;
}
.audience-item p { font-size: 1.08rem; color: var(--text); line-height: 1.6; }

/* ============================================
   CTA
   ============================================ */
.cta { padding: var(--section-pad) 0; background: var(--charcoal); }
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.cta-inner p { color: var(--text-muted); margin-bottom: 2.25rem; font-size: 1.15rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.5rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.footer-social a {
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 1.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); opacity: 0.6; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    padding: 10rem 0 4rem;
    background: var(--navy);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.page-header .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 660px;
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section { padding: var(--section-pad) 0; }

.about-photo {
    margin-bottom: 2.5rem;
}
.headshot {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid var(--gold-dim);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-narrative h2 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.25rem;
    margin-top: 2.5rem;
}
.about-narrative h2:first-child { margin-top: 0; }
.about-narrative p {
    margin-bottom: 1.25rem;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.85;
}
.about-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.credential-block {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 3px;
    border-left: 2px solid var(--gold);
}
.credential-block h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.85rem;
}
.credential-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.credential-block li {
    font-size: 1.02rem;
    color: var(--text);
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}
.credential-block li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
    padding: var(--section-pad) 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}
.service-detail-label { position: sticky; top: 6rem; }
.service-detail-label .service-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.15;
    margin-bottom: 0.5rem;
}
.service-detail-label h2 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}
.service-detail-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
}
.service-detail-content h3:first-child { margin-top: 0; }
.service-detail-content p {
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.service-detail-content ul { list-style: none; margin-bottom: 1.5rem; }
.service-detail-content li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.65;
}
.service-detail-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section { padding: var(--section-pad) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.blog-card {
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.blog-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.blog-card p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; flex: 1; }
.blog-read-more {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.blog-read-more:hover { opacity: 0.7; }
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}
.blog-empty p { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.contact-info p { color: var(--text); line-height: 1.85; margin-bottom: 2rem; font-size: 1.08rem; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-method-icon { font-size: 1.4rem; width: 2.5rem; text-align: center; }
.contact-method-text a {
    color: var(--text);
    transition: color 0.3s;
    font-size: 1.05rem;
}
.contact-method-text a:hover { color: var(--gold); }
.contact-method-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Contact social links */
.contact-social-links {
    display: flex;
    gap: 1.5rem;
}
.contact-social-links a {
    font-size: 0.88rem;
    color: var(--text);
    transition: color 0.3s;
}
.contact-social-links a:hover { color: var(--gold); }

.calendly-wrapper {
    background: var(--charcoal);
    border-radius: 3px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.04);
    min-height: 500px;
}
.calendly-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ============================================
   BLOG POST (individual articles)
   ============================================ */
.blog-post {
    padding-bottom: var(--section-pad);
}
.blog-post-header {
    padding: 10rem 0 4rem;
    background: var(--navy);
    text-align: center;
    position: relative;
}
.blog-post-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}
.blog-post-meta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.blog-post-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.blog-post-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.blog-post-byline {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 4rem;
}
.blog-post-content .lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 400;
}
.blog-post-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 2.05rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}
.blog-post-content ul,
.blog-post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text);
}
.blog-post-content li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0.85rem;
    padding-left: 0.5rem;
}
.blog-post-content em {
    color: var(--cream);
    font-style: italic;
}
.blog-post-content strong {
    color: var(--white);
    font-weight: 500;
}
.blog-post-content hr {
    border: none;
    border-top: 1px solid rgba(201,168,76,0.2);
    margin: 3rem 0;
}
.blog-post-content .post-cta {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 3px;
    border-left: 2px solid var(--gold);
    font-size: 1rem;
    line-height: 1.7;
}
.blog-post-content .post-cta a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-post-content .post-cta a:hover {
    opacity: 0.7;
}

/* ============================================
   PRICING (services page)
   ============================================ */
.pricing-block {
    background: var(--charcoal);
    padding: 1.75rem;
    border-radius: 3px;
    border: 1px solid rgba(201,168,76,0.15);
    margin-top: 2rem;
}
.pricing-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.price-card {
    padding: 1rem;
    background: var(--navy-deep);
    border-radius: 3px;
    text-align: center;
}
.price-card-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    display: block;
}
.price-card-amount {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    display: block;
    line-height: 1.3;
}
.price-card-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: block;
}
@media (max-width: 700px) {
    .pricing-grid { grid-template-columns: 1fr; }
}


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .audience-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
    .service-detail-label { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 1.5rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .hero-stats { gap: 2rem; }
    .exp-item { grid-template-columns: 90px 1fr; gap: 1.25rem; }
}

@media (max-width: 640px) {
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(6, 15, 29, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }
    .nav-links.open { opacity: 1; pointer-events: all; }
    .nav-links a { font-size: 1.1rem; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .exp-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .exp-period { font-size: 0.85rem; }
}
