:root {
    --purple: #643b9f;
    --purple-light: #8b5fcc;
    --purple-pale: #c4a8e8;
    --purple-ghost: #f0e8fa;
    --silver: #a8a9ad;
    --silver-light: #d4d5d8;
    --silver-dark: #6c6d71;
    --charcoal: #1a1a2e;
    --off-white: #f7f6f9;
    --white: #ffffff;
    --text-main: #1a1a2e;
    --text-muted: #6c6d71;
    --accent: #c4a8e8;

  --silver-mid:  #c0c1c5;
  --silver-rule: rgba(168,169,173,0.22);
  --silver-glow: rgba(168,169,173,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background: var(--white);
    overflow-x: hidden;
  padding-bottom: 58px;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(100,59,159,0.08);
    transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 24px rgba(100,59,159,0.1); }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.02em;
    text-decoration: none;
}
.logo span { color: var(--silver-dark); font-weight: 300; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }

.nav-cta {
    background: var(--purple);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--purple-light) !important; color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5vw 80px 8vw;
    position: relative;
    z-index: 2;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: -60px; bottom: 0;
    width: 120px;
    background: var(--charcoal);
    clip-path: polygon(0 0, 40% 0, 100% 50%, 40% 100%, 0 100%);
    z-index: 3;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-pale);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--purple-pale);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    color: var(--purple-pale);
}

.hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--silver-light);
    max-width: 420px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); }

.btn-ghost {
    color: var(--silver-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after {
    content: '→';
    transition: transform 0.2s;
}
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(0.8);
}

.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(100,59,159,0.45) 0%, rgba(26,26,46,0.2) 60%, transparent 100%);
}

.hero-stat-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(100,59,159,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    padding: 24px 40px;
    gap: 0;
}

.hero-stat {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--purple);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite;
    gap: 0;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0 40px;
}

.ticker-item strong {
    color: var(--white);
    font-weight: 600;
}

.ticker-sep {
    color: var(--purple-pale);
    padding: 0 8px;
}

/* ─── INTRO SECTION ─── */
.intro {
    padding: 100px 8vw;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--purple);
}

.intro-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-main);
}
.intro-heading em {
    font-style: italic;
    color: var(--purple);
}

.intro-right p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 300;
}

.intro-right p strong {
    color: var(--text-main);
    font-weight: 500;
}

.intro-alert {
    background: var(--purple-ghost);
    border-left: 3px solid var(--purple);
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
    margin-top: 32px;
}

.intro-alert-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 8px;
}

.intro-alert p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 16px;
}

.intro-alert a {
    color: var(--purple);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(100,59,159,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.intro-alert a:hover { border-color: var(--purple); }

/* ─── SERVICES ─── */
.services {
    padding: 80px 8vw;
    background: #f4f3f7;
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Left column */
.services-left { display: flex; flex-direction: column; gap: 0; }

.services-lbl {
    color: var(--purple);
    margin-bottom: 20px;
}
.services-lbl span {
    display: block; width: 24px; height: 1px;
    background: var(--purple);
}

.services-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 32px;
}
.services-heading em { font-style: italic; color: var(--purple); }

.services-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 280px;
    margin-bottom: 28px;
    flex-shrink: 0;
}
.services-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(0.8);
    display: block;
    transition: transform 0.6s ease;
}
.services-photo-wrap:hover .services-photo { transform: scale(1.03); }
.services-photo-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--purple);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
}
.services-photo-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; display: block;
}
.services-photo-badge-lbl {
    font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; opacity: 0.75; display: block; margin-top: 4px;
}
.services-cta { align-self: flex-start; }

/* Right column — compact row cards */
.services-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 72px; /* align with heading */
}

.svc {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--silver-rule);
    border-radius: 2px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, border-color 0.2s, padding-left 0.2s;
    position: relative;
}
.svc::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--silver);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s;
}
.svc:hover { background: var(--purple-ghost); border-color: rgba(100,59,159,0.3); padding-left: 24px; }
.svc:hover::before { transform: scaleY(1); background: var(--purple); }

.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; font-weight: 400; color: var(--silver-dark);
    letter-spacing: 0.08em; flex-shrink: 0; width: 20px;
}
.svc-body { flex: 1; }
.svc-title {
    font-size: 14px; font-weight: 500; color: var(--text-main); line-height: 1.3;
}
.svc-time {
    font-size: 11px; color: var(--text-muted); margin-top: 3px; font-weight: 300;
}
.svc-arrow {
    width: 16px; height: 16px; flex-shrink: 0;
    color: var(--silver-dark); opacity: 0.5;
    transition: opacity 0.2s, color 0.2s, transform 0.2s;
}
.svc:hover .svc-arrow { opacity: 1; color: var(--purple-pale); transform: translateX(3px); }

@media (max-width: 1024px) {
    .services-inner { grid-template-columns: 1fr; gap: 40px; }
    .services-right { padding-top: 0; }
    .services-photo-wrap { height: 220px; }
}

/* ─── WHY CHOOSE ─── */
.why {
    padding: 100px 8vw;
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
    height: 580px;
}

.why-image-main {
    width: 75%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.9) saturate(0.85);
}

.why-image-accent {
    width: 52%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 4px solid var(--white);
    filter: brightness(0.9) saturate(0.85);
}

.why-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: var(--purple);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    z-index: 2;
}

.why-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 4px;
}

.why-badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

.why-content .section-label { margin-bottom: 20px; }

.why-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 40px;
}
.why-heading em { font-style: italic; color: var(--purple); }

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(168,169,173,0.2);
}
.why-item:first-child { border-top: 1px solid rgba(168,169,173,0.2); }

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--purple-ghost);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--purple);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-item-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
}

.why-item-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 8vw;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    color: var(--text-main);
    margin-top: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 48px;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(168,169,173,0.2);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    line-height: 0.6;
    color: var(--purple);
    opacity: 0.3;
    position: absolute;
    top: 32px;
    left: 40px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-main);
    font-weight: 300;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(168,169,173,0.2);
    padding-top: 24px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ─── TEAM ─── */
.team {
    padding: 100px 8vw;
    background: var(--charcoal);
}

.team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
}

.team-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}
.team-heading em { font-style: italic; color: var(--purple-pale); }

.team-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--silver);
    font-weight: 300;
}

/* 6 columns on desktop */
.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(168,169,173,0.1);
    padding-top: 8px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(168,169,173,0.08);
    transition: border-color 0.3s, background 0.3s;
}
.team-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(168,169,173,0.2);
}

/* Photo wrapper: fixed square with object-fit */
.team-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(100,59,159,0.15);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(30%) brightness(0.88);
    transition: filter 0.4s, transform 0.4s;
}
.team-card:hover .team-photo {
    filter: grayscale(0%) brightness(0.95);
    transform: scale(1.04);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--purple-pale);
    background: rgba(100,59,159,0.15);
}

.team-info {
    padding: 16px 16px 20px;
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 4px;
}

.team-role {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-pale);
    margin-bottom: 12px;
    line-height: 1.4;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.team-linkedin:hover { color: var(--silver-light); }

/* Tablet: 3 per row × 2 rows */
@media (max-width: 1200px) and (min-width: 601px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team-header {
        grid-template-columns: 1fr;
    }
    .team-photo-wrap {
        aspect-ratio: 4 / 3;
    }
}

/* ─── PARTNERS ─── */
.partners {
    padding: 80px 8vw;
    background: var(--off-white);
    text-align: center;
}

.partners-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver-dark);
    margin-bottom: 48px;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 40px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: opacity 0.3s;
}
.partners-row:hover { opacity: 0.7; }

.partners-row img {
    height: 32px;
    object-fit: contain;
    max-width: 120px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 100px 8vw;
    background: var(--purple);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
}
.cta-heading em { font-style: italic; opacity: 0.75; }

.cta-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-weight: 300;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    min-width: 220px;
}

.btn-white {
    background: var(--white);
    color: var(--purple);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    display: block;
}
.btn-outline-white:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
}

/* ─── FOOTER ─── */
footer {
    background: #0e0e1a;
    padding: 80px 8vw 40px;
    color: var(--silver);
}

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

.footer-brand .logo {
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--silver-dark);
    font-weight: 300;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168,169,173,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-dark);
    text-decoration: none;
    font-size: 12px;
    transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--purple-pale); color: var(--purple-pale); }

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--silver-dark);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--silver); }

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--silver-dark);
    font-weight: 300;
    margin-bottom: 16px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--purple-pale);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(168,169,173,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--silver-dark);
}

.footer-license {
    font-size: 12px;
    color: var(--silver-dark);
    display: flex;
    gap: 24px;
}

.footer-license a {
    color: var(--silver-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-license a:hover { color: var(--silver); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 400px; }
    .hero-left::after { display: none; }
    .intro { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { height: 300px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .team-header { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 5vw; }
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stat-bar { padding: 16px 20px; gap: 4px; }
    .hero-stat-num { font-size: 28px; }
    .hero-left { padding: 100px 6vw 60px; }
}




/* === Migrated from inline === */
.logo-img{height:44px;width:auto;display:block;}
.logo-link{display:inline-flex;align-items:center;text-decoration:none;}

/* Reviews */
.reviews{padding:100px 8vw;background:var(--charcoal);overflow:hidden;}
.reviews-header{text-align:center;margin-bottom:56px;}
.reviews-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(34px,4vw,50px);font-weight:300;color:var(--white);margin-top:12px;}
.reviews-heading em{font-style:italic;color:var(--purple-pale);}
.google-badge{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);padding:8px 18px;border-radius:40px;margin-top:20px;}
.google-badge-text{font-size:13px;color:var(--silver);}
.google-badge-score{font-size:14px;font-weight:600;color:var(--white);}
.reviews-track-wrap{overflow:hidden;}
.reviews-track{display:flex;gap:24px;transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);will-change:transform;}
.review-card{flex:0 0 calc(33.333% - 16px);background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:4px;padding:36px 32px 28px;}
.review-stars{color:#f9c84a;font-size:20px;margin-bottom:16px;letter-spacing:3px;}
.review-text{font-size:15px;line-height:1.85;color:var(--silver-light);font-weight:300;margin-bottom:24px;font-style:italic;}
.review-author{display:flex;align-items:center;gap:14px;border-top:1px solid rgba(255,255,255,0.08);padding-top:20px;}
.review-avatar{width:42px;height:42px;border-radius:50%;background:var(--purple);display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:17px;color:var(--white);flex-shrink:0;}
.review-name{font-size:14px;font-weight:500;color:var(--white);margin-bottom:3px;}
.review-date{font-size:12px;color:var(--silver-dark);}
.review-google-icon{margin-left:auto;opacity:0.5;flex-shrink:0;}
.reviews-controls{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:40px;}
.reviews-btn{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);color:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background 0.2s;font-size:18px;line-height:1;}
.reviews-btn:hover{background:var(--purple);border-color:var(--purple);}
.reviews-dots{display:flex;gap:8px;}
.reviews-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.2);border:none;cursor:pointer;padding:0;transition:background 0.2s,transform 0.2s;}
.reviews-dot.active{background:var(--purple-pale);transform:scale(1.3);}

/* Global */
.global{padding:100px 8vw;background:var(--off-white);}
.global-header{text-align:center;margin-bottom:64px;}
.global-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(34px,4vw,52px);font-weight:300;color:var(--text-main);margin-top:12px;}
.global-heading em{font-style:italic;color:var(--purple);}
.global-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.global-card{background:var(--white);border:1px solid rgba(168,169,173,0.2);border-radius:4px;padding:40px 36px;position:relative;transition:box-shadow 0.3s,transform 0.3s;text-decoration:none;display:block;color:inherit;}
.global-card:hover{box-shadow:0 12px 40px rgba(100,59,159,0.1);transform:translateY(-3px);}
.global-card.hq{border-top:3px solid var(--purple);}
.global-card-flag{font-size:40px;margin-bottom:20px;display:block;}
.global-card-badge{position:absolute;top:20px;right:20px;font-size:10px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;background:var(--purple);color:var(--white);padding:4px 10px;border-radius:2px;}
.global-card-title{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:var(--text-main);margin-bottom:6px;}
.global-card-sub{font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--purple);margin-bottom:20px;}
.global-card-desc{font-size:14px;line-height:1.8;color:var(--text-muted);font-weight:300;margin-bottom:24px;}
.global-card-link{font-size:12px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--purple);display:inline-flex;align-items:center;gap:6px;border-bottom:1px solid rgba(100,59,159,0.3);padding-bottom:2px;text-decoration:none;}

/* FAQ */
.faq{padding:100px 8vw;background:var(--white);}
.faq-header{text-align:center;margin-bottom:64px;}
.faq-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(34px,4vw,52px);font-weight:300;color:var(--text-main);margin-top:12px;}
.faq-heading em{font-style:italic;color:var(--purple);}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 80px;max-width:1100px;margin:0 auto;}
.faq-item{border-bottom:1px solid rgba(168,169,173,0.2);}
.faq-item:first-child,.faq-item:nth-child(2){border-top:1px solid rgba(168,169,173,0.2);}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:24px 0;cursor:pointer;gap:16px;font-size:15px;font-weight:500;color:var(--text-main);list-style:none;user-select:none;}
.faq-question::-webkit-details-marker{display:none;}
.faq-icon{width:28px;height:28px;border-radius:50%;background:var(--purple-ghost);flex-shrink:0;display:flex;align-items:center;justify-content:center;transition:background 0.2s,transform 0.3s;color:var(--purple);font-size:18px;line-height:1;font-style:normal;}
details[open] .faq-icon{background:var(--purple);color:var(--white);transform:rotate(45deg);}
.faq-answer{font-size:14px;line-height:1.85;color:var(--text-muted);font-weight:300;padding:0 40px 24px 0;}

/* Sticky bar */
.sticky-footer-bar{position:fixed;bottom:0;left:0;right:0;z-index:200;background:rgba(26,26,46,0.97);border-top:1px solid rgba(100,59,159,0.35);display:flex;align-items:center;justify-content:space-between;padding:12px 5vw;gap:20px;backdrop-filter:blur(12px);box-shadow:0 -4px 24px rgba(0,0,0,0.35);}
.sticky-footer-text{font-size:13px;color:var(--silver);font-weight:300;flex:1;}
.sticky-footer-text strong{color:var(--white);font-weight:500;}
.sticky-footer-actions{display:flex;gap:10px;align-items:center;flex-shrink:0;}
.sticky-btn-call{background:var(--purple);color:var(--white);padding:9px 20px;border-radius:2px;font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;text-decoration:none;white-space:nowrap;transition:background 0.2s;}
.sticky-btn-call:hover{background:var(--purple-light);}
.sticky-btn-wa{background:#25d366;color:var(--white);padding:9px 20px;border-radius:2px;font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;text-decoration:none;display:flex;align-items:center;gap:7px;white-space:nowrap;transition:background 0.2s;}
.sticky-btn-wa:hover{background:#1fba58;}
.sticky-close{background:none;border:none;color:var(--silver-dark);cursor:pointer;font-size:22px;line-height:1;padding:4px;flex-shrink:0;transition:color 0.2s;}
.sticky-close:hover{color:var(--white);}
@media(max-width:1024px){.global-grid{grid-template-columns:1fr;max-width:520px;margin:0 auto;}.faq-grid{grid-template-columns:1fr;}.faq-item:nth-child(2){border-top:none;}.review-card{flex:0 0 calc(50% - 12px);}.sticky-footer-text{display:none;}}
@media(max-width:768px){.review-card{flex:0 0 100%;}.sticky-footer-bar{padding:10px 4vw;}}

/* ─── LOGO ─── */
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 44px; width: auto; display: block; }


/* ─── BLOG ANNOUNCEMENT ─── */
/* ─── BTAG PILL ─── */
.btag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--purple-ghost);
  color: var(--purple);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(100,59,159,0.2);
}

.blog-announce {
  padding: 80px 8vw 80px;
  background: var(--off-white);
}
.blog-announce-inner {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 60px;
  border-left: 4px solid var(--purple);
}
.blog-announce-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.blog-announce-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--purple); color: var(--white); padding: 5px 12px; border-radius: 2px;
}
.blog-announce-date { font-size: 12px; color: var(--silver-dark); }
.blog-announce-content {
  display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start;
}
.blog-announce-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 300; color: var(--white); line-height: 1.25; margin-bottom: 20px;
}
.blog-announce-desc {
  font-size: 14px; line-height: 1.9; color: var(--silver); font-weight: 300; margin-bottom: 24px;
}
.blog-announce-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.blog-announce-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple-pale); text-decoration: none; border-bottom: 1px solid rgba(196,168,232,0.4);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.blog-announce-cta:hover { border-color: var(--purple-pale); }
.blog-announce-img-bg {
  background: rgba(100,59,159,0.2); border: 1px solid rgba(100,59,159,0.2);
  border-radius: 4px; padding: 40px 24px; text-align: center; margin-bottom: 20px;
}
.blog-announce-flag { font-size: 56px; display: block; margin-bottom: 16px; }
.blog-announce-img-num {
  font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300;
  color: var(--white); line-height: 1;
}
.blog-announce-img-sub { font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple-pale); margin-top: 6px; }
.blog-announce-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px;
}
.blog-announce-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.blog-announce-author-name { font-size: 14px; font-weight: 500; color: var(--white); }
.blog-announce-author-role { font-size: 11px; color: var(--silver-dark); margin-top: 2px; }
@media(max-width:1024px){
  .blog-announce-content{grid-template-columns:1fr;}
  .blog-announce-inner{padding:40px 32px;}
}

/* ─── GLOBAL STRUCTURES ─── */
.gstruct { padding: 100px 8vw; background: var(--charcoal); }
.gstruct-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.gstruct-img-col { position: relative; }
.gstruct-img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 4px;
  filter: brightness(0.75) saturate(0.8); display: block;
}
.gstruct-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(100,59,159,0.8); backdrop-filter: blur(8px); padding: 24px 28px;
}
.gstruct-stat-row { display: flex; gap: 0; }
.gstruct-stat { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); padding: 4px 0; }
.gstruct-stat:last-child { border-right: none; }
.gstruct-stat-n {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300;
  color: var(--white); display: block; line-height: 1;
}
.gstruct-stat-l { font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
.gstruct-heading {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 24px;
}
.gstruct-heading em { font-style: italic; color: var(--purple-pale); }
.gstruct-lead { font-size: 15px; line-height: 1.85; color: var(--silver); font-weight: 300; margin-bottom: 40px; }
.gstruct-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.gstruct-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px; transition: background 0.3s;
}
.gstruct-card:hover { background: rgba(100,59,159,0.1); }
.gstruct-card-icon { font-size: 16px; color: var(--purple-pale); margin-bottom: 14px; display: block; }
.gstruct-card-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.gstruct-card-desc { font-size: 13px; line-height: 1.8; color: var(--silver); font-weight: 300; }

/* Gstruct HQ reference box */
.gstruct-hq-ref {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 36px;
    background: rgba(100,59,159,0.12);
    border: 1px solid rgba(100,59,159,0.25);
    border-left: 3px solid var(--purple-pale);
    border-radius: 4px;
    padding: 24px 24px;
}
.gstruct-hq-flag { font-size: 32px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.gstruct-hq-title {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--purple-pale); margin-bottom: 8px;
}
.gstruct-hq-desc {
    font-size: 13px; line-height: 1.75; color: var(--silver); font-weight: 300; margin-bottom: 12px;
}
.gstruct-hq-desc strong { color: var(--white); font-weight: 500; }
.gstruct-hq-link {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--purple-pale); text-decoration: none;
    border-bottom: 1px solid rgba(196,168,232,0.35); padding-bottom: 1px;
    transition: border-color 0.2s;
}
.gstruct-hq-link:hover { border-color: var(--purple-pale); }

@media(max-width:1024px){
  .gstruct-grid{grid-template-columns:1fr;}
  .gstruct-img{height:300px;}
}
@media(max-width:768px){.gstruct-cards{grid-template-columns:1fr;}}

/* ─── FEATURED ARTICLES ─── */
.featured-articles { padding: 100px 8vw; background: var(--off-white); }
.featured-header { text-align: center; margin-bottom: 64px; }
.featured-heading {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4vw, 52px);
  font-weight: 300; color: var(--text-main); margin-top: 12px;
}
.featured-heading em { font-style: italic; color: var(--purple); }
.featured-sub { font-size: 15px; color: var(--text-muted); font-weight: 300;
  max-width: 620px; margin: 16px auto 0; line-height: 1.8; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.featured-card {
  background: var(--white); border: 1px solid rgba(168,169,173,0.2); border-radius: 4px;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
  border-top: 3px solid var(--purple);
}
.featured-card:hover { box-shadow: 0 16px 48px rgba(100,59,159,0.12); transform: translateY(-3px); }
.featured-card-part {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--purple-ghost); color: var(--purple); padding: 4px 10px; border-radius: 2px;
}
.featured-card-body { padding: 40px 36px 28px; flex: 1; }
.featured-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400;
  color: var(--text-main); line-height: 1.3; margin-bottom: 16px;
}
.featured-card-desc { font-size: 14px; line-height: 1.85; color: var(--text-muted); font-weight: 300; margin-bottom: 24px; }
.featured-card-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.featured-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.featured-card-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); white-space: nowrap;
}
.featured-card-stat-bar {
  display: flex; background: var(--off-white); border-top: 1px solid rgba(168,169,173,0.15);
}
.featured-card-stat {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid rgba(168,169,173,0.15); font-size: 12px; color: var(--text-muted); font-weight: 300;
}
.featured-card-stat:last-child { border-right: none; }
.featured-card-stat span { display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--purple); margin-bottom: 2px; }
.featured-author-strip {
  background: var(--white); border: 1px solid rgba(168,169,173,0.2);
  border-radius: 4px; padding: 24px 32px; display: flex; align-items: center; gap: 20px;
}
.featured-author-img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.featured-author-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.featured-author-text strong { color: var(--text-main); }
@media(max-width:1024px){.featured-grid{grid-template-columns:1fr;}}

/* ─────────────────────────────────────────────────────────
   SILVER ENHANCEMENTS — additive only, no !important abuse
   ───────────────────────────────────────────────────────── */

  --silver-mid:  #c0c1c5;
  --silver-rule: rgba(168,169,173,0.22);
  --silver-glow: rgba(168,169,173,0.07);


/* Nav hover underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Subtle silver rules between sections */
.intro  { border-top: 1px solid var(--silver-rule); }
.partners { border-top: 1px solid var(--silver-rule); border-bottom: 1px solid var(--silver-rule); }
.featured-articles { border-top: 1px solid var(--silver-rule); }

/* Service cards: silver border tint */
.service-card { border-color: rgba(168,169,173,0.12); }

/* Why section stays on off-white with silver dividers */
.why { background: var(--off-white); }
.why-item { border-bottom-color: var(--silver-rule); }
.why-item:first-child { border-top-color: var(--silver-rule); }
.why-icon { background: rgba(168,169,173,0.1); border: 1px solid var(--silver-rule); }
.why-icon svg { stroke: var(--silver-dark); }

/* Reviews on off-white bg, dark readable text */
.reviews { background: var(--off-white); }
.review-card {
  background: var(--white);
  border-color: var(--silver-rule);
}
.review-text { color: var(--text-main); font-style: italic; }
.review-name { color: var(--purple); font-weight: 500; }
.review-date { color: var(--silver-dark); }
.review-author { border-top-color: var(--silver-rule); }
.review-avatar { background: var(--purple); color: var(--white); }
.reviews-btn {
  background: var(--silver-glow);
  border-color: var(--silver-rule);
  color: var(--text-main);
}
.reviews-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
.reviews-dot { background: var(--silver-rule); }
.reviews-dot.active { background: var(--silver-dark); }
.google-badge { background: var(--silver-glow); border-color: var(--silver-rule); }
.google-badge-text { color: var(--text-muted); }
.google-badge-score { color: var(--text-main); }
.reviews-heading { color: var(--text-main); }
.reviews-heading em { color: var(--purple); }

/* Global presence on white */
.global { background: var(--white); }
.global-card { border-color: var(--silver-rule); }
.global-card-sub { color: var(--silver-dark); }

/* Featured articles silver stat bars */
.featured-articles { background: var(--off-white); }
.featured-card { border-color: var(--silver-rule); }
.featured-card-stat-bar { background: var(--white); border-top-color: var(--silver-rule); }
.featured-card-stat { border-right-color: var(--silver-rule); }
.featured-author-strip { border-color: var(--silver-rule); background: var(--white); }

/* Team silver details */
.team-linkedin { color: var(--silver); }
.team-linkedin:hover { color: var(--silver-light); }
.team-grid { border-top: 1px solid rgba(168,169,173,0.1); padding-top: 4px; }

/* FAQ silver accordion */
.faq-item { border-bottom-color: var(--silver-rule); }
.faq-item:first-child,
.faq-item:nth-child(2) { border-top-color: var(--silver-rule); }
.faq-icon { background: var(--silver-glow); border: 1px solid var(--silver-rule); color: var(--silver-dark); }
details[open] .faq-icon { background: var(--silver-dark); color: var(--white); border-color: var(--silver-dark); }

/* Partners */
.partners-row { opacity: 0.5; }
.partners-row:hover { opacity: 0.75; }

/* Footer silver rule */
.footer-bottom { border-top-color: var(--silver-rule); }
.footer-social a:hover { border-color: var(--silver-mid); color: var(--silver-mid); }
.footer-col ul a:hover { color: var(--silver-mid); }

/* Sticky bar */
.sticky-footer-bar { border-top: 1px solid var(--silver-rule); }

/* Blog announce: image */
.blog-announce { padding: 0 8vw 80px; background: var(--off-white); }
.blog-announce-inner {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 60px;
  border-left: 4px solid var(--silver);
  border-right: 2px solid var(--purple);
}
.blog-announce-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.blog-announce-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--silver-dark); color: var(--white); padding: 5px 12px; border-radius: 2px;
}
.blog-announce-date { font-size: 12px; color: var(--silver-dark); }
.blog-announce-content { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start; }
.blog-announce-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 300; color: var(--white); line-height: 1.25; margin-bottom: 20px;
}
.blog-announce-desc { font-size: 14px; line-height: 1.9; color: var(--silver); font-weight: 300; margin-bottom: 24px; }
.blog-announce-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.blog-announce-cta {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-light); text-decoration: none;
  border-bottom: 1px solid rgba(168,169,173,0.4); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
}
.blog-announce-cta:hover { color: var(--white); border-color: var(--silver); }
.blog-announce-hero-img {
  position: relative; border-radius: 4px; overflow: hidden; height: 220px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
}
.blog-announce-photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.8); display: block;
}
.blog-announce-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 100%);
  padding: 20px 20px 16px;
}
.blog-announce-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300;
  color: var(--white); line-height: 1; display: block;
}
.blog-announce-stat-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--silver-mid); display: block; margin-top: 2px;
}
.blog-announce-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(168,169,173,0.15); padding-top: 16px; margin-top: 16px;
}
.blog-announce-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-announce-author-name { font-size: 14px; font-weight: 500; color: var(--white); }
.blog-announce-author-role { font-size: 11px; color: var(--silver-dark); margin-top: 2px; }

/* Global structures */
.gstruct { padding: 100px 8vw; background: var(--charcoal); }
.gstruct-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.gstruct-img-col { position: relative; }
.gstruct-img {
  width: 100%; height: 520px; object-fit: cover; border-radius: 4px;
  filter: brightness(0.75) saturate(0.8); display: block;
}
.gstruct-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(100,59,159,0.8); backdrop-filter: blur(8px); padding: 24px 28px;
}
.gstruct-stat-row { display: flex; }
.gstruct-stat { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); padding: 4px 0; }
.gstruct-stat:last-child { border-right: none; }
.gstruct-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); display: block; line-height: 1; }
.gstruct-stat-l { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
.gstruct-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 50px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 24px; }
.gstruct-heading em { font-style: italic; color: var(--purple-pale); }
.gstruct-lead { font-size: 15px; line-height: 1.85; color: var(--silver); font-weight: 300; margin-bottom: 40px; }
.gstruct-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.gstruct-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(168,169,173,0.1);
  padding: 28px 24px; transition: background 0.3s, border-color 0.3s;
}
.gstruct-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(168,169,173,0.2); }
.gstruct-card-icon { font-size: 16px; color: var(--silver-mid); margin-bottom: 14px; display: block; }
.gstruct-card-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.gstruct-card-desc { font-size: 13px; line-height: 1.8; color: var(--silver); font-weight: 300; }

/* Featured articles */
.featured-heading em { color: var(--purple); }
.featured-card { border-top: 3px solid var(--purple); }
.featured-card-part {
  position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; background: var(--purple-ghost);
  color: var(--purple); padding: 4px 10px; border-radius: 2px;
}
.featured-card-stat span { color: var(--silver-dark); }

/* Responsive additions */
@media (max-width: 1024px) {
  .blog-announce-content { grid-template-columns: 1fr; }
  .blog-announce-inner { padding: 36px 28px; }
  .blog-announce-hero-img { height: 200px; }
  .gstruct-grid { grid-template-columns: 1fr; }
  .gstruct-img { height: 300px; }
}
@media (max-width: 768px) {
  .gstruct-cards { grid-template-columns: 1fr; }
}

/* ─── HTML BG: no white gap below sticky bar ─── */
html { background: #0e0e1a; }

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — shared page layout styles
   (used by business-setup.html and future service pages)
   ═══════════════════════════════════════════════════════════ */

/* ── Page-specific styles ─────────────────────────────── */

/* Hero */
.page-hero {
  min-height: 52vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px; /* nav height */
}
.page-hero-left {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 80px 8vw;
  position: relative;
}
.page-hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -50px; bottom: 0;
  width: 100px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 40% 0, 100% 50%, 40% 100%, 0 100%);
  z-index: 3;
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--purple-pale);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--purple-pale);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.12;
  color: var(--white); margin-bottom: 24px;
}
.page-hero-title em { font-style: italic; color: var(--purple-pale); }
.page-hero-sub {
  font-size: 15px; line-height: 1.8;
  color: var(--silver-light); font-weight: 300;
  max-width: 400px; margin-bottom: 36px;
}
.page-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.page-hero-stat-item { display: flex; flex-direction: column; }
.page-hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--white); line-height: 1;
}
.page-hero-stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver-dark); margin-top: 4px;
}
.page-hero-right {
  position: relative; overflow: hidden;
}
.page-hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; filter: brightness(0.65) saturate(0.8);
}
.page-hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(100,59,159,0.4) 0%, transparent 70%);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 8vw;
  border-bottom: 1px solid var(--silver-rule);
  font-size: 12px; color: var(--silver-dark);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb-sep { color: var(--silver-rule); }
.breadcrumb-current { color: var(--purple); font-weight: 500; }

/* Main content grid */
.page-body {
  padding: 80px 8vw;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  background: var(--white);
  align-items: start;
}

/* Content left */
.page-content { }

.content-section { margin-bottom: 64px; }
.content-section:last-child { margin-bottom: 0; }

.content-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300; color: var(--text-main);
  line-height: 1.25; margin-bottom: 24px;
}
.content-heading em { font-style: italic; color: var(--purple); }

/* On dark photo backgrounds (why-us section) the purple em is unreadable —
   override to a light colour that reads clearly against the overlay */
.why-us-content .content-heading em { color: var(--purple-pale); }

.content-lead {
  font-size: 16px; line-height: 1.9;
  color: var(--text-muted); font-weight: 300; margin-bottom: 20px;
}

.content-body {
  font-size: 15px; line-height: 1.9;
  color: var(--text-muted); font-weight: 300; margin-bottom: 20px;
}

/* Two-column setup types */
.setup-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 36px 0;
}
.setup-type {
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.setup-type::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--silver);
  transition: background 0.3s;
}
.setup-type.featured::before { background: var(--purple); }
.setup-type:hover { background: var(--white); }
.setup-type-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 14px; display: block;
}
.setup-type-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--text-main);
  margin-bottom: 12px; line-height: 1.3;
}
.setup-type-desc {
  font-size: 14px; line-height: 1.8;
  color: var(--text-muted); font-weight: 300;
}

/* Why work with us grid */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--silver-rule);
}
.expertise-item {
  padding: 18px 4px 18px 0;
  border-bottom: 1px solid var(--silver-rule);
  display: flex; align-items: baseline; gap: 12px;
  font-size: 14px; color: var(--text-muted); font-weight: 300;
}
.expertise-item::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0;
  margin-top: 5px;
}

/* Other services list */
.services-list {
  columns: 2; column-gap: 40px;
  list-style: none; margin-top: 24px;
}
.services-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--silver-rule);
  font-size: 14px; color: var(--text-muted); font-weight: 300;
  display: flex; align-items: center; gap: 10px;
  break-inside: avoid;
}
.services-list li::before {
  content: '→'; color: var(--purple); font-size: 12px; flex-shrink: 0;
}

/* Three benefits strip */
.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 40px 0;
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
}
.benefit-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(168,169,173,0.1);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  font-size: 22px; margin-bottom: 14px; display: block;
  color: var(--purple-pale);
}
.benefit-title {
  font-size: 14px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.benefit-desc {
  font-size: 13px; line-height: 1.75;
  color: var(--silver); font-weight: 300;
}

/* FAQ accordion */
.faq-content { margin-top: 8px; }
.faq-content .faq-item:first-child { border-top: 1px solid var(--silver-rule); }
.faq-content .faq-question::-webkit-details-marker { display: none; }
details[open] .faq-content .faq-icon,

/* Sidebar */
.page-sidebar { position: sticky; top: 92px; }

.sidebar-card {
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card-head {
  background: var(--purple);
  padding: 24px 24px 20px;
}
.sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--white);
  margin-bottom: 6px;
}
.sidebar-card-sub {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.sidebar-card-body { padding: 24px; }

.sidebar-form { display: flex; flex-direction: column; gap: 12px; }
.sidebar-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,169,173,0.15);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sidebar-input::placeholder { color: var(--silver-dark); }
.sidebar-input:focus {
  border-color: var(--purple-pale);
  background: rgba(255,255,255,0.09);
}
.sidebar-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,169,173,0.15);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--silver);
  outline: none; cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
}
.sidebar-select:focus { border-color: var(--purple-pale); }
.sidebar-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,169,173,0.15);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--white);
  outline: none; resize: vertical; min-height: 80px;
  transition: border-color 0.2s;
}
.sidebar-textarea::placeholder { color: var(--silver-dark); }
.sidebar-textarea:focus { border-color: var(--purple-pale); }
.sidebar-submit {
  background: var(--purple);
  color: var(--white);
  border: none; border-radius: 2px;
  padding: 13px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; width: 100%;
  transition: background 0.2s;
}
.sidebar-submit:hover { background: var(--purple-light); }
.sidebar-form-note {
  font-size: 11px; color: var(--silver-dark);
  line-height: 1.5; text-align: center; margin-top: 4px;
}

/* Contact options sidebar card */
.sidebar-contact { background: var(--off-white); border: 1px solid var(--silver-rule); border-radius: 4px; padding: 24px; }
.sidebar-contact-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--silver-dark);
  margin-bottom: 16px;
}
.sidebar-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--silver-rule);
  font-size: 14px;
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item a {
  color: var(--text-main); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.sidebar-contact-item a:hover { color: var(--purple); }
.sidebar-contact-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--purple-ghost); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--purple);
}
.sidebar-contact-icon svg { width: 14px; height: 14px; }

/* Related services sidebar */
.sidebar-related { background: var(--off-white); border: 1px solid var(--silver-rule); border-radius: 4px; padding: 24px; }
.sidebar-related-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--silver-dark);
  margin-bottom: 16px;
}
.sidebar-related-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--silver-rule);
  text-decoration: none; color: var(--text-muted); font-size: 14px;
  font-weight: 300; transition: color 0.2s;
}
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-item:hover { color: var(--purple); }
.sidebar-related-item span { font-size: 16px; opacity: 0.4; }

/* Responsive */
@media (max-width: 1100px) {
  .page-body { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-right { height: 240px; }
  .page-hero-left::after { display: none; }
  .setup-types { grid-template-columns: 1fr; }
  .benefits-strip { grid-template-columns: 1fr; }
  .services-list { columns: 1; }
  .expertise-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — visual sections (business-setup.html etc.)
   ═══════════════════════════════════════════════════════════ */

/* ─── Intro split ─── */
.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}
.page-split-content {
  padding: 80px 5vw 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.page-split-photo {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.page-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  display: block;
  transition: transform 0.6s ease;
}
.page-split-photo:hover img { transform: scale(1.03); }
.page-split-photo-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--purple);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 4px;
  line-height: 1;
}
.page-split-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  display: block; margin-bottom: 4px;
}
.page-split-badge-lbl {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.75; display: block;
}

/* ─── Setup section (Freezone vs Mainland) ─── */
.setup-section {
  padding: 80px 8vw;
  background: var(--off-white);
}
.setup-section-header {
  margin-bottom: 48px;
}
.setup-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.setup-type {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--silver-rule);
  border-top: 3px solid var(--silver);
  transition: box-shadow 0.3s, transform 0.3s;
}
.setup-type.featured { border-top-color: var(--purple); }
.setup-type:hover {
  box-shadow: 0 12px 40px rgba(100,59,159,0.1);
  transform: translateY(-3px);
}
.setup-type-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}
.setup-type-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  display: block;
  transition: transform 0.5s;
}
.setup-type:hover .setup-type-img img { transform: scale(1.04); }
.setup-type-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.5) 0%, transparent 60%);
}
.setup-type-body {
  padding: 28px 28px 32px;
}
.setup-type-points {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.setup-type-points li {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.setup-type-points li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0;
}

/* ─── Process steps ─── */
.process-section {
  padding: 80px 8vw;
  background: var(--charcoal);
}
.process-header { margin-bottom: 56px; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,169,173,0.1);
  border-radius: 4px;
  position: relative;
}
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 400;
  color: var(--silver-dark); letter-spacing: 0.1em;
  margin-bottom: 12px; display: block;
}
.process-step-icon {
  font-size: 22px; color: var(--purple-pale);
  margin-bottom: 14px; display: block; line-height: 1;
}
.process-step-title {
  font-size: 15px; font-weight: 500;
  color: var(--white); margin-bottom: 10px;
}
.process-step-desc {
  font-size: 13px; line-height: 1.8;
  color: var(--silver); font-weight: 300;
}
.process-step-arrow {
  color: var(--silver-dark);
  font-size: 20px;
  padding: 0 12px;
  flex-shrink: 0;
  margin-top: 52px;
  opacity: 0.5;
}

/* ─── Why us — full-width photo bg ─── */
.why-us-section {
  position: relative;
  padding: 80px 8vw;
  overflow: hidden;
}
.why-us-photo {
  position: absolute; inset: 0; z-index: 0;
}
.why-us-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
  display: block;
}
.why-us-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(100,59,159,0.6) 0%, rgba(26,26,46,0.85) 100%);
}
.why-us-content {
  position: relative; z-index: 2;
  max-width: 900px;
}
.why-us-content .expertise-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}
.why-us-content .expertise-item {
  color: var(--silver-light);
  border-bottom-color: rgba(168,169,173,0.15);
  padding: 14px 0;
}
.why-us-content .expertise-item:first-child,
.why-us-content .expertise-item:nth-child(2),
.why-us-content .expertise-item:nth-child(3),
.why-us-content .expertise-item:nth-child(4) {
  border-top: 1px solid rgba(168,169,173,0.15);
}
.why-us-content .expertise-item::before {
  background: var(--purple-pale);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-split { grid-template-columns: 1fr; }
  .page-split-photo { min-height: 300px; }
  .setup-compare { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-step-arrow { display: none; }
  .why-us-content .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-content .expertise-item:nth-child(3),
  .why-us-content .expertise-item:nth-child(4) { border-top: none; }
}
@media (max-width: 768px) {
  .why-us-content .expertise-grid { grid-template-columns: 1fr; }
  .why-us-content .expertise-item:nth-child(2) { border-top: none; }
}

/* ═══════════════════════════════════════════════════════════
   NAV — DROPDOWN + MOBILE HAMBURGER
   ═══════════════════════════════════════════════════════════ */

/* ─── Hamburger button (hidden on desktop) ─── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 110;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* Animate to X when active */
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; width: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Dropdown container ─── */
.nav-has-dropdown { position: relative; }

/* The key fix: top:100% + padding-top bridges the gap so
   the mouse never leaves the hover zone moving to the menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 16px;          /* invisible bridge — fills the gap */
  width: 288px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 300;
}

/* The visible card is a child so it doesn't block the bridge */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 10px;          /* just above the card, creates the arrow tip */
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--silver-rule);
  border-top: 1px solid var(--silver-rule);
  rotate: 45deg;
  z-index: 1;
}

.nav-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--silver-rule);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.14), 0 4px 12px rgba(26,26,46,0.06);
  padding: 6px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Show on hover — transition-delay 0s so it shows instantly */
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

/* Chevron on parent */
.nav-has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  rotate: 45deg;
  margin-top: -2px;
  opacity: 0.55;
  transition: rotate 0.2s, margin-top 0.2s, opacity 0.2s;
}
.nav-has-dropdown:hover > a::after {
  rotate: 225deg;
  margin-top: 4px;
  opacity: 0.9;
}

/* ─── Dropdown items ─── */
.nav-dropdown li { padding: 0; }

.nav-dropdown li:first-child {
  border-bottom: 1px solid var(--silver-rule);
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.nav-dropdown li a:hover { background: var(--purple-ghost); }
.nav-dropdown li a:hover .nav-dd-icon { color: var(--purple); }

.nav-dd-icon {
  font-size: 10px;
  color: var(--silver-dark);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  transition: color 0.15s;
}

.nav-dropdown li a > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown li a strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  display: block;
}
.nav-dropdown li a em {
  font-size: 11px;
  font-style: normal;
  color: var(--silver-dark);
  font-weight: 300;
  display: block;
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }

  /* Hide nav links by default; shown when .active */
  #navLinks {
    display: none;
    position: absolute;
    top: 72px;          /* nav height */
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--silver-rule);
    border-bottom: 1px solid var(--silver-rule);
    box-shadow: 0 8px 32px rgba(26,26,46,0.1);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
    list-style: none;
  }
  #navLinks.active { display: flex; }

  #navLinks > li > a {
    display: block;
    padding: 13px 24px;
    font-size: 14px;
    color: var(--text-main);
    border-bottom: 1px solid var(--silver-rule);
  }
  #navLinks > li:last-child > a { border-bottom: none; }

  /* Mobile dropdown: push down inline */
  .nav-has-dropdown { position: static; }
  .nav-has-dropdown > a::after { display: none; }

  .nav-dropdown {
    position: static;
    transform: none;
    padding-top: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .nav-dropdown::after { display: none; }

  .nav-dropdown-inner {
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--off-white);
    padding: 4px 0;
  }

  .nav-dropdown li a {
    padding: 10px 36px;
  }
  .nav-dropdown li:first-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* CTA full width on mobile */
  .nav-cta {
    margin: 8px 16px 0;
    display: block;
    text-align: center;
    padding: 12px !important;
    border-radius: 2px;
  }
}

/* ─── SIDEBAR FORM — terms + feedback ─── */
.sidebar-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}
.sidebar-terms input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--purple);
  cursor: pointer;
}
.sidebar-terms span {
  font-size: 12px;
  color: var(--silver-dark);
  line-height: 1.5;
}
.sidebar-terms span a {
  color: var(--purple-pale);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sidebar-form-msg {
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: 2px;
  margin-top: 4px;
}
.sidebar-form-msg.success {
  background: rgba(31,186,88,0.12);
  color: #1fba58;
  border: 1px solid rgba(31,186,88,0.25);
}
.sidebar-form-msg.error {
  background: rgba(226,75,74,0.1);
  color: #c0392b;
  border: 1px solid rgba(226,75,74,0.2);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Info cards row ─── */
.contact-cards-section {
  padding: 64px 8vw;
  background: var(--off-white);
  border-bottom: 1px solid var(--silver-rule);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--silver-rule);
  border-top: 3px solid var(--silver);
  border-radius: 4px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-card:first-child { border-top-color: var(--purple); }
.contact-card:hover {
  box-shadow: 0 8px 32px rgba(100,59,159,0.08);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--purple-ghost);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.contact-card-icon svg {
  width: 20px; height: 20px;
  stroke: var(--purple); stroke-width: 1.5;
}
.contact-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--silver-dark);
  margin-bottom: 6px;
}
.contact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--text-main);
  line-height: 1.3; margin-bottom: 12px;
}
.contact-card-text {
  font-size: 13px; line-height: 1.8; color: var(--text-muted);
  font-weight: 300; flex: 1; margin-bottom: 16px;
}
.contact-card-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple); text-decoration: none;
  border-bottom: 1px solid rgba(100,59,159,0.25); padding-bottom: 1px;
  transition: border-color 0.2s; display: inline-block;
}
.contact-card-link:hover { border-color: var(--purple); }
.contact-card-actions {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto;
}
.contact-card-btn-primary {
  background: var(--purple); color: var(--white);
  padding: 9px 16px; border-radius: 2px; font-size: 12px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.contact-card-btn-primary:hover { background: var(--purple-light); }
.contact-card-btn-wa {
  background: #25d366; color: var(--white);
  padding: 9px 14px; border-radius: 2px; font-size: 12px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: background 0.2s;
}
.contact-card-btn-wa:hover { background: #1fba58; }

/* ─── Main form + map section ─── */
.contact-main-section {
  padding: 80px 8vw;
  background: var(--white);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ─── Form column ─── */
.contact-form-col {}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.contact-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--silver-dark);
}
.contact-input {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-input::placeholder { color: var(--silver-dark); }
.contact-input:focus {
  border-color: var(--purple);
  background: var(--white);
}
.contact-select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-main);
  outline: none; cursor: pointer; appearance: none;
  transition: border-color 0.2s;
}
.contact-select:focus { border-color: var(--purple); background: var(--white); }
.contact-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-main);
  outline: none; resize: vertical; min-height: 140px;
  transition: border-color 0.2s;
}
.contact-textarea::placeholder { color: var(--silver-dark); }
.contact-textarea:focus { border-color: var(--purple); background: var(--white); }
.contact-submit {
  background: var(--purple); color: var(--white);
  border: none; border-radius: 2px;
  padding: 15px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  width: 100%;
}
.contact-submit:hover { background: var(--purple-light); transform: translateY(-1px); }

/* ─── Map column ─── */
.contact-map-col {}
.contact-map-wrap {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--silver-rule);
  margin-bottom: 24px;
}
.contact-office-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--silver-rule);
  border-bottom: 1px solid var(--silver-rule);
  margin-bottom: 24px;
}
.contact-office-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-office-row svg {
  flex-shrink: 0; color: var(--purple); margin-top: 2px;
  stroke: var(--purple);
}
.contact-office-row a {
  color: var(--purple); text-decoration: none;
  transition: color 0.2s;
}
.contact-office-row a:hover { color: var(--purple-light); }

/* ─── Global offices strip ─── */
.contact-global-strip {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 20px 24px;
}
.contact-global-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--silver-dark);
  margin-bottom: 14px;
}
.contact-global-items {
  display: flex; flex-direction: column; gap: 10px;
}
.contact-global-item {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  padding: 8px 0;
  border-bottom: 1px solid rgba(168,169,173,0.1);
  transition: opacity 0.2s;
}
.contact-global-item:last-child { border-bottom: none; }
.contact-global-item:hover { opacity: 0.8; }
.contact-global-flag { font-size: 24px; flex-shrink: 0; }
.contact-global-info {
  display: flex; flex-direction: column; gap: 2px;
}
.contact-global-info strong {
  font-size: 13px; font-weight: 500; color: var(--white);
}
.contact-global-info em {
  font-size: 11px; font-style: normal;
  color: var(--silver-dark);
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRIVACY POLICY / LEGAL DOCUMENT PAGES
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero graphic (no photo — SVG shield) ─── */
.policy-hero-graphic {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.policy-hero-shield svg {
  width: 140px; height: 168px;
  opacity: 0.6;
}
.policy-hero-lines {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; gap: 18px; padding: 40px;
}
.policy-hero-lines span {
  display: block; height: 1px;
  background: rgba(196,168,232,0.12);
  border-radius: 1px;
}

/* ─── Page layout: TOC left, content right ─── */
.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 8vw;
  align-items: start;
}

/* ─── TOC sidebar ─── */
.policy-toc {
  position: sticky;
  top: 92px;
  padding-right: 48px;
}
.policy-toc-inner {
  border-right: 1px solid var(--silver-rule);
  padding-right: 32px;
}
.policy-toc-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--silver-dark);
  margin-bottom: 16px;
}
.policy-toc-link {
  display: block;
  font-size: 13px; font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 0 7px 12px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.policy-toc-link:hover { color: var(--purple); border-left-color: var(--purple-pale); }
.policy-toc-link.active { color: var(--purple); border-left-color: var(--purple); font-weight: 500; }
.policy-toc-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--silver-rule);
}
.policy-toc-cta p {
  font-size: 12px; color: var(--silver-dark);
  margin-bottom: 10px; line-height: 1.5;
}
.policy-toc-btn {
  display: inline-block;
  background: var(--purple); color: var(--white);
  padding: 9px 16px; border-radius: 2px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.policy-toc-btn:hover { background: var(--purple-light); }

/* ─── Policy document content ─── */
.policy-content { max-width: 720px; }

.policy-meta {
  display: flex; flex-wrap: wrap; gap: 6px 0;
  align-items: center;
  font-size: 11px; color: var(--silver-dark);
  font-weight: 400; letter-spacing: 0.05em;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--silver-rule);
}
.policy-meta-sep {
  margin: 0 8px; color: var(--silver-rule);
}

.policy-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.policy-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--text-main); line-height: 1.2;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--silver-rule);
}
.policy-section p {
  font-size: 14px; line-height: 1.9;
  color: var(--text-muted); font-weight: 300;
  margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a {
  color: var(--purple); text-decoration: underline;
  text-underline-offset: 2px; transition: color 0.2s;
}
.policy-section a:hover { color: var(--purple-light); }
.policy-section strong { font-weight: 500; color: var(--text-main); }
.policy-section em { font-style: italic; }

.policy-list {
  list-style: none;
  margin: 12px 0 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.policy-list li {
  font-size: 14px; line-height: 1.8;
  color: var(--text-muted); font-weight: 300;
  display: flex; align-items: baseline; gap: 12px;
  padding-left: 4px;
}
.policy-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0;
  margin-top: 8px;
}

.policy-highlight {
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  border-left: 3px solid var(--purple);
  border-radius: 4px;
  padding: 24px 24px 20px;
  margin: 20px 0;
}
.policy-highlight-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 14px;
}

.policy-contact-block {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 20px;
}
.policy-contact-item {
  display: flex; gap: 16px;
  align-items: baseline;
  font-size: 14px; border-bottom: 1px solid rgba(168,169,173,0.1);
  padding-bottom: 14px;
}
.policy-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.policy-contact-item strong {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver-dark);
  flex-shrink: 0; width: 68px;
}
.policy-contact-item a,
.policy-contact-item span {
  color: var(--silver-light); font-weight: 300;
  text-decoration: none; line-height: 1.6;
}
.policy-contact-item a:hover { color: var(--purple-pale); }

/* ─── Related pages strip ─── */
.policy-related {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--silver-rule);
}
.policy-related-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--silver-rule);
  border-radius: 2px;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 13px; color: var(--text-muted);
  font-weight: 300; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.policy-related-item:hover {
  background: var(--purple-ghost);
  color: var(--purple);
  border-color: var(--purple-pale);
}
.policy-related-icon { color: var(--silver-dark); font-size: 12px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .policy-layout {
    grid-template-columns: 1fr;
    padding: 48px 6vw;
  }
  .policy-toc {
    position: static;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .policy-toc-inner {
    border-right: none;
    border-bottom: 1px solid var(--silver-rule);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .policy-toc nav {
    display: flex; flex-wrap: wrap; gap: 4px 0;
  }
  .policy-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 12px;
    display: inline-block;
  }
  .policy-toc-link.active { border-bottom-color: var(--purple); border-left: none; }
  .policy-toc-cta { display: none; }
  .policy-content { max-width: 100%; }
}

@media (max-width: 600px) {
  .policy-meta { flex-direction: column; gap: 4px; }
  .policy-meta-sep { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HOLDING STRUCTURE DIAGRAM
   ═══════════════════════════════════════════════════════════ */
.holding-diagram-wrap {
  margin-top: 48px;
  background: rgba(10,10,26,0.6);
  border: 1px solid rgba(100,59,159,0.25);
  border-radius: 6px;
  overflow: hidden;
  padding: 8px;
}
.holding-diagram-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .holding-diagram-wrap { overflow-x: auto; }
  .holding-diagram-svg { min-width: 640px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Stats band ─── */
.about-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 56px 8vw;
  background: var(--charcoal);
  border-top: 1px solid rgba(168,169,173,0.08);
  border-bottom: 1px solid rgba(168,169,173,0.08);
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
}
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.about-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dark);
  text-align: center;
}
.about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(168,169,173,0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about-stats-band { gap: 32px; }
  .about-stat-divider { display: none; }
  .about-stat { padding: 0 16px; }
}

/* ─── Quote section ─── */
.about-quote-section {
  padding: 80px 8vw;
  background: var(--off-white);
}
.about-quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  line-height: 0.6;
  color: var(--purple);
  opacity: 0.3;
  margin-bottom: 8px;
  display: block;
}
.about-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 36px;
}
.about-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--silver-rule);
  border-radius: 60px;
  padding: 10px 24px 10px 10px;
}
.about-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.about-quote-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}
.about-quote-role {
  font-size: 11px;
  color: var(--silver-dark);
  margin-top: 2px;
}

/* ─── Team section ─── */
.about-team-section {
  padding: 80px 8vw;
  background: var(--white);
}
.about-team-header {
  margin-bottom: 64px;
}

.about-team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid var(--silver-rule);
}
.about-team-member:last-child { border-bottom: 1px solid var(--silver-rule); }

.about-member-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 92px;
}
.about-member-img-wrap {
  width: 180px;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--silver-rule);
  background: var(--off-white);
}
.about-member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: filter 0.4s;
  display: block;
}
.about-team-member:hover .about-member-img-wrap img { filter: grayscale(0%); }

.about-member-links { display: flex; flex-direction: column; gap: 8px; }
.about-member-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.about-member-li:hover { color: var(--purple); }

.about-member-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.about-member-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 10px;
}
.about-member-focus {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--silver-dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--silver-rule);
}
.about-member-bio {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 12px;
}

/* ─── CTA section ─── */
.about-cta-section {
  background: var(--charcoal);
  padding: 80px 8vw;
  text-align: center;
  border-top: 3px solid var(--purple);
}
.about-cta-inner { max-width: 640px; margin: 0 auto; }
.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta-btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.about-cta-btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); }
.about-cta-btn-wa {
  background: #25d366;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.about-cta-btn-wa:hover { background: #1fba58; transform: translateY(-1px); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .about-team-member {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-member-photo-col {
    position: static;
    flex-direction: row;
    align-items: flex-start;
  }
  .about-member-img-wrap {
    width: 100px;
    height: 120px;
    flex-shrink: 0;
  }
}
