/* ==============================================
   LK CONSULTANCY — PREMIUM CORPORATE REDESIGN v3
   Palette: Midnight Navy + Champagne Gold + White
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ============================================== */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: #1a1a2e;
    background: #ffffff;
    overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
    --navy:        #0B1A3B;
    --navy-mid:    #0D2045;
    --navy-light:  #162B5C;
    --gold:        #C9A84C;
    --gold-light:  #E2C47A;
    --gold-pale:   #F7EFD8;
    --white:       #FFFFFF;
    --off-white:   #F8F7F4;
    --smoke:       #F2F0EB;
    --text-dark:   #1a1a2e;
    --text-mid:    #3d3d5c;
    --text-muted:  #7a7a99;
    --border:      #E8E4DC;

    --shadow-sm:   0 2px 12px rgba(11,26,59,.06);
    --shadow-md:   0 8px 32px rgba(11,26,59,.10);
    --shadow-lg:   0 20px 60px rgba(11,26,59,.15);
    --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --ease: cubic-bezier(.4,0,.2,1);
    --max:  1200px;
}

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }
.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy);
}

/* ── FADE-IN ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* PAGE LOADER — styles live in loader.blade.php */

/* ══════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════ */
.top-bar {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(201,168,76,.2);
    padding: .5rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    position: fixed; width: 100%; top: 0; z-index: 1001;
    height: 38px;
    display: flex; align-items: center;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.75rem; }
.top-bar-right { margin-left: 1rem; padding-left: 1.25rem; border-left: 1px solid rgba(201,168,76,.2); }
.top-bar-left .top-bar-item:first-child { padding-right: 1.25rem; border-right: 1px solid rgba(201,168,76,.2); }
.top-bar-item {
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.65);
    transition: color .2s;
}
.top-bar-item:hover { color: var(--gold); }
.top-bar-item i { color: var(--gold); font-size: .75rem; }
@media (max-width: 640px) {
    .top-bar-right { display: none; }
}

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: fixed; width: 100%;
    top: 38px; z-index: 1000;
    transition: box-shadow .3s var(--ease), top .3s var(--ease);
}
.header.scrolled {
    box-shadow: 0 4px 24px rgba(11,26,59,.12);
}

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.logo-container {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
}
.logo-image { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); letter-spacing: .5px;
    line-height: 1;
}
.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: .62rem; font-weight: 400;
    color: var(--gold); letter-spacing: 2.5px;
    text-transform: uppercase; margin-top: 2px;
}

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu li a {
    font-size: .84rem; font-weight: 500;
    color: var(--text-mid);
    padding: .5rem .85rem;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-menu li a:hover { color: var(--navy); background: var(--smoke); }
.nav-menu .mobile-appointment { display: none; }

/* CTA button in nav */
.appointment-btn {
    background: var(--gold);
    color: var(--navy) !important;
    font-size: .84rem; font-weight: 600;
    padding: .65rem 1.4rem;
    border-radius: var(--r-sm);
    letter-spacing: .3px;
    transition: background .2s, transform .2s, box-shadow .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.appointment-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.mobile-menu-btn {
    display: none;
    width: 42px; height: 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: transparent;
    cursor: pointer;
    align-items: center; justify-content: center;
    color: var(--navy); font-size: 1.1rem;
    transition: border-color .2s, background .2s;
}
.mobile-menu-btn:hover { background: var(--smoke); border-color: var(--navy); }

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 110px; /* top-bar + header */
}

.hero-background {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg-image {
    width: 100%; height: 100%; object-fit: cover;
    transform-origin: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,26,59,.92) 0%,
        rgba(13,32,69,.85) 45%,
        rgba(11,26,59,.60) 100%
    );
}

/* Decorative diagonal stripe */
.hero::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 38%;
    background: linear-gradient(105deg, transparent 0%, rgba(201,168,76,.06) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative; z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    /* bottom padding must always clear the stats bar (≈100px on desktop 1-row) */
    padding: 6rem 2rem 130px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--gold-light);
    font-size: .73rem; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: .45rem 1.1rem; border-radius: 100px;
    margin-bottom: 2rem;
}
.hero-eyebrow i { font-size: .65rem; }

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.75rem;
    max-width: 700px;
}
.hero-headline .gold-line {
    color: var(--gold);
    display: block;
    font-style: italic;
}
.hero-headline .underline-gold {
    position: relative; display: inline;
}
.hero-headline .underline-gold::after {
    content: '';
    position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-size: .9rem; font-weight: 600;
    padding: .9rem 2.2rem;
    border-radius: var(--r-sm);
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: .3px;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: .9rem; font-weight: 500;
    padding: .9rem 2.2rem;
    border-radius: var(--r-sm);
    transition: border-color .2s, background .2s;
}
.btn-outline-white:hover {
    border-color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.07);
}

/* Hero trust strip */
.hero-trust-strip {
    display: flex; align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-pill {
    display: flex; align-items: center; gap: .55rem;
    color: rgba(255,255,255,.65);
    font-size: .8rem;
    padding-right: 2rem;
}
.trust-pill i { color: var(--gold); font-size: .75rem; }
.trust-sep {
    width: 1px; height: 18px;
    background: rgba(255,255,255,.2);
    margin-right: 2rem;
}

/* ── Hero stats bar ── */
.hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: rgba(201,168,76,.95);
    backdrop-filter: blur(12px);
}
.hero-stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}
.hstat {
    padding: 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(11,26,59,.15);
}
.hstat:last-child { border-right: none; }
.hstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700;
    color: var(--navy); line-height: 1;
}
.hstat-label {
    font-size: .72rem; font-weight: 500;
    color: rgba(11,26,59,.7);
    letter-spacing: .5px;
    margin-top: .25rem;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   SECTION HEADERS (shared)
══════════════════════════════════════════════ */
.section-wrap { padding: 6rem 0; }
.section-wrap.bg-smoke { background: var(--smoke); }
.section-wrap.bg-navy  { background: var(--navy); }

.sec-label {
    display: inline-block;
    font-size: .7rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .85rem;
    position: relative;
    padding-left: 2rem;
}
.sec-label::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1.4rem; height: 1.5px;
    background: var(--gold);
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.sec-title.on-dark { color: #fff; }

.sec-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}
.sec-desc.on-dark { color: rgba(255,255,255,.6); }

.sec-header { margin-bottom: 3.5rem; }
.sec-header.centered { text-align: center; }
.sec-header.centered .sec-label { padding-left: 0; }
.sec-header.centered .sec-label::before { display: none; }
.sec-header.centered .sec-desc { margin: 0 auto; }

/* Gold divider line */
.gold-rule {
    width: 56px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin: 1.25rem 0 1.5rem;
}
.sec-header.centered .gold-rule { margin: 1.25rem auto 1.5rem; }

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text-col .sec-desc { max-width: 100%; }

.about-body {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    margin: 2rem 0 2.5rem;
}
.feat-item {
    display: flex; align-items: flex-start; gap: .7rem;
    font-size: .88rem; color: var(--text-mid);
}
.feat-item i { color: var(--gold); margin-top: .2rem; font-size: .85rem; flex-shrink: 0; }

.btn-navy {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--navy);
    color: #fff;
    font-size: .9rem; font-weight: 500;
    padding: .9rem 2rem;
    border-radius: var(--r-sm);
    transition: background .2s, transform .2s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-navy i { font-size: .8rem; transition: transform .2s; }
.btn-navy:hover i { transform: translateX(3px); }

/* Founder card */
.founder-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.founder-photo-wrap {
    position: relative; overflow: hidden; height: 280px;
}
.founder-photo-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s var(--ease);
}
.founder-card:hover .founder-photo-wrap img { transform: scale(1.05); }
.founder-photo-overlay {
    position: absolute; inset: 0;
    background: rgba(11,26,59,.65);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .5rem;
    opacity: 0; transition: opacity .3s;
    color: #fff; font-size: .85rem; font-weight: 500;
}
.founder-photo-overlay i { font-size: 1.8rem; color: var(--gold); }
.founder-card:hover .founder-photo-overlay { opacity: 1; }

.founder-body { padding: 1.75rem 2rem 2rem; }
.founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--navy); margin-bottom: .2rem;
}
.founder-cred { font-size: .78rem; color: var(--gold); font-weight: 600; letter-spacing: .5px; margin-bottom: 1rem; }
.founder-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }

.founder-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.fbadge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--navy);
    font-size: .72rem; font-weight: 600;
    padding: .3rem .75rem; border-radius: 100px;
}
.fbadge i { color: var(--gold); font-size: .65rem; }

.founder-stats-row {
    display: flex; gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.fstat .fstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.fstat .fstat-label { font-size: .7rem; color: var(--text-muted); margin-top: .2rem; }

.pdf-hint {
    display: flex; align-items: center; gap: .5rem;
    margin-top: 1.25rem;
    font-size: .78rem; color: var(--gold); font-weight: 500;
}

/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.svc-icon {
    width: 58px; height: 58px;
    background: var(--gold-pale);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--gold);
    margin-bottom: 1.5rem;
    transition: background .3s, color .3s;
}
.service-card:hover .svc-icon {
    background: var(--gold);
    color: var(--navy);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
}
.service-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo-wrap {
    position: relative; overflow: hidden;
    height: 260px;
}
.team-photo-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: top center;
    transition: transform .5s var(--ease);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.06); }

.team-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(11,26,59,.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1.25rem;
    gap: .6rem;
    opacity: 0; transition: opacity .3s;
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.tsoc-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .8rem;
    transition: background .2s, border-color .2s;
}
.tsoc-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.team-body { padding: 1.5rem 1.75rem 2rem; }
.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--navy); margin-bottom: .25rem;
}
.team-role {
    font-size: .78rem; color: var(--gold);
    font-weight: 600; letter-spacing: .5px;
    text-transform: uppercase; margin-bottom: 1rem;
}
.team-bio-text {
    font-size: .85rem; color: var(--text-muted); line-height: 1.75;
    margin-bottom: 1rem;
}

.team-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.team-tag {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--smoke);
    border: 1px solid var(--border);
    color: var(--text-mid);
    font-size: .68rem; font-weight: 500;
    padding: .25rem .65rem; border-radius: 100px;
}
.team-tag i { font-size: .6rem; color: var(--gold); }

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section { padding: 6rem 0; background: var(--smoke); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}

.faq-category {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    position: relative; overflow: hidden;
}
.faq-category::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
}

.faq-cat-head {
    display: flex; align-items: center; gap: .85rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.faq-cat-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold);
    flex-shrink: 0;
}
.faq-cat-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--navy);
}

.faq-items { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item:hover, .faq-item.active { border-color: var(--gold); }

.faq-question {
    padding: 1rem 1.1rem;
    background: var(--off-white);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    user-select: none;
    transition: background .2s;
}
.faq-item.active .faq-question { background: var(--gold-pale); }
.faq-question span { font-size: .88rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-question i { color: var(--gold); font-size: .8rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
    background: #fff;
}
.faq-answer p { padding: 1rem 1.1rem; margin: 0; font-size: .85rem; color: var(--text-mid); line-height: 1.75; }
.faq-answer ul { padding: 0 1.1rem 1rem 2rem; margin: 0; }
.faq-answer li { font-size: .85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: .35rem; }
.faq-answer strong { color: var(--navy); }

/* ══════════════════════════════════════════════
   WHY CHOOSE US / QUALITY FEATURES
══════════════════════════════════════════════ */
.quality-features { padding: 6rem 0; background: var(--navy); }

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.quality-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: background .3s, border-color .3s, transform .3s;
}
.quality-item:hover {
    background: rgba(201,168,76,.08);
    border-color: rgba(201,168,76,.25);
    transform: translateY(-4px);
}

.quality-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: background .3s;
}
.quality-item:hover .quality-icon {
    background: var(--gold);
    color: var(--navy);
}

.quality-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: #fff; font-weight: 700;
    margin-bottom: .75rem;
}
.quality-item p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.8; }

/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats { padding: 5rem 0; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stats-item {
    text-align: center;
    padding: 2rem;
    border-right: 1px solid var(--border);
}
.stats-item:last-child { border-right: none; }

.stats-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem; font-weight: 700;
    color: var(--navy); line-height: 1;
}
.stats-label {
    display: block;
    font-size: .78rem; font-weight: 500;
    color: var(--text-muted);
    letter-spacing: .5px;
    margin-top: .5rem;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════════ */
.clients-section { padding: 6rem 0; background: #fff; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.client-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.75rem 1.25rem;
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 1rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.client-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.client-logo-container {
    height: 60px; display: flex; align-items: center; justify-content: center;
}
.client-logo {
    max-height: 55px; max-width: 130px;
    object-fit: contain; filter: grayscale(30%);
    transition: filter .3s;
}
.client-card:hover .client-logo { filter: grayscale(0%); }

.client-text-container h4 { font-size: .85rem; color: var(--navy); font-weight: 600; margin-bottom: .2rem; }
.client-text-container p { font-size: .73rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact { padding: 6rem 0; background: var(--smoke); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem;
}

.contact-info-panel {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 3rem 2.5rem;
    color: #fff;
}
.contact-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: #fff; margin-bottom: 2rem;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.cinfo-item { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: .95rem;
}
.cinfo-label { font-size: .72rem; font-weight: 600; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; margin-bottom: .3rem; }
.cinfo-value { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.cinfo-value a { color: rgba(255,255,255,.75); transition: color .2s; }
.cinfo-value a:hover { color: var(--gold); }

.emergency-panel {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.emergency-label { font-size: .7rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: .5rem; }
.emergency-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
}

/* Contact form */
.contact-form-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem 2.25rem;
}
.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--navy); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--navy); letter-spacing: .3px; }
.form-group input, .form-group textarea, .form-group select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: .75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem; color: var(--text-dark);
    background: var(--off-white);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    font-size: .92rem; font-weight: 600;
    padding: 1rem;
    border: none; border-radius: var(--r-sm);
    cursor: pointer;
    transition: background .2s, transform .2s;
    letter-spacing: .3px;
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
    background: var(--navy-mid);
    color: rgba(255,255,255,.6);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.25rem; }
.footer-brand-icon {
    width: 42px; height: 42px;
    background: var(--gold);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.footer-brand-icon img { width: 26px; object-fit: contain; filter: brightness(0) invert(0); }
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1;
}
.footer-brand-sub { font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.footer-tagline { font-size: .85rem; line-height: 1.8; margin-bottom: 1.75rem; }

.footer-socials { display: flex; gap: .6rem; }
.fsoc {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .8rem;
    transition: background .2s, border-color .2s, color .2s;
}
.fsoc:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 700;
    color: #fff; margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
    font-size: .84rem; color: rgba(255,255,255,.55);
    transition: color .2s, padding-left .2s;
    display: block;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .65rem; font-size: .83rem; }
.footer-contact-item i { color: var(--gold); margin-top: .15rem; font-size: .75rem; flex-shrink: 0; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0;
    font-size: .75rem;
    flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════
   SUB-PAGE SHARED STYLES
══════════════════════════════════════════════ */
.main-content { padding-top: 110px; min-height: 100vh; }

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(201,168,76,0.08)'/%3E%3C/svg%3E") repeat;
}
.page-hero h1 { color: #fff; font-size: 2.5rem; margin-bottom: .75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto; position: relative; }

/* ── Shared sub-page hero (gallery, news, etc.) ── */
.pg-hero {
    position: relative;
    background: var(--navy);
    padding: 7rem 0 5rem;
    overflow: hidden;
    text-align: center;
}
.pg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(201,168,76,.1) 0%, transparent 70%);
    pointer-events: none;
}
.pg-hero-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(201,168,76,.025) 40px, rgba(201,168,76,.025) 41px
    );
}
.pg-hero-inner { position: relative; z-index: 2; }
.pg-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 1.25rem;
}
.pg-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700; color: #fff; margin-bottom: 1.25rem;
}
.pg-title span { color: var(--gold); font-style: italic; }
.pg-desc {
    font-size: 1rem; color: rgba(255,255,255,.6);
    max-width: 580px; margin: 0 auto; line-height: 1.8;
}

/* ── Shared filter tabs (gallery, news, etc.) ── */
.gallery-filters-wrap {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 110px; z-index: 50;
}
.gallery-filters {
    display: flex; align-items: center;
    gap: .35rem; padding: 1rem 0;
    overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-filters::-webkit-scrollbar { display: none; }
.gf-tab {
    white-space: nowrap;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem; font-weight: 500;
    padding: .5rem 1.1rem; border-radius: 100px;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
}
.gf-tab:hover { border-color: var(--gold); color: var(--navy); }
.gf-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ══════════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .appointment-btn { display: none; }
    .mobile-menu-btn { display: flex; }

    .nav-menu.active {
        display: flex; flex-direction: column;
        position: fixed;
        top: 110px; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem 2rem;
        gap: .25rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }
    .nav-menu.active li a {
        padding: .75rem 1rem;
        display: block;
        font-size: .92rem;
    }
    .nav-menu .mobile-appointment { display: block; margin-top: .5rem; }
    .nav-menu .mobile-appointment a {
        background: var(--gold) !important;
        color: var(--navy) !important;
        border-radius: var(--r-sm) !important;
        padding: .85rem 1.25rem !important;
        font-weight: 600;
        text-align: center;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – TABLET (max 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stats-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .stats-item:last-child { border-bottom: none; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .faq-grid { grid-template-columns: 1fr; }
    /* stats bar 2×2 on tablet ≈ 210px */
    .hero-container { padding-bottom: 230px; }
    .hero-stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .hstat { border-right: none; border-bottom: 1px solid rgba(11,26,59,.12); }
    .hstat:nth-child(odd) { border-right: 1px solid rgba(11,26,59,.12); }
    .hstat:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – MOBILE (max 640px)
══════════════════════════════════════════════ */
@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }
    .section-wrap { padding: 4rem 0; }

    .hero-headline { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-gold, .btn-outline-white { width: 100%; text-align: center; }

    .hero-trust-strip { flex-direction: column; gap: .5rem; }
    .trust-sep { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-item { border-right: none !important; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    /* stats bar is 2×2 on mobile ≈ 210px — push content above it */
    .hero-container { padding-bottom: 240px; }
    .hero-trust-strip { display: none; }
    .hero-stats-bar .container { grid-template-columns: 1fr 1fr; }

    .faq-grid { grid-template-columns: 1fr; }
    .quality-features { padding: 4rem 0; }
    .clients-section { padding: 4rem 0; }
    .contact { padding: 4rem 0; }
}

/* ══════════════════════════════════════════════
   SERVICE CARD — CTA LINK VARIANT
══════════════════════════════════════════════ */
.service-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.service-card--link h3,
.service-card--link p { color: inherit; }

.svc-cta {
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: gap .2s;
}
.service-card--link:hover .svc-cta { gap: .7rem; }

/* ══════════════════════════════════════════════
   TESTIMONIALS & CASE STUDIES
══════════════════════════════════════════════ */
.bg-navy-deep { background: var(--navy); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.testi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--r-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background .3s, transform .3s;
}
.testi-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }

.testi-quote { font-size: 1.4rem; color: var(--gold); opacity: .7; }

.testi-body {
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,168,76,.15);
}
.testi-avatar {
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800; letter-spacing: .5px;
    flex-shrink: 0;
}
.testi-name  { font-size: .82rem; font-weight: 700; color: #fff; }
.testi-org   { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .1rem; }

/* Case Studies Strip */
.case-studies-strip {
    border-top: 1px solid rgba(201,168,76,.2);
    padding-top: 3rem;
}
.cs-header { margin-bottom: 1.75rem; }
.cs-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700; color: #fff;
}

.cs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.cs-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-md);
    padding: 1.75rem;
    transition: background .3s;
}
.cs-card:hover { background: rgba(255,255,255,.07); }

.cs-tag {
    display: inline-block;
    font-size: .68rem; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.2);
    padding: .2rem .6rem; border-radius: 20px;
    margin-bottom: .85rem;
}
.cs-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; color: #fff; margin-bottom: .65rem; line-height: 1.4;
}
.cs-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1rem; }
.cs-outcome {
    font-size: .78rem; font-weight: 700;
    color: #6ee7a0;
    display: flex; align-items: center; gap: .4rem;
}
.cs-outcome i { font-size: .7rem; }

/* Testimonials responsive */
@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .cs-cards { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   SERVICE DETAIL PAGES
══════════════════════════════════════════════ */
.pg-breadcrumb {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: 1rem;
}
.pg-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.pg-breadcrumb a:hover { color: var(--gold); }
.pg-breadcrumb i { font-size: .6rem; }

/* Overview 2-col */
.svc-overview-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}
.svc-overview-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }

.svc-highlights {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem 1rem;
}
.svc-highlights li {
    font-size: .87rem;
    color: var(--text-dark);
    display: flex; align-items: flex-start; gap: .5rem;
}
.svc-highlights li i { color: var(--gold); margin-top: .15rem; font-size: .8rem; flex-shrink: 0; }

/* Sticky stat card */
.svc-overview-card {
    background: var(--navy);
    border-radius: var(--r-lg);
    padding: 2rem;
    position: sticky;
    top: 130px;
}
.svc-stat-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.svc-stat {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.svc-stat:last-child { border-bottom: none; padding-bottom: 0; }
.svc-stat span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; color: var(--gold);
}
.svc-stat p { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Process steps */
.svc-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.svc-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 2rem 1.5rem;
    position: relative;
}
.svc-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: .75rem;
}
.svc-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.svc-step p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }

/* CTA Banner */
.svc-cta-banner {
    background: var(--navy);
    padding: 4rem 0;
    position: relative; overflow: hidden;
}
.svc-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 40px,
        rgba(201,168,76,.04) 40px, rgba(201,168,76,.04) 41px
    );
}
.svc-cta-inner {
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap;
    gap: 2rem; position: relative;
}
.svc-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: .4rem;
}
.svc-cta-inner p { color: rgba(255,255,255,.6); font-size: .9rem; }
.svc-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Related services grid */
.svc-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.svc-other-card {
    background: var(--smoke);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 1.75rem;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: block;
}
.svc-other-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.svc-other-card .svc-icon {
    margin-bottom: 1rem;
    background: var(--gold-pale);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.2);
}
.svc-other-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; color: var(--navy); margin-bottom: .4rem;
}
.svc-other-card p { font-size: .82rem; color: var(--text-muted); }

/* Service page responsive */
@media (max-width: 1024px) {
    .svc-overview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .svc-overview-card { position: static; }
    .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
    .svc-other-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .svc-process-steps { grid-template-columns: 1fr; }
    .svc-other-grid { grid-template-columns: 1fr; }
    .svc-cta-inner { flex-direction: column; }
    .svc-cta-actions { flex-direction: column; width: 100%; }
    .svc-cta-actions a { text-align: center; }
}
