/* === SPAIN TOOMEY SOLICITORS - ULTRA PREMIUM LUXURY STYLE SHEET === */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@200;300;400;500;600;700&display=swap');

:root {
    --obsidian: #051C2C;
    --navy-deep: #051C2C;
    --navy-slate: #1e293b;
    --gold-light: #a3917f;
    --gold: #8B7866;
    --gold-dark: #746252;
    --gold-deep: #5b4d40;
    --linen: #fdfcfb;
    --cream: #f7f4ed;
    --cream-dark: #ebe7dc;
    --white: #ffffff;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-gold: rgba(139, 120, 102, 0.2);
    --border-gold-solid: rgba(139, 120, 102, 0.4);
    --border-light: rgba(17, 24, 39, 0.06);
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 50px rgba(11, 15, 25, 0.05);
    --shadow-gold-glow: 0 10px 30px rgba(139, 120, 102, 0.15);
    
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* === GENERAL RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--linen);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: var(--navy-deep);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--linen);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* === LUXURY TEXT GRADIENTS === */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* === LUXURY ORNAMENTS === */
.luxury-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}
.luxury-ornament .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.luxury-ornament .crest {
    width: 14px;
    height: 14px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.luxury-ornament .crest::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    position: absolute;
}

/* === TOP METRICS BAR === */
.top-bar-luxury {
    background-color: var(--obsidian);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 30px;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.top-bar-contact i {
    color: var(--gold);
}

.top-bar-socials a {
    color: var(--white);
    opacity: 0.6;
    margin-left: 15px;
    font-size: 13px;
}

.top-bar-socials a:hover {
    opacity: 1;
    color: var(--gold);
}

/* === NAVIGATION HEADER === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 251, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 120, 102, 0.15);
    transition: var(--transition-medium);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-premium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img-wrapper {
    width: auto;
    height: 48px;
}

.logo-img-wrapper img {
    height: 100%;
    width: auto;
    display: block;
}

.logo-text-wrapper {
    line-height: 1.1;
}

.logo-text-wrapper .brand-name {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-deep);
}

.logo-text-wrapper .tagline {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--nav-link-color, #ffffff);
    border-radius: 2px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: var(--nav-link-hover, #8B7866);
}

.nav-menu a.active {
    font-weight: 600;
    color: var(--nav-link-hover, #8B7866);
}

.nav-menu a.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--cta-text, #ffffff);
    padding: 10px 24px;
    font-weight: 500;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.nav-menu a.nav-cta::after {
    display: none;
}

.nav-menu a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
    color: var(--cta-text-hover, #ffffff);
}

/* ── Nav Mega Menu (Practice Areas) ─────────────────────────── */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--nav-link-color, #ffffff);
    border-radius: 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-medium);
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-dropdown-trigger:hover {
    color: var(--nav-link-hover, #8B7866);
}

.nav-dropdown-trigger.active {
    font-weight: 600;
    color: var(--nav-link-hover, #8B7866);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--border-light, #eee);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(5,28,44,.15);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    padding: 0;
    min-width: 260px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

/* Mega menu styles */
.nav-mega-menu {
    width: 760px;
    max-width: 92vw;
    padding: 0;
    overflow: hidden;
}

.nav-mega-header {
    padding: 14px 28px 10px;
    border-bottom: 1px solid var(--border-light, #eee);
}

.nav-mega-all-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-dark, #1a1a2e);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
}

.nav-mega-all-link:hover {
    color: var(--gold-dark, #746252);
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 18px 24px 22px;
}

.nav-mega-col {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-mega-link {
    display: block;
    padding: 7px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark, #1a1a2e);
    text-decoration: none;
    border-radius: 4px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}

.nav-mega-link:hover {
    background: rgba(139,120,102,.08);
    color: var(--gold-dark, #746252);
}

/* ── Mobile Sub-Services (Accordion) ─────────────────────────── */
.mobile-menu-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-menu-trigger {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--mobile-link-color, var(--nav-link-color, #ffffff));
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
    user-select: none;
    transition: color .15s;
}

.mobile-menu-trigger:hover { color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866)); }
.mobile-menu-trigger.active { color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866)); font-weight: 700; }

.mobile-menu-trigger i {
    font-size: 14px;
    transition: transform .3s ease;
}

.mobile-menu-trigger.open i {
    transform: rotate(180deg);
}

.mobile-menu-sublinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, margin .3s ease;
    width: 100%;
}

.mobile-menu-sublinks.open {
    max-height: 600px;
    margin: 8px 0 2px;
}

.mobile-menu-sublinks li {
    width: 100%;
    text-align: center;
}

.mobile-menu-sublinks li a {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--mobile-link-color, var(--nav-link-color, #ffffff));
    letter-spacing: 0.05em;
    padding: 4px 0;
    display: block;
    text-decoration: none;
    transition: color .15s;
}

.mobile-menu-sublinks li a:hover {
    color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866));
}

.mobile-menu-toggle {
    display: none;
    border: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    line-height: 1;
    background: var(--mobile-toggle-bg, var(--navy-deep, #051C2C));
    margin-right: -2px;
}

/* === CINEMATIC HERO SECTION === */
.hero-luxury {
    position: relative;
    height: var(--hero-height, 100vh);
    min-height: 450px;
    background-color: var(--obsidian);
    overflow: hidden;
    color: var(--white);
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay-luxury {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, rgba(3, 7, 18, 0.8) 0%, rgba(11, 15, 25, 0.95) 80%, var(--obsidian) 100%);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(40%) contrast(120%);
    z-index: 0;
}

.hero-luxury .container {
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-luxury {
    max-width: 820px;
}

/* ── Hero Badge ───────────────────────────────────────────────── */
.hero-badge-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* fallback; overridden by --hero-badge-bg CSS var from settings */
    background: var(--hero-badge-bg, rgba(139, 120, 102, 0.25));
    border: 1px solid var(--hero-badge-border, rgba(212, 175, 55, 0.6));
    padding: 9px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--hero-badge-color, #F5DEB3);
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-badge-luxury i {
    font-size: 14px;
}

/* ── Hero H1 ──────────────────────────────────────────────────── */
/* Scoped to hero-slide so it applies on the slider */
.hero-slide h1,
.hero-luxury h1 {
    font-size: var(--hero-title-size, clamp(36px, 5.5vw, 74px));
    font-weight: 700;
    line-height: 1.08;
    color: var(--hero-title-color, #ffffff);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-slide h1 span.block,
.hero-luxury h1 span.block {
    display: block;
}

/* Second line gets the accent gold-shimmer effect */
.hero-slide h1 .gold-shimmer,
.hero-luxury h1 .gold-shimmer {
    color: var(--hero-title-accent, #D4AF37);
    background: none;
    -webkit-text-fill-color: unset;
}

/* ── Hero Subtitle ────────────────────────────────────────────── */
.hero-subtitle-luxury {
    font-size: var(--hero-subtitle-size, clamp(16px, 2.2vw, 22px));
    font-style: italic;
    color: var(--hero-subtitle-color, rgba(255, 255, 255, 0.92));
    margin-bottom: 40px;
    max-width: 640px;
    line-height: 1.65;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
    font-weight: 300;
}

/* ── Hero Actions row ─────────────────────────────────────────── */
.hero-actions-luxury {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* === BUTTON SYSTEM === */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-premium-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-glow);
    color: var(--white);
}

.btn-premium-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-premium-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.05);
}

.btn-premium-dark {
    background: var(--navy-deep);
    color: var(--white);
    border: 1px solid var(--border-gold);
}

.btn-premium-dark:hover {
    background: var(--obsidian);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ── Hero Slider Button Colours (overridden by settings) ───────── */
.hero-slider-luxury .btn-premium-gold {
    background: var(--hero-btn1-bg, linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%));
    color: var(--hero-btn1-text, var(--white));
}
.hero-slider-luxury .btn-premium-gold:hover {
    background: var(--hero-btn1-hover-bg, var(--gold-dark));
    color: var(--hero-btn1-hover-text, var(--white));
    box-shadow: var(--shadow-gold-glow);
    transform: translateY(-3px);
}

.hero-slider-luxury .btn-premium-outline {
    color: var(--hero-btn2-color, var(--white));
    border-color: var(--hero-btn2-color, rgba(255,255,255,0.2));
    background: transparent;
}
.hero-slider-luxury .btn-premium-outline:hover {
    color: var(--hero-btn2-hover-color, var(--gold));
    border-color: var(--hero-btn2-hover-color, var(--gold));
    background: var(--hero-btn2-hover-bg, rgba(212, 175, 55, 0.05));
}

/* === HERO STATS === */
.hero-stats-luxury {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat-item .num {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-item .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* === LUXURY SECTIONS === */
.section-luxury {
    padding: 120px 0;
    position: relative;
}

.section-luxury-cream {
    background-color: var(--cream);
}

.section-luxury-dark {
    background-color: var(--navy-deep);
    color: var(--white);
}

.section-luxury-dark h2 {
    color: var(--white);
}

.section-header-luxury {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-luxury .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 15px;
    display: block;
}

.section-header-luxury h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 20px;
}

.section-header-luxury p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-luxury-dark .section-header-luxury p {
    color: rgba(255, 255, 255, 0.6);
}

/* === PRACTICE AREA / SERVICE CARDS — REDESIGNED PREMIUM === */
.practice-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.practice-card-premium {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 40px 36px 36px;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

.practice-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.practice-card-premium::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    border-radius: 2px;
    pointer-events: none;
    transition: var(--transition-medium);
}

.practice-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(11, 15, 25, 0.08), 0 10px 30px rgba(139, 120, 102, 0.12);
}

.practice-card-premium:hover::before {
    transform: scaleX(1);
}

.practice-card-premium:hover::after {
    border-color: rgba(139, 120, 102, 0.15);
}

.practice-card-premium .icon-wrapper {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 24px;
    transform: rotate(45deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(139, 120, 102, 0.04);
    flex-shrink: 0;
}

.practice-card-premium .icon-wrapper i {
    transform: rotate(-45deg);
    transition: var(--transition-medium);
}

.practice-card-premium:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(139, 120, 102, 0.2);
}

.practice-card-premium:hover .icon-wrapper i {
    transform: rotate(-45deg) scale(1.1);
}

.practice-card-premium .card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: rgba(139, 120, 102, 0.06);
    pointer-events: none;
    transition: var(--transition-medium);
}

.practice-card-premium:hover .card-number {
    color: rgba(139, 120, 102, 0.12);
    transform: scale(1.05);
}

.practice-card-premium h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.practice-card-premium p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.practice-card-premium .card-footer-link {
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.practice-card-premium .learn-more-link {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 3;
}

.practice-card-premium .learn-more-link i {
    transition: var(--transition-fast);
}

.practice-card-premium:hover .learn-more-link {
    color: var(--gold);
}

.practice-card-premium:hover .learn-more-link i {
    transform: translateX(6px);
}

.practice-card-premium .card-tag {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .practice-grid-luxury {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .practice-card-premium {
        padding: 32px 28px 28px;
    }
}

/* === ABOUT SHOWCASE & TEAM PORTRAITS === */
.about-split-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-content {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-dark);
}
.about-text-content p {
    margin-bottom: 25px;
}
.about-text-content ul,
.about-text-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}
.about-text-content li {
    margin-bottom: 8px;
}
.about-text-content blockquote {
    border-left: 4px solid var(--gold);
    margin: 0 0 25px;
    padding: 15px 25px;
    background: rgba(212,175,55,.06);
    font-style: italic;
    color: var(--gold-dark);
}
.about-text-content h1,
.about-text-content h2,
.about-text-content h3,
.about-text-content h4 {
    font-family: 'Cinzel', serif;
    color: var(--navy-deep);
    margin-top: 40px;
    margin-bottom: 15px;
}
.about-text-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}
.about-text-content a:hover {
    color: var(--gold);
}
.about-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.about-text-content p.lead {
    font-size: 23px;
    font-style: italic;
    color: var(--gold-dark);
    line-height: 1.6;
}

.about-visual-showcase {
    position: relative;
}

.image-frame-gold {
    border: 1px solid var(--gold);
    padding: 15px;
    position: relative;
    background: var(--white);
}

.image-frame-gold img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(105%) brightness(95%);
}

.image-frame-gold::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
}

/* === TEAM GRID & CARDS === */
.team-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.team-card-premium {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-slow);
    border-radius: 12px;
}

.team-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--border-gold);
}

.team-img-wrapper-premium {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-wrapper-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(5,28,44,.06));
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}

.team-card-premium:hover .team-img-wrapper-premium::after {
    opacity: 1;
}

.team-img-wrapper-premium i {
    font-size: 64px;
    color: var(--text-light);
}

.team-img-wrapper-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s ease;
}

.team-card-premium:hover .team-img-wrapper-premium img {
    transform: scale(1.06);
}

.team-info-premium {
    padding: 28px 26px 30px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.team-info-premium h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--navy-deep, #051C2C);
}

.team-info-premium .position {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.team-info-premium .bio-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.team-contact-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-contact-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    transition: all .25s ease;
}

.team-contact-links a:hover {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* === CINEMATIC QUOTE BLOCK === */
.section-quote-cinematic {
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--navy-deep) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-quote-cinematic::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: 200px;
    line-height: 1;
    color: rgba(212, 175, 55, 0.06);
    pointer-events: none;
}

/* ── Top row: heading + nav ─────────── */
.testimonial-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 820px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(212,175,55,.15);
}

.testimonial-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
    margin: 0;
}

.testimonial-top-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.test-counter {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .06em;
    min-width: 56px;
    text-align: center;
}

.test-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all .25s;
}
.test-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ── Testimonial content ────────────── */
.testimonial-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: transform 0.45s cubic-bezier(.22,1,.36,1), opacity 0.45s ease;
}
.testimonial-inner.slide-out-left {
    transform: translateX(-70px);
    opacity: 0;
}
.testimonial-inner.slide-out-right {
    transform: translateX(70px);
    opacity: 0;
}
.testimonial-inner.slide-from-right {
    transform: translateX(70px);
    opacity: 0;
    transition: none !important;
}
.testimonial-inner.slide-from-left {
    transform: translateX(-70px);
    opacity: 0;
    transition: none !important;
}

.testimonial-rating {
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-inner blockquote {
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255,255,255,.92);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(139,120,102,.2);
    border: 1px solid rgba(212,175,55,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-avatar span {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
}
.testimonial-role {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
    margin-top: 2px;
}

@media (max-width: 700px) {
    .section-quote-cinematic { padding: 60px 0 50px; }
    .testimonial-top-row { flex-direction: column; gap: 16px; padding-bottom: 20px; }
    .testimonial-rating { font-size: 16px; }
}

/* === BLOG / INSIGHT CARDS === */
.insights-grid-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.insight-card-premium {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.insight-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--border-gold);
}

.insight-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--cream);
    overflow: hidden;
}

.insight-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insight-card-premium:hover .insight-img-wrapper img {
    transform: scale(1.05);
}

.insight-body-premium {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-meta-premium {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.insight-body-premium h4 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-body-premium p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.insight-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insight-card-premium:hover .insight-read-more {
    color: var(--gold-dark);
}

.insight-read-more i {
    transition: var(--transition-fast);
}

.insight-card-premium:hover .insight-read-more i {
    transform: translateX(5px);
}

/* === CALL TO ACTION === */
.cta-banner-luxury {
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding: 100px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-luxury .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.cta-banner-luxury h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner-luxury p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-style: italic;
}

/* === LUXURY FOOTER === */
footer {
    background-color: var(--obsidian);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    font-size: 16px;
    border-top: 1px solid var(--border-gold);
}

.footer-grid-luxury {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col-luxury h4 {
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-col-luxury p {
    line-height: 1.8;
}

.footer-col-luxury ul {
    list-style: none;
}

.footer-col-luxury ul li {
    margin-bottom: 12px;
}

.footer-col-luxury ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col-luxury ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col-luxury.about-col .logo-wrapper {
    margin-bottom: 20px;
}

.footer-col-luxury.about-col .logo-text-wrapper .brand-name {
    color: var(--white);
}

.footer-col-luxury.about-col p {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
    transition: var(--transition-fast);
}

.footer-social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-details i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 4px;
}

.footer-lqsi-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-lqsi-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.footer-lqsi-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-lqsi-text strong {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-lqsi-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.footer-bottom-luxury {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    gap: 30px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-links-bottom a {
    margin-right: 20px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-right {
    flex-shrink: 0;
}

.footer-credit-link {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.footer-credit-link:hover {
    border-color: var(--gold);
    background: rgba(139, 120, 102, 0.05);
}

.footer-credit-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.footer-credit-text strong {
    font-weight: 700;
}

.footer-credit-tagline {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

/* === LUXURY FORMS & INNER PAGES === */
.inner-page-hero-luxury {
    background-color: var(--obsidian);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
}

.inner-page-hero-luxury h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 15px;
}

.inner-page-hero-luxury .breadcrumbs-luxury {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.inner-page-hero-luxury .breadcrumbs-luxury a {
    color: rgba(255, 255, 255, 0.6);
}

.inner-page-hero-luxury .breadcrumbs-luxury a:hover {
    color: var(--white);
}

/* Form Styles */
.form-group-luxury {
    margin-bottom: 25px;
}

.form-group-luxury label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control-luxury {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    background-color: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 0;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control-luxury:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-split-luxury {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-split-sticky-sidebar {
        position: sticky;
        top: 120px;
    }
}

.contact-card-info-luxury {
    background-color: var(--cream);
    padding: 50px;
    border: 1px solid var(--border-gold);
}

.contact-card-info-luxury h3 {
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-info-list i {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

/* === ALERTS STYLE === */
.alert-luxury {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10002;
    background-color: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 450px;
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.alert-luxury.alert-danger {
    border-left-color: #ef4444;
}

.alert-luxury.alert-success {
    border-left-color: #10b981;
}

.alert-content-luxury {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.alert-content-luxury i {
    font-size: 20px;
}

.alert-luxury.alert-danger i {
    color: #ef4444;
}

.alert-luxury.alert-success i {
    color: #10b981;
}

.alert-close-luxury {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close-luxury:hover {
    color: var(--text-dark);
}

/* === COOKIE NOTICE BANNER === */
.cookie-banner-luxury {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    max-width: 420px;
    width: calc(100% - 60px);
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    border: 1px solid rgba(139,120,102,.2);
    color: var(--text-dark, #1a1a2e);
    padding: 24px 28px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    border-radius: 10px;
}

.cookie-content-luxury h4 {
    color: var(--navy-deep, #051C2C);
    font-size: 14px;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cookie-content-luxury p {
    font-size: 13px;
    color: var(--text-muted-dark, #8B7866);
    line-height: 1.6;
}

.cookie-policy-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .03em;
}
.cookie-policy-links a {
    color: var(--gold, #8B7866);
    text-decoration: none;
    transition: color .2s;
    border-bottom: 1px solid transparent;
}
.cookie-policy-links a:hover {
    color: var(--gold-dark, #746252);
    border-bottom-color: rgba(139,120,102,.3);
}
.cookie-link-sep {
    color: rgba(139,120,102,.2);
    font-size: 10px;
}

.cookie-actions-luxury {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all .2s;
}

.cookie-btn-accept {
    background: var(--navy-deep, #051C2C);
    border: 1px solid var(--navy-deep, #051C2C);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #0A2A40;
    border-color: #0A2A40;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(139,120,102,.25);
    color: var(--text-muted-dark, #8B7866);
}

.cookie-btn-reject:hover {
    border-color: var(--text-muted-dark, #8B7866);
    color: var(--text-dark, #1a1a2e);
}

.cookie-btn-essential {
    background: transparent;
    border: 1px solid var(--gold, #8B7866);
    color: var(--gold, #8B7866);
}

.cookie-btn-essential:hover {
    background: rgba(139,120,102,0.08);
    border-color: var(--gold-dark, #746252);
    color: var(--gold-dark, #746252);
}

@media (max-width: 500px) {
    .cookie-banner-luxury {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        max-width: none;
        padding: 18px 20px;
    }
    .cookie-actions-luxury { flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
}

/* === LEGAL / POLICY PAGES === */
.legal-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-deep, #051C2C);
    margin: 36px 0 14px;
    letter-spacing: .02em;
}
.legal-content h3:first-of-type { margin-top: 0; }
.legal-content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 16px;
}
.legal-content ul {
    margin: 0 0 20px;
    padding-left: 22px;
}
.legal-content ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 6px;
}
.legal-content a {
    color: var(--gold, #8B7866);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(139,120,102,.25);
}
.legal-content a:hover {
    border-bottom-color: var(--gold);
}
.legal-content .cookie-table th {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted-dark, #8B7866);
    background: rgba(139,120,102,.04);
}
.legal-content .cookie-table td {
    font-size: 13px;
    color: var(--text-dark, #1a1a2e);
}

@media (max-width: 700px) {
    .legal-content h3 { font-size: 18px; }
    .legal-content p { font-size: 14px; }
    .cookie-policy-links { flex-wrap: wrap; gap: 4px 6px; }
}

/* === MOBILE OVERLAY MENU === */
.mobile-overlay-menu {
    position: fixed;
    inset: 0;
    background-color: var(--mobile-menu-bg, var(--nav-bg, #051C2C));
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 32px 30px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
    overflow-y: auto;
}

.mobile-overlay-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-overlay-logo {
    margin-bottom: 30px;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}

.mobile-overlay-logo img {
    height: 44px;
    width: auto;
}

.mobile-overlay-bottom {
    margin-top: auto;
    width: 100%;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.mobile-overlay-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-overlay-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 0.03em;
}

.mobile-overlay-contact span i {
    color: var(--gold);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.mobile-overlay-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mobile-overlay-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.mobile-overlay-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.06);
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866));
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.mobile-menu-links a {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: var(--mobile-link-color, var(--nav-link-color, #ffffff));
    letter-spacing: 0.05em;
}

.mobile-menu-links a:hover {
    color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866));
}

.mobile-menu-links a.active {
    color: var(--mobile-link-hover, var(--nav-link-hover, #8B7866));
    font-weight: 700;
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 1024px) {
    .about-split-luxury {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid-luxury {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-luxury {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header {
        background: var(--nav-bg, #051C2C) !important;
    }
    header .container {
        padding-left: 0;
        padding-right: 0;
    }
    .header-inner {
        padding: 12px 36px;
    }
    .hero-stats-luxury {
        display: none;
    }
    .contact-split-luxury {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .logo-img-wrapper {
        height: 40px;
    }

    .logo-wrapper {
        padding-left: 12px;
    }

    /* Hero slider mobile containment */
    .hero-slider-luxury {
        height: 100vh;
        min-height: 100vh;
    }
    .hero-slide h1,
    .hero-luxury h1 {
        font-size: clamp(26px, 8vw, 40px) !important;
        margin-bottom: 14px;
    }
    .hero-badge-luxury {
        font-size: 9px !important;
        padding: 5px 14px !important;
        margin-bottom: 16px;
    }
    .hero-subtitle-luxury {
        font-size: clamp(13px, 3.5vw, 16px) !important;
        margin-bottom: 24px;
        max-width: 100%;
    }
    .hero-actions-luxury {
        gap: 10px;
    }
    .hero-actions-luxury .btn-luxury {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    .slider-arrow {
        display: none !important;
    }
    .slider-dots {
        bottom: 24px;
    }
    .slider-dot {
        width: 24px;
    }

    /* Team cards on mobile */
    .team-grid-luxury {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 16px;
    }
    .team-img-wrapper-premium {
        aspect-ratio: 3/4;
    }
    .team-img-wrapper-premium i {
        font-size: 40px;
    }
    .team-info-premium {
        padding: 16px 14px 18px;
    }
    .team-info-premium h4 {
        font-size: 15px;
    }
    .team-info-premium .position {
        font-size: 10px;
        margin-bottom: 8px;
    }
    .team-info-premium .bio-excerpt {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions-luxury {
        flex-direction: column;
    }
    .hero-actions-luxury .btn-luxury {
        width: 100%;
        justify-content: center;
    }
    .footer-grid-luxury {
        grid-template-columns: 1fr;
    }
    .footer-bottom-luxury {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-bottom-left {
        align-items: center;
    }
    .footer-bottom-right {
        width: 100%;
    }
    .footer-credit-link {
        align-items: center;
        width: 100%;
    }
    .footer-links-bottom a {
        margin: 0 10px;
    }
}

/* === CINEMATIC HERO SLIDER === */
.hero-slider-luxury {
    position: relative;
    height: var(--hero-height, 100vh);
    min-height: 450px;
    background-color: var(--obsidian);
    overflow: hidden;
    color: var(--white);
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
    z-index: 15;
    width: 0%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding-top: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.02);
    z-index: 0;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* opacity is controlled by inline style from settings */
    background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.55) 0%,
        rgba(3, 7, 18, 0.72) 40%,
        rgba(3, 7, 18, 0.92) 100%
    );
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Staggered slide content animations */
.hero-slide .hero-content-luxury > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-content-luxury > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-content-luxury .hero-badge-luxury { transition-delay: 0.3s; }
.hero-slide.active .hero-content-luxury h1 { transition-delay: 0.5s; }
.hero-slide.active .hero-content-luxury .hero-subtitle-luxury { transition-delay: 0.7s; }
.hero-slide.active .hero-content-luxury .hero-actions-luxury { transition-delay: 0.9s; }

/* Slider Navigation Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(5, 28, 44, 0.4);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-medium);
}

.slider-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(5, 28, 44, 0.8);
}

.slider-arrow-prev { left: 40px; }
.slider-arrow-next { right: 40px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-medium);
}

.slider-dot.active {
    background: var(--gold);
    width: 48px;
}

.hero-floating-stats-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.8) 100%);
    padding: 20px 0 15px;
}

.hero-floating-stats-wrapper .hero-stats-luxury {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.hero-floating-stats-wrapper .hero-stat-item .num {
    font-size: 28px;
}
.hero-floating-stats-wrapper .hero-stat-item .lbl {
    font-size: 10px;
}
.hero-floating-stats-wrapper .hero-stat-item:not(:last-child)::after {
    height: 30px;
}
.hero-floating-stats-wrapper .hero-stat-item {
    padding: 8px 0;
}

.hero-floating-stats-wrapper .hero-stats-luxury {
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* === MODERN LUXURY ANIMATIONS (REVEAL ON SCROLL) === */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered grid items */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* === EDITORIAL STICKY DETAIL VIEW LAYOUT === */
.detail-wrapper-luxury {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.detail-content-left {
    flex: 1;
    min-width: 0;
}

.detail-sidebar-right {
    width: 380px;
    position: sticky;
    top: 130px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .detail-wrapper-luxury {
        flex-direction: column;
        gap: 50px;
    }
    .detail-sidebar-right {
        width: 100%;
        position: static;
    }

    /* Mobile: flatten columns to reorder children */
    .detail-wrapper-team .detail-content-left,
    .detail-wrapper-team .detail-sidebar-right {
        display: contents;
    }

    .detail-wrapper-team .team-detail-header  { order: 1; }
    .detail-wrapper-team .team-detail-image   { order: 2; }
    .detail-wrapper-team .team-detail-bio     { order: 3; }
    .detail-wrapper-team .team-detail-specs   { order: 4; }
    .detail-wrapper-team .team-detail-contact { order: 5; width: 100%; }
}

/* === CARD COVER LINK OVERLAYS === */
.card-cover-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

/* Ensure inner links remain on top of cover overlays */
.team-contact-links a,
.practice-card-premium .learn-more-link,
.insight-card-premium .insight-read-more {
    position: relative;
    z-index: 3;
}

/* === SCROLL TO TOP PROGRESS CIRCLE === */
.scroll-top-progress {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.scroll-top-progress.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-progress svg.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-top-progress svg.progress-circle path {
    fill: none;
    stroke: var(--gold);
    stroke-width: 4;
}

.scroll-top-progress i {
    font-size: 15px;
    color: var(--navy-deep);
    transition: var(--transition-fast);
    z-index: 1;
}

.scroll-top-progress:hover i {
    transform: translateY(-2px);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PREV / NEXT NAVIGATION BAR
   ═══════════════════════════════════════════════════════════════ */
.prev-next-nav-luxury {
    background: var(--cream);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.prev-next-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 100px;
}

/* Each side cell */
.prev-next-cell {
    display: flex;
    align-items: center;
    padding: 0;
}
.prev-cell { justify-content: flex-start; }
.next-cell  { justify-content: flex-end; }

/* The clickable link block */
.prev-next-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 36px;
    text-decoration: none;
    width: 100%;
    transition: background 0.25s;
    cursor: pointer;
}
.next-cell .prev-next-link {
    align-items: flex-end;
    text-align: right;
}
.prev-next-link:hover {
    background: rgba(139, 120, 102, 0.06);
}

/* Direction label (← Previous / Next →) */
.pn-direction {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
}

/* Title line */
.pn-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.35;
    transition: color 0.2s;
}
.prev-next-link:hover .pn-title {
    color: var(--gold-dark);
}

/* Service/article icon inside title */
.pn-icon {
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.prev-next-link:hover .pn-icon {
    transform: scale(1.15);
}

/* "First / Last / No Earlier" placeholder text */
.prev-next-empty {
    padding: 28px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted-dark);
    font-style: italic;
}

/* Centre divider with All link */
.prev-next-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    flex-shrink: 0;
}

.pn-all-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted-dark);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: color 0.2s;
    padding: 10px 14px;
}
.pn-all-link i {
    font-size: 22px;
    color: var(--gold);
    transition: transform 0.2s;
}
.pn-all-link:hover { color: var(--gold-dark); }
.pn-all-link:hover i { transform: scale(1.12); }

/* Mobile */
@media (max-width: 768px) {
    .prev-next-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    .prev-next-divider {
        grid-column: 1 / -1;
        border: none;
        border-top: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
        padding: 10px 0;
        flex-direction: row;
        gap: 12px;
    }
    .prev-next-link {
        padding: 20px 18px;
    }
    .next-cell .prev-next-link {
        align-items: flex-end;
    }
    .pn-title { font-size: 13px; }
    .prev-next-empty { padding: 20px 18px; font-size: 11px; }
}

/* === STANDALONE LUXURY STATS SECTION === */
.section-stats-luxury {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    z-index: 10;
}
.section-stats-luxury .stat-number {
    transition: opacity .6s ease, transform .6s ease;
}
.section-stats-luxury .stat-number.animate {
    animation: countFadeIn .8s ease forwards;
}
@keyframes countFadeIn {
    0% { opacity: 0; transform: translateY(24px) scale(.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.section-stats-luxury .stat-number.animate-delay-1 { animation-delay: .15s; }
.section-stats-luxury .stat-number.animate-delay-2 { animation-delay: .35s; }
.stats-row-luxury {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.stat-box-luxury {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.stat-box-luxury .stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.stat-box-luxury .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    max-width: 250px;
}
.stat-box-luxury .stat-separator {
    position: absolute;
    right: -15%;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(139, 120, 102, 0.2);
}
@media (max-width: 768px) {
    .stats-row-luxury {
        flex-direction: column;
        gap: 50px;
    }
    .stat-box-luxury .stat-separator {
        display: none;
    }
}
