        :root {
            --navy: #26327A;
            --navy-deep: #1B2560;
            --blue: #4A5CC7;
            --ink: #1D1D1F;
            --gray: #6E6E73;
            --bg: #FFFFFF;
            --bg-soft: #F5F5F7;
            --amber: #F5A623;
            --line: rgba(0, 0, 0, .08);
            --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
            --ease-apple: cubic-bezier(0.23, 1, 0.32, 1);
            --spring: cubic-bezier(0.34, 1.4, 0.5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg);
            color: var(--ink);
            line-height: 1.6;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        body.lock {
            overflow: hidden;
        }
        .ar {
            font-family: 'Noto Kufi Arabic', 'Montserrat', sans-serif;
        }

        /* ── Arabic / RTL ── */
        [dir="rtl"] body,
        body[dir="rtl"],
        html[dir="rtl"] body {
            font-family: 'Noto Kufi Arabic', 'Montserrat', sans-serif;
            line-height: 1.85;
        }
        [dir="rtl"] h1,
        [dir="rtl"] h2,
        [dir="rtl"] h3,
        [dir="rtl"] h4,
        [dir="rtl"] h5 {
            line-height: 1.4;
            letter-spacing: 0;
        }
        [dir="rtl"] .kicker {
            letter-spacing: 0;
        }
        /* the decorative Arabic sub-lines are redundant once the page is Arabic */
        [dir="rtl"] .ar:empty,
        [dir="rtl"] .ar-line:empty {
            display: none;
        }
        /* elements pinned to a physical side must mirror */
        [dir="rtl"] .drawer .panel {
            right: auto;
            left: 0;
            transform: translateX(-100%);
        }
        [dir="rtl"] .drawer.open .panel {
            transform: translateX(0);
        }
        [dir="rtl"] .wa {
            right: auto;
            left: 16px;
        }
        [dir="rtl"] .album .count {
            left: auto;
            right: 14px;
        }
        [dir="rtl"] .t-belt::before {
            left: auto;
            right: 0;
            background: linear-gradient(-90deg, var(--bg), transparent);
        }
        [dir="rtl"] .t-belt::after {
            right: auto;
            left: 0;
            background: linear-gradient(90deg, var(--bg), transparent);
        }
        [dir="rtl"] .ph-body,
        [dir="rtl"] .reno .sticky,
        [dir="rtl"] .f-quote,
        [dir="rtl"] .cf-field label {
            text-align: right;
        }
        [dir="rtl"] .msg .time {
            text-align: left;
        }
        /* arrow glyphs point the other way in RTL */
        [dir="rtl"] .btn .ic use[href="#i-arrow"],
        [dir="rtl"] .album .go .ic,
        [dir="rtl"] .btn-outline .ic {
            transform: scaleX(-1);
            transform-origin: center;
        }
        [dir="rtl"] .svc-toggle-wrap .btn.open .ic,
        [dir="rtl"] #svcToggle .ic {
            transform: scaleX(-1);
        }
        [dir="rtl"] #svcToggle.open .ic {
            transform: scaleX(-1) rotate(-90deg);
        }
        @media(max-width:480px) {
            [dir="rtl"] .wa {
                left: 12px;
            }
            [dir="rtl"] .album .count {
                right: 10px;
            }
        }

        /* ── Language toggle ── */
        .lang-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 13px;
            border-radius: 980px;
            border: 1px solid var(--line);
            background: transparent;
            color: var(--ink);
            white-space: nowrap;
            transition: background .35s var(--ease-apple), color .35s var(--ease-apple), border-color .35s var(--ease-apple);
        }
        .lang-btn:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }
        .lang-btn .ic {
            width: 15px;
            height: 15px;
        }
        .drawer .lang-btn {
            width: 100%;
            justify-content: center;
            padding: 12px;
            font-size: 14px;
            margin-bottom: 10px;
        }
        @media(max-width:1020px) {
            nav .lang-btn {
                display: none;
            }
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            font-family: inherit;
            cursor: pointer;
        }
        .wrap {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 clamp(16px, 4vw, 24px);
        }
        h1,
        h2,
        h3,
        h4 {
            letter-spacing: -.022em;
            line-height: 1.12;
        }
        section[id] {
            scroll-margin-top: 84px;
        }
        .ic {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex: none;
        }

        /* ── Buttons ── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-weight: 600;
            font-size: 15px;
            padding: 13px 26px;
            border-radius: 980px;
            border: none;
            transition: all .45s var(--ease-apple);
            cursor: pointer;
            letter-spacing: -.01em;
            min-height: 52px;
        }
        .btn .ic {
            width: 18px;
            height: 18px;
        }
        .btn-fill {
            background: var(--navy);
            color: #fff;
        }
        .btn-fill:hover {
            background: var(--navy-deep);
            transform: scale(1.02);
        }
        .btn-fill:active {
            transform: scale(.97);
        }
        .btn-soft {
            background: rgba(38, 50, 122, .08);
            color: var(--navy);
        }
        .btn-soft:hover {
            background: rgba(38, 50, 122, .14);
            transform: scale(1.02);
        }
        .btn-soft:active {
            transform: scale(.97);
        }
        .btn-white {
            background: #fff;
            color: var(--navy);
        }
        .btn-white:hover {
            transform: scale(1.02);
        }
        .btn-glass {
            background: rgba(255, 255, 255, .14);
            color: #fff;
        }
        .btn-glass:hover {
            background: rgba(255, 255, 255, .22);
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 1.5px solid rgba(38, 50, 122, .25);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: #fff;
            border-color: var(--navy);
            transform: scale(1.02);
        }
        @media (max-width:480px) {
            .btn {
                font-size: 13px;
                padding: 11px 20px;
                min-height: 46px;
            }
            .btn .ic {
                width: 16px;
                height: 16px;
            }
        }

        /* ── Nav ── */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 90;
            background: rgba(255, 255, 255, .72);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid transparent;
            transition: border-color .5s var(--ease-apple), background .5s var(--ease-apple);
        }
        header.scrolled {
            border-bottom-color: var(--line);
        }
        nav {
            max-width: 1140px;
            margin: 0 auto;
            padding: 10px clamp(16px, 4vw, 24px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }
        .logo {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--navy);
            display: grid;
            place-items: center;
            color: #fff;
            font-weight: 800;
            font-size: 12px;
            transition: transform .6s var(--spring);
            flex: none;
        }
        .brand:hover .logo {
            transform: scale(1.06) rotate(-3deg);
        }
        .brand-txt {
            line-height: 1.1;
            min-width: 0;
        }
        .brand-txt .l1 {
            font-weight: 700;
            font-size: 12px;
            letter-spacing: .02em;
            white-space: nowrap;
        }
        .brand-txt .l2 {
            font-size: 7.5px;
            font-weight: 600;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gray);
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 4px;
        }
        .nav-links a {
            font-size: 12px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 980px;
            position: relative;
            transition: color .4s var(--ease-apple), background .4s var(--ease-apple);
        }
        .nav-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 2px;
            width: 0;
            height: 2px;
            border-radius: 2px;
            background: var(--amber);
            transform: translateX(-50%);
            transition: width .5s var(--ease-apple);
        }
        .nav-links a:hover {
            color: var(--navy);
            background: rgba(38, 50, 122, .06);
        }
        .nav-links a.active {
            color: var(--navy);
            font-weight: 600;
        }
        .nav-links a.active::after {
            width: 14px;
        }
        .nav-cta {
            font-size: 12px;
            padding: 7px 16px;
            min-height: 36px;
        }
        .burger {
            display: none;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(38, 50, 122, .07);
            cursor: pointer;
            place-items: center;
            transition: .35s var(--ease-apple);
            border: none;
        }
        .burger:active {
            transform: scale(.94);
        }
        .burger svg {
            width: 18px;
            height: 18px;
            stroke: var(--navy);
            stroke-width: 2;
            fill: none;
            stroke-linecap: round;
        }
        @media(max-width:1020px) {
            .nav-links {
                display: none;
            }
            .burger {
                display: grid;
            }
        }
        @media(max-width:560px) {
            .nav-cta {
                display: none;
            }
            .brand-txt .l1 {
                font-size: 10.5px;
            }
            .brand-txt .l2 {
                font-size: 6.5px;
                letter-spacing: .15em;
            }
            .logo {
                width: 32px;
                height: 32px;
                font-size: 10px;
                border-radius: 8px;
            }
        }
        @media(max-width:400px) {
            .brand-txt .l1 {
                font-size: 9px;
            }
            .brand-txt .l2 {
                font-size: 5.5px;
            }
            .logo {
                width: 28px;
                height: 28px;
                font-size: 8px;
            }
        }

        /* ── drawer ── */
        .drawer {
            position: fixed;
            inset: 0;
            z-index: 95;
            pointer-events: none;
        }
        .drawer .veil {
            position: absolute;
            inset: 0;
            background: rgba(29, 29, 31, .4);
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity .5s var(--ease-apple);
        }
        .drawer .panel {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(320px, 88vw);
            background: rgba(255, 255, 255, .94);
            backdrop-filter: saturate(180%) blur(24px);
            -webkit-backdrop-filter: saturate(180%) blur(24px);
            transform: translateX(100%);
            transition: transform .6s var(--ease-apple);
            padding: 24px 20px 30px;
            display: flex;
            flex-direction: column;
        }
        .drawer.open {
            pointer-events: auto;
        }
        .drawer.open .veil {
            opacity: 1;
        }
        .drawer.open .panel {
            transform: none;
        }
        .drawer-x {
            align-self: flex-end;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(38, 50, 122, .07);
            border: none;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: .35s var(--ease-apple);
        }
        .drawer-x:active {
            transform: scale(.92);
        }
        .drawer-x svg {
            width: 16px;
            height: 16px;
            stroke: var(--navy);
            stroke-width: 2.2;
            stroke-linecap: round;
            fill: none;
        }
        .drawer a.dl {
            font-size: 18px;
            font-weight: 700;
            padding: 14px 4px;
            border-bottom: 1px solid var(--line);
            opacity: 0;
            transform: translateX(26px);
            transition: opacity .55s var(--ease-apple), transform .55s var(--ease-apple);
        }
        .drawer.open a.dl {
            opacity: 1;
            transform: none;
        }
        .drawer.open a.dl:nth-of-type(1) {
            transition-delay: .05s;
        }
        .drawer.open a.dl:nth-of-type(2) {
            transition-delay: .1s;
        }
        .drawer.open a.dl:nth-of-type(3) {
            transition-delay: .15s;
        }
        .drawer.open a.dl:nth-of-type(4) {
            transition-delay: .2s;
        }
        .drawer.open a.dl:nth-of-type(5) {
            transition-delay: .25s;
        }
        .drawer.open a.dl:nth-of-type(6) {
            transition-delay: .3s;
        }
        .drawer .d-cta {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 24px;
        }

        /* ── Reveal ── Apple-style smooth ── */
        .rv {
            opacity: 0;
            transform: translateY(28px) scale(.99);
            transition: opacity .9s var(--ease-apple), transform .9s var(--ease-apple);
        }
        .rv.in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .rv-l {
            opacity: 0;
            transform: translateX(-32px) scale(.99);
            transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple);
        }
        .rv-l.in {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
        .rv-r {
            opacity: 0;
            transform: translateX(32px) scale(.99);
            transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple);
        }
        .rv-r.in {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
        .rv-scale {
            opacity: 0;
            transform: scale(.96) translateY(20px);
            transition: opacity 1.1s var(--ease-apple), transform 1.1s var(--ease-apple);
        }
        .rv-scale.in {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .stagger>* {
            opacity: 0;
            transform: translateY(24px) scale(.99);
            transition: opacity .85s var(--ease-apple), transform .85s var(--ease-apple);
        }
        .stagger.in>* {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .stagger.in>*:nth-child(1) {
            transition-delay: 0s;
        }
        .stagger.in>*:nth-child(2) {
            transition-delay: .04s;
        }
        .stagger.in>*:nth-child(3) {
            transition-delay: .08s;
        }
        .stagger.in>*:nth-child(4) {
            transition-delay: .12s;
        }
        .stagger.in>*:nth-child(5) {
            transition-delay: .16s;
        }
        .stagger.in>*:nth-child(6) {
            transition-delay: .2s;
        }
        .stagger.in>*:nth-child(7) {
            transition-delay: .24s;
        }
        .stagger.in>*:nth-child(8) {
            transition-delay: .28s;
        }
        .stagger.in>*:nth-child(9) {
            transition-delay: .32s;
        }
        .stagger.in>*:nth-child(10) {
            transition-delay: .36s;
        }

        .ln {
            display: block;
            overflow: hidden;
            padding-bottom: .08em;
            margin-bottom: -.08em;
        }
        .ln>span {
            display: inline-block;
            transform: translateY(110%);
            transition: transform 1.1s var(--ease-apple);
        }
        .rvt.in .ln>span {
            transform: none;
        }
        .rvt.in .ln:nth-child(2)>span {
            transition-delay: .08s;
        }
        .rvt.in .ln:nth-child(3)>span {
            transition-delay: .16s;
        }

        @media(prefers-reduced-motion:reduce) {
            .rv,
            .rv-l,
            .rv-r,
            .rv-scale,
            .stagger>*,
            .drawer a.dl,
            .svc-hidden,
            .gal-item {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
            .ln>span {
                transform: none !important;
            }
            .t-track {
                animation: none !important;
            }
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            padding: 108px 0 48px;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(640px 420px at 12% 20%, rgba(38, 50, 122, .07), transparent 65%),
                radial-gradient(560px 420px at 88% 30%, rgba(245, 166, 35, .09), transparent 65%),
                radial-gradient(500px 380px at 70% 90%, rgba(74, 92, 199, .06), transparent 65%);
        }
        .hero .wrap {
            position: relative;
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: clamp(28px, 4.5vw, 60px);
            align-items: center;
        }
        @media(max-width:980px) {
            .hero .wrap {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero {
                padding-top: 96px;
                text-align: center;
            }
            .hero .sub {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-ctas,
            .hero-proof {
                justify-content: center;
            }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--navy);
            background: rgba(38, 50, 122, .07);
            border-radius: 980px;
            padding: 6px 16px;
            margin-bottom: 16px;
        }
        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #2BB673;
            box-shadow: 0 0 0 0 rgba(43, 182, 115, .5);
            animation: ping 2.4s var(--ease) infinite;
        }
        @keyframes ping {
            0% {
                box-shadow: 0 0 0 0 rgba(43, 182, 115, .45);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(43, 182, 115, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(43, 182, 115, 0);
            }
        }
        .hero h1 {
            font-size: clamp(28px, 5.5vw, 52px);
            font-weight: 800;
            line-height: 1.06;
        }
        .hero h1 .grad {
            background: linear-gradient(95deg, var(--navy) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero h1 .amber {
            color: var(--amber);
        }
        .hero .sub {
            margin-top: 14px;
            max-width: 470px;
            font-size: clamp(14px, 1.8vw, 17px);
            color: var(--gray);
            font-weight: 500;
            line-height: 1.55;
        }
        .hero .ar-line {
            margin-top: 6px;
            font-size: 13px;
            color: #9B9BA1;
        }
        .hero-ctas {
            margin-top: 22px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .hero-proof {
            margin-top: 26px;
            display: flex;
            gap: clamp(14px, 2.6vw, 34px);
            flex-wrap: wrap;
        }
        .hero-proof div b {
            display: block;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -.02em;
        }
        .hero-proof div b i {
            font-style: normal;
            color: var(--amber);
        }
        .hero-proof div span {
            font-size: 11px;
            color: var(--gray);
            font-weight: 600;
        }
        @media(max-width:480px) {
            .hero-proof div b {
                font-size: 16px;
            }
            .hero-proof div span {
                font-size: 10px;
            }
            .hero h1 {
                font-size: clamp(24px, 7.5vw, 34px);
            }
        }

        /* ── Interactive WhatsApp widget ── */
        .stage {
            position: relative;
            display: flex;
            justify-content: center;
        }
        .stage::before {
            content: "";
            position: absolute;
            width: min(430px, 92vw);
            aspect-ratio: 1;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(38, 50, 122, .12), rgba(245, 166, 35, .07) 55%, transparent 70%);
            filter: blur(22px);
            z-index: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .phone {
            position: relative;
            width: min(350px, 100%);
            background: #fff;
            border-radius: 26px;
            box-shadow: 0 46px 96px -32px rgba(27, 37, 96, .34), 0 0 0 1px rgba(0, 0, 0, .04);
            overflow: hidden;
            z-index: 2;
            transition: transform .6s var(--ease-apple);
        }
        .ph-head {
            background: var(--navy);
            color: #fff;
            padding: 13px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ph-head .av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fff;
            color: var(--navy);
            display: grid;
            place-items: center;
            font-weight: 800;
            font-size: 11px;
            flex: none;
        }
        .ph-head b {
            display: block;
            font-size: 12.5px;
            font-weight: 700;
        }
        .ph-head span {
            font-size: 10px;
            color: #B9C2E8;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .ph-head span::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #2BD98F;
        }
        .ph-body {
            background: #EDE9E2;
            padding: 14px 12px 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }
        .msg {
            max-width: 88%;
            padding: 9px 12px;
            border-radius: 14px;
            font-size: 12.5px;
            line-height: 1.5;
            font-weight: 500;
            opacity: 0;
            transform: translateY(12px) scale(.97);
            transition: opacity .65s var(--ease-apple), transform .65s var(--ease-apple);
        }
        .msg.show {
            opacity: 1;
            transform: none;
        }
        .msg.in {
            background: #fff;
            border-top-left-radius: 5px;
            align-self: flex-start;
            color: #222;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
        }
        .msg.out {
            background: #D5F0C8;
            border-top-right-radius: 5px;
            align-self: flex-end;
            color: #1c2a15;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
        }
        .msg .time {
            display: block;
            font-size: 9px;
            color: rgba(0, 0, 0, .4);
            text-align: right;
            margin-top: 2px;
            font-weight: 600;
        }
        .msg b {
            color: var(--navy);
        }
        .typing {
            display: flex;
            gap: 4px;
            align-self: flex-start;
            background: #fff;
            padding: 10px 12px;
            border-radius: 14px;
            border-top-left-radius: 5px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
            opacity: 0;
            transition: opacity .4s var(--ease-apple);
        }
        .typing.show {
            opacity: 1;
        }
        .typing i {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #B7BCC6;
            animation: blink 1.3s infinite;
        }
        .typing i:nth-child(2) {
            animation-delay: .18s;
        }
        .typing i:nth-child(3) {
            animation-delay: .36s;
        }
        @keyframes blink {
            0%,
            60%,
            100% {
                opacity: .35;
                transform: translateY(0);
            }
            30% {
                opacity: 1;
                transform: translateY(-3px);
            }
        }
        .quicks {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-self: flex-end;
            justify-content: flex-end;
            max-width: 100%;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity .6s var(--ease-apple), transform .6s var(--ease-apple);
        }
        .quicks.show {
            opacity: 1;
            transform: none;
        }
        .quicks button {
            background: #fff;
            border: 1px solid rgba(38, 50, 122, .22);
            color: var(--navy);
            font-size: 10.5px;
            font-weight: 700;
            padding: 6px 11px;
            border-radius: 980px;
            cursor: pointer;
            transition: all .35s var(--ease-apple);
            white-space: nowrap;
        }
        .quicks button:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
            transform: translateY(-2px);
        }
        .quicks button:active {
            transform: scale(.94);
        }
        .quicks button.sel {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }
        .ph-input {
            background: #F6F6F6;
            padding: 9px 10px;
            display: flex;
            gap: 8px;
            align-items: center;
            border-top: 1px solid rgba(0, 0, 0, .05);
        }
        .ph-input input {
            flex: 1;
            background: #fff;
            border: 1px solid transparent;
            border-radius: 980px;
            padding: 9px 14px;
            font-size: 14px;
            color: var(--ink);
            outline: none;
            min-width: 0;
            transition: border-color .35s var(--ease-apple), box-shadow .35s var(--ease-apple);
        }
        .ph-input input::placeholder {
            color: #A6A6AB;
            font-size: 12px;
        }
        .ph-input input:focus {
            border-color: rgba(38, 50, 122, .3);
            box-shadow: 0 0 0 3px rgba(38, 50, 122, .08);
        }
        .ph-input .send {
            width: 38px;
            height: 38px;
            flex: none;
            border-radius: 50%;
            background: #25D366;
            display: grid;
            place-items: center;
            cursor: pointer;
            border: none;
            transition: transform .4s var(--spring), background .35s var(--ease-apple);
        }
        .ph-input .send:hover {
            transform: scale(1.06);
        }
        .ph-input .send:active {
            transform: scale(.9);
        }
        .ph-input .send svg {
            width: 15px;
            height: 15px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .shake {
            animation: shake .4s;
        }
        @keyframes shake {
            0%,
            100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-5px);
            }
            75% {
                transform: translateX(5px);
            }
        }
        .ph-note {
            padding: 7px 12px 10px;
            background: #F6F6F6;
            font-size: 9.5px;
            color: #8E8E93;
            text-align: center;
            font-weight: 600;
        }

        /* ── Section shells ── */
        section {
            padding: clamp(40px, 6vw, 72px) 0;
        }
        .sec-head {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 32px;
        }
        .kicker {
            font-size: 12px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            display: block;
            letter-spacing: .04em;
        }
        h2.title {
            font-size: clamp(24px, 4.2vw, 44px);
            font-weight: 800;
        }
        .sec-head p {
            margin-top: 12px;
            font-size: clamp(14px, 1.8vw, 17px);
            color: var(--gray);
            font-weight: 500;
        }
        .slab {
            background: var(--bg-soft);
            border-radius: clamp(16px, 2.4vw, 32px);
            margin: 0 clamp(6px, 1.4vw, 12px);
            padding: clamp(32px, 4vw, 48px) clamp(12px, 2vw, 24px);
        }
        .slab>.wrap {
            padding: 0;
        }

        /* ── Services ── */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media(max-width:840px) {
            .svc-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }
        @media(max-width:480px) {
            .svc-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .svc {
            background: #fff;
            border-radius: 18px;
            padding: 24px 22px;
            transition: transform .6s var(--ease-apple), box-shadow .6s var(--ease-apple);
            will-change: transform;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .svc:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 48px -16px rgba(29, 29, 31, .12);
        }
        .svc .icobox {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(150deg, #EEF1FB, #E2E7F7);
            color: var(--navy);
            display: grid;
            place-items: center;
            margin-bottom: 14px;
            transition: transform .6s var(--spring), background .5s var(--ease-apple);
            flex: none;
        }
        .svc:hover .icobox {
            transform: scale(1.06) rotate(-4deg);
            background: linear-gradient(150deg, var(--navy), var(--blue));
            color: #fff;
        }
        .svc .icobox .ic {
            width: 18px;
            height: 18px;
        }
        .svc h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .svc .ar {
            font-size: 11px;
            color: #9B9BA1;
            direction: rtl;
            text-align: left;
            margin-bottom: 6px;
            flex: none;
        }
        .svc p {
            font-size: 13px;
            color: var(--gray);
            margin-top: auto;
            flex: 1;
        }
        .svc-hidden {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height .7s var(--ease-apple), opacity .6s var(--ease-apple), margin .5s var(--ease-apple);
            margin: 0;
            padding: 0;
        }
        .svc-hidden.open {
            max-height: 900px;
            opacity: 1;
            margin-top: 16px;
        }
        .svc-hidden .svc-grid {
            padding-top: 4px;
        }
        .svc-toggle-wrap {
            text-align: center;
            margin-top: 20px;
        }
        .svc-toggle-wrap .btn .ic {
            transition: transform .5s var(--ease-apple);
        }
        .svc-toggle-wrap .btn.open .ic {
            transform: rotate(180deg);
        }

        /* ── Renovation ── */
        .reno .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(24px, 4.5vw, 68px);
            align-items: start;
        }
        @media(max-width:900px) {
            .reno .grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .reno .sticky {
            position: sticky;
            top: 108px;
        }
        @media(max-width:900px) {
            .reno .sticky {
                position: static;
            }
        }
        .reno h2 {
            font-size: clamp(24px, 3.8vw, 42px);
            font-weight: 800;
        }
        .reno .lead {
            margin-top: 12px;
            font-size: 14.5px;
            color: var(--gray);
            font-weight: 500;
        }
        .reno .cta-row {
            margin-top: 18px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .reno-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .reno-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-soft);
            border-radius: 14px;
            padding: 13px 16px;
            font-size: 13.5px;
            font-weight: 600;
            transition: transform .55s var(--ease-apple), background .4s var(--ease-apple), box-shadow .55s var(--ease-apple);
        }
        .reno-item:hover {
            transform: translateX(5px);
            background: #fff;
            box-shadow: 0 14px 36px -12px rgba(29, 29, 31, .11);
        }
        .reno-item .chk {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(38, 50, 122, .09);
            color: var(--navy);
            display: grid;
            place-items: center;
            flex: none;
            transition: .5s var(--spring);
        }
        .reno-item:hover .chk {
            background: var(--navy);
            color: #fff;
            transform: scale(1.06);
        }
        .reno-item .chk .ic {
            width: 13px;
            height: 13px;
        }
        @media(max-width:480px) {
            .reno-item {
                font-size: 12.5px;
                padding: 11px 14px;
            }
        }

        /* ── Gallery ── */
        .gal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media(max-width:900px) {
            .gal-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media(max-width:560px) {
            .gal-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media(max-width:400px) {
            .gal-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }

        .gal-item {
            opacity: 0;
            transform: translateY(24px) scale(.98);
            transition: opacity .85s var(--ease-apple), transform .85s var(--ease-apple);
        }
        .gal-item.in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .album {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            border: none;
            padding: 0;
            display: block;
            width: 100%;
            text-align: left;
            background: var(--navy);
            transition: transform .7s var(--ease-apple), box-shadow .7s var(--ease-apple);
            will-change: transform;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
        }
        .album:hover {
            transform: translateY(-6px) scale(1.005);
            box-shadow: 0 20px 50px -16px rgba(27, 37, 96, .3);
        }
        .album:active {
            transform: translateY(-2px) scale(.99);
        }
        .album .cover {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 1.2s var(--ease-apple), filter .7s var(--ease-apple);
        }
        .album:hover .cover {
            transform: scale(1.06);
        }
        .album .cover.ph {
            background: linear-gradient(155deg, #2C3A8C 0%, #1E2A66 60%, #16205A 100%);
        }
        .album .cover.ph::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(280px 200px at 78% 18%, rgba(245, 166, 35, .20), transparent 62%),
                radial-gradient(260px 200px at 12% 92%, rgba(74, 92, 199, .35), transparent 62%);
        }
        .album .wm {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            color: rgba(255, 255, 255, .45);
            stroke-width: 1.3;
            transition: transform .8s var(--ease-apple), color .6s var(--ease-apple);
            z-index: 1;
        }
        .album:hover .wm {
            transform: translate(-50%, -56%) scale(1.04);
            color: rgba(255, 255, 255, .6);
        }
        .album .shade {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: linear-gradient(to top, rgba(9, 14, 42, .92) 0%, rgba(9, 14, 42, .40) 40%, rgba(9, 14, 42, .02) 68%);
            transition: opacity .6s var(--ease-apple);
        }
        .album .meta {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            padding: 18px 18px 14px;
            color: #fff;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
        }
        .album .meta h4 {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -.01em;
            transform: translateY(4px);
            transition: transform .6s var(--ease-apple);
            line-height: 1.2;
        }
        .album:hover .meta h4 {
            transform: none;
        }
        .album .meta span {
            display: block;
            font-size: 11px;
            color: rgba(255, 255, 255, .8);
            font-weight: 500;
            margin-top: 2px;
            opacity: 0;
            transform: translateY(6px);
            transition: opacity .55s var(--ease-apple), transform .55s var(--ease-apple);
            letter-spacing: .01em;
        }
        .album:hover .meta span {
            opacity: 1;
            transform: none;
        }
        .album .go {
            width: 32px;
            height: 32px;
            flex: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, .18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            display: grid;
            place-items: center;
            transition: background .45s var(--ease-apple), transform .6s var(--spring);
        }
        .album .go .ic {
            width: 14px;
            height: 14px;
            color: #fff;
            transition: color .4s var(--ease-apple);
        }
        .album:hover .go {
            background: var(--amber);
            transform: scale(1.08) rotate(-45deg);
        }
        .album:hover .go .ic {
            color: var(--navy);
        }
        .album .count {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 3;
            background: rgba(0, 0, 0, .55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border-radius: 980px;
            padding: 4px 12px;
            font-size: 10px;
            font-weight: 700;
            color: #fff;
            letter-spacing: .04em;
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity .5s var(--ease-apple), transform .5s var(--ease-apple);
            border: 1px solid rgba(255, 255, 255, .15);
        }
        .album:hover .count {
            opacity: 1;
            transform: none;
        }
        @media(max-width:480px) {
            .album .meta h4 {
                font-size: 13px;
            }
            .album .meta span {
                font-size: 10px;
            }
            .album .go {
                width: 28px;
                height: 28px;
            }
            .album .go .ic {
                width: 12px;
                height: 12px;
            }
            .album .wm {
                width: 36px;
                height: 36px;
            }
            .album .count {
                font-size: 9px;
                padding: 3px 10px;
                top: 10px;
                left: 10px;
            }
            .album .meta {
                padding: 14px 14px 12px;
            }
        }

        /* ── Lightbox ── */
        .lb {
            position: fixed;
            inset: 0;
            z-index: 120;
            display: grid;
            place-items: center;
            padding: clamp(12px, 3vw, 40px);
            pointer-events: none;
            opacity: 0;
            transition: opacity .5s var(--ease-apple);
        }
        .lb.open {
            opacity: 1;
            pointer-events: auto;
        }
        .lb .veil2 {
            position: absolute;
            inset: 0;
            background: rgba(12, 16, 38, .72);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }
        .lb .box {
            position: relative;
            width: min(1000px, 100%);
            max-height: 88vh;
            overflow: auto;
            background: #fff;
            border-radius: 22px;
            padding: clamp(16px, 3vw, 34px);
            transform: scale(.95) translateY(16px);
            transition: transform .6s var(--ease-apple);
            box-shadow: 0 50px 110px -30px rgba(9, 14, 42, .6);
            -webkit-overflow-scrolling: touch;
        }
        .lb.open .box {
            transform: scale(1) translateY(0);
        }
        .lb .lb-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
        }
        .lb .lb-head h3 {
            font-size: clamp(18px, 2.8vw, 26px);
            font-weight: 800;
        }
        .lb .lb-head p {
            margin-top: 3px;
            font-size: 12.5px;
            color: var(--gray);
            font-weight: 500;
        }
        .lb-x {
            width: 36px;
            height: 36px;
            flex: none;
            border-radius: 50%;
            background: var(--bg-soft);
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            transition: .4s var(--ease-apple);
        }
        .lb-x:hover {
            background: #E8E9EE;
            transform: rotate(90deg);
        }
        .lb-x svg {
            width: 15px;
            height: 15px;
            stroke: var(--ink);
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
        }
        .lb-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        @media(max-width:760px) {
            .lb-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        @media(max-width:480px) {
            .lb-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
        }
        .shot {
            aspect-ratio: 4/3;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(155deg, #2C3A8C, #1B2560);
            opacity: 0;
            transform: translateY(14px) scale(.97);
            transition: opacity .65s var(--ease-apple), transform .65s var(--ease-apple);
        }
        .lb.open .shot {
            opacity: 1;
            transform: none;
        }
        .shot::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(200px 150px at 75% 20%, rgba(245, 166, 35, .2), transparent 62%);
        }
        .shot .ph-ic {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            height: 28px;
            color: rgba(255, 255, 255, .4);
            stroke-width: 1.4;
            z-index: 1;
        }
        .shot .lbl {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 16px 10px 8px;
            z-index: 2;
            font-size: 10.5px;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(transparent, rgba(9, 14, 42, .8));
        }
        .lb .lb-foot {
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid var(--line);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .lb .lb-foot p {
            font-size: 12.5px;
            color: var(--gray);
            font-weight: 500;
        }
        @media(max-width:480px) {
            .lb .lb-foot p {
                font-size: 11px;
            }
            .lb .lb-foot .btn {
                font-size: 12px;
                padding: 10px 16px;
                min-height: 40px;
            }
        }

        /* ── Feature ── */
        .feature {
            text-align: center;
        }
        .feature h2 {
            font-size: clamp(24px, 4.8vw, 50px);
            font-weight: 800;
            max-width: 840px;
            margin: 0 auto;
        }
        .feature h2 .soft {
            color: #B9B9BF;
        }
        .feature .sub {
            margin: 16px auto 0;
            max-width: 560px;
            color: var(--gray);
            font-size: 15px;
            font-weight: 500;
        }
        .pillars {
            margin-top: 38px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            text-align: left;
        }
        @media(max-width:840px) {
            .pillars {
                grid-template-columns: 1fr;
                gap: 12px;
            }
        }
        .pillar {
            background: var(--bg-soft);
            border-radius: 20px;
            padding: 26px 22px;
            transition: transform .6s var(--ease-apple), background .4s var(--ease-apple);
        }
        .pillar:hover {
            transform: translateY(-4px);
            background: #EFF1F7;
        }
        .pillar .icobox {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #fff;
            color: var(--navy);
            display: grid;
            place-items: center;
            box-shadow: 0 6px 18px rgba(29, 29, 31, .06);
            transition: transform .55s var(--spring);
        }
        .pillar:hover .icobox {
            transform: scale(1.06) rotate(-4deg);
        }
        .pillar .icobox .ic {
            width: 18px;
            height: 18px;
        }
        .pillar h4 {
            margin-top: 14px;
            font-size: 15.5px;
            font-weight: 700;
        }
        .pillar p {
            margin-top: 5px;
            font-size: 13.5px;
            color: var(--gray);
        }

        /* ── Founder ── */
        .f-card {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: clamp(20px, 4.5vw, 64px);
            align-items: center;
        }
        @media(max-width:840px) {
            .f-card {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .f-photo {
            position: relative;
            aspect-ratio: 4/4.6;
            max-width: 360px;
            width: 100%;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(160deg, var(--navy), var(--navy-deep));
            display: grid;
            place-items: center;
            box-shadow: 0 28px 64px -22px rgba(27, 37, 96, .35);
        }
        .f-photo .circle {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .25);
            display: grid;
            place-items: center;
            margin: 0 auto 12px;
        }
        .f-photo .circle .ic {
            width: 32px;
            height: 32px;
            color: rgba(255, 255, 255, .8);
            stroke-width: 1.4;
        }
        .f-photo small {
            font-size: 10px;
            letter-spacing: .18em;
            text-transform: uppercase;
            font-weight: 600;
            color: rgba(255, 255, 255, .55);
        }
        .f-photo .ph2 {
            text-align: center;
            padding: 20px;
        }
        .f-quote {
            font-size: clamp(17px, 2.4vw, 26px);
            font-weight: 600;
            line-height: 1.42;
            letter-spacing: -.015em;
        }
        .f-quote::before {
            content: "“";
            display: block;
            font-size: 48px;
            line-height: .6;
            color: var(--amber);
            font-weight: 800;
            margin-bottom: 12px;
        }
        .f-who {
            margin-top: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .f-who .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            display: grid;
            place-items: center;
            font-weight: 700;
            font-size: 14px;
        }
        .f-who b {
            display: block;
            font-size: 14px;
            font-weight: 700;
        }
        .f-who span {
            font-size: 12px;
            color: var(--gray);
        }
        .f-points {
            margin-top: 18px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .f-points div b {
            display: block;
            font-size: 18px;
            font-weight: 800;
            color: var(--navy);
        }
        .f-points div span {
            font-size: 11px;
            color: var(--gray);
            font-weight: 600;
        }
        @media(max-width:480px) {
            .f-quote {
                font-size: 16px;
            }
            .f-who b {
                font-size: 13px;
            }
            .f-points div b {
                font-size: 16px;
            }
        }

        /* ── Testimonials ── */
        .testimonials {
            overflow: hidden;
            padding-bottom: 24px;
        }
        .t-belt {
            margin-top: 4px;
            position: relative;
        }
        .t-belt::before,
        .t-belt::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(36px, 10vw, 120px);
            z-index: 2;
            pointer-events: none;
        }
        .t-belt::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg), transparent);
        }
        .t-belt::after {
            right: 0;
            background: linear-gradient(-90deg, var(--bg), transparent);
        }
        .t-track {
            display: flex;
            gap: 14px;
            width: max-content;
            padding: 18px 0;
            animation: flow 46s linear infinite;
        }
        @keyframes flow {
            to {
                transform: translateX(-50%);
            }
        }
        .t-belt:hover .t-track {
            animation-play-state: paused;
        }
        .t-card {
            width: min(320px, 82vw);
            flex: none;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 20px 18px;
            transition: opacity .5s var(--ease-apple), transform .5s var(--ease-apple), box-shadow .5s var(--ease-apple),
                border-color .5s var(--ease-apple);
        }
        .t-belt:hover .t-card {
            opacity: .42;
            transform: scale(.975);
        }
        .t-belt .t-card:hover {
            opacity: 1;
            transform: scale(1.025);
            box-shadow: 0 20px 48px -16px rgba(29, 29, 31, .16);
            border-color: transparent;
            z-index: 3;
        }
        .t-stars {
            color: var(--amber);
            letter-spacing: 3px;
            font-size: 13px;
        }
        .t-card p {
            margin-top: 10px;
            font-size: 13px;
            line-height: 1.65;
            font-weight: 500;
        }
        .t-who {
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .t-who .av {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-weight: 700;
            font-size: 12px;
            color: #fff;
        }
        .t-who b {
            display: block;
            font-size: 12.5px;
        }
        .t-who span {
            font-size: 11px;
            color: var(--gray);
        }

        /* ── Process ── */
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        @media(max-width:900px) {
            .steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media(max-width:480px) {
            .steps {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }
        .step {
            background: #fff;
            border-radius: 18px;
            padding: 22px 18px;
            transition: transform .6s var(--ease-apple), box-shadow .6s var(--ease-apple);
        }
        .step:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 44px -14px rgba(29, 29, 31, .11);
        }
        .step .n {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 12px;
            transition: transform .55s var(--spring);
        }
        .step:hover .n {
            transform: scale(1.08);
        }
        .step h4 {
            font-size: 14px;
            font-weight: 700;
        }
        .step p {
            margin-top: 5px;
            font-size: 13px;
            color: var(--gray);
        }

        /* ── CTA ── */
        .cta {
            text-align: center;
            padding-bottom: 40px;
        }
        .cta-card {
            background: linear-gradient(165deg, var(--navy), var(--navy-deep));
            border-radius: 28px;
            color: #fff;
            padding: clamp(32px, 6vw, 72px) clamp(18px, 4.5vw, 56px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 36px 80px -28px rgba(27, 37, 96, .4);
        }
        .cta-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(560px 300px at 70% 0%, rgba(245, 166, 35, .15), transparent 65%);
        }
        .cta-card h2 {
            color: #fff;
            font-size: clamp(22px, 4.2vw, 44px);
            font-weight: 800;
            position: relative;
        }
        .cta-card p {
            position: relative;
            margin: 12px auto 0;
            max-width: 480px;
            color: #C5CCEC;
            font-size: 14.5px;
        }
        .cta-card .ar-line {
            position: relative;
            margin-top: 6px;
            color: #98A2D6;
            font-size: 13px;
        }
        .cta-btns {
            position: relative;
            margin-top: 24px;
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .cta-contacts {
            position: relative;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: clamp(10px, 3.6vw, 34px);
            flex-wrap: wrap;
            font-size: 12.5px;
            color: #C5CCEC;
        }
        .cta-contacts a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: color .35s var(--ease-apple);
        }
        .cta-contacts a:hover {
            color: #fff;
        }
        .cta-contacts .ic {
            width: 15px;
            height: 15px;
        }
        @media(max-width:480px) {
            .cta-contacts {
                font-size: 11px;
                gap: 8px;
                flex-direction: column;
                align-items: center;
            }
        }

        /* ── Contact form ── */
        .cf-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: clamp(16px, 2.4vw, 28px);
            align-items: start;
        }
        @media(max-width:840px) {
            .cf-grid {
                grid-template-columns: 1fr;
            }
        }
        .cf-card {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 20px;
            padding: clamp(20px, 3vw, 32px);
            box-shadow: 0 18px 44px -30px rgba(27, 37, 96, .35);
        }
        .cf-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        @media(max-width:560px) {
            .cf-row {
                grid-template-columns: 1fr;
            }
        }
        .cf-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 14px;
        }
        .cf-field label {
            font-size: 12px;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: .02em;
        }
        .cf-field input,
        .cf-field select,
        .cf-field textarea {
            font: inherit;
            font-size: 14px;
            color: var(--ink);
            background: var(--bg-soft);
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 12px 14px;
            width: 100%;
            transition: border-color .3s var(--ease-apple), background .3s var(--ease-apple), box-shadow .3s var(--ease-apple);
        }
        .cf-field textarea {
            min-height: 116px;
            resize: vertical;
        }
        .cf-field input:focus,
        .cf-field select:focus,
        .cf-field textarea:focus {
            outline: none;
            background: var(--bg);
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(74, 92, 199, .14);
        }
        .cf-field input::placeholder,
        .cf-field textarea::placeholder {
            color: #A1A1A6;
        }
        .cf-hp {
            position: absolute;
            left: -9999px;
            opacity: 0;
        }
        .cf-note {
            margin-top: 12px;
            font-size: 12px;
            color: var(--gray);
        }
        .cf-err {
            display: none;
            margin-top: 10px;
            font-size: 12.5px;
            font-weight: 600;
            color: #C0392B;
        }
        .cf-err.on {
            display: block;
        }
        .cf-info {
            background: linear-gradient(165deg, var(--navy), var(--navy-deep));
            color: #fff;
            border-radius: 20px;
            padding: clamp(20px, 3vw, 32px);
            position: relative;
            overflow: hidden;
        }
        .cf-info::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(420px 240px at 80% 0%, rgba(245, 166, 35, .16), transparent 65%);
        }
        .cf-info h3 {
            position: relative;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
        }
        .cf-info .ar-line {
            position: relative;
            margin-top: 4px;
            font-size: 12.5px;
            color: #98A2D6;
        }
        .cf-list {
            position: relative;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .cf-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: #C5CCEC;
            font-size: 13.5px;
            line-height: 1.5;
        }
        .cf-item .ic {
            width: 18px;
            height: 18px;
            flex: none;
            margin-top: 2px;
            color: var(--amber);
        }
        .cf-item b {
            display: block;
            color: #fff;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .cf-item a {
            color: #C5CCEC;
            transition: color .3s var(--ease-apple);
        }
        .cf-item a:hover {
            color: #fff;
        }
        .cf-info .btn {
            position: relative;
            margin-top: 22px;
            width: 100%;
        }

        /* ── Footer ── */
        footer {
            background: var(--bg-soft);
            padding: 40px 0 20px;
            font-size: 12.5px;
            color: var(--gray);
        }
        .foot-grid {
            display: grid;
            grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
            gap: 32px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--line);
        }
        @media(max-width:980px) {
            .foot-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:640px) {
            .foot-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h5 {
            font-size: 11px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 12px;
        }
        .f-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .f-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color .35s var(--ease-apple), transform .35s var(--ease-apple);
        }
        .f-links a:hover {
            color: var(--navy);
            transform: translateX(3px);
        }
        .f-links .ic {
            width: 14px;
            height: 14px;
            color: var(--navy);
        }
        .foot-bot {
            padding-top: 16px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 11px;
        }
        @media(max-width:480px) {
            .foot-bot {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        .wa {
            position: fixed;
            right: 16px;
            bottom: 16px;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #25D366;
            display: grid;
            place-items: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
            z-index: 80;
            transition: transform .5s var(--spring);
        }
        .wa:hover {
            transform: scale(1.08);
        }
        .wa:active {
            transform: scale(.93);
        }
        .wa svg {
            width: 26px;
            height: 26px;
        }
        @media(max-width:480px) {
            .wa {
                width: 48px;
                height: 48px;
                right: 12px;
                bottom: 12px;
            }
            .wa svg {
                width: 22px;
                height: 22px;
            }
        }

        /* ═══════════════════════════════════════════
           Interior pages — header, prose, sub-layouts
           ═══════════════════════════════════════════ */
        .page-hero {
            padding: clamp(96px, 13vw, 132px) 0 clamp(28px, 4vw, 44px);
            background:
                radial-gradient(760px 380px at 78% -10%, rgba(245, 166, 35, .10), transparent 62%),
                linear-gradient(180deg, rgba(38, 50, 122, .06), transparent 72%);
        }
        .page-hero .wrap {
            max-width: 900px;
        }
        .crumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--gray);
            margin-bottom: 14px;
            flex-wrap: wrap;
        }
        .crumbs a {
            color: var(--navy);
        }
        .crumbs a:hover {
            text-decoration: underline;
        }
        .crumbs span.sep {
            opacity: .45;
        }
        [dir="rtl"] .crumbs span.sep {
            transform: scaleX(-1);
            display: inline-block;
        }
        .page-hero h1 {
            font-size: clamp(28px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: -.02em;
            line-height: 1.12;
        }
        [dir="rtl"] .page-hero h1 {
            letter-spacing: 0;
            line-height: 1.35;
        }
        .page-hero .lead {
            margin-top: 14px;
            font-size: clamp(14.5px, 1.9vw, 18px);
            color: var(--gray);
            font-weight: 500;
            max-width: 700px;
        }
        .page-hero .hero-ctas {
            margin-top: 24px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* ── long-form / legal copy ── */
        .prose {
            max-width: 780px;
            margin: 0 auto;
        }
        .prose h2 {
            font-size: clamp(18px, 2.6vw, 24px);
            font-weight: 800;
            margin: 34px 0 10px;
            scroll-margin-top: 90px;
        }
        .prose h2:first-child {
            margin-top: 0;
        }
        .prose h3 {
            font-size: 15.5px;
            font-weight: 700;
            margin: 20px 0 6px;
        }
        .prose p {
            color: var(--gray);
            font-size: 14.5px;
            margin-bottom: 12px;
        }
        .prose ul {
            margin: 0 0 14px;
            padding-inline-start: 20px;
            color: var(--gray);
            font-size: 14.5px;
        }
        .prose li {
            margin-bottom: 7px;
        }
        .prose strong {
            color: var(--ink);
            font-weight: 700;
        }
        .prose a {
            color: var(--navy);
            font-weight: 600;
        }
        .prose a:hover {
            text-decoration: underline;
        }
        .legal-meta {
            display: inline-block;
            font-size: 11.5px;
            font-weight: 700;
            color: var(--navy);
            background: rgba(38, 50, 122, .07);
            padding: 5px 12px;
            border-radius: 980px;
            margin-bottom: 22px;
        }
        .legal-note {
            margin-top: 36px;
            padding: 20px 22px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: var(--bg-soft);
        }
        .legal-note h4 {
            font-size: 14.5px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .legal-note p {
            font-size: 13.5px;
            color: var(--gray);
            margin: 0;
        }

        /* ── generic band + stat strip ── */
        .band {
            padding: clamp(28px, 4.4vw, 56px) 0;
        }
        .band-soft {
            background: var(--bg-soft);
        }
        .stat-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-strip > div {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 20px 12px;
        }
        .stat-strip b {
            display: block;
            font-size: clamp(22px, 3.6vw, 32px);
            font-weight: 800;
            color: var(--navy);
            line-height: 1.2;
        }
        .stat-strip span {
            font-size: 12px;
            color: var(--gray);
            font-weight: 600;
        }
        @media(max-width:560px) {
            .stat-strip {
                grid-template-columns: 1fr;
            }
        }

        /* ── mini call-to-action panel ── */
        .mini-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            background: linear-gradient(165deg, var(--navy), var(--navy-deep));
            color: #fff;
            border-radius: 22px;
            padding: clamp(22px, 3.4vw, 36px);
            position: relative;
            overflow: hidden;
        }
        .mini-cta::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(460px 240px at 82% 0%, rgba(245, 166, 35, .17), transparent 66%);
        }
        .mini-cta > div {
            position: relative;
            max-width: 560px;
        }
        .mini-cta h3 {
            color: #fff;
            font-size: clamp(17px, 2.5vw, 23px);
            font-weight: 800;
        }
        .mini-cta p {
            color: #C5CCEC;
            font-size: 14px;
            margin-top: 6px;
        }
        .mini-cta .btn {
            position: relative;
            flex: none;
        }

        /* ── reviews page grid ── */
        .rev-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        @media(max-width:900px) {
            .rev-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media(max-width:620px) {
            .rev-grid {
                grid-template-columns: 1fr;
            }
        }
        .rev-card {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rev-card .t-stars {
            color: var(--amber);
            font-size: 13px;
            letter-spacing: 2px;
        }
        .rev-card p {
            font-size: 14px;
            color: var(--gray);
            flex: 1;
        }

        /* ── appointment form extras ── */
        .q-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin-top: 22px;
        }
        @media(max-width:760px) {
            .q-steps {
                grid-template-columns: 1fr;
            }
        }
        .q-step {
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
        }
        .q-step .n {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--navy);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            display: grid;
            place-items: center;
            margin-bottom: 10px;
        }
        .q-step h4 {
            font-size: 14.5px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .q-step p {
            font-size: 13px;
            color: var(--gray);
        }

        /* uploaded photos inside album cards / lightbox */
        .shot.has-img { background: #1E2A66; }
        .shot.has-img img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .shot.has-img .lbl {
            position: relative;
            z-index: 2;
            background: linear-gradient(transparent, rgba(0,0,0,.7));
        }

        /* ═══════════════════ Blog ═══════════════════ */
        .blog-search {
            display: flex; gap: 10px; max-width: 560px; margin: 0 auto 32px;
        }
        .blog-search .ic { display: none; }
        .blog-search input {
            flex: 1; font: inherit; font-size: 14px; padding: 12px 16px;
            border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); color: var(--ink);
        }
        .blog-search input:focus { outline: none; border-color: var(--blue); background: var(--bg); }
        .blog-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
        }
        @media(max-width:900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width:600px) { .blog-grid { grid-template-columns: 1fr; } }
        .blog-card {
            background: var(--bg); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
            display: flex; flex-direction: column; transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
        }
        .blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -30px rgba(27,37,96,.4); }
        .blog-cover { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: #1E2A66; }
        .blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-apple); }
        .blog-card:hover .blog-cover img { transform: scale(1.05); }
        .blog-cover-ph { position: absolute; inset: 0; display: grid; place-items: center;
            background: linear-gradient(155deg, #2C3A8C, #16205A); }
        .blog-cover-ph .wm { width: 46px; height: 46px; color: rgba(255,255,255,.4); }
        .blog-cat {
            position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
            background: rgba(0,0,0,.55); backdrop-filter: blur(6px); color: #fff;
            font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 980px;
        }
        .blog-cat.static { display: inline-block; position: static; background: var(--navy); margin-bottom: 12px; }
        .blog-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
        .blog-meta { font-size: 12px; color: var(--gray); font-weight: 600; }
        .blog-body h3 { font-size: 17px; font-weight: 800; line-height: 1.3; }
        .blog-body h3 a { color: var(--ink); }
        .blog-body h3 a:hover { color: var(--navy); }
        .blog-body p { font-size: 13.5px; color: var(--gray); flex: 1; }
        .blog-more {
            display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy);
        }
        .blog-more .ic { width: 15px; height: 15px; }
        [dir="rtl"] .blog-more .ic { transform: scaleX(-1); }
        .blog-hero-img {
            width: 100%; max-height: 460px; object-fit: cover; border-radius: 20px; margin-bottom: 30px;
        }
        .blog-article { max-width: 760px; }
        .blog-article img { max-width: 100%; border-radius: 12px; margin: 18px 0; }
        .pager { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
        .pager a {
            min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 10px;
            border: 1px solid var(--line); border-radius: 10px; font-weight: 700; font-size: 14px; color: var(--ink);
        }
        .pager a.on, .pager a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

        /* ═══════════════════ Gallery v2 — albums + photo modal ═══════════════════ */
        .alb-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(12px, 2vw, 22px);
        }
        @media(max-width:820px) { .alb-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width:460px) { .alb-grid { grid-template-columns: 1fr; } }

        .alb-card {
            display: block;
            background: var(--bg);
            border: 1px solid var(--line);
            border-radius: 18px;
            overflow: hidden;
            transition: transform .4s var(--ease-apple), box-shadow .4s var(--ease-apple);
        }
        .alb-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -28px rgba(27,37,96,.4); }
        .alb-card:active { transform: translateY(-1px); }
        .alb-cover {
            position: relative;
            aspect-ratio: 4/3;
            background: linear-gradient(155deg, #2C3A8C, #16205A);
            overflow: hidden;
        }
        .alb-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-apple); }
        .alb-card:hover .alb-cover img { transform: scale(1.06); }
        .alb-ph { position: absolute; inset: 0; display: grid; place-items: center; }
        .alb-ph .ic { width: 46px; height: 46px; color: rgba(255,255,255,.5); }
        .alb-count {
            position: absolute; bottom: 10px; inset-inline-end: 10px;
            background: rgba(0,0,0,.6); backdrop-filter: blur(6px); color: #fff;
            font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 980px;
        }
        .alb-info { padding: 14px 16px 16px; }
        .alb-info h3 { font-size: 15.5px; font-weight: 800; line-height: 1.3; }
        .alb-info span { display: block; margin-top: 3px; font-size: 12.5px; color: var(--gray); }

        /* photos inside one album */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        @media(max-width:900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
        @media(max-width:560px) { .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; } }
        .ph-tile {
            position: relative;
            aspect-ratio: 1;
            border: none; padding: 0; cursor: pointer;
            border-radius: 13px; overflow: hidden; background: #1E2A66;
            display: block;
        }
        .ph-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-apple); }
        .ph-tile:hover img { transform: scale(1.07); }
        .ph-tile .ph-cap {
            position: absolute; inset-inline: 0; bottom: 0; padding: 16px 12px 8px;
            font-size: 11.5px; font-weight: 600; color: #fff; text-align: start;
            background: linear-gradient(transparent, rgba(0,0,0,.72));
            opacity: 0; transition: opacity .3s;
        }
        .ph-tile:hover .ph-cap { opacity: 1; }
        @media(hover:none) { .ph-tile .ph-cap { opacity: 1; } }

        /* ── fullscreen photo modal ── */
        .pm {
            position: fixed; inset: 0; z-index: 200;
            display: none; align-items: center; justify-content: center;
            touch-action: none;
        }
        .pm.open { display: flex; }
        .pm-backdrop { position: absolute; inset: 0; background: rgba(8,10,24,.94); }
        .pm-stage {
            position: relative; z-index: 1;
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .pm-stage img {
            max-width: 92vw; max-height: 82vh;
            object-fit: contain;
            border-radius: 6px;
            transform-origin: center center;
            transition: transform .18s ease-out;
            will-change: transform;
            user-select: none; -webkit-user-drag: none;
        }
        .pm-stage.grabbing { cursor: grab; }
        .pm-stage.grabbing.panning { cursor: grabbing; }
        .pm-btn {
            position: relative; z-index: 3;
            width: 46px; height: 46px; border-radius: 50%;
            border: none; cursor: pointer;
            background: rgba(255,255,255,.12); color: #fff;
            display: grid; place-items: center;
            transition: background .25s;
            -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
        }
        .pm-btn:hover { background: rgba(255,255,255,.24); }
        .pm-btn svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .pm-close { position: absolute; top: 16px; inset-inline-end: 16px; z-index: 4; }
        .pm-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; }
        .pm-prev { inset-inline-start: 14px; }
        .pm-next { inset-inline-end: 14px; }
        [dir="rtl"] .pm-prev svg, [dir="rtl"] .pm-next svg { transform: scaleX(-1); }
        .pm-toolbar {
            position: absolute; bottom: 0; inset-inline: 0; z-index: 4;
            display: flex; align-items: center; justify-content: space-between; gap: 12px;
            padding: 14px clamp(14px, 4vw, 28px) calc(14px + env(safe-area-inset-bottom, 0px));
            background: linear-gradient(transparent, rgba(0,0,0,.55));
        }
        .pm-cap { color: #fff; font-size: 13.5px; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
        .pm-zoom { display: flex; gap: 8px; }
        .pm-zoom .pm-btn { width: 40px; height: 40px; }
        @media(max-width:560px) {
            .pm-btn { width: 42px; height: 42px; }
            .pm-nav { width: 40px; height: 40px; }
            .pm-stage img { max-width: 96vw; max-height: 74vh; }
        }
        @media(max-width:380px) {
            .pm-cap { display: none; }
        }

        /* uploaded logo image (shown instead of the KGT text + company name) */
        .brand-logo {
            height: clamp(40px, 5vw, 52px);
            width: auto;
            max-width: 240px;
            object-fit: contain;
            display: block;
        }
        .brand.has-logo { gap: 0; }
        @media(max-width:560px) {
            .brand-logo { height: 38px; max-width: 180px; }
        }
