/* ═══════════════════════════════════════════════════════════════════
   MCM WEALTH MANAGEMENT — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. Design Tokens
───────────────────────────────────────── */
:root {
    --bg-page:            #FFFCF8;
    --bg-alt:             #FFF7ED;
    --bg-dark:            #C4641A;
    --bg-dark-mid:        #D07840;
    --orange:             #8B4520;
    --orange-hover:       #A05228;
    --orange-deep:        #6E3418;
    --orange-pale:        #FFEDD5;
    --orange-soft:        #FED7AA;
    --gold:               #C9963A;
    --text-primary:       #1C1208;
    --text-mid:           #5C4433;
    --text-muted:         #9C7E68;
    --text-on-dark:       #FDF4EC;
    --text-on-dark-muted: rgba(253,244,236,0.62);
    --line:               #EAD9C8;
    --line-dark:          rgba(253,244,236,0.12);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --container-max: 1200px;
    --section-py:    96px;
    --radius:        12px;
    --radius-sm:     8px;
    --shadow-card:   0 2px 20px rgba(61,44,30,0.08);
    --shadow-hover:  0 8px 32px rgba(61,44,30,0.14);
    --transition:    0.22s ease;
}

/* ─────────────────────────────────────────
   2. Reset & Base
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family:      var(--font-body);
    font-size:        16px;
    line-height:      1.65;
    color:            var(--text-primary);
    background-color: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    padding-top:      80px; /* sticky header offset */
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─────────────────────────────────────────
   3. Typography Scale
───────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color:       var(--text-primary);
    line-height: 1.12;
}

h1 { font-size: clamp(38px, 5vw, 54px); font-weight: 700; line-height: 1.12; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.18; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }

p { line-height: 1.7; }

.body-l { font-size: 18px; line-height: 1.7; }
.body-m { font-size: 16px; line-height: 1.65; }
.body-s { font-size: 14px; line-height: 1.6; }

.eyebrow {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color:          var(--orange);
    display:        block;
    margin-bottom:  14px;
}
.section--dark .eyebrow,
.hero-home .eyebrow,
.hero-page--dark .eyebrow { color: rgba(253,244,236,0.80); }

.accent-gold {
    font-style: italic;
    color:      var(--gold);
}

/* ─────────────────────────────────────────
   4. Layout Utilities
───────────────────────────────────────── */
.container {
    max-width:   var(--container-max);
    margin:      0 auto;
    padding:     0 24px;
}

.section         { padding: var(--section-py) 0; background: var(--bg-page); }
.section--alt    { padding: var(--section-py) 0; background: var(--bg-alt); }
.section--dark   { padding: var(--section-py) 0; background: var(--bg-dark); }
.section--orange { padding: 64px 0;               background: var(--orange); }
.section--white  { padding: var(--section-py) 0; background: #fff; }

.section-header  { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; }
.section-header h2 { margin: 0; }

.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }

/* ─────────────────────────────────────────
   5. Buttons
───────────────────────────────────────── */
.btn {
    display:         inline-flex;
    align-items:     center;
    gap:             8px;
    font-family:     var(--font-body);
    font-size:       12px;
    font-weight:     600;
    letter-spacing:  0.06em;
    text-transform:  uppercase;
    padding:         14px 28px;
    border-radius:   6px;
    border:          2px solid transparent;
    cursor:          pointer;
    transition:      transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    white-space:     nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background:  var(--orange);
    color:       #fff;
    border-color: var(--orange);
}
.btn-primary:hover {
    background:  var(--orange-hover);
    border-color: var(--orange-hover);
    box-shadow:  0 6px 20px rgba(212,105,30,0.35);
}
.btn-primary:active { background: var(--orange-deep); border-color: var(--orange-deep); }

.btn-ghost {
    background:  transparent;
    color:       var(--text-primary);
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost-dark {
    background:  transparent;
    color:       var(--text-on-dark);
    border-color: var(--line-dark);
}
.btn-ghost-dark:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost-pale {
    background:  transparent;
    color:       var(--orange);
    border-color: var(--orange);
}
.btn-ghost-pale:hover { background: var(--orange-pale); }

.btn-nav {
    background:   var(--orange-pale);
    color:        var(--orange-deep);
    border-color: var(--orange-pale);
    border-radius: 100px;
    padding:      10px 20px;
    font-size:    11px;
}
.btn-nav:hover { background: var(--orange-soft); border-color: var(--orange-soft); }

.lang-switch {
    display:        inline-flex;
    align-items:    center;
    gap:            2px;
    padding:        3px;
    border-radius:  100px;
    border:         1px solid var(--line);
    background:     var(--bg-alt);
    cursor:         pointer;
    font-family:    var(--font-body);
    transition:     var(--transition);
}
.lang-switch:hover { border-color: var(--orange-soft); }
.lang-option {
    display:        inline-flex;
    align-items:    center;
    justify-content: center;
    min-width:      30px;
    padding:        6px 12px;
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 0.04em;
    border-radius:  100px;
    color:          var(--text-muted);
    transition:     var(--transition);
}
.lang-option.is-active {
    background: var(--orange-pale);
    color:      var(--orange-deep);
}
.lang-switch:hover .lang-option:not(.is-active) { color: var(--orange-deep); }

.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   6. Scroll Reveal Animation
───────────────────────────────────────── */
.reveal {
    opacity:    0;
    transform:  translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
    opacity:   1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────
   7. Site Header
───────────────────────────────────────── */
.site-header {
    position:         fixed;
    top:              0;
    left:             0;
    right:            0;
    z-index:          1000;
    height:           80px;
    background:       #fff;
    border-bottom:    1px solid var(--line);
    box-shadow:       0 1px 8px rgba(61,44,30,0.06);
    transition:       box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(61,44,30,0.14);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
}

.header-inner {
    display:     flex;
    align-items: center;
    justify-content: space-between;
    height:      80px;
}

/* Logo */
.site-logo {
    display:     flex;
    align-items: center;
    gap:         12px;
    flex-shrink: 0;
}
.logo-mark {
    width:         38px;
    height:        38px;
    object-fit:    contain;
    flex-shrink:   0;
    display:       block;
    margin-top:    -8px;
}

/* Service detail images */
.service-image {
    width: 240px;
    max-width: 240px;
    height: auto;
    margin-left: 20px;
    margin-bottom: 12px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .service-image {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 18px;
    }
}
/* Carousel for services hero */
.hero-carousel { display: block; }
.carousel { position: relative; width: 100%; height: 420px; overflow: hidden; }
.carousel-track { display: flex; position: relative; width: 100%; height: 100%; transition: transform 520ms cubic-bezier(0.22,0.9,0.36,1); will-change: transform; }
.carousel-slide { position: relative; min-width: 100%; height: 100%; flex: 0 0 100%; display: flex; align-items: center; justify-content: center; }
.carousel-img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; transform: none; }
.carousel-btn { display: none; }
.carousel-btn:focus { outline: 3px solid rgba(201,135,60,0.18); }
.carousel-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: -18px; display: flex; gap: 8px; }
.carousel-dots button { width: 10px; height: 10px; background: var(--line); border-radius: 50%; border: 0; padding: 0; cursor: pointer; }
.carousel-dots button.active { background: var(--orange); box-shadow: 0 2px 6px rgba(196,129,60,0.16); }

@media (max-width: 768px) {
    .hero-carousel { width: 100%; order: 3; margin-top: 18px; }
    .carousel { height: 315px; }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
    .carousel-dots { bottom: -14px; }
    /* ensure image fills but with smaller height to reduce cropping on narrow screens */
    .carousel-img { transform: none; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-slide { transition: none; }
}
.logo-bar {
    width:         3px;
    height:        44px;
    background:    var(--orange);
    border-radius: 2px;
    flex-shrink:   0;
}
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
    font-family:  var(--font-heading);
    font-weight:  700;
    font-size:    20px;
    color:        var(--text-primary);
    line-height:  1;
}
.logo-sub {
    font-family:    var(--font-body);
    font-size:      10px;
    font-weight:    600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:          var(--text-muted);
    font-variant:   small-caps;
}

/* Nav */
.nav-menu {
    display:     flex;
    align-items: center;
    gap:         4px;
}
.nav-menu li a {
    font-family:    var(--font-body);
    font-size:      14px;
    font-weight:    500;
    color:          var(--text-mid);
    padding:        8px 14px;
    border-radius:  6px;
    position:       relative;
    transition:     color var(--transition);
}
.nav-menu li a::after {
    content:    '';
    position:   absolute;
    bottom:     2px;
    left:       14px;
    right:      14px;
    height:     2px;
    background: var(--orange);
    transform:  scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: var(--orange); }
.nav-menu li.current-menu-item a::after,
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li:last-child a::after { display: none; }

/* Hamburger */
.nav-toggle {
    display:    none;
    flex-direction: column;
    gap:        5px;
    cursor:     pointer;
    padding:    8px;
    background: none;
    border:     none;
}
.nav-toggle span {
    display:       block;
    width:         22px;
    height:        2px;
    background:    var(--text-primary);
    border-radius: 2px;
    transition:    transform var(--transition), opacity var(--transition);
}

/* Mobile menu open state */
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   8. Hero — Home
───────────────────────────────────────── */
.hero-home {
    background: var(--bg-dark);
    min-height: 620px;
    display:    flex;
    align-items: center;
    padding:    100px 0 80px;
    overflow:   hidden;
}
.hero-home .container { width: 100%; }

.hero-home-inner {
    display:    grid;
    grid-template-columns: 1fr 420px;
    gap:        64px;
    align-items: center;
}

.hero-home-content h1 { color: var(--text-on-dark); }
.hero-home-content p  { color: var(--text-on-dark-muted); font-size: 18px; margin: 20px 0 32px; max-width: 520px; line-height: 1.7; }

/* HK Skyline card */
.hero-visual-card {
    background:    var(--bg-dark-mid);
    border-radius: var(--radius);
    padding:       32px;
    border:        1px solid var(--line-dark);
}
.hero-skyline { width: 100%; display: block; height: 240px; border-radius: var(--radius-sm); object-fit: cover; }
.hero-info-strip {
    display:        grid;
    grid-template-columns: repeat(3,1fr);
    gap:            1px;
    background:     var(--line-dark);
    margin-top:     24px;
    border-top:     1px solid var(--line-dark);
    padding-top:    20px;
}
.hero-info-item { text-align: center; padding: 0 8px; }
.hero-info-item .value {
    font-family: var(--font-heading);
    font-size:   20px;
    font-weight: 700;
    color:       var(--text-on-dark);
    display:     block;
}
.hero-info-item .label {
    font-size:  11px;
    color:      var(--text-on-dark-muted);
    margin-top: 2px;
    display:    block;
}

/* ─────────────────────────────────────────
   9. Hero — Interior Pages
───────────────────────────────────────── */
.hero-page {
    padding: 80px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
}
.hero-page--dark {
    padding: 80px 0;
    background: var(--bg-dark);
}
.hero-page h1 { max-width: 720px; }
.hero-page--dark h1 { color: var(--text-on-dark); }
.hero-page--dark p  { color: var(--text-on-dark-muted); }
.hero-page p { max-width: 600px; margin-top: 16px; font-size: 18px; color: var(--text-mid); }

/* ─────────────────────────────────────────
   10. Who We Are / Value Cards
───────────────────────────────────────── */
.section-intro { max-width: 640px; margin: 0 auto 56px; }
.section-intro p { font-size: 18px; color: var(--text-mid); margin-top: 16px; }

.cards-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background:    #fff;
    border-radius: var(--radius);
    border:        1px solid var(--line);
    padding:       32px;
    position:      relative;
    overflow:      hidden;
    transition:    transform var(--transition), box-shadow var(--transition);
}
.value-card::before {
    content:    '';
    position:   absolute;
    top:        0; left: 0; right: 0;
    height:     3px;
    background: var(--orange);
}
.value-card:hover {
    transform:  translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.value-card-badge {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           40px;
    height:          40px;
    border-radius:   50%;
    background:      var(--orange-pale);
    color:           var(--orange-deep);
    font-family:     var(--font-heading);
    font-weight:     700;
    font-size:       16px;
    margin-bottom:   20px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p  { color: var(--text-mid); font-size: 15px; line-height: 1.65; }

/* ─────────────────────────────────────────
   10b. In Practice Photo Strip
───────────────────────────────────────── */
.photo-strip .section-intro p { font-size: 17px; color: var(--text-mid); margin-top: 12px; }

.photo-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.photo-bento-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.photo-bento-main img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.photo-bento-main:hover img { transform: scale(1.03); }

.photo-bento-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
    box-shadow: var(--shadow-card);
}
.photo-bento-item img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.photo-bento-item:hover img { transform: scale(1.04); }

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(to top, rgba(28,18,8,0.72) 0%, transparent 100%);
    color: rgba(253,244,236,0.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   10c. Credibility Photo
───────────────────────────────────────── */
.cred-photo-wrap {
    margin-top: 28px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(28,18,8,0.22);
    border: 1px solid var(--line-dark);
}
.cred-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.cred-photo-wrap:hover .cred-photo { transform: scale(1.04); }

/* ─────────────────────────────────────────
   11. Stats Band
───────────────────────────────────────── */
.stats-band {
    background: var(--orange);
    padding:    56px 0;
}
.stats-band-grid {
    display:             grid;
    grid-template-columns: repeat(4,1fr);
    gap:                 1px;
    background:          rgba(255,255,255,0.15);
}
.stat-item {
    background: var(--orange);
    padding:    28px 24px;
    text-align: center;
}
.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size:   clamp(36px, 4vw, 52px);
    color:       #fff;
    display:     block;
    line-height: 1;
}
.stat-label {
    font-family:    var(--font-body);
    font-size:      12px;
    font-weight:    600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          rgba(255,255,255,0.78);
    margin-top:     8px;
    display:        block;
}

/* ─────────────────────────────────────────
   12. Credibility Section
───────────────────────────────────────── */
.credibility-inner {
    display:    grid;
    grid-template-columns: 1fr 1fr;
    gap:        80px;
    align-items: flex-start;
}
.credibility-left h2 { color: var(--text-on-dark); margin: 0 0 20px; }
.credibility-left p  { color: var(--text-on-dark-muted); font-size: 17px; line-height: 1.75; }
.credibility-divider {
    width:     56px;
    height:    2px;
    background: var(--orange);
    margin:    0 0 24px;
}
.credibility-cards { display: flex; flex-direction: column; gap: 16px; }

.cred-card {
    background:    var(--bg-dark-mid);
    border-radius: var(--radius-sm);
    border:        1px solid var(--line-dark);
    border-left:   2.5px solid var(--orange);
    padding:       24px 24px 24px 20px;
}
.cred-card .tag {
    font-size:      10px;
    font-weight:    600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color:          var(--orange);
    display:        block;
    margin-bottom:  6px;
}
.cred-card h3 { color: var(--text-on-dark); font-size: 18px; margin-bottom: 8px; }
.cred-card p  { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.65; }

/* ─────────────────────────────────────────
   13. Services Preview Grid
───────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background:    #fff;
    border-radius: var(--radius);
    border:        1px solid var(--line);
    padding:       32px;
    position:      relative;
    overflow:      hidden;
    transition:    border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    cursor:        default;
}
.service-card::after {
    content:    '';
    position:   absolute;
    top:        0; left: 0;
    width:      3px;
    height:     100%;
    background: var(--orange);
    transform:  scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}
.service-card:hover {
    border-color: var(--orange);
    box-shadow:   var(--shadow-hover);
    transform:    translateY(-2px);
}
.service-card:hover::after { transform: scaleY(1); }

.service-card-number {
    font-family: var(--font-heading);
    font-size:   56px;
    font-weight: 700;
    color:       var(--line);
    line-height: 1;
    margin-bottom: 12px;
    display:     block;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p  { color: var(--text-mid); font-size: 14px; line-height: 1.65; }

.service-card-bespoke {
    border:        2px dashed var(--line);
    background:    transparent;
    display:       flex;
    flex-direction: column;
    align-items:   center;
    justify-content: center;
    text-align:    center;
    min-height:    200px;
    gap:           12px;
}
.service-card-bespoke:hover { border-color: var(--orange); }
.service-card-bespoke p { color: var(--text-muted); font-size: 15px; }
.bespoke-icon {
    width:         48px;
    height:        48px;
    border-radius: 50%;
    background:    var(--orange-pale);
    display:       flex;
    align-items:   center;
    justify-content: center;
    color:         var(--orange);
    font-size:     22px;
    margin-bottom: 4px;
}

/* ─────────────────────────────────────────
   14. CTA Band
───────────────────────────────────────── */
.cta-band {
    background: var(--bg-page);
    padding:    96px 0;
    position:   relative;
    overflow:   hidden;
    text-align: center;
}
.cta-band-circles {
    position:   absolute;
    top:        50%;
    left:       50%;
    transform:  translate(-50%, -50%);
    width:      700px;
    height:     700px;
    pointer-events: none;
    opacity:    0.45;
}
.cta-band-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-band-content h2 { margin: 0 0 16px; }
.cta-band-content p  { color: var(--text-mid); font-size: 18px; margin-bottom: 36px; }

/* ─────────────────────────────────────────
   15. Services Page — Large Cards
───────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 32px; }

.service-full-card {
    background:    #fff;
    border-radius: var(--radius);
    border:        1px solid var(--line);
    border-top:    3px solid var(--orange);
    padding:       40px 48px;
    display:       grid;
    grid-template-columns: 220px 1fr;
    gap:           48px;
    align-items:   start;
    transition:    box-shadow var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-hover); }

.service-full-left .number {
    font-family: var(--font-heading);
    font-size:   80px;
    font-weight: 700;
    color:       var(--orange-pale);
    line-height: 1;
    display:     block;
    margin-bottom: 16px;
}
.service-full-left h3 { font-size: 22px; }

.service-full-right .teaser {
    font-family: var(--font-heading);
    font-style:  italic;
    font-size:   17px;
    color:       var(--text-mid);
    margin:      0 0 16px;
}
.service-full-right p { color: var(--text-mid); font-size: 15px; margin-bottom: 20px; }
.service-bullets { display: flex; flex-direction: column; gap: 8px; }
.service-bullets li {
    font-size:  14px;
    color:      var(--text-mid);
    padding-left: 18px;
    position:   relative;
}
.service-bullets li::before {
    content:    '—';
    position:   absolute;
    left:       0;
    color:      var(--orange);
    font-weight: 600;
}
.service-full-right .learn-more {
    display:     inline-flex;
    align-items: center;
    gap:         6px;
    color:       var(--orange);
    font-size:   13px;
    font-weight: 600;
    margin-top:  20px;
    transition:  gap var(--transition);
}
.service-full-right .learn-more:hover { gap: 10px; }

.services-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* ─────────────────────────────────────────
   16. Promotions Page
───────────────────────────────────────── */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-card {
    background:    #fff;
    border-radius: var(--radius);
    border:        1px solid var(--line);
    border-left:   4px solid var(--orange);
    padding:       32px;
    display:       flex;
    flex-direction: column;
    gap:           12px;
    transition:    box-shadow var(--transition), transform var(--transition);
}
.promo-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.promo-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.promo-badge {
    background:    var(--orange-pale);
    color:         var(--orange-deep);
    font-size:     11px;
    font-weight:   700;
    letter-spacing: 0.05em;
    padding:       5px 12px;
    border-radius: 100px;
    white-space:   nowrap;
    flex-shrink:   0;
}
.promo-tag {
    font-size:      10px;
    font-weight:    600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:          var(--orange);
}
.promo-card h3 { font-size: 20px; margin: 0; }
.promo-subtitle {
    font-family:  var(--font-heading);
    font-style:   italic;
    font-size:    15px;
    color:        var(--orange);
}
.promo-card p { color: var(--text-mid); font-size: 15px; line-height: 1.65; }

.promo-highlight {
    background:    var(--orange-pale);
    color:         var(--orange-deep);
    font-size:     13px;
    font-weight:   500;
    padding:       12px 16px;
    border-radius: 6px;
    margin-top:    auto;
}

.terms-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 40px; }

/* ─────────────────────────────────────────
   17. About Page
───────────────────────────────────────── */
.philosophy-section {
    background: var(--bg-dark);
    padding:    96px 0;
    text-align: center;
}
.philosophy-quote {
    font-family: var(--font-heading);
    font-style:  italic;
    font-size:   clamp(28px, 4vw, 44px);
    color:       var(--gold);
    line-height: 1.3;
    max-width:   720px;
    margin:      0 auto 24px;
}
.philosophy-section p { color: var(--text-on-dark-muted); font-size: 17px; max-width: 580px; margin: 0 auto; }

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.approach-card {
    text-align:  center;
    padding:     32px 20px;
    background:  #fff;
    border-radius: var(--radius);
    border:      1px solid var(--line);
    transition:  transform var(--transition), box-shadow var(--transition);
}
.approach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.approach-number {
    width:           48px;
    height:          48px;
    border-radius:   50%;
    background:      var(--orange-pale);
    color:           var(--orange-deep);
    font-family:     var(--font-heading);
    font-weight:     700;
    font-size:       18px;
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    margin-bottom:   16px;
}
.approach-card h3 { font-size: 18px; margin-bottom: 12px; }
.approach-card p  { color: var(--text-mid); font-size: 14px; }

.mission-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mission-card {
    background:    #fff;
    border:        1px solid var(--line);
    border-radius: var(--radius);
    padding:       32px;
    transition:    transform var(--transition), box-shadow var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mission-icon {
    width:           44px;
    height:          44px;
    border-radius:   50%;
    background:      var(--orange-pale);
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    color:           var(--orange);
    font-size:       20px;
    margin-bottom:   16px;
}
.mission-card h3 { margin-bottom: 10px; }
.mission-card p  { color: var(--text-mid); font-size: 15px; }

/* ─────────────────────────────────────────
   18. Contact Page
───────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start;
}

.contact-details { margin-bottom: 48px; }
.contact-detail-item {
    display:     flex;
    gap:         16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-icon {
    width:           40px;
    height:          40px;
    border-radius:   50%;
    background:      var(--orange-pale);
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           var(--orange);
    font-size:       16px;
    flex-shrink:     0;
}
.contact-detail-text .label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 4px; }
.contact-detail-text .value { font-size: 16px; color: var(--text-primary); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size:   13px;
    font-weight: 500;
    color:       var(--text-mid);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size:   15px;
    color:       var(--text-primary);
    background:  #fff;
    border:      1.5px solid var(--line);
    border-radius: 6px;
    padding:     12px 16px;
    outline:     none;
    transition:  border-color var(--transition), box-shadow var(--transition);
    width:       100%;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow:   0 0 0 3px rgba(212,105,30,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-submit { margin-top: 8px; }
.form-notice {
    font-size:    13px;
    color:        var(--text-muted);
    margin-top:   12px;
}
.form-success {
    background:    #f0fdf4;
    border:        1px solid #86efac;
    border-radius: 8px;
    padding:       16px 20px;
    color:         #166534;
    font-size:     15px;
}
.form-error {
    background:    #fef2f2;
    border:        1px solid #fca5a5;
    border-radius: 8px;
    padding:       16px 20px;
    color:         #991b1b;
    font-size:     15px;
}

/* Contact right panel */
.contact-panel {
    background:    var(--bg-dark);
    border-radius: var(--radius);
    padding:       40px 36px;
    border:        1px solid var(--line-dark);
}
.contact-panel h3 { color: var(--text-on-dark); margin-bottom: 24px; font-size: 20px; }
.expect-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.expect-item { display: flex; gap: 14px; align-items: flex-start; }
.expect-icon {
    width:           32px;
    height:          32px;
    border-radius:   50%;
    background:      rgba(212,105,30,0.2);
    display:         flex;
    align-items:     center;
    justify-content: center;
    color:           var(--orange);
    flex-shrink:     0;
    font-size:       14px;
}
.expect-item strong { display: block; color: var(--text-on-dark); font-size: 14px; font-weight: 600; }
.expect-item span   { display: block; color: var(--text-on-dark-muted); font-size: 13px; }
.panel-divider { height: 1px; background: var(--line-dark); margin: 32px 0; }
.panel-quote {
    font-family:  var(--font-heading);
    font-style:   italic;
    font-size:    20px;
    color:        var(--gold);
    line-height:  1.45;
}

/* Compliance strip */
.compliance-strip {
    background:  var(--bg-alt);
    border-top:  1px solid var(--line);
    padding:     20px 0;
    text-align:  center;
}
.compliance-strip p { font-size: 12px; color: var(--text-muted); line-height: 1.6; max-width: 760px; margin: 0 auto; }

/* CTA Strip */
.cta-strip {
    background: var(--bg-alt);
    padding:    64px 0;
    text-align: center;
    border-top: 1px solid var(--line);
}
.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p  { color: var(--text-mid); font-size: 17px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────
   19. Newsletter
───────────────────────────────────────── */
.newsletter-section {
    background: var(--bg-dark);
    padding:    80px 0;
    position:   relative;
    overflow:   hidden;
}

/* decorative arc */
.newsletter-section::before {
    content:       '';
    position:      absolute;
    top:           -120px;
    right:         -120px;
    width:         480px;
    height:        480px;
    border-radius: 50%;
    border:        1px solid rgba(253,244,236,0.08);
    pointer-events: none;
}
.newsletter-section::after {
    content:       '';
    position:      absolute;
    bottom:        -80px;
    left:          -80px;
    width:         320px;
    height:        320px;
    border-radius: 50%;
    border:        1px solid rgba(253,244,236,0.06);
    pointer-events: none;
}

.newsletter-inner {
    display:     grid;
    grid-template-columns: 1fr 1fr;
    gap:         64px;
    align-items: center;
    position:    relative;
    z-index:     1;
}

.newsletter-left .eyebrow { color: var(--gold); }
.newsletter-left h2 {
    color:       var(--text-on-dark);
    font-size:   clamp(26px, 3vw, 36px);
    margin:      12px 0 16px;
}
.newsletter-left p {
    color:       var(--text-on-dark-muted);
    font-size:   16px;
    line-height: 1.7;
    max-width:   420px;
}

.newsletter-perks {
    list-style:  none;
    padding:     0;
    margin:      24px 0 0;
    display:     flex;
    flex-direction: column;
    gap:         10px;
}
.newsletter-perks li {
    color:       var(--text-on-dark-muted);
    font-size:   14px;
    display:     flex;
    align-items: center;
    gap:         10px;
}
.newsletter-perks li::before {
    content:       '';
    display:       inline-block;
    width:         6px;
    height:        6px;
    border-radius: 50%;
    background:    var(--gold);
    flex-shrink:   0;
}

.newsletter-form-wrap {
    background:    rgba(28,18,8,0.35);
    border:        1px solid rgba(253,244,236,0.10);
    border-radius: var(--radius);
    padding:       40px 36px;
    backdrop-filter: blur(4px);
}
.newsletter-form-wrap h3 {
    color:       var(--text-on-dark);
    font-size:   20px;
    margin:      0 0 6px;
}
.newsletter-form-wrap p {
    color:       var(--text-on-dark-muted);
    font-size:   14px;
    margin:      0 0 28px;
    line-height: 1.55;
}

.newsletter-form { display: flex; flex-direction: column; gap: 14px; }

.nl-field { display: flex; flex-direction: column; gap: 6px; }
.nl-field label {
    color:       rgba(253,244,236,0.60);
    font-size:   12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nl-field input {
    background:    rgba(253,244,236,0.06);
    border:        1px solid rgba(253,244,236,0.14);
    border-radius: var(--radius-sm);
    padding:       12px 16px;
    color:         var(--text-on-dark);
    font-family:   var(--font-body);
    font-size:     15px;
    transition:    border-color var(--transition), background var(--transition);
    outline:       none;
    width:         100%;
    box-sizing:    border-box;
}
.nl-field input::placeholder { color: rgba(253,244,236,0.30); }
.nl-field input:focus {
    border-color: var(--gold);
    background:   rgba(253,244,236,0.10);
}

.nl-submit {
    background:    var(--gold);
    color:         #1C1208;
    border:        none;
    border-radius: var(--radius-sm);
    padding:       13px 24px;
    font-family:   var(--font-body);
    font-weight:   600;
    font-size:     15px;
    cursor:        pointer;
    transition:    background var(--transition), transform var(--transition);
    margin-top:    4px;
    letter-spacing: 0.02em;
}
.nl-submit:hover { background: #dba93f; transform: translateY(-1px); }
.nl-submit:active { transform: translateY(0); }

.nl-privacy {
    color:       rgba(253,244,236,0.35);
    font-size:   12px;
    line-height: 1.5;
    margin-top:  4px;
}

.nl-success {
    display:     none;
    text-align:  center;
    padding:     24px 0 8px;
}
.nl-success .nl-tick {
    width:         48px;
    height:        48px;
    border-radius: 50%;
    background:    var(--gold);
    display:       inline-flex;
    align-items:   center;
    justify-content: center;
    margin-bottom: 16px;
    color:         #1C1208;
    font-size:     22px;
}
.nl-success p {
    color:    var(--text-on-dark);
    font-size: 16px;
    margin:   0;
}



/* ─────────────────────────────────────────
   19c. Footer
───────────────────────────────────────── */
.site-footer {
    background:   var(--bg-dark);
    padding-top:  80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-dark);
}
.footer-logo-col .footer-tagline {
    color:       var(--text-on-dark-muted);
    font-size:   14px;
    margin-top:  16px;
    line-height: 1.6;
    max-width:   240px;
}
.footer-logo-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--text-on-dark); }
.footer-logo-sub  { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-on-dark-muted); font-variant: small-caps; }

.footer-col-title {
    font-family:    var(--font-body);
    font-size:      11px;
    font-weight:    600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color:          var(--orange);
    display:        block;
    margin-bottom:  20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size:  14px;
    color:      var(--text-on-dark-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-on-dark); }

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item .flabel {
    font-size:      10px;
    font-weight:    600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          var(--orange);
    display:        block;
    margin-bottom:  3px;
}
.footer-contact-item .fvalue {
    font-size: 14px;
    color:     var(--text-on-dark-muted);
}

.footer-bottom {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    padding:         20px 0;
    gap:             16px;
}
.footer-bottom .copyright { font-size: 13px; color: var(--text-on-dark-muted); }
.footer-bottom .disclaimer { font-size: 11px; color: rgba(253,244,236,0.38); max-width: 500px; text-align: right; line-height: 1.5; }

/* ─────────────────────────────────────────
   20. Video Feature
───────────────────────────────────────── */
.video-feature { background: var(--bg-page); }

.video-wrap {
    position:      relative;
    max-width:     840px;
    margin:        0 auto;
    aspect-ratio:  16 / 9;
    border-radius: var(--radius);
    overflow:      hidden;
    background:    linear-gradient(140deg, #1C1208 0%, #3A2515 55%, #5C3A20 100%);
    box-shadow:    var(--shadow-hover);
    cursor:        pointer;
}

/* subtle grain texture overlay */
.video-wrap::before {
    content:    '';
    position:   absolute;
    inset:      0;
    background: radial-gradient(ellipse at 60% 40%, rgba(196,100,26,0.18) 0%, transparent 65%),
                linear-gradient(to bottom, transparent 45%, rgba(28,18,8,0.65));
    z-index:    1;
}

.video-play-btn {
    position:  absolute;
    top:       50%;
    left:      50%;
    transform: translate(-50%, -50%);
    width:     80px;
    height:    80px;
    color:     rgba(253,244,236,0.88);
    z-index:   2;
    transition: color var(--transition), transform var(--transition);
}

.video-wrap:hover .video-play-btn {
    color:     var(--gold);
    transform: translate(-50%, -50%) scale(1.12);
}

.video-caption {
    position: absolute;
    bottom:   28px;
    left:     32px;
    z-index:  2;
}
.video-caption .eyebrow {
    color:       var(--gold);
    font-size:   11px;
    letter-spacing: 0.12em;
    display:     block;
    margin-bottom: 4px;
}
.video-caption p {
    font-family: var(--font-heading);
    font-style:  italic;
    font-size:   20px;
    color:       var(--text-on-dark);
    margin:      0;
    line-height: 1.3;
}

/* ─────────────────────────────────────────
   21. Responsive
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .service-full-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
    .service-full-left .number { font-size: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }
    body  { padding-top: 70px; }

    .site-header { height: 70px; }
    .header-inner { height: 70px; }

    /* Prevent backdrop-filter on scrolled header from breaking the fixed nav overlay.
       backdrop-filter creates a new containing block for position:fixed children,
       which collapses the nav overlay inside the header boundary. */
    .site-header.scrolled { backdrop-filter: none; }

    /* Mobile nav */
    .nav-toggle { display: flex; }
    .header-nav {
        position:   fixed;
        top:        70px;
        left:       0;
        right:      0;
        bottom:     0;
        z-index:    999;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding:    32px 24px;
        display:    none;
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }
    .nav-open .header-nav { display: flex; }
    .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-menu li a { padding: 14px 0; font-size: 18px; display: block; border-bottom: 1px solid var(--line); }
    .nav-menu li a::after { display: none; }
    .nav-menu li:last-child a { border-bottom: none; }

    /* Grids */
    .hero-home-inner        { grid-template-columns: 1fr; gap: 40px; }
    .hero-info-strip        { grid-template-columns: repeat(3,1fr); }
    .cards-3col             { grid-template-columns: 1fr; }
    .stats-band-grid        { grid-template-columns: repeat(2,1fr); }
    .credibility-inner      { grid-template-columns: 1fr; gap: 40px; }
    .services-grid          { grid-template-columns: 1fr; }
    .section-header         { flex-direction: column; align-items: flex-start; }
    .approach-grid          { grid-template-columns: repeat(2,1fr); }
    .mission-cards          { grid-template-columns: 1fr; }
    .promos-grid            { grid-template-columns: 1fr; }
    .contact-layout         { grid-template-columns: 1fr; }
    .newsletter-inner       { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid            { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom          { flex-direction: column; text-align: center; }
    .footer-bottom .disclaimer { text-align: center; }
    .services-grid-3col     { grid-template-columns: 1fr; }
    .form-row               { grid-template-columns: 1fr; }

    .cta-band-circles { width: 400px; height: 400px; }

    .photo-bento { grid-template-columns: 1fr; }
    .photo-bento-main img { min-height: 260px; }
    .photo-bento-side { flex-direction: row; }
    .photo-bento-item img { min-height: 180px; }
}

@media (max-width: 480px) {
    .stats-band-grid  { grid-template-columns: repeat(2,1fr); }
    .approach-grid    { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr; }
    .hero-info-strip  { grid-template-columns: repeat(3,1fr); }
    .btn-group        { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────
   22. Additional Mobile Enhancements
───────────────────────────────────────── */

@media (max-width: 768px) {
    /* Hero — reduce excess padding and drop min-height lock */
    .hero-home            { padding: 64px 0 48px; min-height: unset; }
    .hero-home-content p  { font-size: 16px; margin: 14px 0 24px; }
    .hero-visual-card     { padding: 20px; }
    .hero-skyline         { height: 200px; }
    .hero-page,
    .hero-page--dark      { padding: 52px 0; }

    /* Section intros — tighter bottom margin */
    .section-intro        { margin-bottom: 36px; }

    /* Hardcoded paddings that bypass --section-py */
    .cta-band             { padding: 64px 0; }
    .stats-band           { padding: 40px 0; }
    .newsletter-section   { padding: 56px 0; }
    .philosophy-section   { padding: 64px 0; }
    .cta-strip            { padding: 40px 0; }
    .site-footer          { padding-top: 52px; }
    .footer-grid          { padding-bottom: 36px; }

    /* Cards — reduce interior padding */
    .value-card           { padding: 24px; }
    .service-card         { padding: 24px; }
    .service-full-card    { padding: 24px; }
    .contact-panel        { padding: 28px 24px; }
    .newsletter-form-wrap { padding: 28px 24px; }

    /* Shrink decorative large number */
    .service-card-number  { font-size: 40px; }

    /* Language toggle row in open mobile menu */
    .nav-menu li:has(.lang-switch) {
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        display: flex;
        align-items: center;
    }

    /* Contact page */
    .contact-layout           { gap: 36px; }
    .contact-details          { margin-bottom: 32px; }
    .form-submit .btn         { width: 100%; justify-content: center; }
    .expect-list              { margin-bottom: 28px; }
}

@media (max-width: 480px) {
    /* Tighter side gutters on small phones */
    .container              { padding: 0 16px; }

    /* Stack bento side images — they go row at 768px but are too cramped at 480px */
    .photo-bento-side       { flex-direction: column; }
    .photo-bento-item img   { min-height: 200px; }

    /* Shrink hero info values so 3-col strip doesn't crowd */
    .hero-info-item .value  { font-size: 15px; }
    .hero-visual-card       { padding: 16px; }
    .hero-skyline           { height: 180px; }

    /* Hide "Management Limited" sub-label to prevent logo overflow */
    .logo-sub               { display: none; }

    /* Further reduce decorative numbers */
    .service-card-number    { font-size: 32px; }

    /* Even tighter section bands on tiny screens */
    .stats-band             { padding: 28px 0; }
    .cta-band               { padding: 52px 0; }
}
