    :root {
      --bg: #f6f3ee; --surface: #fffaf4; --text: #141414; --muted: #6f6a64; --line: #e7ddd0;
      --accent: #ef7d32; --accent-dark: #d86417; --dark: #171717; --max: 1200px;
      --shadow: 0 18px 50px rgba(20,20,20,.08); --shadow-hover: 0 30px 70px rgba(20,20,20,.14);
      --ease-premium: cubic-bezier(.22,1,.36,1);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: #fff url("../images/site-bg.png") repeat fixed; line-height: 1.5; overflow-x: hidden; }
    body.lock-scroll { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

    .intro-gate { position: fixed; inset: 0; z-index: 9999; background: #111; display: grid; place-items: center; overflow: hidden; transition: opacity 1s var(--ease-premium), visibility 1s var(--ease-premium); contain: paint; }
    .intro-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .intro-text { color: white; text-align: center; max-width: 980px; padding: 0 24px; }
    .intro-line { display: block; overflow: hidden; font-size: clamp(2.4rem, 5.2vw, 5.4rem); line-height: .94; font-weight: 700; letter-spacing: -.05em; }
    /* Transform + opacity only (no animated blur — smoother on most devices). */
    .intro-line span { display: inline-block; opacity: 0; transform: translate3d(0, 115%, 0); backface-visibility: hidden; animation: liftLine 1.15s var(--ease-premium) forwards; }
    .intro-line:nth-child(1) span { animation-delay: .12s; }
    .intro-line:nth-child(2) span { animation-delay: .40s; }
    .intro-line:nth-child(3) span { animation-delay: .68s; }
    .intro-line.accent span { color: var(--accent); }
    .intro-fade .intro-line span { animation: outroLine 0.9s var(--ease-premium) forwards; }
    .intro-fade .intro-line:nth-child(1) span { animation-delay: .02s; }
    .intro-fade .intro-line:nth-child(2) span { animation-delay: .08s; }
    .intro-fade .intro-line:nth-child(3) span { animation-delay: .14s; }
    @keyframes liftLine { 0% { opacity: 0; transform: translate3d(0, 115%, 0); } 100% { opacity: 1; transform: translate3d(0, 0, 0); } }
    @keyframes outroLine { 0% { opacity: 1; transform: translate3d(0, 0, 0); } 100% { opacity: 0; transform: translate3d(0, -18%, 0); } }
    .intro-progress { width: min(250px, 52vw); height: 2px; background: rgba(255,255,255,.12); border-radius: 999px; margin: 30px auto 0; overflow: hidden; }
    .intro-progress span { display: block; width: 0; height: 100%; background: rgba(255,255,255,.78); animation: fillBar 2.1s var(--ease-premium) forwards; animation-delay: .18s; }
    @keyframes fillBar { from { width: 0; } to { width: 100%; } }

    @media (prefers-reduced-motion: reduce) {
      .intro-line span { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; opacity: 1 !important; transform: none !important; }
      .intro-fade .intro-line span { animation: none !important; opacity: 0 !important; }
      .intro-progress span { animation: none !important; width: 100% !important; }
      .intro-gate { transition-duration: 0.2s; }
      .site-shell { transition-duration: 0.3s; }
      .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
    }

    .site-shell { opacity: 0; transition: opacity 1.1s var(--ease-premium); }
    .site-shell.ready { opacity: 1; }

    .site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 70; backdrop-filter: blur(16px); background: rgba(20,20,20,.18); border-bottom: 1px solid rgba(255,255,255,.12); transform: translateY(0); transition: transform .45s var(--ease-premium), background .35s ease, border-color .35s ease; }
    .site-header.scrolled { background: rgba(246,243,238,.88); border-bottom: 1px solid rgba(231,221,208,.9); }
    .site-header.nav-hidden { transform: translateY(0); }
    .header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .logo { font-size: 1.4rem; font-weight: 800; letter-spacing: .08em; color: white; transition: color .35s ease; position: relative; z-index: 2; }
    .site-header.scrolled .logo, .site-header.scrolled .nav-links a, .site-header.scrolled .lang-switch, .site-header.scrolled .header-cta, .site-header.scrolled .menu-toggle { color: var(--text); }
    .site-header.scrolled .lang-switch { border-color: var(--line); background: rgba(255,255,255,.76); }

    .nav { display: flex; align-items: center; gap: 32px; }
    .nav-links { display: flex; gap: 28px; font-size: .95rem; align-items: center; }
    .nav-links .nav-links-menu,
    .nav-links > ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 28px;
      font-size: inherit;
      align-items: center;
      flex-wrap: wrap;
    }
    .nav-links .nav-links-menu .menu-item,
    .nav-links > ul > li { margin: 0; }
    .nav-links a { color: rgba(255,255,255,.82); transition: color .3s ease, opacity .3s ease; }
    .nav-links a:hover { opacity: .8; }
    .header-actions { display: flex; align-items: center; gap: 14px; }

    .lang-switch { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .9rem; color: rgba(255,255,255,.82); transition: background .35s ease, border-color .35s ease, color .35s ease; }
    .lang-switch .active { font-weight: 700; }

    .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: transform .5s var(--ease-premium), background .3s ease, box-shadow .5s var(--ease-premium), border-color .3s ease, color .3s ease; cursor: pointer; }
    .button.primary { background: var(--accent); color: white; box-shadow: 0 12px 24px rgba(239,125,50,.25); }
    .button.primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 18px 32px rgba(239,125,50,.28); }
    .button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.34); }
    .button.secondary:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.58); }
    .button.ghost { border-color: var(--line); background: white; color: var(--text); }
    .button.ghost:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,20,20,.08); }
    .header-cta { min-height: 44px; padding: 0 18px; color: white; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s ease; }
    .header-cta:hover { transform: translateY(-1px); }

    .menu-toggle { display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: white; align-items: center; justify-content: center; cursor: pointer; position: relative; z-index: 2; transition: background .35s ease, border-color .35s ease, color .35s ease; }
    .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; position: absolute; width: 18px; height: 2px; background: currentColor; transition: transform .35s ease, opacity .35s ease; }
    .menu-toggle::before { transform: translateY(-6px); }
    .menu-toggle::after { transform: translateY(6px); }
    .menu-toggle.active span { opacity: 0; }
    .menu-toggle.active::before { transform: rotate(45deg); }
    .menu-toggle.active::after { transform: rotate(-45deg); }

    .mobile-nav { display: none; }

    section { padding: 96px 0; }
    .reveal { opacity: 0; transform: translate3d(0, 56px, 0) scale(.985); filter: blur(8px); transition: opacity 1s var(--ease-premium), transform 1s var(--ease-premium), filter 1s var(--ease-premium); will-change: opacity, transform, filter; }
    /* transform:none when done: non-none transform on ancestors breaks position:fixed (modals) */
    .reveal.in-view { opacity: 1; transform: none; filter: none; }
    .reveal.in-view.hero-copy { color: #fff;}
    .reveal.delay-1 { transition-delay: .06s; } .reveal.delay-2 { transition-delay: .12s; } .reveal.delay-3 { transition-delay: .18s; } .reveal.delay-4 { transition-delay: .24s; } .reveal.delay-5 { transition-delay: .30s; } .reveal.delay-6 { transition-delay: .36s; }
    .reveal.delay-2.hero-panel.in-view div { color: #fff;}
    .hero { padding: 0; min-height: 100vh; min-height: 100dvh; position: relative; overflow: hidden; background: #111; }
    .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform: scale(1.02); }
    .hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, rgba(12,12,12,.72) 0%, rgba(12,12,12,.46) 38%, rgba(12,12,12,.18) 70%, rgba(12,12,12,.12) 100%), linear-gradient(180deg, rgba(12,12,12,.24) 0%, rgba(12,12,12,.1) 35%, rgba(12,12,12,.38) 100%); }
    .hero-inner { position: relative; z-index: 2; min-height: 100vh; min-height: 100dvh; display: grid; align-items: center; justify-items: stretch; box-sizing: border-box; padding: clamp(104px, 12vh, 132px) 0 clamp(104px, 12vh, 132px); }
    .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: center; }
    .eyebrow { display: inline-flex; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.88); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
    h1, h2, h3, p { margin: 0; }
    .hero-copy h1 { font-size: clamp(2.4rem, 4.8vw, 4.4rem); line-height: .96; color: white; max-width: 640px; letter-spacing: -.04em; text-wrap: balance; }
    .hero-copy p { margin-top: 22px; max-width: 560px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
    .hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-panel { margin-left: auto; max-width: 360px; border-radius: 28px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); padding: 28px; color: white; backdrop-filter: blur(12px); transition: transform .8s var(--ease-premium), background .5s ease; }
    .hero-panel:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
    .hero-panel .meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
    .hero-panel .meta div { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.09); }
    .hero-panel strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
    .hero-scroll { position: absolute; right: 32px; bottom: 26px; z-index: 3; color: rgba(255,255,255,.72); font-size: .86rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
    .hero-scroll::before { content: ""; display: block; width: 1px; height: 56px; background: rgba(255,255,255,.35); margin: 0 auto 12px; animation: scrollLine 1.8s ease-in-out infinite; }
    @keyframes scrollLine { 0%,100% { transform: scaleY(.55); opacity: .45; } 50% { transform: scaleY(1); opacity: 1; } }

    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
    .section-head h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1; letter-spacing: -.04em; color: #f4911a;}
    .section-head p { max-width: 560px; color: var(--muted); }

    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .intro-copy { padding-right: 24px; }
    .intro-copy p { margin: 18px 0 28px; color: var(--muted); font-size: 1.05rem; max-width: 520px; }
    .stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
    .stat { min-width: 140px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); transition: transform .6s var(--ease-premium), box-shadow .6s var(--ease-premium); }
    .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
    .stat strong { display: block; font-size: 1.6rem; letter-spacing: -.04em; margin-bottom: 4px; }
    .intro-visual { min-height: 355px; border-radius: 32px; overflow: hidden; position: relative; background: linear-gradient(180deg, rgba(20,20,20,.05), rgba(20,20,20,.25)), radial-gradient(circle at 30% 24%, rgba(255,188,129,.8), transparent 22%), linear-gradient(145deg, #f0d6b8 0%, #b07946 38%, #6c4023 78%, #382116 100%); box-shadow: var(--shadow); transition: transform 1.1s var(--ease-premium), box-shadow 1.1s var(--ease-premium); }
    .intro-visual:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
    .intro-visual::before, .intro-visual::after { content: ""; position: absolute; border-radius: 999px; background: rgba(255,255,255,.18); filter: blur(1px); transition: transform 1.2s var(--ease-premium); }
    .intro-visual::before { width: 240px; height: 240px; top: 40px; right: 30px; }
    .intro-visual::after { width: 120px; height: 120px; bottom: 50px; left: 50px; }
    .intro-visual:hover::before { transform: translate(-14px, 12px); }
    .intro-visual:hover::after { transform: translate(10px, -8px); }

    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .service-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); transition: transform .7s var(--ease-premium), box-shadow .7s var(--ease-premium); }
    .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .icon { width: 56px; height: 56px; border-radius: 18px; background: #fff1e6; color: var(--accent); display: grid; place-items: center; font-weight: 800; margin-bottom: 18px; transition: transform .6s var(--ease-premium), background .3s ease; }
    .service-card:hover .icon { transform: rotate(-6deg) scale(1.04); background: #ffe7d3; }
    .service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
    .service-card p { color: var(--muted); font-size: .95rem; }

    
    .services-split {
      display: grid;
      grid-template-columns: 70% 30%;
      gap: 40px;
      align-items: start;
    }
    .services-left {
      min-width: 0;
    }
    .services-right {
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      min-height: 100%;
    }
    .services-side-label {
      color: var(--accent);
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: .95;
      letter-spacing: -.05em;
      font-weight: 700;
      text-align: right;
      position: sticky;
      top: 120px;
    }
    .services-accordion {
      display: grid;
      gap: 14px;
    }
    .service-accordion-item {
      border-radius: 24px;
      background: white;
      border: 1px solid rgba(239,125,50,.22);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: box-shadow .45s var(--ease-premium), transform .45s var(--ease-premium), border-color .3s ease;
    }
    .service-accordion-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(239,125,50,.38);
    }
    .service-accordion-trigger {
      width: 100%;
      border: 0;
      background: linear-gradient(180deg, rgba(239,125,50,.12), rgba(239,125,50,.08));
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 26px;
      text-align: left;
      font: inherit;
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      font-weight: 600;
      cursor: pointer;
    }
    .service-icon {
      color: var(--accent);
      font-size: 2rem;
      line-height: 1;
      flex: 0 0 auto;
      transition: transform .35s var(--ease-premium), color .3s ease;
    }
    .service-accordion-item.active .service-icon {
      transform: rotate(180deg);
    }
    .service-accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height .55s var(--ease-premium);
      background: white;
      padding: 0;
      box-sizing: border-box;
    }
    /* ~20px inset from card border; applies to all markup (not only <p>) */
    .service-accordion-item.active .service-accordion-content {
      padding: 20px;
    }
    .service-accordion-content p {
      margin: 0;
      padding: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
      max-width: 100%;
      box-sizing: border-box;
    }
    .service-accordion-content p:not(:last-child) {
      margin-bottom: 0.75em;
    }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    a.work-card { display: block; color: inherit; text-decoration: none; }
    .work-card { background: white; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .8s var(--ease-premium), box-shadow .8s var(--ease-premium), border-color .4s ease; transform-origin: center; }
    .work-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: var(--shadow-hover); border-color: rgba(239,125,50,.28); }
    .work-thumb { aspect-ratio: 4 / 3; overflow: hidden; background: radial-gradient(circle at 70% 22%, rgba(255,194,143,.85), transparent 18%), linear-gradient(135deg, #5b3820 0%, #8c5934 36%, #d99963 100%); position: relative; transition: transform 1s var(--ease-premium), filter 1s var(--ease-premium); }
    .work-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .work-card:hover .work-thumb { transform: scale(1.05); filter: saturate(1.06) contrast(1.03); }
    .work-thumb.two { background: linear-gradient(135deg, #30211c 0%, #7f4e32 44%, #d8b18b 100%); }
    .work-thumb.three { background: linear-gradient(135deg, #281f18 0%, #5c3a28 38%, #ae7d56 100%); }
    .work-thumb.four { background: linear-gradient(135deg, #2a1d16 0%, #9a5f30 48%, #f0c08f 100%); }
    .work-thumb.five { background: linear-gradient(135deg, #42322a 0%, #6f4529 38%, #d2945d 100%); }
    .work-thumb.six { background: linear-gradient(135deg, #322119 0%, #7b4f35 44%, #dcb48f 100%); }
    .work-thumb::after { content: ""; position: absolute; inset: auto 16px 16px auto; width: 96px; height: 96px; border-radius: 22px; background: rgba(255,255,255,.14); backdrop-filter: blur(2px); transition: transform .8s var(--ease-premium), opacity .8s var(--ease-premium); }
    .work-card:hover .work-thumb::after { transform: translate(-8px, -8px); opacity: .85; }
    .work-body { padding: 22px; }
    .tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #f6efe8; color: #8b623d; font-size: .8rem; font-weight: 700; margin-bottom: 14px; transition: transform .5s var(--ease-premium), background .3s ease; }
    .work-card:hover .tag { transform: translateX(4px); background: #f4e6d8; }
    .work-body h3 { font-size: 1.28rem; margin-bottom: 8px; letter-spacing: -.03em; }
    .work-body p { color: var(--muted); font-size: .95rem; }

    .partners-wrap { background: linear-gradient(180deg, #fff, #fbf7f2);/*background: white;*/ border: 1px solid var(--line); border-radius: 32px; padding: 34px; box-shadow: var(--shadow); }
    .partners-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 15px; }
    .partner { /*height: 92px; border-radius: 20px; border: 1px solid var(--line);*/ display: grid; place-items: center; color: #8d867f; font-weight: 800; letter-spacing: .12em; /*background: linear-gradient(180deg, #fff, #fbf7f2);*/ transition: transform .7s var(--ease-premium), box-shadow .7s var(--ease-premium), border-color .4s ease, color .4s ease; opacity: .82; }
    .partner:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 30px rgba(20,20,20,.10); border-color: rgba(239,125,50,.25); color: #6d4c34; opacity: 1; }

    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .blog-card { overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); transition: transform .8s var(--ease-premium), box-shadow .8s var(--ease-premium), border-color .4s ease; }
    .blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(239,125,50,.26); }
    .blog-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #3a271d 0%, #8e5e40 45%, #e9c6a1 100%); transition: transform 1s var(--ease-premium), filter 1s var(--ease-premium); }
    .blog-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .blog-card:hover .blog-thumb { transform: scale(1.06); filter: saturate(1.04); }
    .blog-body { padding: 22px; }
    .meta { color: var(--muted); font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; transition: transform .5s var(--ease-premium); }
    .blog-card:hover .meta { transform: translateX(4px); }
    .blog-body h3 { font-size: 1.18rem; line-height: 1.2; letter-spacing: -.03em; margin-bottom: 10px; }
    .blog-body h3 a { color: inherit; text-decoration: none; transition: color .25s ease; }
    .blog-body h3 a:hover { color: var(--accent); }
    .blog-body p { color: var(--muted); font-size: .95rem; }

    .cta { padding-top: 40px; padding-bottom: 70px; }
    .cta-card { border-radius: 36px; padding: 72px 56px; background: radial-gradient(circle at 80% 30%, rgba(255,170,104,.3), transparent 20%), linear-gradient(135deg, #171717 0%, #2a1b12 50%, #4c2f1f 100%); color: white; text-align: center; box-shadow: 0 25px 60px rgba(23,23,23,.22); transition: transform .9s var(--ease-premium), box-shadow .9s var(--ease-premium); }
    .cta-card:hover { transform: translateY(-4px); box-shadow: 0 34px 74px rgba(23,23,23,.26); }
    .cta-card h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.04em; margin-bottom: 18px; }
    .cta-card p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,.76); font-size: 1.05rem; }
    .cta-actions { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    .site-footer { background: #f0e6da; border-top: 1px solid #e0d3c4; padding: 54px 0 60px; }
    .footer-inner { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
    .footer-logo { font-size: 1.4rem; font-weight: 800; letter-spacing: .08em; }
    .footer-links, .footer-meta, .footer-social { color: var(--muted); display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr .8fr 1fr;
      gap: 28px;
      padding-bottom: 26px;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 0;
    }
    .footer-shell-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-shell-menu .menu-item { margin: 0; }
    .footer-title {
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .footer-cta-text {
      font-size: 1.5rem;
      line-height: 1.1;
      letter-spacing: -.03em;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .footer-item, .footer-link {
      color: var(--muted);
    }
    .footer-link:hover {
      color: var(--text);
    }
    .footer-map {
      min-height: 180px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: linear-gradient(180deg, #fff, #fbf7f2);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: .95rem;
      text-align: center;
      padding: 18px;
    }
    .footer-bottom {
      border-top: 1px solid #e0d3c4;
      padding-top: 18px;
      color: var(--muted);
      font-size: .92rem;
    }
    .meta span, .meta strong {
      color: #f4911a;
    }
    #services, #partners {
      background-color: #fff;
    }


    @media (max-width: 1199px) {
      .hero-copy h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); }
      .hero-grid { gap: 22px; }
      .services-split { grid-template-columns: 1fr; gap: 24px; }
      .services-right { justify-content: flex-start; }
      .services-side-label { position: static; text-align: left; }
      .partners-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 991px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .container { width: min(var(--max), calc(100% - 40px)); }
      .hero-grid, .intro-grid { grid-template-columns: 1fr; }
      .hero-inner { padding: clamp(96px, 11vh, 120px) 0 clamp(96px, 11vh, 120px); }
      .hero-panel { max-width: none; }
      .section-head { flex-direction: column; align-items: start; }
      .work-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-copy h1 { max-width: 100%; }
    }
    @media (max-width: 767px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-cta-text { font-size: 1.3rem; }
      .container { width: calc(100% - 32px); }
      .site-header { background: rgba(20,20,20,.24); }
      .header-inner { min-height: 76px; gap: 12px; }
      .nav-links, .lang-switch, .header-cta { display: none; }
      .menu-toggle { display: inline-flex; }
      .mobile-nav { display: flex; position: fixed; inset: 0; z-index: 65; background: rgba(17,17,17,.94); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .45s var(--ease-premium), visibility .45s var(--ease-premium); }
      .mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
      .mobile-nav-inner { width: 100%; padding: 108px 24px 40px; display: flex; flex-direction: column; justify-content: space-between; }
      .mobile-links { display: grid; gap: 20px; font-size: 1.5rem; letter-spacing: -.03em; color: white; }
      .mobile-links .mobile-links-menu,
      .mobile-links > ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 20px;
      }
      .mobile-links .mobile-links-menu .menu-item,
      .mobile-links > ul > li { margin: 0; }
      .mobile-bottom { display: grid; gap: 16px; }
      .mobile-lang { color: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 12px 16px; width: fit-content; }
      section { padding: 72px 0; }
      .hero-inner { padding: clamp(88px, 10vh, 104px) 0 clamp(88px, 10vh, 104px); }
      .hero-copy h1 { font-size: 2.1rem; }
      .hero-copy p { font-size: 1rem; }
      .hero-actions { gap: 10px; }
      .button { min-height: 48px; padding: 0 20px; }
      .work-grid, .partners-grid, .blog-grid { grid-template-columns: 1fr; }
      .service-accordion-trigger { padding: 20px 20px; font-size: 1rem; }
      .services-side-label { font-size: 2.1rem; }
      .partners-grid { gap: 14px; }
      .partner { height: 82px; }
      .intro-visual { min-height: 360px; }
      .cta-card { padding: 54px 24px; border-radius: 28px; }
      .hero-scroll { display: none; }
      .intro-line { font-size: 2rem; }
      .intro-progress { margin-top: 24px; }
    }

/* WordPress + language switch links */
.lang-switch a { color: inherit; text-decoration: none; }
.lang-switch a:hover { opacity: .85; }
.mobile-bottom .lang-switch { color: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 12px 16px; width: fit-content; }
.logo-wrap { display: flex; align-items: center; }
.site-header .logo { display: inline-flex; align-items: center; text-decoration: none; }
.site-header .logo img,
.site-header .logo .adm-theme-logo-img { max-height: 44px; width: auto; height: auto; display: block; }
.site-header .logo .custom-logo-link { display: inline-flex; align-items: center; }
.site-header .logo.custom-logo-link img,
.site-header .logo .custom-logo-link img { max-height: 44px; width: auto; height: auto; display: block; }
.site-header .logo .logo-text { font-size: 1.4rem; font-weight: 800; letter-spacing: .08em; color: inherit; text-decoration: none; }
.footer-logo .footer-logo-link,
.footer-logo .custom-logo-link { display: inline-flex; align-items: center; }
.footer-logo .footer-logo-link img,
.footer-logo .custom-logo-link img,
.footer-logo .adm-theme-footer-logo-img { max-height: 48px; width: auto; }
.adm-main .adm-page-entry { max-width: none; margin: 0; padding: 0; }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
