/* 
 * Wealth Central Premium Theme - Main CSS
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Colors */
    --wc-dark: #0F1111;
    --wc-dark-rgb: 15, 17, 17;
    --wc-gold: #B8956A;
    --wc-gold-rgb: 184, 149, 106;
    --wc-light: #F4F2EF;
    --wc-light-rgb: 244, 242, 239;
    --wc-white: #FFFFFF;
    --wc-text-muted: #8A8A8A;
    --wc-border: rgba(255, 255, 255, 0.1);
    --wc-border-dark: rgba(15, 17, 17, 0.08);

    /* Typography */
    --wc-font-heading: 'Cormorant Garamond', Georgia, serif;
    --wc-font-body: 'Jost', Helvetica, Arial, sans-serif;

    /* Spacing */
    --wc-container: 1400px;
    --wc-gap-xs: 8px;
    --wc-gap-sm: 16px;
    --wc-gap-md: 32px;
    --wc-gap-lg: 64px;
    --wc-gap-xl: 120px;
    --wc-header-height: 80px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-body);
    background-color: var(--wc-dark);
    color: var(--wc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wc-font-heading);
    font-weight: 400;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: var(--wc-gap-sm);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: var(--wc-container);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.grid {
    display: grid;
    gap: var(--wc-gap-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.color-dark { color: var(--wc-dark); }
.color-light { color: var(--wc-light); }
.color-gold { color: var(--wc-gold); }

/* ==========================================================================
   4. HEADER STYLES
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--wc-header-height);
    background: transparent;
    border-bottom: 1px solid var(--wc-border);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-sticky {
    position: fixed;
    background: rgba(var(--wc-dark-rgb), 0.98);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Hide WP site description/tagline in header */
.site-description,
.site-branding p {
    display: none;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo-link img {
    height: auto;
}

.site-title,
a.site-title {
    font-family: var(--wc-font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    color: var(--wc-white);
    white-space: nowrap;
}

.site-title .sep {
    width: 1px;
    height: 24px;
    background: var(--wc-gold);
    margin: 0 6px;
    display: inline-block;
    vertical-align: middle;
}

.primary-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.primary-nav a {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
    color: var(--wc-white);
}

.primary-nav .menu-item-cta a {
    border: 1px solid var(--wc-gold);
    padding: 8px 20px;
    border-radius: 0;
    color: var(--wc-gold);
}

.primary-nav .menu-item-cta a:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Header CTA Button */
.header-cta {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    border-color: var(--wc-gold);
    color: var(--wc-gold);
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--wc-white);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-open .menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-open .menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(var(--wc-dark-rgb), 0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--wc-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav a {
    font-family: var(--wc-font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--wc-white);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--wc-gold);
}

.mobile-menu-open html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    overflow: hidden;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--wc-dark);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,17,17,0.6) 0%, rgba(15,17,17,0.3) 50%, rgba(15,17,17,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.02em;
    color: var(--wc-white);
    margin: 0;
}

.hero-title.is-italic {
    font-style: italic;
}

.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-mobile-image {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-mobile-image {
        display: block;
    }
    .hero-video {
        display: none;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline {
    border: 1px solid var(--wc-gold);
    background: transparent;
    color: var(--wc-gold);
}

.btn-outline:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

.btn-solid {
    border: 1px solid var(--wc-gold);
    background: var(--wc-gold);
    color: var(--wc-dark);
}

.btn-solid:hover {
    background: transparent;
    color: var(--wc-gold);
}

.hero-subtitle {
    font-family: var(--wc-font-body);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ==========================================================================
   6. INTRO SECTION
   ========================================================================== */
.intro-section {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 120px 0 80px;
    text-align: center;
}

.intro-heading {
    font-family: var(--wc-font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.35;
    max-width: 800px;
    margin: 0 auto;
}

.intro-heading em {
    font-style: italic;
}

.intro-divider {
    width: 1.5px;
    height: 50px;
    background: var(--wc-gold);
    margin: 50px auto 0;
}

/* ==========================================================================
   7. PANORAMIC + FEATURED (OVERLAP DESIGN)
   The panoramic yacht image and featured content section overlap:
   the man's framed image translates upward into the panoramic section.
   ========================================================================== */
.panoramic-featured-wrapper {
    position: relative;
}

.panoramic-section {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.panoramic-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.panoramic-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1c1e 0%, #0F1111 40%, #1e1710 100%);
}

.featured-placeholder {
    width: 100%;
    padding-bottom: 130%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}

/* ==========================================================================
   8. FEATURED CONTENT SECTION
   ========================================================================== */
.featured-section {
    background: var(--wc-dark);
    position: relative;
    overflow: visible;
    padding: 80px 0 0;
}

.featured-inner {
    max-width: var(--wc-container);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.featured-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    align-items: start;
    min-height: 400px;
}

/* Left: Framed image that overlaps upward into panoramic */
.featured-image-wrap {
    position: relative;
    z-index: 10;
    margin-top: -180px;
    padding-right: 40px;
}

.featured-frame {
    position: relative;
    max-width: 340px;
}

/* Gold double-frame border effect */
.featured-frame.has-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--wc-gold);
    z-index: 1;
    pointer-events: none;
}

.featured-frame.has-frame::after {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(184, 149, 106, 0.3);
    z-index: 0;
    pointer-events: none;
}

.featured-frame img,
.featured-frame > div {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
}

/* Right: Text content with subtle gold border */
.featured-content {
    padding: 60px 50px 60px 60px;
    position: relative;
    align-self: center;
}

.featured-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(184, 149, 106, 0.15);
    pointer-events: none;
}

.featured-label {
    font-family: var(--wc-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 24px 0;
}

.featured-line {
    width: 35px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}

.featured-heading {
    font-family: var(--wc-font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--wc-white);
    margin: 0;
}

/* ==========================================================================
   9. FEATURES ROW
   ========================================================================== */
.features-section {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 80px 0;
    border-top: 1px solid var(--wc-border-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--wc-gold);
    fill: none;
    stroke-width: 1;
}

.feature-title {
    font-family: var(--wc-font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
/* ==========================================================================
   10. FOOTER — Matching design exactly
   Gold line above > Logo centered > Tagline > Small gold line > Nav > Bottom bar
   ========================================================================== */
.site-footer {
    background: var(--wc-dark);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-top {
    padding: 60px 0 0;
}

/* Gold vertical line ABOVE the logo */
.footer-top-line {
    width: 1.5px;
    height: 50px;
    background: var(--wc-gold);
    margin: 0 auto 40px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-logo .site-title,
.footer-logo a.site-title {
    font-family: var(--wc-font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.4em;
    color: var(--wc-white);
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
}

.footer-logo .site-title .sep {
    width: 1.5px;
    height: 36px;
    background: var(--wc-gold);
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
}

.footer-tagline {
    font-family: var(--wc-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 30px;
}

.footer-divider {
    width: 1.5px;
    height: 25px;
    background: var(--wc-gold);
    margin: 0 auto 40px;
}

.footer-nav {
    padding-bottom: 50px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footer-nav a {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav a:hover {
    color: var(--wc-white);
}

.footer-nav .menu-item-cta a {
    border: 1px solid var(--wc-gold);
    padding: 6px 18px;
    color: var(--wc-gold);
}

.footer-nav .menu-item-cta a:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 40px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
    color: var(--wc-white);
}

/* ==========================================================================
   11. INTERNAL PAGE STYLES
   ========================================================================== */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 17, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-content {
    padding: 80px 0;
    background: var(--wc-light);
    color: var(--wc-dark);
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   12. BLOG/POST STYLES
   ========================================================================== */
.post-list {
    display: grid;
    gap: 40px;
}

.post-item {
    border-bottom: 1px solid var(--wc-border-dark);
    padding-bottom: 40px;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--wc-text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.post-content {
    line-height: 1.8;
}

/* ==========================================================================
   13. 404 & SEARCH STYLES
   ========================================================================== */
.error-404 {
    text-align: center;
    padding: 120px 0;
}

.error-title {
    font-size: 6rem;
    color: var(--wc-gold);
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--wc-border);
    color: var(--wc-white);
}

.search-submit {
    padding: 10px 20px;
    background: var(--wc-gold);
    border: none;
    color: var(--wc-white);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   14. ANIMATIONS
   ========================================================================== */
.wc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wc-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wc-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wc-reveal-left.is-visible,
.wc-reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   15. BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--wc-gold);
    color: var(--wc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) { /* Tablet */
    .primary-nav,
    .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
    }

    .intro-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) { /* Mobile */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-image-wrap {
        padding-right: 0;
        display: flex;
        justify-content: center;
        margin-top: -80px;
    }
    
    .featured-frame {
        max-width: 260px;
    }
    
    .featured-content {
        padding: 40px 30px;
        text-align: center;
    }
    
    .featured-content::before {
        display: none;
    }
    
    .featured-line {
        margin: 0 auto 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .panoramic-section {
        height: 50vh !important;
        min-height: 300px;
    }
}

@media (max-width: 480px) { /* Small Mobile */
    .container {
        padding: 0 20px;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   17. PRINT STYLES
   ========================================================================== */
@media print {
    html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
        background: #fff;
        color: #000;
    }
    
    .site-header, .site-footer, .hero-section {
        display: none;
    }
    
    .page-content {
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ==========================================================================
   18. ACCESSIBILITY
   ========================================================================== */
:focus-visible {
    outline: 2px dashed var(--wc-gold);
    outline-offset: 4px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    background: var(--wc-gold);
    color: #fff;
    font-weight: bold;
    left: 50%;
    padding: 15px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 100000;
}

.skip-link:focus {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   11. WHERE IT MATTERS PAGE
   ========================================================================== */

/* Hero Section */
.wim-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #0F1111 url('https://images.unsplash.com/photo-1471922694854-ff1b63b20054?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
}

.wim-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.9) 0%, rgba(15,17,17,0.5) 50%, rgba(15,17,17,0.1) 100%);
    z-index: 1;
}

.wim-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.wim-hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 25px;
    line-height: 1.1;
}

.wim-hero-title em {
    font-style: italic;
}

.wim-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin: 0 0 35px;
}

.wim-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
}

/* Services Intro */
.wim-services-intro {
    background: var(--wc-light);
    color: var(--wc-dark);
    text-align: center;
    padding: 100px 40px 60px;
}

.wim-services-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 20px;
}

.wim-services-heading {
    font-family: var(--wc-font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin: 0;
}

.wim-services-heading em {
    font-style: italic;
}

.wim-services-intro::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 40px auto 0;
}

/* Bento Grid */
.wim-bento-section {
    background: var(--wc-light);
    padding: 0 40px 100px;
}

.wim-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, 80px);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.wim-bento-card {
    position: relative;
    background-color: var(--wc-dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

/* Fallback backgrounds to look good out of the box */
.wim-card-1 { grid-column: 1; grid-row: 1 / 8; }
.wim-card-4 { grid-column: 1; grid-row: 8 / 13; }
.wim-card-2 { grid-column: 2; grid-row: 1 / 6; }
.wim-card-5 { grid-column: 2; grid-row: 6 / 13; }
.wim-card-3 { grid-column: 3; grid-row: 1 / 7; }
.wim-card-6 { grid-column: 3; grid-row: 7 / 13; }

.wim-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15,17,17,0.95) 0%, rgba(15,17,17,0.1) 70%, rgba(15,17,17,0.2) 100%);
    z-index: 1;
    transition: opacity 0.4s ease, background 0.4s ease;
}

.wim-bento-card:hover .wim-card-overlay {
    background: linear-gradient(0deg, rgba(15,17,17,0.98) 0%, rgba(15,17,17,0.3) 70%, rgba(15,17,17,0.4) 100%);
}

.wim-card-content {
    position: relative;
    z-index: 2;
}

.wim-card-num {
    display: block;
    font-family: var(--wc-font-heading);
    font-size: 1.1rem;
    color: var(--wc-gold);
    margin-bottom: 15px;
}

.wim-card-title {
    font-family: var(--wc-font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 15px;
    line-height: 1.1;
}

.wim-card-desc {
    font-family: var(--wc-font-heading);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px;
    line-height: 1.4;
    max-width: 90%;
}

.wim-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wim-bento-card:hover .wim-card-arrow {
    transform: translateX(8px);
}

/* Independence Section */
.wim-independence {
    position: relative;
    background: var(--wc-dark);
    padding: 140px 0;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.wim-indep-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    background-position: center right;
    z-index: 1;
}

.wim-indep-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15,17,17,1) 0%, 
        rgba(15,17,17,1) 35%, 
        rgba(15,17,17,0.2) 65%, 
        rgba(15,17,17,0.8) 100%
    );
    z-index: 2;
}

.wim-independence-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wim-indep-text {
    max-width: 550px;
}

.wim-indep-label {
    font-family: var(--wc-font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 25px;
}

.wim-indep-heading {
    font-family: var(--wc-font-heading);
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    font-weight: 400;
    color: var(--wc-white);
    line-height: 1.15;
    margin: 0 0 30px;
}

.wim-indep-line {
    width: 50px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 30px;
}

.wim-indep-html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-heading);
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.wim-indep-cta {
    max-width: 450px;
    width: 100%;
    background: rgba(15, 17, 17, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 149, 106, 0.6);
    padding: 60px 50px;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.7);
}

.wim-indep-cta-heading {
    font-family: var(--wc-font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 20px;
    line-height: 1.15;
}

.wim-indep-cta-line {
    width: 35px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 30px;
}

.wim-indep-cta-html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-heading);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 45px;
    line-height: 1.5;
}

.wim-indep-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    padding: 18px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wim-indep-cta-btn-text {
    font-family: var(--wc-font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.5;
    text-align: left;
}

.wim-indep-cta-btn-icon {
    font-size: 1.4rem;
    font-family: sans-serif;
    font-weight: 300;
    line-height: 1;
}

.wim-indep-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .wim-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .wim-card-1, .wim-card-2, .wim-card-3, .wim-card-4, .wim-card-5, .wim-card-6 {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 400px;
    }
    .wim-independence-container {
        flex-direction: column;
        gap: 60px;
    }
    .wim-indep-text, .wim-indep-cta {
        max-width: 100%;
    }
    .wim-indep-bg-overlay {
        background: rgba(15,17,17,0.85); /* Solid overlay on mobile for readability */
    }
}
@media (max-width: 768px) {
    .wim-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   12. WEALTH PLANNING PAGE
   ========================================================================== */

/* Hero */
.wp-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #0F1111 url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.wp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.85) 0%, rgba(15,17,17,0.4) 40%, rgba(15,17,17,0) 100%);
    z-index: 1;
}

.wp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.wp-hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 25px;
    line-height: 1.1;
}

.wp-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
}

/* Planning Section */
.wp-planning {
    background: var(--wc-light);
    padding: 100px 0 120px;
}

.wp-planning-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.wp-planning-header {
    text-align: center;
    margin-bottom: 70px;
}

.wp-planning-label-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.wp-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(184, 149, 106, 0.4);
}

.wp-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0;
    white-space: nowrap;
}

.wp-planning-heading {
    font-family: var(--wc-font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--wc-dark);
    line-height: 1.3;
    margin: 0;
}

.wp-planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wp-card {
    border: 1px solid rgba(184, 149, 106, 0.3);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: transparent;
}

.wp-card:hover {
    transform: translateY(-5px);
    border-color: var(--wc-gold);
}

.wp-card-icon {
    margin-bottom: 30px;
    color: var(--wc-gold);
}
.wp-card-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--wc-gold);
}

.wp-card-title {
    font-family: var(--wc-font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--wc-dark);
    margin: 0 0 15px;
}

.wp-card-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto 20px;
}

.wp-card-html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-body);
    font-size: 1rem;
    color: var(--wc-dark);
    line-height: 1.6;
    margin: 0 0 40px;
    flex-grow: 1;
}

.wp-card-link {
    font-family: var(--wc-font-heading);
    font-size: 1.3rem;
    color: var(--wc-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.wp-card-link:hover {
    opacity: 0.8;
}

/* Image Banner */
.wp-image-banner {
    height: 700px;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=2075&auto=format&fit=crop') center/cover no-repeat;
}

/* CTA Section */
.wp-cta-section {
    background: var(--wc-dark);
    padding: 100px 0;
}

.wp-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.wp-cta-box {
    border: 1px solid rgba(184, 149, 106, 0.4);
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.wp-cta-left {
    flex: 1;
}

.wp-cta-heading {
    font-family: var(--wc-font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--wc-white);
    line-height: 1.2;
    margin: 0 0 25px;
}

.wp-cta-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0;
}

.wp-cta-mid {
    flex: 1.2;
}

.wp-cta-html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-heading);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.wp-cta-right {
    flex: 0 0 auto;
}

.wp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    padding: 16px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-cta-btn-text {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.wp-cta-btn-icon {
    font-size: 1.2rem;
    font-family: sans-serif;
    font-weight: 300;
}

.wp-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .wp-planning-grid {
        grid-template-columns: 1fr;
    }
    .wp-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }
    .wp-cta-mid, .wp-cta-right {
        width: 100%;
    }
}

/* ==========================================================================
   13. PENSIONS AND RETIREMENT PAGE
   ========================================================================== */

/* Hero */
.pen-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #0F1111 url('https://images.unsplash.com/photo-1544377193-33dcf4d68fb5?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
}
.pen-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.9) 0%, rgba(15,17,17,0.5) 40%, rgba(15,17,17,0) 100%);
    z-index: 1;
}
.pen-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.pen-hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 25px;
    line-height: 1.1;
}
.pen-hero-line {
    width: 50px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 25px;
}
.pen-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
}

/* Approach Section */
.pen-approach {
    background: var(--wc-light);
    padding: 120px 0;
}
.pen-approach-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
.pen-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 25px;
}
.pen-heading {
    font-family: var(--wc-font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--wc-dark);
    line-height: 1.2;
    margin: 0 0 30px;
}
.pen-heading em {
    font-style: italic;
}
.pen-html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.site {
    overflow-x: hidden;
    width: 100%;
}
@media (max-width: 400px) {
    .site-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.15em !important;
    }
}
body {
    font-family: var(--wc-font-body);
    font-size: 1.1rem;
    color: var(--wc-dark);
    line-height: 1.6;
    margin: 0 0 80px;
}
.pen-considerations .pen-label {
    margin-bottom: 50px;
}
.pen-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}
.pen-grid-3 .pen-col {
    position: relative;
    padding: 0 30px;
}
.pen-grid-3 .pen-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(184, 149, 106, 0.4);
}
.pen-col-title {
    font-family: var(--wc-font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--wc-dark);
    margin: 0 0 20px;
}
.pen-col-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto 25px;
}
.pen-col-text {
    font-family: var(--wc-font-body);
    font-size: 0.95rem;
    color: var(--wc-dark);
    line-height: 1.6;
    margin: 0;
}

/* Split Section */
.pen-split {
    display: flex;
    min-height: 600px;
    background: var(--wc-dark);
}
.pen-split-image {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=2075&auto=format&fit=crop') center/cover no-repeat;
}
.pen-split-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 10%;
}
.pen-split-inner {
    max-width: 500px;
}
.pen-split-inner .pen-label {
    margin-bottom: 25px;
}
.pen-split-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 25px;
}
.pen-split-title {
    font-family: var(--wc-font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--wc-white);
    line-height: 1.15;
    margin: 0 0 25px;
}
.pen-split-text {
    font-family: var(--wc-font-heading);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* Features Grid */
.pen-features {
    background: var(--wc-light);
    padding: 100px 0;
    text-align: center;
}
.pen-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.pen-features-header {
    margin-bottom: 60px;
}
.pen-features-header-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 20px auto 0;
}
.pen-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.pen-feat-col {
    position: relative;
    padding: 0 40px;
}
.pen-grid-4 .pen-feat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    height: 65%;
    width: 1px;
    background: rgba(184, 149, 106, 0.4);
}
.pen-icon {
    color: var(--wc-gold);
    margin-bottom: 25px;
}
.pen-icon svg {
    stroke: var(--wc-gold);
}

/* CTA Banner */
.pen-cta-section {
    background: var(--wc-dark);
    padding: 80px 0;
    border-top: 1px solid rgba(184, 149, 106, 0.3);
    border-bottom: 1px solid rgba(184, 149, 106, 0.3);
}
.pen-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.pen-cta-box {
    display: flex;
    align-items: center;
    gap: 60px;
}
.pen-cta-image {
    width: 320px;
    height: 180px;
    background: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    flex-shrink: 0;
    border: 1px solid rgba(184, 149, 106, 0.4);
}
.pen-cta-content {
    flex: 1;
}
.pen-cta-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin-bottom: 15px;
}
.pen-cta-title {
    font-family: var(--wc-font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 15px;
}
.pen-cta-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 15px;
}
.pen-cta-text {
    font-family: var(--wc-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}
.pen-cta-button-wrap {
    flex-shrink: 0;
}
.pen-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    padding: 16px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pen-cta-btn span {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.pen-cta-btn .arrow {
    font-size: 1.2rem;
    text-transform: none;
}
.pen-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .pen-grid-3, .pen-grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pen-grid-3 .pen-col::after, .pen-grid-4 .pen-feat-col::after {
        display: none;
    }
    .pen-split {
        flex-direction: column;
    }
    .pen-split-image {
        min-height: 400px;
    }
    .pen-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 30px;
    }
    .pen-cta-image {
        width: 100%;
        height: 300px;
    }
    .pen-cta-button-wrap {
        padding-right: 0;
    }
}

/* ==========================================================================
   PAGE: INVESTMENTS
   ========================================================================== */

/* Hero */
.inv-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.inv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.9) 0%, rgba(15,17,17,0.4) 50%, rgba(15,17,17,0.1) 100%);
    z-index: 1;
}

.inv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.inv-hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 20px;
    line-height: 1;
}

.inv-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin: 0 0 20px;
}

.inv-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    color: var(--wc-white);
    margin: 0;
    line-height: 1.3;
    font-style: normal;
}

/* Overlapping Cards */
.inv-cards-section {
    position: relative;
    z-index: 3;
    background: var(--wc-light);
    padding-bottom: 80px;
}

.inv-cards-container {
    max-width: 1400px;
    width: 100%;
    margin: -100px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inv-card {
    background: var(--wc-light);
    border: 1px solid rgba(184, 149, 106, 0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.inv-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.inv-card-num {
    font-family: var(--wc-font-body);
    font-size: 1rem;
    color: var(--wc-gold);
}

.inv-card-icon {
    color: var(--wc-gold);
}

.inv-card-icon svg {
    display: block;
}

.inv-card-title {
    font-family: var(--wc-font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--wc-dark);
    margin: 0 0 20px;
    line-height: 1.15;
}

.inv-card-desc {
    font-family: var(--wc-font-body);
    font-size: 1.05rem;
    color: #444;
    line-height: 1.5;
    margin: 0 0 40px;
    flex-grow: 1;
}

.inv-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--wc-gold);
    text-decoration: none;
    font-family: var(--wc-font-body);
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.inv-card-link span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.inv-card-link:hover span {
    transform: translateX(5px);
}

/* Dark Split */
.inv-dark-split {
    display: flex;
    background: var(--wc-dark);
    color: var(--wc-white);
}

.inv-dark-img {
    width: 50%;
    background-size: cover;
    background-position: center;
}

.inv-dark-content {
    width: 50%;
    padding: 100px max(40px, calc((100vw - 1400px) / 2 + 40px)) 100px 80px;
    display: flex;
    align-items: center;
}

.inv-dark-inner {
    max-width: 800px;
    width: 100%;
}

.inv-dark-label {
    font-family: var(--wc-font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin-bottom: 15px;
}

.inv-dark-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 40px;
}

.inv-dark-heading {
    font-family: var(--wc-font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 25px;
    line-height: 1.15;
}

.inv-dark-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 60px;
}

.inv-dark-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.inv-dark-feat {
    padding-right: 10px;
}

.inv-dark-feat:not(:first-child) {
    border-left: 1px solid rgba(184, 149, 106, 0.4);
    padding-left: 20px;
}

.inv-dark-feat p {
    font-family: var(--wc-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Light Split */
.inv-light-split {
    display: flex;
    background: var(--wc-light);
    color: var(--wc-dark);
}

.inv-light-content {
    width: 50%;
    padding: 100px 80px 100px max(40px, calc((100vw - 1400px) / 2 + 40px));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inv-light-inner {
    max-width: 600px;
    width: 100%;
}

.inv-light-label {
    font-family: var(--wc-font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin-bottom: 15px;
}

.inv-light-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 40px;
}

.inv-light-heading {
    font-family: var(--wc-font-heading);
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 25px;
    line-height: 1.15;
}

.inv-light-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 0 0 40px;
}

.inv-light-link {
    display: inline-flex;
    align-items: center;
    color: var(--wc-gold);
    text-decoration: none;
    font-family: var(--wc-font-body);
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.inv-light-link span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.inv-light-link:hover span {
    transform: translateX(5px);
}

.inv-light-img {
    width: 60%;
    background-size: cover;
    background-position: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .inv-cards-container {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
    .inv-dark-split, .inv-light-split {
        flex-direction: column;
    }
    .inv-dark-img, .inv-light-img {
        width: 100%;
        height: 400px;
    }
    .inv-dark-content, .inv-light-content {
        width: 100%;
        padding: 60px 40px;
        justify-content: flex-start;
    }
    .inv-light-split {
        flex-direction: column-reverse;
    }
    .inv-dark-feats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .inv-dark-feats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PAGE: INHERITANCE TAX
   ========================================================================== */

/* Hero */
.inh-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.inh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.95) 0%, rgba(15,17,17,0.6) 45%, rgba(15,17,17,0) 100%);
    z-index: 1;
}
.inh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}
.inh-hero-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 40px;
    line-height: 1.1;
}
.inh-hero-label {
    font-family: var(--wc-font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    line-height: 1.6;
    margin: 0 0 30px;
}
.inh-hero-line {
    width: 60px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 0 30px;
}
.inh-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 500px;
    margin: 0;
}

/* Approach Section */
.inh-approach {
    background: #f8f6f3;
    padding: 120px 0;
    text-align: center;
}
.inh-approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.inh-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin: 0 0 25px;
}
.inh-heading {
    font-family: var(--wc-font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--wc-dark);
    line-height: 1.2;
    margin: 0 0 25px;
}
.inh-heading-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto 80px;
}
.inh-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}
.inh-col {
    position: relative;
    padding: 0 40px;
}
.inh-grid-3 .inh-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: rgba(184, 149, 106, 0.3);
}
.inh-col-title {
    font-family: var(--wc-font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--wc-dark);
    margin: 0 0 20px;
    line-height: 1.2;
}
.inh-col-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto 25px;
}
.inh-col-text {
    font-family: var(--wc-font-body);
    font-size: 1rem;
    color: var(--wc-dark);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 350px;
}

/* Quote Split */
.inh-quote-split {
    display: flex;
    min-height: 600px;
    background: var(--wc-dark);
}
.inh-quote-image {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.inh-quote-content {
    width: 50%;
    padding: 100px max(40px, calc((100vw - 1400px) / 2 + 40px)) 100px 80px;
    display: flex;
    align-items: center;
}
.inh-quote-inner {
    max-width: 500px;
    width: 100%;
}
.inh-quote-mark {
    font-family: var(--wc-font-heading);
    font-size: 4rem;
    color: var(--wc-gold);
    line-height: 1;
    margin-bottom: 10px;
}
.inh-quote-text {
    font-family: var(--wc-font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    margin: 0 0 40px;
}
.inh-quote-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0;
}

/* CTA Block (No Image) */
.inh-cta-section {
    background: #090a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(184, 149, 106, 0.3);
    border-bottom: 1px solid rgba(184, 149, 106, 0.3);
}
.inh-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.inh-cta-box {
    display: flex;
    align-items: center;
    gap: 60px;
}
.inh-cta-content {
    flex: 1;
}
.inh-cta-label {
    font-family: var(--wc-font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wc-gold);
    margin-bottom: 15px;
}
.inh-cta-title {
    font-family: var(--wc-font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--wc-white);
    margin: 0 0 15px;
}
.inh-cta-text {
    font-family: var(--wc-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}
.inh-cta-button-wrap {
    flex-shrink: 0;
}
.inh-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(184, 149, 106, 0.5);
    color: var(--wc-gold);
    padding: 16px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.inh-cta-btn span {
    font-family: var(--wc-font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.inh-cta-btn .inh-cta-btn-icon {
    font-size: 1.2rem;
    text-transform: none;
}
.inh-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .inh-grid-3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .inh-grid-3 .inh-col::after {
        display: none;
    }
    .inh-quote-split {
        flex-direction: column;
    }
    .inh-quote-image {
        width: 100%;
        min-height: 400px;
    }
    .inh-quote-content {
        width: 100%;
        padding: 60px 40px;
    }
    .inh-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* ==========================================================================
   PAGE: FINANCIAL PROTECTION
   ========================================================================== */

/* Hero */
.prot-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.prot-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.8) 0%, rgba(15,17,17,0.2) 100%);
    z-index: 1;
}
.prot-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.prot-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 40px;
    font-weight: 300;
}
.prot-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.prot-hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
}

/* Intro Split */
.prot-intro {
    background: var(--wc-light);
    padding: 100px 0;
    color: var(--wc-dark);
}
.prot-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}
.prot-intro-left {
    width: 50%;
}
.prot-intro-right {
    width: 50%;
    font-size: 18px;
    line-height: 1.8;
}
.prot-intro-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.prot-intro-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0;
}

/* 4-Col Grid */
.prot-grid-section {
    background: var(--wc-light);
    padding: 0 0 100px;
    color: var(--wc-dark);
}
.prot-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.prot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.prot-grid-item {
    position: relative;
}
.prot-grid-item:not(:first-child) {
    border-left: 1px solid rgba(15,17,17,0.1);
    padding-left: 40px;
}
.prot-grid-num {
    font-size: 24px;
    color: var(--wc-dark);
    margin-bottom: 15px;
}
.prot-grid-line {
    width: 30px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.prot-grid-title {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 15px;
}
.prot-grid-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Dark Split */
.prot-dark-split {
    display: flex;
    min-height: 700px;
    background: var(--wc-dark);
}
.prot-dark-image {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.prot-dark-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
}
.prot-dark-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.prot-dark-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 30px;
}
.prot-dark-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 0 60px;
}
.prot-dark-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.prot-feat-item {
    position: relative;
    text-align: center;
}
.prot-feat-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.prot-feat-icon {
    color: var(--wc-gold);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
.prot-feat-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

/* CTA Section */
.prot-cta-section {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 80px 0;
}
.prot-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.prot-cta-left {
    flex: 1;
}
.prot-cta-heading {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 15px;
}
.prot-cta-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}
.prot-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}
.prot-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .prot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .prot-grid-item:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }
    .prot-dark-feats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .prot-feat-item:nth-child(3)::before {
        display: none;
    }
}
@media (max-width: 900px) {
    .prot-hero-title { font-size: 50px; }
    .prot-intro-container { flex-direction: column; gap: 40px; }
    .prot-intro-left, .prot-intro-right { width: 100%; }
    .prot-dark-split { flex-direction: column; }
    .prot-dark-image, .prot-dark-content { width: 100%; }
    .prot-dark-image { min-height: 400px; }
    .prot-cta-container { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 600px) {
    .prot-grid { grid-template-columns: 1fr; }
    .prot-grid-item:not(:first-child) { border-left: none; padding-left: 0; }
    .prot-dark-feats { grid-template-columns: 1fr; }
    .prot-feat-item:not(:first-child)::before { display: none; }
}

/* ==========================================================================
   PAGE: CORPORATE FINANCIAL PLANNING
   ========================================================================== */

/* Hero */
.corp-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.corp-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.8) 0%, rgba(15,17,17,0.1) 100%);
    z-index: 1;
}
.corp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.corp-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 40px;
    font-weight: 300;
}
.corp-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.corp-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

/* Centered Intro */
.corp-intro {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 100px 40px;
    text-align: center;
}
.corp-intro-container {
    max-width: 900px;
    margin: 0 auto;
}
.corp-intro-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.corp-intro-heading {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 300;
    margin: 0 0 30px;
}
.corp-intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* 4-Card Grid on Dark */
.corp-cards-section {
    background: var(--wc-dark);
    padding: 80px 0;
}
.corp-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.corp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.corp-card {
    border: 1px solid var(--wc-gold);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.corp-card:hover {
    transform: translateY(-5px);
}
.corp-card-icon {
    color: var(--wc-gold);
    margin-bottom: 25px;
}
.corp-card-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 300;
    margin: 0 0 20px;
}
.corp-card-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px;
    opacity: 0.8;
    flex-grow: 1;
}
.corp-card-arrow {
    color: var(--wc-gold);
    font-size: 20px;
    margin-top: auto;
}

/* Dark Split */
.corp-split {
    display: flex;
    background: var(--wc-dark);
    min-height: 600px;
}
.corp-split-image {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.corp-split-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
}
.corp-split-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.corp-split-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 30px;
}
.corp-split-line {
    width: 40px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.corp-split-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.8;
    margin: 0 0 40px;
}
.corp-split-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.corp-split-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Compass Banner */
.corp-compass-banner {
    background: var(--wc-dark);
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.corp-compass-container {
    max-width: 1000px;
    margin: 0 auto;
}
.corp-compass-icon {
    color: var(--wc-gold);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.corp-compass-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}
.corp-compass-heading-wrap::before,
.corp-compass-heading-wrap::after {
    content: '';
    width: 1px;
    height: 60px;
    background: var(--wc-gold);
}
.corp-compass-heading {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
}
.corp-compass-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

/* Bottom CTA Hero */
.corp-cta-hero {
    position: relative;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.corp-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.9) 0%, rgba(15,17,17,0.3) 100%);
    z-index: 1;
}
.corp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.corp-cta-heading {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 20px;
}
.corp-cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 600px;
    opacity: 0.9;
}
.corp-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.corp-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .corp-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 900px) {
    .corp-hero-title { font-size: 50px; }
    .corp-split { flex-direction: column; }
    .corp-split-image, .corp-split-content { width: 100%; }
    .corp-split-image { min-height: 400px; }
    .corp-compass-heading-wrap::before, .corp-compass-heading-wrap::after { display: none; }
    .corp-compass-heading { font-size: 32px; }
}
@media (max-width: 600px) {
    .corp-cards-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE: ADVICE WITHOUT RESTRICTION
   ========================================================================== */

/* Hero */
.adv-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.adv-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.8) 0%, rgba(15,17,17,0.1) 100%);
    z-index: 1;
}
.adv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.adv-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 40px;
    font-weight: 300;
}
.adv-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.adv-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

/* Centered Intro */
.adv-intro {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 100px 40px;
    text-align: center;
}
.adv-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}
.adv-intro-heading {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 300;
    margin: 0 0 30px;
}
.adv-intro-text {
    font-family: var(--wc-font-heading);
    font-size: 22px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Journey Grid */
.adv-journey {
    background: var(--wc-dark);
    padding: 80px 0 100px;
}
.adv-journey-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.adv-journey-header {
    text-align: center;
    margin-bottom: 80px;
}
.adv-journey-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 15px;
}
.adv-journey-line-center {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto;
}
.adv-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.adv-journey-col {
    padding: 0 40px;
    position: relative;
}
.adv-journey-col:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--wc-gold);
    opacity: 0.5;
}
.adv-journey-col:first-child {
    padding-left: 0;
}
.adv-journey-col:last-child {
    padding-right: 0;
}
.adv-journey-num {
    font-family: var(--wc-font-heading);
    font-size: 48px;
    color: var(--wc-gold);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
}
.adv-journey-line-short {
    width: 30px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.adv-journey-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 20px;
}
.adv-journey-text {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Ocean Values */
.adv-ocean {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.adv-ocean-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,17,17,0) 0%, rgba(15,17,17,0.9) 100%);
    z-index: 1;
}
.adv-ocean-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}
.adv-ocean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.adv-ocean-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.adv-ocean-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: var(--wc-gold);
}
.adv-ocean-text {
    font-family: var(--wc-font-heading);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

/* CTA Box */
.adv-cta-section {
    background: var(--wc-dark);
    padding: 80px 40px;
}
.adv-cta-container {
    max-width: 1200px;
    margin: 0 auto;
}
.adv-cta-box {
    border: 1px solid rgba(184, 149, 106, 0.3); /* muted gold */
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.adv-cta-heading {
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 15px;
}
.adv-cta-text {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}
.adv-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--wc-gold);
    color: var(--wc-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.adv-cta-btn:hover {
    background: #FFF;
}

/* Responsive */
@media (max-width: 1200px) {
    .adv-journey-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 0; }
    .adv-journey-col:nth-child(3)::before { display: none; }
    .adv-journey-col:nth-child(3) { padding-left: 0; }
    .adv-journey-col:nth-child(2) { padding-right: 0; }
    .adv-ocean-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .adv-ocean-item:nth-child(3)::before { display: none; }
}
@media (max-width: 900px) {
    .adv-hero-title { font-size: 50px; }
    .adv-cta-box { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .adv-journey-grid { grid-template-columns: 1fr; }
    .adv-journey-col { padding: 0 !important; }
    .adv-journey-col::before { display: none !important; }
    .adv-ocean-grid { grid-template-columns: 1fr; }
    .adv-ocean-item::before { display: none !important; }
}

/* ==========================================================================
   PAGE: WEALTH CENTRAL (ABOUT)
   ========================================================================== */

/* Hero */
.wc-about-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.wc-about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.8) 0%, rgba(15,17,17,0.1) 100%);
    z-index: 1;
}
.wc-about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
.wc-about-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 40px;
    font-weight: 300;
}
.wc-about-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.wc-about-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

/* Alternating Grid */
.wc-about-grid {
    background: var(--wc-dark);
}
.wc-grid-row {
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid rgba(184, 149, 106, 0.4);
}
.wc-grid-row:last-child {
    border-bottom: none;
}
.wc-grid-text-pane {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8%;
    position: relative;
}
.wc-grid-img-pane {
    width: 55%;
    background-size: cover;
    background-position: center;
    position: relative;
}
/* Interlocking Borders */
.wc-grid-left {
    border-right: 1px solid rgba(184, 149, 106, 0.4);
}
.wc-grid-inner {
    max-width: 500px;
}
.wc-grid-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.wc-grid-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 25px;
}
.wc-grid-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px;
    opacity: 0.8;
}
.wc-grid-btn {
    display: inline-block;
    color: var(--wc-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.wc-grid-btn:hover {
    opacity: 0.7;
}

/* Principles */
.wc-about-principles {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 100px 40px;
}
.wc-about-prin-container {
    max-width: 1400px;
    margin: 0 auto;
}
.wc-about-prin-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}
.wc-prin-line {
    width: 60px;
    height: 1px;
    background: var(--wc-gold);
}
.wc-prin-label {
    font-family: var(--wc-font-heading);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 400;
}
.wc-prin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.wc-prin-card {
    border: 1px solid var(--wc-gold);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
}
.wc-prin-icon {
    color: var(--wc-gold);
    margin-bottom: 20px;
}
.wc-prin-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 15px;
}
.wc-prin-text {
    font-family: var(--wc-font-heading);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Stewards Banner */
.wc-about-stewards {
    background: #0f1111;
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
    padding: 100px 40px;
    text-align: center;
}
.wc-stewards-container {
    max-width: 1000px;
    margin: 0 auto;
}
.wc-stewards-text {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

/* CTA */
.wc-about-cta {
    display: flex;
    background: var(--wc-light);
    color: var(--wc-dark);
}
.wc-cta-img-pane {
    width: 35%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.wc-cta-text-pane {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
}
.wc-cta-inner {
    max-width: 500px;
}
.wc-cta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 15px;
}
.wc-cta-heading {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 20px;
}
.wc-cta-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}
.wc-cta-action {
    margin-left: 40px;
}
.wc-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--wc-gold);
    color: var(--wc-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.wc-cta-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .wc-prin-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .wc-cta-text-pane { flex-direction: column; align-items: flex-start; gap: 40px; }
    .wc-cta-action { margin-left: 0; }
}
@media (max-width: 900px) {
    .wc-about-hero-title { font-size: 50px; }
    .wc-grid-row { flex-direction: column !important; }
    .wc-grid-text-pane, .wc-grid-img-pane { width: 100%; border: none !important; }
    .wc-grid-img-pane { min-height: 400px; order: -1; }
    .wc-grid-row:nth-child(even) .wc-grid-img-pane { order: -1; }
    
    .wc-about-cta { flex-direction: column; }
    .wc-cta-img-pane, .wc-cta-text-pane { width: 100%; }
}
@media (max-width: 600px) {
    .wc-prin-grid { grid-template-columns: 1fr; }
    .wc-about-prin-header { gap: 20px; }
    .wc-prin-line { width: 30px; }
    .wc-stewards-text { font-size: 28px; }
}

/* ==========================================================================
   PAGE: DISCREET FINANCIAL PLANNING
   ========================================================================== */

/* Hero */
.discreet-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.discreet-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.9) 0%, rgba(15,17,17,0.2) 100%);
    z-index: 1;
}
.discreet-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    /* Left aligned text layout */
}
.discreet-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 30px;
    font-weight: 300;
}
.discreet-hero-line {
    width: 40px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.discreet-hero-subtitle {
    font-family: var(--wc-font-heading);
    font-size: 24px;
    line-height: 1.5;
    margin: 0 0 30px;
    color: var(--wc-gold);
    font-weight: 400;
}
.discreet-hero-text {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Circumstance 3-Column Grid */
.discreet-circ-grid {
    display: flex;
    background: var(--wc-dark);
}
.discreet-circ-img {
    width: 33.333%;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.discreet-circ-text-pane {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    border-left: 1px solid rgba(184, 149, 106, 0.4);
    border-right: 1px solid rgba(184, 149, 106, 0.4);
}
.discreet-circ-inner {
    max-width: 360px;
    margin: 0 auto;
}
.discreet-circ-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 15px;
    font-weight: 500;
}
.discreet-circ-line-top {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.discreet-circ-heading {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 30px;
}
.discreet-circ-intro {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px;
    opacity: 0.9;
}
.discreet-circ-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.discreet-circ-list li {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 5px;
    opacity: 0.9;
}
.discreet-circ-line-bottom {
    width: 30px;
    height: 1px;
    background: rgba(184, 149, 106, 0.4);
    margin-bottom: 30px;
}
.discreet-circ-footer {
    font-family: var(--wc-font-heading);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* How It Is Handled Section */
.discreet-handle {
    background: #0f1111;
    padding: 100px 40px;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
}
.discreet-handle-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
.discreet-handle-left {
    width: 35%;
}
.discreet-handle-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 20px;
    font-weight: 500;
}
.discreet-handle-heading {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 30px;
}
.discreet-handle-text {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px;
    opacity: 0.8;
}
.discreet-handle-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid rgba(184, 149, 106, 0.5);
    color: var(--wc-gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.discreet-handle-btn:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

.discreet-handle-right {
    width: 60%;
    display: flex;
    flex-direction: column;
}
.discreet-handle-row {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.discreet-handle-row:first-child {
    padding-top: 0;
}
.discreet-handle-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.discreet-handle-icon {
    color: var(--wc-gold);
    margin-right: 30px;
    margin-top: 5px;
    opacity: 0.8;
}
.discreet-handle-content {
    flex: 1;
}
.discreet-handle-title {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 5px;
}
.discreet-handle-desc {
    font-family: var(--wc-font-heading);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
}

/* Footer Banner */
.discreet-banner {
    position: relative;
    padding: 120px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.discreet-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(244, 242, 239, 0.6); /* Light overlay to make text pop if needed, or leave clear */
    z-index: 1;
}
.discreet-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: var(--wc-dark);
}
.discreet-banner-heading {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 30px;
}
.discreet-banner-heading em {
    color: var(--wc-gold);
}
.discreet-banner-line {
    width: 40px;
    height: 1px;
    background: var(--wc-gold);
    margin: 0 auto 30px;
}
.discreet-banner-text {
    font-family: var(--wc-font-heading);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .discreet-circ-text-pane { padding: 40px 20px; }
    .discreet-handle-container { flex-direction: column; gap: 60px; }
    .discreet-handle-left, .discreet-handle-right { width: 100%; }
}
@media (max-width: 900px) {
    .discreet-hero-title { font-size: 50px; }
    .discreet-circ-grid { flex-direction: column; }
    .discreet-circ-img { width: 100%; min-height: 300px; }
    .discreet-circ-text-pane { width: 100%; border: none; border-top: 1px solid rgba(184, 149, 106, 0.4); border-bottom: 1px solid rgba(184, 149, 106, 0.4); }
}

/* ==========================================================================
   PAGE: CONTACT
   ========================================================================== */

/* Split Hero / Form Container */
.contact-split-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    padding: 140px 0 100px; /* Offset for transparent header */
}
.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(180deg, rgba(15,17,17,0.95) 0%, rgba(15,17,17,0) 25%),
        linear-gradient(90deg, rgba(15,17,17,0.85) 0%, rgba(15,17,17,0.3) 100%);
    z-index: 1;
}
.contact-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* So left can align with right box if needed */
    padding: 0 40px;
}

/* Left Pane (Text) */
.contact-left-pane {
    width: 45%;
    padding-top: 40px;
}
.contact-hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 30px;
    font-weight: 300;
}
.contact-hero-line {
    width: 40px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.contact-hero-text {
    font-family: var(--wc-font-heading);
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 40px;
    font-weight: 300;
}
.contact-phone-block {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-phone-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--wc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-gold);
    margin-right: 20px;
}
.contact-phone-details {
    display: flex;
    flex-direction: column;
}
.contact-phone-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 2px;
}
.contact-phone-number {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
}
.contact-hero-footer {
    font-size: 13px;
    color: var(--wc-gold);
}

/* Right Pane (Form Box) */
.contact-right-pane {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}
.contact-form-box {
    background: #0d0f0f;
    border: 1px solid rgba(184, 149, 106, 0.4);
    padding: 60px 50px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.contact-form-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    margin-bottom: 10px;
    font-weight: 500;
}
.contact-form-heading {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
    margin: 0 0 10px;
}
.contact-form-req {
    font-size: 13px;
    opacity: 0.8;
    margin: 0 0 40px;
}

/* Visual Form Styling */
.wc-contact-form .wc-form-group {
    margin-bottom: 25px;
}
.wc-contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.9;
}
.wc-contact-form input[type="text"],
.wc-contact-form input[type="email"],
.wc-contact-form input[type="tel"],
.wc-contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px;
    color: #FFF;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}
.wc-contact-form textarea {
    resize: vertical;
}
.wc-contact-form input:focus,
.wc-contact-form textarea:focus {
    border-color: rgba(184, 149, 106, 0.8);
}
.wc-submit-btn {
    width: 100%;
    background: var(--wc-gold);
    color: var(--wc-dark);
    border: none;
    padding: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 30px;
}
.wc-submit-btn:hover {
    background: #FFF;
}
.contact-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--wc-gold);
}
.contact-form-privacy p {
    color: #FFF;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.7;
}

/* Features Banner */
.contact-features {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 80px 40px;
}
.contact-feat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.contact-feat-col {
    width: 33.333%;
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(184, 149, 106, 0.3);
}
.contact-feat-col:last-child {
    border-right: none;
}
.contact-feat-icon {
    color: var(--wc-gold);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.contact-feat-title {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 15px;
}
.contact-feat-text {
    font-family: var(--wc-font-heading);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero-container { flex-direction: column; gap: 60px; padding: 40px; }
    .contact-left-pane, .contact-right-pane { width: 100%; justify-content: center; }
    .contact-hero-title { font-size: 60px; }
    .contact-form-box { max-width: 100%; }
    
    .contact-feat-container { flex-direction: column; gap: 40px; }
    .contact-feat-col { width: 100%; border-right: none; border-bottom: 1px solid rgba(184, 149, 106, 0.3); padding: 0 0 40px; }
    .contact-feat-col:last-child { border-bottom: none; padding-bottom: 0; }
}

/* CF7 Form Styling Match */
.wpcf7-form p {
    margin-bottom: 25px;
}
.wpcf7-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.9;
    width: 100%;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form input.wpcf7-text,
.wpcf7-form textarea.wpcf7-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px;
    color: #FFF;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}
.wpcf7-form textarea {
    resize: vertical;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: rgba(184, 149, 106, 0.8);
}
.wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--wc-gold);
    color: var(--wc-dark);
    border: none;
    padding: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    margin-bottom: 30px;
    box-sizing: border-box;
}
.wpcf7-form input[type="submit"]:hover {
    background: #FFF;
}
/* Remove CF7 loader br margin */
.wpcf7-spinner {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--wc-gold);
    color: var(--wc-gold);
}

/* ==========================================================================
   PAGE: OPPORTUNITIES HUB
   ========================================================================== */

/* 1. HERO */
.opp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
}
.opp-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(15,17,17,0.95) 0%, rgba(15,17,17,0.2) 100%);
    z-index: 1;
}
.opp-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}
.opp-hero-title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 300;
    margin: 0 0 30px;
    color: #FFF;
}
.opp-hero-line {
    width: 40px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.opp-hero-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF;
    font-weight: 400;
}

/* 2. CORE VALUES BANNER */
.opp-values-banner {
    background: var(--wc-light);
    color: var(--wc-dark);
    padding: 80px 40px;
}
.opp-values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.opp-value-col {
    width: 33.333%;
    padding: 0 40px;
    border-right: 1px solid rgba(184, 149, 106, 0.3);
}
.opp-value-col:last-child {
    border-right: none;
}
.opp-value-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 25px;
}
.opp-value-text {
    font-family: var(--wc-font-heading);
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
}

/* 3. OPPORTUNITIES GRID (3 CARDS) */
.opp-cards-section {
    background: var(--wc-dark);
    padding: 80px 40px 40px;
}
.opp-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}
.opp-card {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(184, 149, 106, 0.4);
    min-height: 550px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}
.opp-card:hover {
    border-color: var(--wc-gold);
}
.opp-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15,17,17,0.7) 0%, rgba(15,17,17,0.95) 100%);
    z-index: 1;
}
.opp-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.opp-card-num {
    color: var(--wc-gold);
    font-family: var(--wc-font-heading);
    font-size: 24px;
    margin-bottom: 40px;
}
.opp-card-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 300;
    color: #FFF;
    margin: 0 0 auto;
}
.opp-card-footer {
    margin-top: 40px;
}
.opp-card-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}
.opp-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
}
.opp-card-link-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.opp-card-arrow {
    color: var(--wc-gold);
    font-size: 18px;
    transition: transform 0.3s ease;
}
.opp-card:hover .opp-card-arrow {
    transform: translateX(5px);
}

/* 4. BOTTOM SPLIT SECTION */
.opp-bottom-split {
    background: var(--wc-dark);
    padding: 0 40px 80px;
}
.opp-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* Bottom Left Box (Light / Image split) */
.opp-bl-box {
    flex: 2;
    display: flex;
    background: var(--wc-light);
    color: var(--wc-dark);
    border: 1px solid rgba(184, 149, 106, 0.4);
}
.opp-bl-content {
    width: 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.opp-bl-image {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.opp-bl-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 20px;
}
.opp-bl-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 25px;
}
.opp-bl-text {
    font-family: var(--wc-font-heading);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px;
    opacity: 0.8;
}
.opp-bl-link {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.opp-bl-link:hover {
    color: var(--wc-dark);
}

/* Bottom Right Box (Dark Bordered) */
.opp-br-box {
    flex: 1;
    background: #0d0f0f;
    border: 1px solid rgba(184, 149, 106, 0.4);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.opp-br-title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #FFF;
}
.opp-br-line {
    width: 30px;
    height: 1px;
    background: var(--wc-gold);
    margin-bottom: 25px;
}
.opp-br-text {
    font-family: var(--wc-font-heading);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #FFF;
    opacity: 0.8;
}
.opp-br-lock-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.opp-br-lock-icon {
    color: var(--wc-gold);
}
.opp-br-lock-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wc-gold);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .opp-cards-container { flex-direction: column; }
    .opp-bottom-container { flex-direction: column; }
    .opp-bl-box { flex-direction: column; }
    .opp-bl-content, .opp-bl-image { width: 100%; }
    .opp-bl-image { min-height: 300px; }
}
@media (max-width: 900px) {
    .opp-hero-title { font-size: 50px; }
    .opp-values-container { flex-direction: column; gap: 40px; }
    .opp-value-col { width: 100%; border-right: none; padding: 0; }
}

/* ==========================================================================
   PAGE: CURRENT OPPORTUNITIES
   ========================================================================== */

/* 1. Hero overrides & specific classes */
.curr-opp-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: var(--wc-gold);
    font-family: var(--wc-font-heading);
    margin-bottom: 25px;
}
.curr-opp-hero-text {
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
    margin-bottom: 30px;
    opacity: 0.9;
}
.curr-opp-hero-footer {
    font-size: 14px;
    color: var(--wc-gold);
    font-weight: 500;
}
.curr-opp-form-box {
    padding: 50px 40px;
}
.curr-opp-form-heading {
    margin-bottom: 20px;
}
.curr-opp-form-line {
    width: 30px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}

/* 2. Middle Split */
.curr-opp-mid-split {
    display: flex;
    min-height: 600px;
}
.curr-opp-mid-left {
    width: 50%;
    background: #0d0f0f;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: max(5%, calc(50vw - 700px));
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.curr-opp-mid-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}
.curr-opp-mid-title {
    font-size: 40px;
    color: #FFF;
    margin: 0 0 25px;
    font-weight: 300;
    font-family: var(--wc-font-heading);
}
.curr-opp-mid-line-thick {
    width: 100%;
    height: 1px;
    background: rgba(184, 149, 106, 0.5); /* Gold divider */
}
.curr-opp-mid-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.curr-opp-mid-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #FFF;
    padding: 25px 0;
    border-bottom: 1px solid rgba(184, 149, 106, 0.5);
    opacity: 0.9;
}
.curr-opp-mid-footer {
    color: var(--wc-gold);
    font-size: 15px;
    line-height: 1.5;
    margin-top: 10px;
}

/* 3. Bottom Split */
.curr-opp-btm-split {
    background: var(--wc-light);
}
.curr-opp-btm-container {
    width: 100%;
    display: flex;
}
.curr-opp-btm-left {
    width: 50%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: max(5%, calc(50vw - 700px));
    padding-right: 5%;
}
.curr-opp-btm-right {
    width: 50%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: max(5%, calc(50vw - 700px));
    padding-left: 5%;
}
.curr-opp-btm-left {
    border-right: 1px solid rgba(184, 149, 106, 0.3); /* Vertical divider */
}
.curr-opp-btm-title {
    font-size: 40px;
    color: var(--wc-dark);
    margin: 0 0 25px;
    font-weight: 300;
    font-family: var(--wc-font-heading);
}
.curr-opp-btm-line-thick {
    width: 100%;
    height: 1px;
    background: rgba(184, 149, 106, 0.4);
}
.curr-opp-btm-line-thick-gold {
    width: 30px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.curr-opp-btm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.curr-opp-btm-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--wc-dark);
    padding: 25px 0;
    border-bottom: 1px solid rgba(184, 149, 106, 0.4);
}
.curr-opp-btm-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--wc-dark);
    margin-bottom: 30px;
}
.curr-opp-btm-footer {
    font-size: 18px;
    font-family: var(--wc-font-heading);
    color: var(--wc-gold);
    line-height: 1.4;
    margin-top: 20px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .curr-opp-mid-split {
        flex-direction: column;
    }
    .curr-opp-mid-right {
        min-height: 400px;
    }
    .curr-opp-btm-container {
        flex-direction: column;
    }
    .curr-opp-btm-left {
        border-right: none;
        border-bottom: 1px solid rgba(184, 149, 106, 0.3);
    }
    .curr-opp-btm-left, .curr-opp-btm-right {
        padding: 50px 30px;
    }
    .curr-opp-mid-left {
        width: 100%;
        padding: 60px 30px;
    }
}

/* ==========================================================================
   PAGE: INTRODUCERS
   ========================================================================== */

/* 1. Hero overrides */
.intro-hero-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #FFF; /* White instead of Gold */
    font-family: var(--wc-font-heading);
    margin-bottom: 25px;
}
.intro-form-heading {
    font-size: 28px;
    color: var(--wc-gold);
    margin-bottom: 30px;
    font-family: var(--wc-font-heading);
    font-weight: 300;
}
.intro-submit-btn {
    text-transform: none;
    letter-spacing: normal;
    font-size: 18px;
    font-weight: 400;
    color: var(--wc-dark); /* Ensure black text */
}
.intro-form-footer {
    color: #FFF;
    opacity: 0.8;
    font-size: 13px;
    line-height: 1.5;
    margin: 20px 0 0;
}

/* 2. Middle Split (Light/Image) */
.intro-mid-left {
    background: var(--wc-light);
    color: var(--wc-dark);
}
.intro-mid-title {
    color: var(--wc-dark);
    font-family: var(--wc-font-heading);
    font-size: 44px;
    font-weight: 300;
}
.intro-mid-line {
    width: 30px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.intro-mid-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--wc-dark);
}

/* 3. How We Work */
.intro-hww-section {
    background: var(--wc-dark);
}
.intro-hww-container {
    display: flex;
    min-height: 500px;
}
.intro-hww-left {
    width: 70%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: max(5%, calc(50vw - 700px));
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro-hww-right {
    width: 30%;
    background-size: cover;
    background-position: center;
}
.intro-hww-title {
    font-size: 44px;
    color: #FFF;
    margin: 0 0 25px;
    font-weight: 300;
    font-family: var(--wc-font-heading);
}
.intro-hww-line {
    width: 40px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 50px;
}
.intro-hww-grid {
    display: flex;
    gap: 40px;
}
.intro-hww-col {
    flex: 1;
    border-left: 1px solid rgba(184, 149, 106, 0.4); /* Gold divider */
    padding-left: 25px;
}
.intro-hww-col:first-child {
    border-left: none;
    padding-left: 0;
}
.intro-hww-col-head {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.intro-hww-col-text {
    color: #FFF;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 4. Bottom Banner */
.intro-btm-section {
    position: relative;
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
}
.intro-btm-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 15, 15, 0.85); /* Dark overlay */
    z-index: 1;
}
.intro-btm-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.intro-btm-box {
    border: 1px solid rgba(184, 149, 106, 0.5); /* Gold border */
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.intro-btm-box-left {
    flex: 1;
    border-right: 1px solid rgba(184, 149, 106, 0.4);
    padding-right: 60px;
}
.intro-btm-box-right {
    flex: 1;
}
.intro-btm-title {
    font-size: 44px;
    color: #FFF;
    margin: 0;
    line-height: 1.2;
    font-weight: 300;
    font-family: var(--wc-font-heading);
}
.intro-btm-text {
    color: #FFF;
    opacity: 0.9;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px;
}
.intro-btm-footer {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
    .intro-hww-grid { flex-direction: column; gap: 30px; }
    .intro-hww-col { border-left: none; padding-left: 0; border-top: 1px solid rgba(184, 149, 106, 0.4); padding-top: 20px; }
    .intro-hww-col:first-child { border-top: none; padding-top: 0; }
    
    .intro-btm-box { flex-direction: column; padding: 50px 30px; gap: 40px; }
    .intro-btm-box-left { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(184, 149, 106, 0.4); padding-bottom: 40px; }
    .intro-btm-title { font-size: 32px; }
}
@media (max-width: 900px) {
    .intro-hww-container { flex-direction: column; }
    .intro-hww-left, .intro-hww-right { width: 100%; }
    .intro-hww-right { min-height: 400px; }
    .intro-hww-left { padding: 60px 30px; }
}

/* ==========================================================================
   PAGE: SUCCESSION, SALE AND ACQUISITION
   ========================================================================== */

/* 1. Hero overrides (No form here) */
.succ-hero {
    position: relative;
    padding: 200px 5% 150px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.succ-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(13, 15, 15, 0.95) 0%, rgba(13, 15, 15, 0.7) 40%, rgba(13, 15, 15, 0.2) 100%);
    z-index: 1;
}
.succ-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.succ-hero-title {
    font-size: 72px;
    color: #FFF;
    margin: 0 0 25px;
    line-height: 1.1;
    font-weight: 300;
    font-family: var(--wc-font-heading);
}
.succ-hero-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.succ-hero-subtitle {
    font-size: 24px;
    line-height: 1.4;
    color: #FFF;
    font-family: var(--wc-font-heading);
    margin-bottom: 25px;
}
.succ-hero-text {
    font-size: 16px;
    color: #FFF;
    opacity: 0.9;
    line-height: 1.6;
}

/* 2. Middle Grid */
.succ-grid-section {
    background: var(--wc-dark);
    padding: 80px 5%;
}
.succ-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}
/* Grid Text Overlines */
.succ-gold-head {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Left Wrapper */
.succ-grid-left-wrap {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.succ-grid-top {
    display: flex;
    gap: 0; /* They touch */
}
.succ-grid-text-box {
    width: 55%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.succ-grid-title {
    font-size: 40px;
    color: #FFF;
    margin: 0 0 25px;
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--wc-font-heading);
}
.succ-grid-p {
    color: #FFF;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.succ-grid-img-box {
    width: 45%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* 3 Features Boxes */
.succ-grid-bottom {
    display: flex;
    gap: 20px;
}
.succ-feature-box {
    flex: 1;
    border: 1px solid rgba(184, 149, 106, 0.4); /* Gold border */
    padding: 40px 30px;
    text-align: center;
}
.succ-feature-title {
    color: var(--wc-gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.succ-feature-line {
    width: 30px;
    height: 1px;
    background: rgba(184, 149, 106, 0.8);
    margin: 0 auto 20px;
}
.succ-feature-text {
    color: #FFF;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Right Wrapper (Form Box) */
.succ-grid-right-wrap {
    width: 35%;
}
.succ-form-box {
    border: 1px solid rgba(184, 149, 106, 0.4);
    padding: 60px 50px;
    height: 100%;
}
.succ-form-head {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
}
.succ-form-title {
    font-size: 40px;
    color: #FFF;
    margin: 0 0 35px;
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--wc-font-heading);
}

/* Form overrides */
.succ-contact-form label {
    font-size: 13px;
    color: #FFF;
    opacity: 0.9;
    margin-bottom: 8px;
    display: block;
}
.succ-contact-form input,
.succ-contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFF;
    padding: 12px 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.succ-contact-form input:focus,
.succ-contact-form textarea:focus {
    border-color: rgba(184,149,106,0.8);
}
.succ-submit-btn {
    background: var(--wc-gold);
    color: var(--wc-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}

/* 3. Bottom Split */
.succ-btm-split {
    display: flex;
    min-height: 600px;
}
.succ-btm-left {
    width: 50%;
    background: var(--wc-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.succ-btm-content {
    max-width: 700px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 10%;
    padding-left: max(5%, calc(50vw - 700px));
}
.succ-btm-head {
    margin-bottom: 15px;
}
.succ-btm-line {
    width: 60px;
    height: 2px;
    background: var(--wc-gold);
    margin-bottom: 30px;
}
.succ-btm-title {
    font-size: 44px;
    color: var(--wc-dark);
    margin: 0 0 25px;
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--wc-font-heading);
}
.succ-btm-text {
    color: var(--wc-dark);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px;
}
.succ-btm-link-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.succ-btm-link {
    color: var(--wc-gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
}
.succ-btm-link-line {
    flex: 1;
    height: 1px;
    background: rgba(184, 149, 106, 0.4);
    max-width: 200px;
}
.succ-btm-right {
    width: 50%;
    background-size: cover;
    background-position: center;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .succ-grid-left-wrap { width: 60%; }
    .succ-grid-right-wrap { width: 40%; }
    .succ-hero-title { font-size: 60px; }
}
@media (max-width: 991px) {
    .succ-grid-container { flex-direction: column; }
    .succ-grid-left-wrap { width: 100%; }
    .succ-grid-right-wrap { width: 100%; }
    .succ-grid-top { flex-direction: column; gap: 40px; }
    .succ-grid-text-box, .succ-grid-img-box { width: 100%; padding-right: 0; }
    
    .succ-btm-split { flex-direction: column; }
    .succ-btm-left, .succ-btm-right { width: 100%; }
    .succ-btm-left { justify-content: center; }
    .succ-btm-content { padding: 60px 30px; }
    .succ-btm-right { min-height: 400px; }
    .succ-hero-title { font-size: 48px; }
    .succ-grid-bottom { flex-direction: column; }
}



/* ==========================================================================
   NEW FOOTER (5-Column Layout)
   ========================================================================== */
.wc-new-footer { text-align: left;
    background-color: #0d0f0f;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-family: var(--wc-font-body);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--wc-gold);
}

.wc-new-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(13,15,15,0.85) 0%, rgba(5,6,6,0.95) 100%);
    z-index: -1;
}

.wc-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Main Grid */
.wc-footer-main {
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wc-footer-brand { display: block !important; text-align: left !important; }
.wc-footer-logo-link { display: inline-block !important; text-align: left !important; margin-left: 0 !important; }
.wc-footer-main .wc-footer-container {
    display: grid;
    grid-template-columns: 3.5fr 2fr 2fr 2fr 2fr;
    gap: 50px;
}

/* Brand Column */
.wc-footer-logo-link img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px !important;
    display: inline-block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

.wc-footer-logo-text {
    font-family: var(--wc-font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.25em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex !important;
    justify-content: flex-start !important;
    align-items: center;
    margin-bottom: 25px;
    margin-left: 0 !important;
}

.wc-footer-sep {
    display: inline-block;
    width: 1px;
    height: 35px;
    background: var(--wc-gold);
    margin: 0 15px;
}

.wc-footer-tagline {
    font-family: var(--wc-font-heading);
    font-size: 1.25rem;
    color: var(--wc-gold);
    margin: 0 0 35px;
    font-style: italic;
}

.wc-footer-desc {
    font-size: 0.85rem;
    line-height: 2;
    color: #fff;
    margin: 0 0 45px;
    font-weight: 300;
}

.wc-footer-cta {
    display: inline-block;
    border: 1px solid var(--wc-gold);
    padding: 15px 30px;
    color: var(--wc-gold);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.wc-footer-cta:hover {
    background: var(--wc-gold);
    color: var(--wc-dark);
}

.wc-footer-cta-arrow {
    margin-left: 10px;
    font-size: 1.1em;
}

/* Link Columns */
.wc-footer-col-title {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wc-gold); display: inline-block;

    font-size: 0.65rem;
    color: var(--wc-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 30px;
    font-weight: 500;
}

.wc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-footer-links li {
    margin: 0 0 18px;
}

.wc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    font-weight: 300;
}

.wc-footer-links a:hover {
    color: var(--wc-gold);
}

/* Contact Bar */
.wc-footer-contact {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 1px solid rgba(184, 149, 106, 0.4);
    padding: 50px 0;
}

.wc-footer-contact-grid {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    align-items: stretch;
}


.wc-footer-contact-item {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-right: 1px solid rgba(184, 149, 106, 0.3);
}
.wc-footer-contact-item:first-child {
    padding-left: 0;
}
.wc-footer-contact-inner {
    display: flex;
    align-items: flex-start;
}

.wc-footer-contact-icon {
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 2px;
}

.wc-footer-contact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    white-space: nowrap;
}

.wc-footer-email-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.wc-footer-email-link:hover {
    color: var(--wc-gold);
}

.wc-footer-contact-fca-text {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    border-right: 1px solid rgba(184, 149, 106, 0.3);
}

.wc-footer-fca-badge-wrap {
    display: flex;
    align-items: center;
    padding: 30px 0 30px 40px;
}

.wc-footer-fca-badge {
    max-width: 180px;
    height: auto;
}

.wc-footer-fca-badge-placeholder {
    border: 1px solid rgba(184, 149, 106, 0.5);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.wc-fca-main {
    font-family: var(--wc-font-heading);
    font-size: 2.2rem;
    color: var(--wc-gold);
}

.wc-fca-sub {
    font-size: 0.4rem;
    color: var(--wc-gold);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Bottom Bar */
.wc-footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(184, 149, 106, 0.4);
}

.wc-footer-bottom .wc-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.wc-footer-bottom-top,
.wc-footer-bottom-links {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.wc-footer-bottom-sep {
    color: var(--wc-gold);
    margin: 0 15px;
}

.wc-footer-bottom-links a {
    color: var(--wc-gold);
    text-decoration: none;
    transition: 0.3s;
}

.wc-footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive */






@media (max-width: 1199px) {
    .wc-footer-main .wc-footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .wc-footer-brand {
        grid-column: span 3;
        text-align: center !important;
    }
    .wc-footer-logo-link { text-align: center !important; }
    .wc-footer-logo-link img { margin: 0 auto 25px auto !important; }
    .wc-footer-logo-text {
        justify-content: center !important;
        margin: 0 auto 25px auto !important;
    }
    .wc-footer-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .wc-footer-contact-item,
    .wc-footer-contact-fca-text {
        border-right: none;
        padding: 0;
    }
    .wc-footer-contact-text {
        white-space: normal;
    }
    .wc-footer-fca-badge-wrap {
        padding-left: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .wc-footer-logo-text {
        font-size: clamp(1rem, 5vw, 1.4rem) !important;
        letter-spacing: 0.15em !important;
    }
    .wc-footer-cta {
        padding: 12px 15px;
        font-size: 0.55rem;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .wc-footer-main .wc-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .wc-footer-brand {
        grid-column: span 1;
    }
    .wc-footer-contact-grid {
        grid-template-columns: 1fr;
    }
    .wc-footer-contact-item,
    .wc-footer-contact-item:first-child {
        justify-content: center;
        text-align: center;
        align-items: center;
        padding: 0;
    }
    .wc-footer-contact-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .wc-footer-contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .wc-footer-contact-fca-text {
        text-align: center;
    }
    .wc-footer-fca-badge-wrap {
        justify-content: center;
    }
    .wc-footer-bottom-top,
    .wc-footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .wc-footer-bottom-sep {
        display: none;
    }
}




/* Welcome Popup */
.wc-welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0d0f0f 100%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.wc-welcome-content {
    text-align: center;
    color: #fff;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}
.wc-welcome-title {
    font-family: var(--wc-font-heading);
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wc-welcome-sep {
    display: inline-block;
    width: 1px;
    height: 30px;
    background: #B8956A;
    margin: 0 10px;
}
.wc-welcome-subtitle {
    font-family: var(--wc-font-body);
    font-size: clamp(0.55rem, 2vw, 0.85rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0 0 50px;
}
.wc-welcome-btn {
    background: transparent;
    border: 1px solid rgba(184,149,106,0.5);
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}
.wc-welcome-btn:hover {
    border-color: #B8956A;
    color: #B8956A;
}
.wc-footer-contact-item a {
    word-break: break-all;
    overflow-wrap: break-word;
}


