/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --navy:       #0C1B2E;
    --navy-2:     #112540;
    --navy-3:     #16304E;
    --gold:       #C49A3C;
    --gold-2:     #D9AE52;
    --gold-light: rgba(196, 154, 60, .13);
    --soft:       #F8F5EF;
    --white:      #FFFFFF;
    --text:       #1A2B3C;
    --muted:      #617285;
    --line:       rgba(12, 27, 46, .1);
    --line-dark:  rgba(255, 255, 255, .12);
    --shadow-sm:  0 2px 12px rgba(12, 27, 46, .07);
    --shadow:     0 20px 56px rgba(12, 27, 46, .1);
    --shadow-lg:  0 32px 80px rgba(12, 27, 46, .16);
}

/* ============================================================
   RESET & BASE
============================================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1, h2, h3 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.1;
    letter-spacing: -.01em;
}

h1 {
    max-width: 760px;
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    max-width: 700px;
    font-size: 2.4rem;
    font-weight: 700;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

button, input, select, textarea {
    font: inherit;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, calc(100% - 48px));
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    padding: .75rem 1rem;
    background: var(--white);
    color: var(--navy);
}

.skip-link:focus {
    left: 12px;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(12, 27, 46, .98);
    border-bottom: 1px solid rgba(196, 154, 60, .2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand img {
    display: block;
    width: 100px;
    transition: opacity .2s;
}

.brand:hover img {
    opacity: .85;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: rgba(255, 255, 255, .72);
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.main-nav > a,
.nav-dropdown > a {
    padding: .6rem .7rem;
    border-radius: 7px;
    transition: color .18s, background .18s;
}

.main-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .07);
}

.main-nav a.is-active {
    color: var(--gold-2);
    background: rgba(196, 154, 60, .1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 292px;
    padding: .5rem;
    background: var(--navy);
    border: 1px solid rgba(196, 154, 60, .22);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.dropdown-menu a {
    display: block;
    padding: .72rem .9rem;
    border-radius: 8px;
    font-size: .82rem;
    transition: background .15s, color .15s;
}

.dropdown-menu a:hover {
    background: rgba(196, 154, 60, .12);
    color: var(--gold-2);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.6rem;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.1;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}

.btn:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 154, 60, .35);
}

.btn-light,
.nav-cta {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-light:hover,
.nav-cta:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
    box-shadow: none;
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: none;
}

.btn-small {
    min-height: 38px;
    padding: .5rem 1rem;
    font-size: .8rem;
}

/* ============================================================
   EYEBROW LABELS
============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .9rem;
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ============================================================
   DARK SECTIONS — SHARED BACKGROUNDS & COLORS
============================================================ */
.home-hero,
.page-hero,
.section-navy,
.dark-section,
.services-section,
.process-section,
.blog-preview-section,
.authority-band {
    background: var(--navy);
    color: rgba(255, 255, 255, .75);
}

.home-hero h1,
.home-hero h2,
.home-hero h3,
.page-hero h1,
.section-navy h2,
.section-navy h3,
.dark-section h2,
.dark-section h3,
.services-section h2,
.services-section h3,
.process-section h2,
.process-section h3,
.blog-preview-section h2,
.blog-preview-section h3,
.authority-band h2,
.authority-band h3 {
    color: var(--white);
}

/* ============================================================
   HERO
============================================================ */
.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 96px 0 120px;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 80%, rgba(22, 48, 78, .45) 0%, transparent 55%);
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 154, 60, .5) 50%, transparent 100%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(180px, 380px);
    gap: 4rem;
    align-items: center;
}

.hero-grid,
.two-col,
.split-large {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 5rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-main {
    width: 220px;
    max-width: 100%;
    opacity: .92;
}

.hero-content p {
    max-width: 600px;
    color: rgba(255, 255, 255, .7);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
}

/* ============================================================
   CREDIBILITY STRIP
============================================================ */
.credibility-strip {
    position: relative;
    z-index: 2;
    margin-top: -64px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.metrics-grid article {
    padding: 1.65rem;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .22s, box-shadow .22s;
}

.metrics-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.metrics-grid strong {
    display: block;
    margin-bottom: .4rem;
    color: var(--navy);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.metrics-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

/* ============================================================
   HOME INTRO
============================================================ */
.home-intro {
    background: var(--white);
}

.intro-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
    margin-top: -60px;
    padding: 2.6rem;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow);
}

.intro-panel p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-soft,
.band,
.cream-section,
.faq-section,
.light-panel-section {
    background: var(--soft);
}

.section-title,
.section-heading {
    width: min(720px, 100%);
    margin-bottom: 2.75rem;
}

.section-title.centered,
.section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title p,
.section-heading p,
.split-large p {
    color: inherit;
}

.problem-panel {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 5rem;
    align-items: start;
}

.problem-panel p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

/* ============================================================
   FEATURE / SERVICE CARDS
============================================================ */
.feature-grid,
.cards-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-grid,
.cards-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.info-card,
.post-card,
.team-card,
.contact-box,
.site-form,
.article-sidebar,
.post-cta,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.feature-grid article,
.info-card {
    min-height: 100%;
    padding: 1.85rem;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feature-grid article:hover,
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(196, 154, 60, .35);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1.35rem;
    border-radius: 13px;
    background: var(--gold-light);
    color: var(--gold);
    flex-shrink: 0;
}

.feature-grid span,
.process-row span,
.steps span {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.feature-grid p,
.info-card p,
.post-card p,
.team-card p {
    color: var(--muted);
    line-height: 1.68;
}

.feature-grid h2,
.feature-grid h3,
.post-card h2,
.post-card h3 {
    font-size: 1.12rem;
    margin-bottom: .65rem;
}

.feature-grid a,
.info-card a,
.post-card a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .6rem;
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: gap .2s;
}

.feature-grid a::after,
.info-card a::after,
.post-card a::after {
    content: '→';
    transition: transform .2s;
}

.feature-grid a:hover::after,
.info-card a:hover::after,
.post-card a:hover::after {
    transform: translateX(4px);
}

/* Dark section cards */
.section-navy .feature-grid article,
.section-navy .info-card,
.dark-section .info-card,
.services-section .info-card,
.blog-preview-section .post-card {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(196, 154, 60, .15);
    box-shadow: none;
}

.section-navy .feature-grid article:hover,
.section-navy .info-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(196, 154, 60, .38);
    transform: translateY(-4px);
}

.section-navy .info-card p,
.section-navy .feature-grid p,
.dark-section .info-card p,
.services-section .info-card p,
.blog-preview-section .post-card p {
    color: rgba(255, 255, 255, .65);
}

.section-navy .info-card a,
.section-navy .feature-grid a,
.dark-section .info-card a,
.services-section .info-card a,
.blog-preview-section .post-card a {
    color: var(--gold);
}

/* ============================================================
   SPLIT LAYOUTS
============================================================ */
.split-large {
    align-items: start;
    gap: 5rem;
}

.service-list {
    display: grid;
    gap: .75rem;
}

.service-list a {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 1rem 1.3rem;
    border: 1px solid rgba(196, 154, 60, .2);
    border-radius: 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .04);
    font-weight: 600;
    font-size: .92rem;
    transition: background .2s, border-color .2s, color .2s;
}

.service-list a:hover {
    background: rgba(196, 154, 60, .12);
    border-color: rgba(196, 154, 60, .45);
    color: var(--white);
}

.long-copy {
    max-width: 720px;
}

.long-copy p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

/* ============================================================
   SCOPE CARD & NOTE BOX
============================================================ */
.scope-card,
.note-box {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.scope-card {
    padding: 1.75rem;
    position: sticky;
    top: 104px;
    border-top: 3px solid var(--gold);
}

.note-box {
    padding: 1.35rem;
    margin: 1.6rem 0;
    background: var(--soft);
}

.note-box h2,
.scope-card h2 {
    font-size: 1.2rem;
}

/* ============================================================
   PROCESS / STEPS
============================================================ */
.process-row,
.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.process-row article,
.steps article {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    transition: transform .22s, box-shadow .22s;
}

.process-row article:hover,
.steps article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.process-row p,
.steps p {
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   PROOF / SEAL GRID
============================================================ */
.proof-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
    gap: 3.5rem;
    align-items: center;
}

.proof-panel p {
    color: var(--muted);
    line-height: 1.72;
}

.proof-grid,
.seal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.proof-grid span,
.seal-grid span {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--soft);
    color: var(--navy);
    font-weight: 700;
    font-size: .9rem;
    transition: border-color .2s, background .2s;
}

.proof-grid span:hover,
.seal-grid span:hover {
    border-color: rgba(196, 154, 60, .4);
    background: var(--gold-light);
}

.section-navy .seal-grid span,
.dark-section .seal-grid span {
    border-color: rgba(196, 154, 60, .2);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
}

/* ============================================================
   PAGE HERO
============================================================ */
.page-hero {
    padding: 96px 0 84px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 154, 60, .4), transparent);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.04rem;
    line-height: 1.72;
}

/* ============================================================
   CHECK LIST & BLOCKQUOTE
============================================================ */
.check-list {
    display: grid;
    gap: .72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
    line-height: 1.65;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

blockquote {
    margin: 1.8rem 0 0;
    padding: 1.3rem 1.5rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: var(--soft);
    color: var(--navy);
    font-style: italic;
}

/* ============================================================
   POST / BLOG CARDS
============================================================ */
.post-card {
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.post-card img,
.post-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.post-card div {
    padding: 1.45rem;
}

.post-card span,
.post-card time {
    display: block;
    margin-bottom: .55rem;
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.post-card h2 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.post-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, .35);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ============================================================
   TEAM / BIO CARDS
============================================================ */
.team-card {
    padding: 1.85rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-list {
    display: grid;
    gap: 1.25rem;
}

.bio-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
    padding: 1.85rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .22s, box-shadow .22s, border-color .22s;
}

.bio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(196, 154, 60, .3);
}

.bio-card .initials {
    margin: 0;
}

.bio-card h2 {
    font-size: 1.35rem;
    margin-bottom: .35rem;
}

.bio-card p {
    color: var(--muted);
    line-height: 1.65;
}

.bio-card .role {
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .02em;
    margin-bottom: .6rem;
}

.initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
    border: 2px solid rgba(196, 154, 60, .4);
    color: var(--gold);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
}

/* ============================================================
   CATEGORY PILLS
============================================================ */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
}

.category-pills span {
    display: inline-flex;
    padding: .42rem .8rem;
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--navy);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid rgba(196, 154, 60, .28);
}

.empty-state {
    padding: 2.8rem;
    border: 1px dashed rgba(196, 154, 60, .35);
    border-radius: 16px;
    background: var(--soft);
    text-align: center;
    color: var(--muted);
    font-size: .95rem;
}

/* ============================================================
   ARTICLE / POST PAGE
============================================================ */
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    align-items: start;
}

.article-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.article-content {
    font-size: 1.02rem;
    line-height: 1.78;
}

.article-content h2,
.article-content h3 {
    margin-top: 2.2rem;
}

.article-content a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================
   ARTICLE PAGE — hero, meta, images, CTAs, sidebar
============================================================ */
.article-hero-inner {
    max-width: 820px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .85rem;
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.article-meta-sep {
    opacity: .45;
}

.article-featured-img {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2.25rem;
    box-shadow: 0 12px 40px rgba(12, 27, 46, .12);
}

.article-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 0;
}

.article-main {
    min-width: 0;
}

.article-content h2,
.article-content h3 {
    margin-top: 2.2rem;
}

.article-content a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.75rem auto;
    box-shadow: 0 8px 28px rgba(12, 27, 46, .1);
}

.article-content figure {
    margin: 1.75rem 0;
}

.article-content figcaption {
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    font-style: italic;
    margin-top: .55rem;
}

.article-content blockquote {
    margin: 1.75rem 0;
}

/* WhatsApp inline CTA */
.article-wa-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: #E9FBF0;
    border: 1px solid rgba(37, 211, 102, .28);
}

.article-wa-cta-text strong {
    display: block;
    color: #0D4A22;
    font-size: 1.02rem;
    margin-bottom: .3rem;
}

.article-wa-cta-text p {
    margin: 0;
    color: #1A6633;
    font-size: .9rem;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 46px;
    padding: .75rem 1.4rem;
    border-radius: 999px;
    background: #25D366;
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .88rem;
    white-space: nowrap;
    border: none;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-wa:hover {
    background: #1EBF58;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

/* Post CTA box */
.post-cta {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--soft);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 16px 16px;
}

.post-cta h2 {
    font-size: 1.35rem;
    margin-bottom: .5rem;
}

.post-cta p {
    color: var(--muted);
    margin-bottom: 0;
}

.post-cta-actions {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

/* Sidebar boxes */
.sidebar-wa-box {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-top: 3px solid #25D366;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: .65rem;
    margin-bottom: 1.25rem;
}

.sidebar-wa-label {
    color: var(--gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0;
}

.sidebar-wa-box h2 {
    font-size: 1.15rem;
    margin: 0;
}

.sidebar-wa-box p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

.sidebar-wa-btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
}

.sidebar-office {
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--soft);
}

.sidebar-office-label {
    color: var(--gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 .25rem;
}

.sidebar-office p:not(.sidebar-office-label) {
    color: var(--text);
    font-size: .88rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767px) {
    .article-wa-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-wa {
        width: 100%;
        justify-content: center;
    }

    .post-cta-actions {
        flex-direction: column;
    }

    .post-cta-actions .btn,
    .post-cta-actions .btn-wa {
        width: 100%;
        justify-content: center;
    }

    .article-sidebar {
        position: static;
    }
}

/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
    align-items: start;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-options article {
    padding: 1.85rem;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .22s, box-shadow .22s;
}

.contact-options article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-options span {
    display: block;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-options h2 {
    font-size: 1.2rem;
    margin-bottom: .55rem;
}

.contact-options p {
    color: var(--muted);
    line-height: 1.65;
}

.contact-options a:not(.btn) {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-box,
.site-form {
    padding: 1.85rem;
}

.contact-box {
    margin-top: 1.4rem;
    border-top: 3px solid var(--gold);
}

.map-placeholder {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: 16px;
    color: var(--white);
    background:
        linear-gradient(rgba(12, 27, 46, .88), rgba(12, 27, 46, .88)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 20px);
    font-weight: 700;
}

/* ============================================================
   FORM
============================================================ */
.site-form {
    display: grid;
    gap: 1.1rem;
}

.site-form label {
    display: grid;
    gap: .4rem;
    color: var(--navy);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .9rem;
}

.site-form h2 {
    font-size: 1.5rem;
    margin-bottom: .35rem;
}

.site-form p {
    color: var(--muted);
    font-size: .95rem;
}

.form-grid-public {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.site-form small {
    color: var(--muted);
    font-weight: 400;
}

.site-form input,
.site-form select,
.site-form textarea {
    width: 100%;
    border: 1.5px solid rgba(12, 27, 46, .14);
    border-radius: 10px;
    padding: .9rem 1rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 154, 60, .16);
}

.alert {
    padding: .9rem 1.1rem;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--navy);
    font-weight: 700;
    border: 1px solid rgba(196, 154, 60, .32);
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
    display: grid;
    width: min(780px, 100%);
    margin: 0 auto;
    gap: .75rem;
}

.faq-list details {
    padding: 1.1rem 1.3rem;
    transition: box-shadow .2s, border-color .2s;
}

.faq-list details[open] {
    box-shadow: var(--shadow);
    border-color: rgba(196, 154, 60, .3);
}

.faq-list summary {
    cursor: pointer;
    color: var(--navy);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .98rem;
}

/* ============================================================
   LEGAL
============================================================ */
.legal-text h2 {
    margin-top: 2rem;
    font-size: 1.35rem;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196, 154, 60, .07) 0%, transparent 65%);
    pointer-events: none;
}

.final-cta h2,
.final-cta p {
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.center-actions {
    justify-content: center;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(196, 154, 60, .2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr 1.1fr 1.2fr;
    gap: 2.5rem;
    padding: 68px 0 58px;
}

.footer-logo {
    width: 108px;
    margin-bottom: 1.1rem;
    opacity: .9;
}

.site-footer h2 {
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    font-size: .87rem;
    line-height: 1.65;
}

.site-footer ul {
    display: grid;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.1rem;
}

.social-links a {
    padding: .42rem .78rem;
    border: 1px solid rgba(196, 154, 60, .25);
    border-radius: 999px;
    font-size: .78rem;
    transition: border-color .2s, color .2s, background .2s;
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(196, 154, 60, .1);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(196, 154, 60, .12);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .42);
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 52px;
    padding: .85rem 1.35rem;
    border-radius: 999px;
    background: #25D366;
    color: var(--white);
    border: none;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 700;
    font-size: .86rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 42px rgba(37, 211, 102, .5);
}

/* ============================================================
   RESPONSIVE — 1040px
============================================================ */
@media (max-width: 1040px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-layout,
    .hero-grid,
    .two-col,
    .split-large,
    .intro-panel,
    .proof-panel,
    .problem-panel,
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-grid,
    .cards-grid.three,
    .cards-grid.four,
    .metrics-grid,
    .contact-options,
    .process-row,
    .steps,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-sidebar {
        position: static;
    }

    .scope-card {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — 767px
============================================================ */
@media (max-width: 767px) {
    .container,
    .narrow {
        width: min(100% - 30px, 1160px);
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 84px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: .2rem;
        padding: .75rem 15px 1.25rem;
        background: var(--navy);
        border-bottom: 1px solid rgba(196, 154, 60, .2);
    }

    .main-nav.is-open {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: grid;
        margin-top: .3rem;
        box-shadow: none;
        border-radius: 10px;
    }

    .home-hero {
        min-height: auto;
        padding: 56px 0 100px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-main {
        width: 140px;
    }

    .intro-panel {
        margin-top: -44px;
        padding: 1.5rem;
    }

    .section,
    .page-hero {
        padding: 64px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .hero-actions,
    .footer-bottom-inner {
        flex-direction: column;
    }

    .btn,
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .feature-grid,
    .cards-grid.three,
    .cards-grid.four,
    .metrics-grid,
    .contact-options,
    .process-row,
    .steps,
    .proof-grid,
    .seal-grid,
    .form-grid-public,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bio-card {
        grid-template-columns: 1fr;
    }

    .credibility-strip {
        margin-top: -38px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}
