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

    :root {
      --bg:       #050505;
      --bg-2:     #0b0b0b;
      --bg-3:     #111111;
      --gold:     #C49A3C;
      --gold-l:   #DDB95A;
      --gold-d:   rgba(196,154,60,0.25);
      --white:    #EDE8DF;
      --mid:      #9A9590;
      --dim:      #6A6560;
      --border:   rgba(196,154,60,0.10);
      --border-b: rgba(196,154,60,0.32);
      --wa:       #25D366;
      --pad:      clamp(24px, 5vw, 80px);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 19px;
      overflow-x: hidden;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold-d); }

    body::after {
      content: ''; position: fixed; inset: 0;
      pointer-events: none; z-index: 9998; opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    a { color: inherit; }

    /* ─── NAVIGATION ─── */
    nav {
      position: fixed; inset: 0 0 auto 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px var(--pad);
      transition: padding .4s, background .4s, backdrop-filter .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      padding: 18px var(--pad);
      background: rgba(5,5,5,.94);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      border-color: var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px; font-weight: 500;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--white); text-decoration: none;
      z-index: 600; position: relative;
    }
    .nav-logo span { color: var(--gold); }
    .nav-right { display: flex; align-items: center; gap: 44px; }
    .nav-links { display: flex; gap: 44px; list-style: none; align-items: center; }
    .nav-links a {
      text-decoration: none; color: var(--mid);
      font-size: 14px; letter-spacing: .22em;
      text-transform: uppercase; font-weight: 400; transition: color .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      border: 1px solid var(--border-b) !important; color: var(--gold) !important;
      padding: 13px 32px; transition: background .3s, color .3s !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }

    /* Language switch */
    .lang-switch { display: flex; gap: 10px; align-items: center; }
    .lang-switch a {
      font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
      color: var(--dim); text-decoration: none; transition: color .3s;
    }
    .lang-switch a.active { color: var(--gold); }
    .lang-switch a:hover { color: var(--white); }
    .lang-sep { width: 1px; height: 12px; background: var(--border-b); }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; z-index: 600; position: relative;
      padding: 4px; background: none; border: none;
    }
    .hamburger span {
      display: block; width: 26px; height: 1.5px;
      background: var(--white); transition: transform .35s, opacity .35s, background .3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

    /* Mobile overlay menu */
    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(5,5,5,.98); z-index: 400;
      flex-direction: column; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .4s;
    }
    .mobile-menu.open { opacity: 1; }
    .mobile-menu a {
      text-decoration: none; color: var(--mid);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 6.4vw, 38px); font-weight: 300;
      letter-spacing: .05em;
      padding: 12px 0; border-bottom: 1px solid var(--border);
      width: 80%; text-align: center; transition: color .3s;
    }
    .mobile-menu a.mm-cta { border-bottom: none; }
    .mobile-menu a:hover, .mobile-menu a:active { color: var(--gold); }
    .mobile-menu .mm-cta {
      color: var(--gold); margin-top: 24px;
      font-size: clamp(16px, 4.2vw, 20px);
      font-family: 'Jost', sans-serif; letter-spacing: .32em;
      text-transform: uppercase; border: 1px solid var(--border-b) !important;
      padding: 16px 52px !important; width: auto !important;
    }
    .mm-lang { display: flex; gap: 18px; margin-top: 30px; }
    .mm-lang a {
      font-family: 'Jost', sans-serif !important; font-size: 15px !important;
      letter-spacing: .2em; text-transform: uppercase; border: none; width: auto;
      padding: 0; color: var(--dim);
    }
    .mm-lang a.active { color: var(--gold); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100svh; display: flex; align-items: center;
      position: relative; overflow: hidden; padding: 0 var(--pad);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 65% 45%, rgba(196,154,60,.045) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 15% 70%, rgba(196,154,60,.02) 0%, transparent 55%),
        linear-gradient(165deg, #050505 0%, #080808 60%, #060606 100%);
    }
    .hero-img-wrap { position: absolute; right: 0; top: 0; height: 100%; width: 58%; overflow: hidden; }
    .hero-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; opacity: .22;
      filter: brightness(.7) contrast(1.1);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.7) 0%, transparent 80%);
      mask-image: linear-gradient(to left, rgba(0,0,0,.7) 0%, transparent 80%);
      animation: subtleZoom 18s ease-in-out infinite alternate;
    }
    @keyframes subtleZoom { from { transform: scale(1.05); } to { transform: scale(1.0); } }
    .hero-content { position: relative; z-index: 2; max-width: 680px; padding-top: 80px; }
    .hero-eyebrow {
      display: flex; align-items: center; gap: 18px; margin-bottom: 32px;
      opacity: 0; animation: fadeUp .9s .15s forwards;
    }
    .hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold); flex-shrink: 0; }
    .hero-eyebrow span { font-size: 13px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 8.2vw, 118px);
      font-weight: 300; line-height: .99; letter-spacing: -.01em;
      margin-bottom: 30px; opacity: 0; animation: fadeUp 1.1s .35s forwards;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }
    .hero-sub {
      font-size: clamp(18px, 1.9vw, 20px); color: var(--mid);
      max-width: 500px; line-height: 1.9; margin-bottom: 36px; font-weight: 300;
      opacity: 0; animation: fadeUp .9s .55s forwards;
    }
    .hero-ctas {
      display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
      opacity: 0; animation: fadeUp .9s .75s forwards;
    }
    .hero-trust {
      display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px;
      opacity: 0; animation: fadeUp .9s .95s forwards;
    }
    .hero-trust span {
      font-size: 13px; letter-spacing: .12em; color: var(--dim);
      display: flex; align-items: center; gap: 9px; text-transform: uppercase;
    }
    .hero-trust span::before {
      content: ''; width: 15px; height: 15px; flex-shrink: 0;
      background: var(--gold);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .btn-gold {
      display: inline-block; padding: 17px 46px;
      background: var(--gold); color: var(--bg); text-decoration: none;
      font-size: 14px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
      transition: background .3s, transform .2s;
    }
    .btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
    .btn-outline {
      display: inline-block; padding: 17px 46px;
      border: 1px solid var(--border-b); color: var(--mid); text-decoration: none;
      font-size: 14px; letter-spacing: .28em; text-transform: uppercase;
      transition: border-color .3s, color .3s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .scroll-hint {
      position: absolute; bottom: 40px; right: var(--pad);
      display: flex; align-items: center; gap: 18px;
      opacity: 0; animation: fadeIn 1s 1.6s forwards;
    }
    .scroll-hint-line {
      width: 56px; height: 1px; background: var(--border-b);
      position: relative; overflow: hidden;
    }
    .scroll-hint-line::after {
      content: ''; position: absolute; inset: 0; background: var(--gold);
      animation: scanRight 2.2s 1.6s infinite ease-in-out; transform: translateX(-100%);
    }
    @keyframes scanRight {
      0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(200%); }
    }
    .scroll-hint span { font-size: 13px; letter-spacing: .35em; text-transform: uppercase; color: var(--dim); }

    /* ─── STATS ─── */
    .stats-bar {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .stat {
      padding: 52px 32px; text-align: center;
      border-right: 1px solid var(--border); position: relative; overflow: hidden;
    }
    .stat:last-child { border-right: none; }
    .stat::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0); transform-origin: left; transition: transform .8s ease;
    }
    .stat.vis::before { transform: scaleX(1); }
    .stat-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(58px, 7.2vw, 86px); font-weight: 300; line-height: 1;
      color: var(--white); margin-bottom: 10px;
    }
    .stat-n sup { font-size: .45em; color: var(--gold); vertical-align: super; }
    .stat-l { font-size: 14px; letter-spacing: .28em; text-transform: uppercase; color: var(--dim); }

    /* ─── SHARED ─── */
    .section-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .section-eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); flex-shrink: 0; }
    .section-eyebrow span { font-size: 13px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
    .section-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 82px); font-weight: 300; line-height: 1.08; }
    .section-h em { font-style: italic; color: var(--gold); }
    .section-intro { font-size: clamp(17px, 1.7vw, 19px); color: var(--dim); max-width: 620px; margin-top: 22px; line-height: 1.9; }
    .gold-rule { width: 52px; height: 1px; background: var(--gold); margin: 36px 0; }

    /* ─── MISSION ─── */
    .mission {
      padding: 110px var(--pad); background: var(--bg-2);
      display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; align-items: center;
    }
    .mission-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3.1vw, 41px); font-weight: 300; font-style: italic;
      line-height: 1.65; color: var(--mid);
    }
    .mission-quote strong { font-style: normal; font-weight: 500; color: var(--white); }
    .mission-body p { font-size: clamp(18px, 1.8vw, 20px); color: var(--dim); line-height: 1.95; }
    .mission-body p + p { margin-top: 20px; }

    /* ─── USPS ─── */
    .usps { padding: 100px var(--pad); background: var(--bg); }
    .usps-hd { margin-bottom: 56px; }
    .usps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .usp-card {
      background: var(--bg); padding: 52px 36px 48px;
      position: relative; overflow: hidden; transition: background .35s;
    }
    .usp-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: translateX(-100%); transition: transform .6s ease;
    }
    .usp-card:hover::after { transform: translateX(0); }
    .usp-card:hover { background: var(--bg-3); }
    .usp-no { font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: .35em; color: var(--dim); text-transform: uppercase; margin-bottom: 28px; }
    .usp-ico { width: 42px; height: 42px; color: var(--gold); margin-bottom: 22px; }
    .usp-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(29px, 2.4vw, 36px); font-weight: 400; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
    .usp-text { font-size: 18px; color: var(--dim); line-height: 1.85; }

    /* ─── PROCESS ─── */
    .process { padding: 100px var(--pad); background: var(--bg-2); }
    .process-hd { margin-bottom: 60px; }
    .proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .proc-step { background: var(--bg-2); padding: 46px 34px 42px; position: relative; }
    .proc-num {
      font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300;
      color: var(--gold-d); line-height: 1; margin-bottom: 22px; display: block;
    }
    .proc-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
    .proc-step p { font-size: 17px; color: var(--dim); line-height: 1.8; }

    /* ─── SERVICES ─── */
    .services { padding: 100px var(--pad); background: var(--bg); }
    .services-hd { margin-bottom: 56px; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .srv-card { border: 1px solid var(--border); overflow: hidden; transition: border-color .35s; display: flex; flex-direction: column; }
    .srv-card:hover { border-color: var(--border-b); }
    .srv-img-wrap { height: 240px; overflow: hidden; }
    .srv-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.75) grayscale(10%); transition: filter .6s, transform .6s; }
    .srv-card:hover .srv-img { filter: brightness(.88) grayscale(0%); transform: scale(1.04); }
    .srv-body { padding: 28px 26px 32px; display: flex; flex-direction: column; flex: 1; }
    .srv-tag { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .srv-name { font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 400; color: var(--white); margin-bottom: 8px; }
    .srv-spec { font-size: 17px; color: var(--mid); margin-bottom: 12px; }
    .srv-desc { font-size: 15.5px; color: var(--dim); line-height: 1.75; }
    .srv-model { margin-top: auto; padding-top: 16px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); border-top: 1px solid var(--border); }
    .srv-model b { color: var(--mid); font-weight: 500; }

    /* ─── WORLD MAP ─── */
    .map-section { padding: 100px 0 64px; background: var(--bg-2); overflow: hidden; }
    .map-hd { padding: 0 var(--pad) 52px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
    .map-desc { font-size: clamp(17px, 1.7vw, 19px); color: var(--dim); max-width: 380px; line-height: 1.85; }
    #map-wrap { width: 100%; height: 560px; }
    #map-wrap svg { display: block; }
    .cities-list { padding: 32px var(--pad) 0; display: flex; flex-wrap: wrap; gap: 16px 32px; }
    .city-pill { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; gap: 8px; transition: color .3s; cursor: default; }
    .city-pill:hover { color: var(--gold); }
    .city-pill::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 7px var(--gold); flex-shrink: 0; }

    /* ─── TRUST ─── */
    .trust { padding: 100px var(--pad); background: var(--bg); }
    .trust-hd { margin-bottom: 56px; }
    .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .trust-card { border: 1px solid var(--border); padding: 40px 34px; transition: border-color .35s, background .35s; }
    .trust-card:hover { border-color: var(--border-b); background: var(--bg-2); }
    .trust-ico { width: 34px; height: 34px; color: var(--gold); margin-bottom: 20px; }
    .trust-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
    .trust-card p { font-size: 16.5px; color: var(--dim); line-height: 1.8; }

    /* ─── GALLERY ─── */
    .gallery { padding: 100px var(--pad); background: var(--bg-2); }
    .gallery-hd { margin-bottom: 30px; }

    /* Category filter */
    .gal-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
    .gf-btn {
      background: transparent; border: 1px solid var(--border); color: var(--mid);
      font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
      padding: 11px 24px; cursor: pointer; transition: border-color .3s, color .3s, background .3s;
    }
    .gf-btn:hover { color: var(--gold); border-color: var(--border-b); }
    .gf-btn.active { color: var(--bg); background: var(--gold); border-color: var(--gold); }

    /* Justified mosaic — gap-tight rows, no black voids */
    .gal-mosaic { display: flex; flex-wrap: wrap; gap: 8px; }
    .gj-item {
      position: relative; overflow: hidden; cursor: pointer;
      flex: 1 1 340px; max-width: 70%; aspect-ratio: 3 / 2;
    }
    .gj-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: brightness(.84) saturate(1.04);
      transition: filter .55s ease, transform .8s cubic-bezier(.16,1,.3,1);
    }
    .gj-item::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(5,5,5,.72) 0%, rgba(5,5,5,.05) 44%, transparent 72%);
      opacity: .92; transition: opacity .5s;
    }
    .gj-item::before {
      content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
      border: 1px solid transparent; transition: border-color .45s;
    }
    .gj-item:hover img { filter: brightness(1.03) saturate(1.08); transform: scale(1.06); }
    .gj-item:hover::after { opacity: .5; }
    .gj-item:hover::before { border-color: var(--border-b); }
    .gj-cap {
      position: absolute; left: 20px; bottom: 16px; z-index: 3; right: 16px;
      font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400;
      color: var(--white); letter-spacing: .01em; line-height: 1.1;
      transform: translateY(5px); opacity: .9; transition: transform .5s, opacity .5s;
      text-shadow: 0 2px 14px rgba(0,0,0,.65);
    }
    .gj-item:hover .gj-cap { transform: none; opacity: 1; }
    .gj-item.hide { display: none; }
    .gj-item.enter { animation: gjFade .6s ease both; }
    @keyframes gjFade { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }

    /* ─── FAQ ─── */
    .faq { padding: 100px var(--pad); background: var(--bg); }
    .faq-hd { margin-bottom: 52px; }
    .faq-list { max-width: 920px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item summary {
      list-style: none; cursor: pointer; padding: 30px 44px 30px 0; position: relative;
      font-family: 'Cormorant Garamond', serif; font-size: clamp(23px, 2.3vw, 30px);
      font-weight: 400; color: var(--white); transition: color .3s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: var(--gold); }
    .faq-item summary::after {
      content: ''; position: absolute; right: 6px; top: 50%; width: 15px; height: 15px;
      transform: translateY(-50%);
      background: var(--gold);
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
      transition: transform .35s;
    }
    .faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
    .faq-item .faq-a { padding: 0 44px 30px 0; }
    .faq-item .faq-a p { font-size: 18px; color: var(--dim); line-height: 1.9; max-width: 760px; }

    /* ─── CONTACT ─── */
    .contact { padding: 110px var(--pad); background: var(--bg-2); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-sub { font-size: clamp(18px, 1.8vw, 20px); color: var(--dim); line-height: 1.95; margin-bottom: 44px; }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .c-item { display: flex; gap: 20px; align-items: center; text-decoration: none; }
    .c-icon { width: 48px; height: 48px; border: 1px solid var(--border-b); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; transition: background .3s; }
    .c-item:hover .c-icon { background: var(--gold-d); }
    .c-label { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); margin-bottom: 5px; }
    .c-val { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--white); text-decoration: none; transition: color .3s; }
    .c-item:hover .c-val { color: var(--gold); }
    .c-note { margin-top: 30px; font-size: 15px; color: var(--dim); line-height: 1.8; padding-left: 2px; }
    .contact-form { border: 1px solid var(--border); padding: 52px 44px; background: var(--bg); }
    .form-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
    .form-lead { font-size: 15.5px; color: var(--dim); margin-bottom: 34px; line-height: 1.7; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-g { margin-bottom: 26px; }
    .form-lbl { display: block; font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
    .form-inp { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(196,154,60,.2); padding: 10px 0; color: var(--white); font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 300; outline: none; transition: border-color .3s; }
    .form-inp:focus { border-color: var(--gold); }
    .form-inp::placeholder { color: var(--dim); font-size: 17px; }
    .form-ta { resize: vertical; min-height: 90px; }
    .form-consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 24px; }
    .form-consent input { margin-top: 5px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
    .form-consent label { font-size: 13.5px; color: var(--dim); line-height: 1.65; }
    .form-consent a { color: var(--gold); }
    .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
    .form-btn { width: 100%; margin-top: 4px; padding: 18px; background: var(--gold); border: 1px solid var(--gold); color: var(--bg); font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; cursor: pointer; transition: background .3s, color .3s; }
    .form-btn:hover { background: var(--gold-l); }
    .form-alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--dim); }
    .form-alt a { color: var(--gold); text-decoration: none; }

    /* ─── FOOTER ─── */
    footer { border-top: 1px solid var(--border); background: var(--bg); }
    .footer-top { padding: 68px var(--pad) 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
    .footer-brand .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
    .footer-brand .footer-logo span { color: var(--gold); }
    .footer-brand p { font-size: 15px; color: var(--dim); line-height: 1.8; max-width: 320px; }
    .footer-col h4 { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-col a { font-size: 15px; color: var(--mid); text-decoration: none; transition: color .3s; }
    .footer-col a:hover { color: var(--gold); }
    .footer-col address { font-style: normal; font-size: 15px; color: var(--mid); line-height: 1.8; }
    .footer-bottom { border-top: 1px solid var(--border); padding: 26px var(--pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .footer-copy { font-size: 14px; color: var(--dim); letter-spacing: .04em; }
    .footer-soc { display: flex; gap: 12px; }
    .soc-link { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--dim); text-decoration: none; transition: border-color .3s, color .3s; }
    .soc-link:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── STICKY MOBILE CTA ─── */
    .sticky-cta { display: none; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1); }
    .reveal.vis { opacity: 1; transform: none; }
    .d1 { transition-delay: .10s; } .d2 { transition-delay: .20s; }
    .d3 { transition-delay: .30s; } .d4 { transition-delay: .40s; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
      .reveal { opacity: 1; transform: none; }
    }

    /* Hide decorative scroll hint where it could overlap the hero trust row */
    @media (max-width: 1100px), (max-height: 780px) {
      .scroll-hint { display: none; }
    }

    /* ════════════ TABLET ≤ 1100px ════════════ */
    @media (max-width: 1100px) {
      .usps-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(3, 1fr); }
      .mission { grid-template-columns: 1fr; gap: 48px; }
      .map-hd { flex-direction: column; align-items: flex-start; }
      .gj-item { flex-basis: 300px; }
      .contact { grid-template-columns: 1fr; gap: 56px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    /* ════════════ MOBILE ≤ 768px ════════════ */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-right > .lang-switch { display: none; }
      .hamburger { display: flex; }

      .hero { align-items: flex-end; padding-bottom: 96px; }
      .hero-content { max-width: 100%; padding-top: 100px; }
      .hero-img-wrap {
        width: 100%; height: 55%;
        top: auto; bottom: 0;
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 90%);
        mask-image: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 90%);
      }
      .hero h1 { font-size: clamp(48px, 13vw, 78px); }
      .hero-sub { font-size: 19px; max-width: 100%; }
      .hero-eyebrow span { font-size: 12px; letter-spacing: .3em; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .btn-gold, .btn-outline { text-align: center; padding: 18px 32px; font-size: 15px; }
      .hero-trust { gap: 14px 22px; }
      .scroll-hint { display: none; }

      .stats-bar { grid-template-columns: repeat(2, 1fr); }
      .stat { padding: 40px 20px; }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-top: 1px solid var(--border); }
      .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

      .mission { padding: 72px var(--pad); grid-template-columns: 1fr; gap: 36px; }
      .mission-quote { font-size: clamp(24px, 6.6vw, 34px); }
      .gold-rule { margin: 24px 0; }

      .usps { padding: 72px var(--pad); }
      .usps-grid { grid-template-columns: 1fr; }
      .usp-card { padding: 40px 28px; }
      .usp-text { font-size: 19px; }

      .process { padding: 72px var(--pad); }
      .proc-grid { grid-template-columns: 1fr; }

      .services { padding: 72px var(--pad); }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .srv-img-wrap { height: 240px; }
      .srv-name { font-size: 34px; }
      .srv-spec { font-size: 18px; }

      .map-section { padding: 72px 0 48px; }
      .map-hd { padding: 0 var(--pad) 40px; flex-direction: column; align-items: flex-start; }
      .map-desc { max-width: 100%; font-size: 18px; }
      #map-wrap { height: 340px; }
      .cities-list { gap: 12px 20px; padding-top: 24px; }
      .city-pill { font-size: 14px; }

      .trust { padding: 72px var(--pad); }
      .trust-grid { grid-template-columns: 1fr; }

      .gallery { padding: 72px var(--pad); }
      .gal-mosaic { gap: 6px; }
      .gj-item { flex: 1 1 100%; max-width: 100%; }
      .gj-cap { font-size: 21px; }
      .gf-btn { padding: 10px 18px; font-size: 11px; letter-spacing: .16em; }

      .faq { padding: 72px var(--pad); }

      .contact { padding: 72px var(--pad) 120px; grid-template-columns: 1fr; gap: 48px; }
      .contact-form { padding: 36px 24px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .form-title { font-size: 34px; }
      .c-val { font-size: 24px; }

      .footer-top { grid-template-columns: 1fr; gap: 34px; padding: 56px var(--pad) 40px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 96px; }
      .footer-copy { font-size: 13px; }

      .section-h { font-size: clamp(43px, 10.8vw, 62px); }
      .usps-hd, .services-hd, .gallery-hd, .trust-hd, .process-hd, .faq-hd { margin-bottom: 40px; }

      /* Sticky mobile call/WhatsApp bar */
      .sticky-cta {
        display: grid; grid-template-columns: 1fr 1fr;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 450;
        border-top: 1px solid var(--border-b);
        background: rgba(5,5,5,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      }
      .sticky-cta a {
        padding: 15px 8px; text-align: center; text-decoration: none;
        font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
        display: flex; align-items: center; justify-content: center; gap: 8px;
      }
      .sticky-cta .sc-call { color: var(--gold); border-right: 1px solid var(--border); }
      .sticky-cta .sc-wa { color: var(--wa); }
      .sticky-cta svg { width: 17px; height: 17px; }
    }

    /* ════════════ XS ≤ 420px ════════════ */
    @media (max-width: 420px) {
      .hero h1 { font-size: clamp(42px, 14vw, 60px); }
      .gj-cap { font-size: 20px; }
    }
  