:root {
    /* Brand */
    --brand-red: #8B0D20;
    --brand-red-hover: #5e0815;
    --brand-red-soft: #E85B59;
    --brand-dark: #05080f;        /* Ultra deep slate */

    /* Ink scale (text colors used across the site) */
    --ink-dark: #05080f;          /* Same as --brand-dark; semantic alias */
    --ink-mid:  #4a525e;          /* Body copy on light backgrounds */

    /* Surfaces */
    --bg-warm: #FAF9F8;           /* Subtle luxury off-white */
    --border-warm: #e8e2dd;       /* Card borders on warm backgrounds */

    /* Legacy aliases (kept for compatibility with older blocks) */
    --text-dark: #111827;
    --text-gray: #4B5563;

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Layout */
    --nav-height: 92px;
    --top-bar-height: 40px;

    scroll-behavior: smooth;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-padding-top: var(--nav-height);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Accessible focus ring (only for keyboard nav) */
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip-to-content link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--brand-red);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Anchored sections shouldn't be hidden by the fixed navbar */
section[id], header[id] { scroll-margin-top: var(--nav-height); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* ----- NAVBAR ----- */
.navbar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}
.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.navbar-brand img { max-height: 65px; transition: max-height 0.4s ease; }
.navbar.scrolled .navbar-brand img { max-height: 52px; }

.nav-link {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 1.2rem;
    background-color: var(--brand-red);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-link:hover { color: var(--brand-red) !important; }
.nav-link:hover::after { width: calc(100% - 2.4rem); }

.dropdown-toggle::after {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    vertical-align: 0.18em;
    margin-left: 0.4em;
    border-top-color: currentColor;
}
.dropdown-toggle.show::after { transform: rotate(180deg); }

/* Mobile hamburger ↔ close icon swap (uses Bootstrap's collapsed state) */
.navbar-toggler { padding: 0.25rem 0.6rem; }
.navbar-toggler .icon-close { display: inline-block; }
.navbar-toggler .icon-bars  { display: none; }
.navbar-toggler.collapsed .icon-close { display: none; }
.navbar-toggler.collapsed .icon-bars  { display: inline-block; }

.dropdown-menu {
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1rem 0;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}
.dropdown-item {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
    transition: all 0.3s ease;
}
.dropdown-item:hover {
    background-color: rgba(139, 13, 32, 0.03);
    color: var(--brand-red);
    padding-left: 2.2rem; 
}

/* ----- BUTTONS & MICRO-INTERACTIONS ----- */
.btn-pill {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(139, 13, 32, 0.15);
    position: relative;
    overflow: hidden;
}
/* Shimmer Effect */
.btn-pill::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
}
.btn-pill i { transition: transform 0.4s ease; }
.btn-pill:hover {
    background-color: var(--brand-red-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 13, 32, 0.25);
}
.btn-pill:hover::before { left: 150%; }
.btn-pill:hover i { transform: translateX(6px); }

.btn-outline-pill {
    background-color: transparent;
    color: var(--text-dark);
    border: 1.5px solid #d1d5db;
    padding: 1.05rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-outline-pill:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background-color: rgba(139, 13, 32, 0.02);
    transform: translateY(-2px);
}

/* ----- HERO SECTION ----- */
.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-warm);
    overflow: hidden;
}
.hero-text-box {
    padding: 8rem 8% 10rem 5%;
    z-index: 2;
}
.hero-image-box {
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    overflow: hidden; /* For Ken Burns */
}
/* Ken Burns Cinematic Zoom */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center right;
    animation: kenburns 25s ease-in-out infinite alternate;
}
/* Image Gradient Overlay */
.hero-image-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, var(--bg-warm) 0%, transparent 20%);
}

.hero-label {
    color: var(--brand-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
}
.hero-label::before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--brand-red);
    margin-right: 15px;
}
.hero-title {
    font-size: clamp(3.2rem, 4.5vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 5;
}
.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(139, 13, 32, 0.3);
    position: relative;
    overflow: hidden;
}
@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--brand-red);
    animation: scrollLine 2.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* ----- FLOATING STATS CARD ----- */
.stats-wrapper {
    position: relative;
    margin-top: -90px;
    z-index: 10;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
.stats-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
    animation: float 8s ease-in-out infinite;
}
.stat-number {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 0.8rem;
}
.stat-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ----- EDITORIAL ZIG-ZAG LAYOUT ----- */
.editorial-section { padding: 9rem 0; }

/* High-End Image Hover Scaling */
.editorial-img-wrapper {
    position: relative;
    border-radius: 16px;
    z-index: 1;
}
.editorial-img-wrapper::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--brand-red);
    border-radius: 16px;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.2;
}
.editorial-img-wrapper.right-offset::after {
    left: auto;
    right: -25px;
}
.editorial-img-wrapper:hover::after {
    top: 15px;
    left: -15px;
    opacity: 0.6;
}
.editorial-img-wrapper.right-offset:hover::after {
    top: 15px;
    left: auto;
    right: -15px;
    opacity: 0.6;
}

.img-overflow-hide {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.editorial-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.editorial-img-wrapper:hover .editorial-img {
    transform: scale(1.05);
}

.editorial-content { padding: 2rem 0; }
.editorial-content h2 { font-size: clamp(2.5rem, 3.5vw, 3.8rem); margin-bottom: 1.8rem; line-height: 1.1; }
.editorial-content p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 2.5rem; color: var(--text-gray); font-weight: 400;}

/* ----- DARK MODE CONTACT ----- */
.contact-dark {
    background-color: var(--brand-dark);
    color: #ffffff;
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
}
.contact-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(139,13,32,0.08) 0%, rgba(5,8,15,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.contact-content { position: relative; z-index: 2; }
.contact-dark h2 { color: #ffffff; font-size: clamp(3.2rem, 4.5vw, 4.5rem); letter-spacing: -0.04em; }
.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.contact-info-row { transition: transform 0.3s ease; }
.contact-info-row:hover { transform: translateX(10px); }
.contact-info-row:hover .contact-info-icon {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
    box-shadow: 0 0 20px rgba(139, 13, 32, 0.4);
}

/* Dark Form Inputs */
.dark-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #ffffff;
    padding: 1.05rem 1.2rem;
    font-size: 1.05rem;
    width: 100%;
    transition: all 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.dark-input:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}
.dark-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(139, 13, 32, 0.18);
}
.dark-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 0;
}

/* ----- FOOTER ----- */
footer {
    background-color: #030508; 
    color: rgba(255,255,255,0.4);
    padding: 6rem 0 2rem;
}
footer h6 { color: #ffffff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s ease; display: inline-block; font-weight: 400;}
footer a:hover { color: #ffffff; transform: translateX(6px); }

.newsletter-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 8px;
    display: flex;
    transition: all 0.4s ease;
}
.newsletter-box:focus-within { 
    border-color: rgba(255,255,255,0.25); 
    background: rgba(255,255,255,0.04);
}
.newsletter-box input {
    background: transparent;
    border: none;
    color: white;
    padding: 0 25px;
    width: 100%;
    font-size: 0.95rem;
}
.newsletter-box input:focus { outline: none; }
.newsletter-box .btn-pill { padding: 1rem 2.2rem; border-radius: 50px; }

/* Floating WhatsApp — compact icon button */
.fab {
    position: fixed;
    bottom: 28px; right: 28px;
    background-color: #25D366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.40);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 999;
}
.fab i {
    font-size: 32px;
    line-height: 1;
    display: block;
}
.fab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
    opacity: 0;
    pointer-events: none;
}
@keyframes pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0;   }
}
.fab:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.50);
}
@media (max-width: 575px) {
    .fab { width: 56px; height: 56px; bottom: 18px; right: 18px; }
    .fab i { font-size: 28px; }
}

/* Back-to-top button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, background 0.3s ease;
    z-index: 999;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--brand-red); }

/* Newsletter feedback */
.newsletter-feedback {
    font-size: 0.85rem;
    margin-top: 0.9rem;
    min-height: 1.2em;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s ease;
}
.newsletter-feedback.success { color: #6EE7B7; }
.newsletter-feedback.error   { color: #FCA5A5; }

/* Responsive Fixes */
@media (max-width: 991px) {
    :root { --nav-height: 78px; }
    .hero-image-box { position: relative; width: 100%; height: 55vh; order: 1; }
    .hero-image-box::after { background: linear-gradient(to top, var(--bg-warm) 0%, transparent 30%); }
    .hero-text-box { padding: 4rem 5%; order: 2; }
    .hero-split { flex-direction: column; padding-top: 80px; min-height: auto; }
    .stats-wrapper { margin-top: -30px; padding: 0 15px; }
    .stats-glass-card { padding: 2.5rem 1rem; animation: none; }
    .editorial-img-wrapper::after { display: none; }
    .editorial-img { height: 450px; margin-bottom: 2.5rem; }
    .editorial-section { padding: 5rem 0; }
    .contact-dark { padding: 6rem 0; }
    .scroll-indicator { display: none; }
    .fab { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
    .back-to-top { bottom: 20px; left: 20px; width: 44px; height: 44px; font-size: 1rem; }

    /* Mobile dropdown sub-items: subtle indent + soft separator */
    .navbar-collapse .dropdown-menu {
        box-shadow: none;
        margin-top: 0;
        padding: 0.25rem 0 0.5rem 0.5rem;
        border-left: 2px solid rgba(139, 13, 32, 0.15);
        border-radius: 0;
        background: transparent;
    }
    .nav-link::after { display: none; }
}

/* =========================================================
   TOP CONTACT BAR (above navbar)
   ========================================================= */
:root { --top-bar-height: 40px; }
html { scroll-padding-top: calc(var(--nav-height) + var(--top-bar-height)); }

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
}
.top-bar {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
}
.top-bar-left {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
}
.top-bar-promise {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    margin-left: auto;
}
.top-bar-link {
    display: inline-flex;
    align-items: center;
}
.top-bar-divider {
    color: rgba(255,255,255,0.25);
    margin: 0 0.15rem;
}
.top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.top-bar a:hover { color: #fff; }
.top-bar a i,
.top-bar > div > span > i { color: var(--brand-red); margin-right: 0.45rem; }
.top-bar .top-bar-msg i { color: #6EE7B7; margin-right: 0.5rem; }
.top-bar .divider {
    width: 1px; height: 14px;
    background: rgba(255,255,255,0.18);
    display: inline-block;
}
.top-bar .wa-link i { color: #25D366; }

/* Site header structure: navbar sits below top bar instead of fixed-top */
.site-header .navbar { position: relative; }

@media (max-width: 991px) {
    :root { --top-bar-height: 36px; }
    .top-bar { padding: 0.4rem 0; font-size: 0.72rem; }
    .top-bar-msg { display: none; }
    .top-bar .divider { display: none; }
}
@media (max-width: 575px) {
    :root { --top-bar-height: 36px; }
    .top-bar-address { display: none; }
}

/* =========================================================
   SIDE CONSULT TAB + DRAWER
   ========================================================= */
.consult-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}
.consult-tab-trigger {
    background: var(--brand-red);
    color: #fff;
    border: none;
    padding: 1.2rem 0.65rem;
    border-radius: 12px 0 0 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: -10px 10px 30px rgba(139, 13, 32, 0.25);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.consult-tab-trigger:hover {
    background: var(--brand-red-hover);
    padding-right: 1rem;
    box-shadow: -14px 12px 38px rgba(139, 13, 32, 0.35);
}
.consult-tab-trigger i {
    font-size: 1rem;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.9);
}

.consult-drawer {
    position: fixed;
    inset: 0;
    z-index: 1060;
}
.consult-drawer[hidden] { display: none; }
.consult-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,8,15,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: drawerFade 0.3s ease;
}
.consult-drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(640px, 100%);
    background: #fff;
    box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    overflow-y: auto;
    animation: drawerSlide 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes drawerSlide {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}
@keyframes drawerFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.consult-drawer-close {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    color: var(--text-dark);
    z-index: 2;
}
.consult-drawer-close:hover { background: rgba(0,0,0,0.1); transform: rotate(90deg); }
.consult-drawer-content { padding: 4rem 2.5rem 2.5rem; }
.consult-drawer-content h3 {
    font-size: 2rem;
    margin: 0.6rem 0 0.8rem;
    line-height: 1.15;
}
.consult-drawer-content p { font-size: 1rem; line-height: 1.65; }
.booking-embed-placeholder {
    background: var(--bg-warm);
    border: 1.5px dashed rgba(139, 13, 32, 0.3);
    border-radius: 14px;
    padding: 3rem 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    color: var(--text-gray);
}
.booking-embed-placeholder .ph-icon {
    display: inline-flex;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(139, 13, 32, 0.08);
    color: var(--brand-red);
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.booking-embed-placeholder .ph-note {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}
.consult-drawer .quick-actions { margin-top: 1.5rem; }
.consult-drawer .quick-actions a {
    justify-content: center;
    width: 100%;
}

@media (max-width: 575px) {
    .consult-tab-trigger { padding: 1rem 0.5rem; font-size: 0.68rem; gap: 0.6rem; }
    .consult-drawer-content { padding: 3.5rem 1.5rem 2rem; }
    .consult-drawer-content h3 { font-size: 1.6rem; }
}

/* =========================================================
   CONFIDENTIAL CALLBACK SECTION
   ========================================================= */
.callback-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-warm) 100%);
}
.callback-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.08);
    background: #fff;
}
.callback-pitch {
    background: var(--brand-dark);
    color: #fff;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.callback-pitch::before {
    content: '';
    position: absolute;
    top: -30%; right: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,13,32,0.18) 0%, rgba(5,8,15,0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.callback-pitch > * { position: relative; z-index: 1; }
.callback-shield {
    display: inline-flex;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(139, 13, 32, 0.18);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.callback-pitch h2 {
    color: #fff;
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.8rem;
}
.callback-features {
    margin: 0;
    padding: 0;
}
.callback-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.9rem;
}
.callback-features li i {
    color: #6EE7B7;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.callback-form-wrap {
    padding: 4rem 3rem;
    background: #fff;
}
.callback-label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}
.callback-label .optional {
    color: var(--text-gray);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.7rem;
    margin-left: 0.4rem;
}
.callback-input {
    width: 100%;
    background: var(--bg-warm);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: inherit;
}
.callback-input:focus {
    outline: none;
    border-color: var(--brand-red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 13, 32, 0.08);
}
select.callback-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
textarea.callback-input { resize: vertical; min-height: 110px; }

.callback-pref-group {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.callback-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-warm);
    border: 1.5px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: all 0.25s ease;
    user-select: none;
    margin: 0;
}
.callback-chip input { display: none; }
.callback-chip i { color: var(--brand-red); }
.callback-chip:has(input:checked) {
    background: rgba(139, 13, 32, 0.05);
    border-color: var(--brand-red);
    color: var(--brand-red);
}
.callback-chip:hover { color: var(--brand-red); }

.callback-privacy {
    background: rgba(110, 231, 183, 0.08);
    border-left: 3px solid #6EE7B7;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.55;
}
.callback-privacy i {
    color: #047857;
    margin-right: 0.5rem;
}
.callback-feedback {
    font-size: 0.88rem;
    margin-top: 1rem;
    min-height: 1.2em;
    color: var(--text-gray);
    text-align: center;
}
.callback-feedback.success { color: #047857; font-weight: 600; }
.callback-feedback.error { color: #B91C1C; font-weight: 600; }

@media (max-width: 991px) {
    .callback-section { padding: 4.5rem 0; }
    .callback-pitch { padding: 3rem 2rem; }
    .callback-form-wrap { padding: 2.5rem 2rem; }
}

/* =========================================================
   GOOGLE MAPS EMBED
   ========================================================= */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 2rem;
    line-height: 0;
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
    filter: invert(0.92) hue-rotate(180deg) saturate(0.5);
}

/* ============================================================
   Page-specific extensions (used by visa pages, citizenship,
   appeals, advocate, blog, terms — pulled into global CSS so
   browsers cache once instead of inlining on every page).
   ============================================================ */

/* Page hero - dark gradient header used on all inner pages */
.page-hero {
    position: relative;
    background: var(--ink-dark, #05080f);
    color: #ffffff;
    padding: calc(var(--nav-height, 92px) + var(--top-bar-height, 40px) + 3rem) 0 5rem;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(139, 13, 32, 0.5) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(232, 91, 89, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; max-width: 920px; }
.page-breadcrumbs {
    font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.8rem; font-family: var(--font-heading, 'Manrope', sans-serif);
    letter-spacing: 0.04em;
}
.page-breadcrumbs a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s; }
.page-breadcrumbs a:hover { color: #ffffff; }
.page-breadcrumbs .sep { margin: 0 0.6rem; opacity: 0.4; }
.page-breadcrumbs .current { color: rgba(255, 255, 255, 0.9); }
.page-hero-label {
    display: inline-block; padding: 0.4rem 0.95rem;
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px; font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.4rem;
}
.page-hero-title {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05; letter-spacing: -0.04em; font-weight: 700;
    margin-bottom: 1.4rem; color: #ffffff;
}
.page-hero-desc {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.65; color: rgba(255, 255, 255, 0.72); max-width: 680px;
    margin-bottom: 0;
}

/* Visa list / accordion */
.visa-intro-block { padding: 5rem 0 3rem; background: var(--bg-warm, #FAF9F8); }
.visa-intro-block .container { max-width: 860px; }
.visa-intro-block h2 {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    letter-spacing: -0.03em; line-height: 1.15; margin: 0.4rem 0 1.2rem;
    color: var(--ink-dark, #05080f);
}
.visa-intro-block p { font-size: 1.06rem; color: var(--ink-mid, #4a525e); line-height: 1.7; }

.visa-list-section { padding: 2rem 0 6rem; background: var(--bg-warm, #FAF9F8); }
.visa-list-section .container { max-width: 920px; }
.visa-item {
    background: #ffffff; border: 1px solid var(--border-warm, #e8e2dd);
    border-radius: 16px; margin-bottom: 1.2rem; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.visa-item[open] { border-color: rgba(139, 13, 32, 0.25); box-shadow: 0 12px 30px rgba(5, 8, 15, 0.06); }
.visa-item summary {
    display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem;
    align-items: center; padding: 1.6rem 1.8rem; cursor: pointer; list-style: none;
    transition: background 0.2s;
}
.visa-item summary::-webkit-details-marker { display: none; }
.visa-item summary:hover { background: rgba(139, 13, 32, 0.025); }
.visa-item-meta {
    font-family: "JetBrains Mono", "SF Mono", Consolas, monospace;
    font-size: 0.78rem; font-weight: 500;
    color: var(--brand-red, #8B0D20); text-transform: uppercase;
    letter-spacing: 0.06em; min-width: 120px; text-align: left;
}
.visa-item-title {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    font-weight: 600; color: var(--ink-dark, #05080f);
    letter-spacing: -0.01em; line-height: 1.35;
}
.visa-item-toggle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-warm, #FAF9F8); display: inline-flex;
    align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--ink-mid, #4a525e); flex-shrink: 0;
}
.visa-item[open] .visa-item-toggle {
    background: var(--brand-red, #8B0D20); color: #ffffff; transform: rotate(135deg);
}
.visa-item-body {
    padding: 0 1.8rem 1.8rem; padding-left: calc(1.8rem + 120px + 1.2rem);
    color: var(--ink-mid, #4a525e); line-height: 1.7;
}
.visa-item-body p { margin-bottom: 1.2rem; font-size: 0.98rem; }
.visa-features {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.5rem;
    margin: 1.2rem 0 1.6rem; list-style: none; padding: 0;
}
.visa-features li {
    font-size: 0.92rem; color: var(--ink-mid, #4a525e);
    display: flex; gap: 0.6rem; align-items: flex-start;
}
.visa-features li i {
    color: var(--brand-red, #8B0D20); margin-top: 4px; font-size: 0.8rem;
}
.disclaimer-card {
    margin: 4rem 0 2rem; padding: 1.8rem 2rem;
    background: rgba(139, 13, 32, 0.04);
    border-left: 3px solid var(--brand-red, #8B0D20);
    border-radius: 8px;
    display: flex; gap: 1.2rem; align-items: flex-start;
}
.disclaimer-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--brand-red, #8B0D20); color: #ffffff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0;
}
.disclaimer-text {
    color: var(--ink-mid, #4a525e); font-size: 0.92rem;
    line-height: 1.65; flex: 1;
}
.disclaimer-text strong { color: var(--ink-dark, #05080f); }

@media (max-width: 760px) {
    .page-hero { padding: 5rem 0 3rem; }
    .visa-item summary { grid-template-columns: 1fr auto; gap: 0.8rem; padding: 1.3rem 1.4rem; }
    .visa-item-meta {
        grid-column: 1 / -1; min-width: 0; padding-bottom: 0.4rem;
        border-bottom: 1px solid var(--border-warm, #e8e2dd); margin-bottom: 0.6rem;
    }
    .visa-item-body { padding: 0 1.4rem 1.6rem; }
    .visa-features { grid-template-columns: 1fr; }
}

/* ============================================================
   v1.1.0  —  Visual fixes from QA review
   ============================================================ */

/* ----- Page hero: button colours on dark gradient -----
   The default .btn-outline-pill is dark-text/light-border (intended for white
   backgrounds). On the dark .page-hero gradient those buttons disappear.
   Override here so calls/WhatsApp etc. read clearly on dark.            */
.page-hero .btn-outline-pill {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.04);
}
.page-hero .btn-outline-pill:hover {
    color: var(--ink-dark, #05080f);
    background-color: #ffffff;
    border-color: #ffffff;
}
.page-hero .btn-outline-pill i { color: inherit; }
.page-hero .btn-outline-pill .fa-whatsapp { color: #25D366; }

/* ----- Page hero: action button row layout ----- */
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
    align-items: center;
}
.page-hero-actions .btn-pill,
.page-hero-actions .btn-outline-pill {
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .page-hero-actions { gap: 0.7rem; }
    .page-hero-actions .btn-pill,
    .page-hero-actions .btn-outline-pill {
        padding: 0.95rem 1.6rem;
        font-size: 0.95rem;
    }
}

/* ----- AOS fail-safes -----
   AOS sets [data-aos] { opacity: 0 } from its own stylesheet. If JS fails to
   load, if the user has prefers-reduced-motion, or if the screenshot tooling
   races AOS.init(), content stays invisible forever. These rules guarantee
   content is visible even when AOS doesn't run. When AOS *does* run, it
   adds the class `.aos-init` to elements once observed; the second rule
   restores AOS-controlled animations only after that handshake.            */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* If AOS hasn't tagged the html element with aos-initialized after a moment,
   show all data-aos elements unconditionally. (The class is added via JS.) */
html:not(.aos-initialized) [data-aos] {
    opacity: 1;
    transform: none;
    transition-property: opacity, transform;
}

/* ----- 404 page card hover state (was un-styled <a>) ----- */
.error-card {
    background: #ffffff;
    border: 1px solid var(--border-warm, #e8e2dd);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    height: 100%;
}
.error-card:hover {
    border-color: rgba(139, 13, 32, 0.35);
    box-shadow: 0 12px 30px rgba(5, 8, 15, 0.08);
    transform: translateY(-2px);
}
.error-card h6 {
    color: var(--ink-dark, #05080f);
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}
.error-card .error-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(139, 13, 32, 0.08);
    color: var(--brand-red, #8B0D20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.error-card span {
    color: var(--ink-mid, #4a525e);
    font-size: 0.93rem;
    line-height: 1.55;
}

/* ============================================================
   v1.2.0 - Round 2 QA fixes (mobile + map embed)
   ============================================================ */

/* ----- Hide side consult tab on mobile -----
   On mobile the right-edge sticky tab overlaps content (clips the
   right edge of headlines/paragraphs). Mobile users have the bottom
   WhatsApp pill and the page-hero CTA buttons, so the side tab is
   redundant on small viewports.                                  */
@media (max-width: 991.98px) {
    .consult-tab { display: none !important; }
}

/* ----- Mobile page-hero spacing -----
   On mobile the navbar wraps to two rows (logo above hamburger),
   so it's taller than the desktop --nav-height. Add extra padding
   so the breadcrumb + eyebrow pill aren't hidden under the navbar. */
@media (max-width: 991.98px) {
    .page-hero {
        padding-top: calc(var(--nav-height, 92px) + var(--top-bar-height, 40px) + 4rem);
        padding-bottom: 4rem;
    }
}
@media (max-width: 575px) {
    .page-hero {
        /* Even more space on tiny phones where navbar takes more vertical space */
        padding-top: 13rem;
        padding-bottom: 3rem;
    }
    .page-hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
    .page-hero-desc {
        font-size: 0.98rem;
    }
}

/* ----- Map wrapper safeguards -----
   Light fallback background while the iframe loads. The iframe height
   itself is set in the original .map-wrapper iframe rule above (280px). */
.map-wrapper {
    background: rgba(255, 255, 255, 0.04);
}


/* Map wrapper variant — fills the column height in the dark info section */
.map-wrapper--tall {
    height: 100%;
    margin-top: 0;
}
.map-wrapper--tall iframe {
    height: 100%;
    min-height: 380px;
}
@media (max-width: 991.98px) {
    .map-wrapper--tall iframe { min-height: 280px; }
}

/* Booking iframe (Google Calendar Appointment Schedules) — make the iframe
   fill its parent. The drawer/page markup sets the height on the wrapper;
   these rules ensure the iframe inside stretches to match. */
.booking-iframe-wrap {
    height: 700px;
    min-height: 700px;
}
.booking-iframe-wrap iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 700px !important;
    border: 0 !important;
    display: block !important;
}
@media (max-width: 575px) {
    .booking-iframe-wrap,
    .booking-iframe-wrap iframe { min-height: 640px !important; height: 640px !important; }
}

/* In the side drawer specifically: tighten the spacing above the widget so
   more of the calendar is visible without scrolling. */
#consultDrawer .consult-drawer-content { padding: 3rem 2rem 2rem; }
#consultDrawer .consult-drawer-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
#consultDrawer .consult-drawer-content > p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 1rem; }
#consultDrawer .booking-iframe-wrap { margin: 1rem 0 !important; height: 720px; min-height: 720px; }
#consultDrawer .booking-iframe-wrap iframe { height: 720px !important; min-height: 720px !important; }

/* Right column image variant (used on inner pages instead of the map).
   Mirrors the map-wrapper--tall sizing so the layout stays balanced. */
.dark-image-wrapper {
    height: 100%;
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.dark-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.dark-image-wrapper::after {
    /* Subtle gradient so the image blends with the dark section */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 8, 15, 0.18), rgba(5, 8, 15, 0));
    pointer-events: none;
}
@media (max-width: 991.98px) {
    .dark-image-wrapper, .dark-image-wrapper img { min-height: 280px; }
}

/* ============================================================
   v1.2.0 — INNER PAGE HERO: 50/50 SPLIT
   Replaces the dark .page-hero with a light split layout that
   mirrors the homepage .hero-split aesthetic. Each inner page
   now pairs its breadcrumb + title + CTAs on the left with a
   contextual image on the right (kenburns slow zoom).
   ============================================================ */
.page-hero-split {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-warm);
    overflow: hidden;
}
.page-hero-split .hero-text-box {
    /* Tighter top padding than home (no scroll-indicator) but still
       clears the top bar + nav. Bottom is generous for breathing room. */
    padding: calc(var(--nav-height, 92px) + var(--top-bar-height, 40px) + 2.5rem) 8% 5rem 5%;
    z-index: 2;
}
.page-hero-split .hero-image-box {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    overflow: hidden;
}
.page-hero-split .hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center right;
    animation: kenburns 25s ease-in-out infinite alternate;
}
.page-hero-split .hero-image-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, var(--bg-warm) 0%, transparent 18%);
    pointer-events: none;
}

/* Breadcrumbs — light theme override (was white-on-dark). */
.page-hero-split .page-breadcrumbs {
    color: var(--ink-mid, #4a525e);
    font-size: 0.85rem;
    margin-bottom: 1.6rem;
    font-family: var(--font-heading, 'Manrope', sans-serif);
    letter-spacing: 0.04em;
}
.page-hero-split .page-breadcrumbs a {
    color: var(--ink-mid, #4a525e);
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-hero-split .page-breadcrumbs a:hover { color: var(--brand-red); }
.page-hero-split .page-breadcrumbs .sep { margin: 0 0.55rem; opacity: 0.4; }
.page-hero-split .page-breadcrumbs .current {
    color: var(--ink-dark, #05080f);
    font-weight: 600;
}

/* Eyebrow label — red on cream tint instead of white-on-glass. */
.page-hero-split .page-hero-label {
    display: inline-block;
    padding: 0.42rem 1rem;
    background: rgba(139, 13, 32, 0.06);
    border: 1px solid rgba(139, 13, 32, 0.18);
    border-radius: 999px;
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 1.4rem;
}

/* Headline — same gradient text treatment as the homepage hero-title,
   but slightly smaller scale so the breadcrumb + label stack fits. */
.page-hero-split .page-hero-title {
    font-family: var(--font-heading, 'Manrope', sans-serif);
    font-size: clamp(2.6rem, 4.4vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, var(--text-dark, #1a202c) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Lede — dark-on-cream, same width as homepage. */
.page-hero-split .page-hero-desc {
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    line-height: 1.7;
    color: var(--ink-mid, #4a525e);
    max-width: 560px;
    margin-bottom: 0;
}

/* Action buttons — light theme variant (the dark-page override
   above this rule kicks in only for .page-hero, not .page-hero-split). */
.page-hero-split .page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.4rem;
    align-items: center;
}
.page-hero-split .btn-outline-pill {
    color: var(--ink-dark, #05080f);
    border-color: rgba(0, 0, 0, 0.18);
    background-color: transparent;
}
.page-hero-split .btn-outline-pill:hover {
    color: #ffffff;
    background-color: var(--ink-dark, #05080f);
    border-color: var(--ink-dark, #05080f);
}
.page-hero-split .btn-outline-pill .fa-whatsapp { color: #25D366; }
.page-hero-split .btn-outline-pill:hover .fa-whatsapp { color: #25D366; }

/* Mobile: stack image above text, mirroring homepage behaviour. */
@media (max-width: 991.98px) {
    .page-hero-split {
        flex-direction: column;
        min-height: auto;
        padding-top: 0;
    }
    .page-hero-split .hero-image-box {
        position: relative;
        width: 100%;
        height: 38vh;
        order: 1;
    }
    .page-hero-split .hero-image-box::after {
        background: linear-gradient(to top, var(--bg-warm) 0%, transparent 30%);
    }
    .page-hero-split .hero-text-box {
        padding: 3rem 5% 4rem;
        order: 2;
    }
}
@media (max-width: 575px) {
    .page-hero-split .page-hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
    .page-hero-split .page-hero-desc { font-size: 0.98rem; }
    .page-hero-split .page-hero-actions { gap: 0.7rem; }
    .page-hero-split .page-hero-actions .btn-pill,
    .page-hero-split .page-hero-actions .btn-outline-pill {
        padding: 0.95rem 1.6rem;
        font-size: 0.95rem;
    }
}
