/* ═══════════════════════════════════════════
   Mosiane & Maoko — Visual Design v3
   ═══════════════════════════════════════════ */
:root {
    --navy: #1a2744;
    --navy-deep: #0e1628;
    --navy-soft: #2d4066;
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --gold-pale: #f5ecd8;
    --gold-dark: #96783f;
    --cream: #f8f6f2;
    --grey: #5c6578;
    --grey-line: #e2e6ed;
    --white: #ffffff;
    --maroon: #6b1d2a;
    --font: 'Ubuntu', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26, 39, 68, 0.07);
    --shadow-lg: 0 20px 60px rgba(14, 22, 40, 0.15);
    --header: 80px;
    --header-welcome: 56px;
    --topbar: 38px;
    --max: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--navy); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--gold-light); }
.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-deep); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--gold-light); }

.section-title-center { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-title-center h2 { font-size: clamp(1.875rem, 3.5vw, 2.5rem); }
.section-title-center--light h2 { color: var(--white); }

/* ─── Top bar ─── */
.top-bar { background: var(--navy-deep); color: rgba(255,255,255,0.75); font-size: 0.8125rem; padding: 0.4rem 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar__left { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.top-bar__item { color: rgba(255,255,255,0.75); }
.top-bar__email { color: var(--gold-light); font-weight: 500; }
.top-bar__email:hover { color: var(--white); }
a.top-bar__item:hover { color: var(--gold-light); }

/* ─── Header ─── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-line);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(14, 22, 40, 0.06);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header);
    gap: 1.5rem;
}

.site-header__welcome {
    background: var(--navy);
    border-top: 1px solid rgba(184, 150, 90, 0.25);
    padding: 0.875rem 0;
    text-align: center;
}

.site-header__welcome p {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gold-light);
    margin: 0;
    line-height: 1.3;
}

/* Nav logo lockup — crisp text, no image whitespace */
.logo-lockup {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-lockup:hover { opacity: 0.88; }

.logo-lockup__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: 10px;
    border: 1px solid rgba(184, 150, 90, 0.35);
    box-shadow: 0 4px 12px rgba(14, 22, 40, 0.12);
}

.logo-lockup__mark img {
    width: 36px;
    height: 36px;
}

.logo-lockup__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.15;
}

.logo-lockup__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-lockup__rule {
    display: block;
    width: 100%;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 1px;
}

.logo-lockup__sub {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* Image logo — footer & hero only */
.logo img {
    height: auto;
    max-height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.main-nav ul { display: flex; list-style: none; align-items: center; gap: 0.25rem; }
.main-nav a {
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: var(--gold-pale); }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.25s; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.875rem 1.75rem; font-family: var(--font); font-weight: 600; font-size: 0.875rem;
    border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.btn-gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,90,0.35); }
.btn-glass { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(8px); }
.btn-glass:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-primary { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy-deep); }
.btn-dark, .btn-navy { background: var(--navy); color: var(--white); }
.btn-outline, .btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover, .btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ═══ HERO SLIDER ═══ */
.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.hero-slider__track {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s var(--ease), visibility 0.7s;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(14, 22, 40, 0.93) 0%, rgba(14, 22, 40, 0.82) 50%, rgba(14, 22, 40, 0.55) 100%);
}

.hero-slide__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 520px;
    padding: 3.5rem 0 7rem;
}

.hero-slide__logo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(184, 150, 90, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-slide__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: min(300px, 100%);
    max-height: 220px;
    object-fit: contain;
    object-position: center;
}

.hero-slide__content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-slide__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    max-width: 560px;
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

.hero-slide__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slider__ui {
    position: absolute;
    bottom: 7.5rem;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    backdrop-filter: blur(6px);
}

.hero-slider__arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

.hero-slider__dots {
    display: flex;
    gap: 0.5rem;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s var(--ease);
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
}

.hero-slider__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    transform: translateY(50%);
}

.hero-slider + .section { padding-top: 7rem; }

/* ═══ HERO VISUAL (legacy) ═══ */
.hero-visual {
    position: relative;
    min-height: 92vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero-visual__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
}
.hero-visual__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(14,22,40,0.94) 0%, rgba(14,22,40,0.78) 45%, rgba(14,22,40,0.45) 100%);
}
.hero-visual__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    padding-top: 4rem; padding-bottom: 8rem;
}
.hero-visual h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); color: var(--white); margin-bottom: 1.25rem; }
.hero-visual__lead { color: rgba(255,255,255,0.78); font-size: 1.0625rem; max-width: 480px; margin-bottom: 2rem; line-height: 1.8; }
.hero-visual__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual__panel { position: relative; min-height: 380px; }
.hero-visual__card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1);
}
.hero-visual__card--main { position: relative; z-index: 2; }
.hero-visual__card--main img { width: 100%; height: 320px; object-fit: cover; display: block; }
.hero-visual__card-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(transparent, rgba(14,22,40,0.92));
    color: var(--white);
}
.hero-visual__card-caption strong { display: block; font-size: 0.9375rem; margin-bottom: 0.15rem; }
.hero-visual__card-caption span { font-size: 0.8125rem; color: var(--gold-light); }

.hero-visual__stats {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    transform: translateY(50%);
}
.stat-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.5rem 1.25rem; text-align: center;
    box-shadow: var(--shadow-lg); border: 1px solid var(--grey-line);
    transition: transform 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card__value { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.35rem; }
.stat-card__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }

/* Spacer after hero stats overlap */
.hero-visual + .section { padding-top: 7rem; }

/* ─── Intro block ─── */
.intro-block {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.intro-block h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); margin-bottom: 0.75rem; }
.intro-block p { color: var(--grey); max-width: 520px; }

/* ─── Featured services ─── */
.featured-services {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
.featured-service {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--grey-line);
    box-shadow: var(--shadow); transition: all 0.35s var(--ease);
}
.featured-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.featured-service__visual { overflow: hidden; min-height: 220px; }
.featured-service__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.featured-service:hover .featured-service__visual img { transform: scale(1.06); }
.featured-service__body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.featured-service__body .practice-icon { margin-bottom: 1rem; width: 48px; height: 48px; }
.featured-service__body h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.featured-service__body p { color: var(--grey); font-size: 0.9375rem; margin-bottom: 1rem; flex: 1; }
.link-arrow { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ─── Service grid ─── */
.service-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.service-card {
    background: var(--cream); border-radius: var(--radius);
    padding: 1.75rem; border: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.service-card:hover { background: var(--white); border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card__icon-wrap {
    width: 56px; height: 56px; background: var(--white); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.125rem; box-shadow: var(--shadow);
}
.service-card__icon-wrap .practice-icon { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--grey); font-size: 0.875rem; line-height: 1.65; }

/* ─── About visual ─── */
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual__images { position: relative; }
.about-visual__photo {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-visual__photo img { width: 100%; height: 420px; object-fit: cover; }
.about-visual__accent {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--navy); color: var(--white);
    padding: 1.5rem; border-radius: var(--radius);
    text-align: center; box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
}
.about-visual__accent img { margin: 0 auto 0.5rem; filter: brightness(0) invert(1); opacity: 0.9; }
.about-visual__accent p { font-size: 0.8125rem; font-weight: 600; color: var(--gold-light); }
.about-visual__content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
.about-visual__content p { color: var(--grey); margin-bottom: 1rem; }
.pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.pill-list li {
    background: var(--white); border: 1px solid var(--grey-line);
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8125rem; font-weight: 500;
}

/* ─── Value cards ─── */
.value-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { text-align: center; padding: 1.5rem 1rem; }
.value-card__ring {
    width: 80px; height: 80px; margin: 0 auto 1.25rem;
    border-radius: 50%; background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(184,150,90,0.25);
}
.value-card__ring img { width: 36px; height: 36px; }
.value-card__star { font-size: 1.75rem; color: var(--gold); }
.value-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; }

/* ─── Process cards ─── */
.process-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.process-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 1.75rem;
    backdrop-filter: blur(4px); transition: background 0.3s;
}
.process-card:hover { background: rgba(255,255,255,0.1); }
.process-card__step {
    display: inline-block; font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 0.75rem;
}
.process-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ─── Testimonials ─── */
.testimonial-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow);
    position: relative; border: 1px solid var(--grey-line);
}
.testimonial-card__mark {
    font-family: var(--font-display); font-size: 4rem; line-height: 1;
    color: var(--gold-pale); position: absolute; top: 0.5rem; left: 1.25rem;
}
.testimonial-card p { color: var(--grey); font-size: 0.9375rem; font-style: italic; line-height: 1.75; margin-bottom: 1.25rem; position: relative; z-index: 1; padding-top: 1.5rem; }
.testimonial-card footer strong { display: block; font-size: 0.9375rem; color: var(--navy); }
.testimonial-card footer span { font-size: 0.8125rem; color: var(--grey); }

/* ─── CTA visual ─── */
.cta-visual {
    position: relative; padding: 5rem 0; overflow: hidden;
}
.cta-visual__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-visual__overlay { position: absolute; inset: 0; background: rgba(14,22,40,0.88); }
.cta-visual__inner {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem; flex-wrap: wrap;
}
.cta-visual h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
.cta-visual p { color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 1.25rem; }
.cta-visual__contacts { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.cta-visual__contacts a { color: var(--gold-light); font-size: 0.9375rem; font-weight: 500; }
.cta-visual__contacts a:hover { color: var(--white); }

/* ═══ INNER PAGES ═══ */
.page-banner, .page-hero {
    position: relative; padding: 4.5rem 0 3.5rem;
    background: var(--navy-deep); color: var(--white); overflow: hidden;
}
.page-banner::before, .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/visuals/hero-visual.png') center/cover;
    opacity: 0.2;
}
.page-banner .container, .page-hero .container { position: relative; z-index: 1; }
.page-banner h1, .page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.page-banner p, .page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; }
.page-banner::after, .page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.breadcrumb { display: flex; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8125rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.section--alt, .section--grey { background: var(--cream); }
.section--dark { background: var(--navy-deep); color: var(--white); }
.section-head, .section__header { max-width: 600px; margin-bottom: 2.5rem; }
.section-head--center, .section__header { text-align: center; margin-left: auto; margin-right: auto; }
.section-head__tag, .section__label { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-head h2, .section__header h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); margin-bottom: 0.75rem; }
.section-head p, .section__header p { color: var(--grey); }
.section-head__rule, .gold-divider { width: 48px; height: 3px; background: var(--gold); margin-top: 1rem; }
.section-head--center .section-head__rule, .section__header .gold-divider { margin-left: auto; margin-right: auto; }

/* Legacy tile/card grids for inner pages */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.tile, .card {
    background: var(--white); border-radius: var(--radius); padding: 1.75rem;
    border: 1px solid var(--grey-line); transition: all 0.3s var(--ease);
}
.tile:hover, .card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.tile--featured { background: var(--navy); border-color: var(--navy-soft); color: var(--white); }
.tile--featured h3 { color: var(--white); }
.tile--featured p { color: rgba(255,255,255,0.7); }
.tile--featured .tile__link { color: var(--gold-light); }
.tile__num { font-family: var(--font-display); font-size: 0.8125rem; color: var(--gold); margin-bottom: 0.75rem; }
.tile h3, .card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }
.tile p, .card p { color: var(--grey); font-size: 0.9375rem; margin-bottom: 1rem; }
.tile__link, .card__link { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.card__icon { display: none; }

.split, .about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split__frame, .about-preview__image-main {
    background: var(--navy); border-radius: var(--radius-lg); padding: 2.5rem;
    display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.split__frame img, .about-preview__image-main img { max-height: 140px; filter: brightness(0) invert(1); }
.split__accent, .about-preview__badge {
    position: absolute; bottom: -1rem; left: -1rem;
    background: var(--gold); color: var(--navy-deep); padding: 1.25rem 1.5rem;
    font-family: var(--font-display); font-weight: 700; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.split__media, .about-preview__image { position: relative; }
.split__content p, .about-preview__content p { color: var(--grey); margin-bottom: 1rem; }
.checklist, .feature-list { list-style: none; margin: 1.25rem 0 1.75rem; }
.checklist li, .feature-list li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 0.9375rem; }
.checklist li::before, .feature-list li::before {
    content: ''; position: absolute; left: 0; top: 0.65em;
    width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}

.values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-cell { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--grey-line); }
.value-cell__idx { font-family: var(--font-display); font-size: 1.75rem; color: var(--gold-pale); color: rgba(184,150,90,0.4); margin-bottom: 0.5rem; }
.value-cell h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-cell p { font-size: 0.875rem; color: var(--grey); }

.timeline, .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.timeline__dot, .process-step__number {
    width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; color: var(--gold); margin: 0 auto 1rem;
}
.timeline__step, .process-step { text-align: center; }
.timeline__step h3, .process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.timeline__step p, .process-step p { font-size: 0.875rem; color: var(--grey); }
.section--dark .timeline__step p { color: rgba(255,255,255,0.6); }

.quotes, .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.quote-card, .testimonial {
    background: var(--white); border-radius: var(--radius); padding: 1.75rem;
    border-left: 4px solid var(--gold); box-shadow: var(--shadow);
}
.quote-card__text, .testimonial__quote { font-style: italic; color: var(--grey); font-size: 0.9375rem; margin-bottom: 1rem; }
.quote-card__author strong, .testimonial__author strong { display: block; color: var(--navy); }
.quote-card__author span, .testimonial__author span { font-size: 0.8125rem; color: var(--grey); }

.stats-grid, .stats-ribbon .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item, .stats-ribbon__item { background: var(--gold-pale); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.stat-item__value, .stats-ribbon__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-item__label, .stats-ribbon__label { font-size: 0.8125rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.04em; }

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.team-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--grey-line); box-shadow: var(--shadow); transition: all 0.3s;
    width: 100%;
    max-width: 360px;
    text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-card__avatar {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
    padding: 2.5rem; display: flex; justify-content: center;
    position: relative; overflow: hidden;
}
.team-card__avatar::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/visuals/hero-visual.png') center/cover; opacity: 0.15;
}
.team-card__initials {
    width: 96px; height: 96px; border-radius: 50%;
    border: 3px solid var(--gold); background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold);
    position: relative; z-index: 1;
}
.team-card__body { padding: 1.75rem; }
.team-card__body h3 { margin-bottom: 0.25rem; }
.team-card__title { color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-card__qualifications { color: var(--grey); font-size: 0.8125rem; margin-bottom: 0.75rem; }
.team-card__bio { color: var(--grey); font-size: 0.875rem; margin-bottom: 1rem; }
.team-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1rem; justify-content: center; }
.team-card__body a { font-size: 0.875rem; color: var(--gold-dark); word-break: break-word; }
.team-card__body a:hover { color: var(--gold); }
.tag { background: var(--cream); font-size: 0.6875rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 50px; color: var(--navy); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; }
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.375rem; }
.contact-info__icon {
    width: 48px; height: 48px; background: var(--gold-pale); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.125rem;
}
.contact-info__item h4 { font-family: var(--font); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-info__item p, .contact-info__item a { color: var(--grey); font-size: 0.9375rem; }
.contact-form {
    background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem;
    border: 1px solid var(--grey-line); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8125rem 1rem; border: 1px solid var(--grey-line);
    border-radius: 8px; font-family: var(--font); font-size: 0.9375rem; background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); background: var(--white);
    box-shadow: 0 0 0 3px rgba(184,150,90,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: var(--maroon); font-size: 0.8125rem; margin-top: 0.25rem; }
.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.map-container { margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--grey-line); }
.map-container iframe { width: 100%; height: 360px; border: 0; }

/* Service detail */
.service-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; }
.service-detail__content h2 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.service-detail__content p { color: var(--grey); margin-bottom: 1rem; }
.service-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1rem; }
.service-list li { padding-left: 1.25rem; position: relative; font-size: 0.9375rem; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.sidebar-card {
    background: var(--cream); border-radius: var(--radius-lg); padding: 1.75rem;
    border-top: 4px solid var(--gold); position: sticky; top: calc(var(--header) + 1rem);
}
.sidebar-card h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; }
.sidebar-card ul { list-style: none; margin-bottom: 1.25rem; }
.sidebar-card li { padding: 0.5rem 0; border-bottom: 1px solid var(--grey-line); font-size: 0.9375rem; }
.sidebar-card a { color: var(--navy); }
.sidebar-card a:hover { color: var(--gold); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--grey-line); border-radius: var(--radius); margin-bottom: 0.625rem; overflow: hidden; }
.faq-item__question {
    width: 100%; background: none; border: none; padding: 1.125rem 1.375rem;
    text-align: left; font-family: var(--font); font-weight: 500; font-size: 0.96875rem;
    color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon { color: var(--gold); font-size: 1.25rem; transition: transform 0.25s; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-item.active .faq-item__answer { max-height: 400px; }
.faq-item__answer p { padding: 0 1.375rem 1.125rem; color: var(--grey); font-size: 0.9375rem; }

/* Legal */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h2 { font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1.125rem; margin: 1.25rem 0 0.5rem; }
.legal-content p, .legal-content li { color: var(--grey); margin-bottom: 0.625rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-logo {
    display: inline-block;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(184, 150, 90, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s;
}

.footer-logo:hover { opacity: 0.92; }

.footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 110px;
    object-fit: contain;
}
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 0.8125rem; transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); }
.footer-col h4 { color: var(--white); font-family: var(--font); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; font-size: 0.9375rem; }
.footer-col a { color: rgba(255,255,255,0.58); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.125rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8125rem; }
.footer-bottom a { color: var(--gold-light); }
.footer-legal { display: flex; gap: 1.25rem; }

.back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
    background: var(--gold); color: var(--navy-deep); border: none; border-radius: 50%;
    cursor: pointer; font-size: 1.125rem; font-weight: 700;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all 0.25s; z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }

/* CTA legacy alias */
.cta-band, .cta-banner { display: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero-slide__inner,
    .hero-visual__inner, .about-visual, .split, .about-preview, .contact-grid, .service-detail,
    .featured-services, .featured-service { grid-template-columns: 1fr; }
    .hero-slide__logo-card { margin: 0 auto; }
    .hero-slide__logo { max-width: 260px; max-height: 180px; }
    .hero-slide__content { text-align: center; }
    .hero-slide__content p { margin-left: auto; margin-right: auto; }
    .hero-slide__actions { justify-content: center; }
    .hero-slider__stats { position: relative; transform: none; margin-top: -2rem; }
    .hero-slider + .section { padding-top: 3rem; }
    .featured-service { grid-template-columns: 1fr; }
    .featured-service__visual { min-height: 180px; }
    .value-cards, .process-cards, .timeline, .process-grid, .quotes, .testimonials-grid,
    .testimonial-slider, .values-row { grid-template-columns: repeat(2, 1fr); }
    .stat-cards, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual__panel { min-height: auto; margin-top: 1rem; }
    .hero-visual__stats { position: relative; transform: none; margin-top: -2rem; }
    .hero-visual + .section { padding-top: 3rem; }
    .cta-visual__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .logo-lockup__name { font-size: 0.9375rem; }
    .logo-lockup__sub { font-size: 0.5625rem; letter-spacing: 0.2em; }
    .logo-lockup__mark { width: 44px; height: 44px; }
    .logo-lockup__mark img { width: 30px; height: 30px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: calc(var(--header) + var(--header-welcome) + var(--topbar));
        left: 0; right: 0; background: var(--white);
        padding: 1rem; box-shadow: var(--shadow-lg);
        transform: translateY(-130%); opacity: 0; visibility: hidden; transition: all 0.3s;
        border-bottom: 3px solid var(--gold);
    }
    .page-home .main-nav { top: calc(var(--header) + var(--topbar)); }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav ul { flex-direction: column; align-items: stretch; }
    .main-nav a { display: block; padding: 0.875rem 1rem; }
    .nav-cta { margin: 0.5rem 0 0; }
    .nav-cta .btn { width: 100%; }
    .value-cards, .process-cards, .timeline, .process-grid, .quotes, .testimonials-grid,
    .testimonial-slider, .values-row, .stat-cards, .stats-grid { grid-template-columns: 1fr; }
    .form-row, .service-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .intro-block { flex-direction: column; align-items: flex-start; }
    .hero-visual__actions { flex-direction: column; }
    .hero-visual__actions .btn { width: 100%; }
    .about-visual__photo img { height: 280px; }
    .about-visual__accent { right: 0; bottom: -1rem; }
}

@media (max-width: 600px) {
    .logo-lockup__text { display: none; }
    .logo-lockup__mark { width: 48px; height: 48px; border-radius: 12px; }
}

@media (max-width: 480px) {
    .top-bar__left { flex-direction: column; gap: 0.25rem; }
    .site-header__welcome p { font-size: 1rem; }
}
