    /* ── Reset & Variables ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* === Minimalist Modern Palette: Ink + Amber === */
      --navy:     #0a1530;   /* deep ink */
      --navy-mid: #16203f;
      --navy-lt:  #243358;   /* slate-ink */
      --gold:     #f5b942;   /* warm amber */
      --gold-lt:  #fcd34d;
      --gold-dk:  #d49a2a;
      --white:    #ffffff;
      --off-white:#f8fafc;
      --gray-100: #e2e8f0;
      --gray-400: #94a3b8;
      --gray-700: #334155;
      --text:     #0f172a;
      --radius:   12px;
      --radius-lg:20px;
      --shadow:   0 6px 28px rgba(10,21,48,.10);
      --shadow-lg:0 18px 48px rgba(10,21,48,.22);
      --shadow-glow: 0 12px 40px rgba(245,185,66,.28), 0 0 0 1px rgba(245,185,66,.12);
      --grad-amber: linear-gradient(135deg, #f5b942 0%, #fcd34d 100%);
      --grad-hero: linear-gradient(135deg, #0a1530 0%, #16203f 50%, #243358 100%);
      --transition:.3s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

    img { max-width: 100%; display: block; }
    a  { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── Utility ────────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 96px 0; }
    .section--alt { background: var(--off-white); }
    .badge {
      display: inline-block; font-size: .75rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .heading-lg {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2; color: var(--navy); margin-bottom: 20px;
    }
    .heading-md {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      line-height: 1.25; color: var(--navy); margin-bottom: 16px;
    }
    .subtext { font-size: 1.05rem; color: var(--gray-700); max-width: 560px; line-height: 1.75; }
    .gold-line {
      width: 48px; height: 3px; background: var(--gold);
      border-radius: 2px; margin-bottom: 28px;
    }

    /* ── Buttons ────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .92rem; font-weight: 600; letter-spacing: .02em;
      padding: 14px 30px; border-radius: var(--radius);
      cursor: pointer; transition: var(--transition); border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--gold); color: var(--navy);
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn-outline {
      border-color: var(--white); color: var(--white); background: transparent;
    }
    .btn-outline:hover { background: var(--white); color: var(--navy); }
    .btn-dark {
      border-color: var(--navy); color: var(--navy); background: transparent;
    }
    .btn-dark:hover { background: var(--navy); color: var(--white); }

    /* ── Navigation ─────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0; transition: var(--transition);
    }
    .nav.scrolled {
      background: rgba(15,31,61,.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px;
      height: 180px;
    }
    .nav__logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem; font-weight: 700; color: var(--white);
      letter-spacing: .02em;
    }
    .nav__logo span { color: var(--gold); }
    .nav__links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav__links a {
      font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.8);
      letter-spacing: .04em; text-transform: uppercase;
      transition: var(--transition); position: relative;
    }
    .nav__links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: var(--gold);
      transition: var(--transition);
    }
    .nav__links a:hover { color: var(--white); }
    .nav__links a:hover::after { width: 100%; }
    .nav__cta { margin-left: 8px; }
    .nav__burger { display: none; background: none; border: none; cursor: pointer; }
    .nav__burger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); margin: 5px 0; transition: var(--transition);
    }

    /* ── Language Switch ────────────────────────────────── */
    .lang-switch {
      display: flex; gap: 4px; align-items: center; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,.5);
      border-radius: 6px; padding: 4px 6px;
      background: rgba(15,31,61,.55);
    }
    .lang-switch__btn {
      font-size: .82rem; font-weight: 700;
      color: rgba(255,255,255,.85);
      padding: 6px 10px; cursor: pointer;
      background: none; border: none;
      letter-spacing: .08em;
      transition: color .2s, background .2s;
      font-family: inherit; border-radius: 3px;
    }
    .lang-switch__btn:hover { color: var(--gold-lt); background: rgba(201,168,76,.12); }
    .lang-switch__btn.active { color: #0a0a0a; background: var(--gold); }
    .lang-switch__sep { color: rgba(255,255,255,.3); font-size: .8rem; user-select: none; }
    .mobile-nav__lang {
      display: flex; gap: 4px; align-items: center;
      margin-top: 24px; padding: 8px 10px;
      border: 1px solid rgba(201,168,76,.5);
      border-radius: 6px; align-self: flex-start;
    }
    .mobile-nav__lang .lang-switch__btn { font-size: 1rem; padding: 10px 14px; }

    /* ── Hero ───────────────────────────────────────────── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      background: var(--grad-hero);
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.05) 0%, transparent 60%);
    }
    .hero__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 64px; position: relative; z-index: 1;
      padding-top: 160px;
    }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
      color: var(--gold); font-size: .78rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
    }
    .hero__badge::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(1.4); }
    }
    .hero__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      line-height: 1.15; color: var(--white); margin-bottom: 24px;
    }
    .hero__heading em { color: var(--gold); font-style: normal; }
    .hero__sub {
      font-size: 1.08rem; color: rgba(255,255,255,.72);
      max-width: 480px; line-height: 1.8; margin-bottom: 40px;
    }
    .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero__visual {
      display: flex; justify-content: center; align-items: center;
    }
    .hero__card-stack {
      position: relative; width: 340px; height: 340px;
    }
    .stat-card {
      position: absolute; background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(20px); border-radius: 16px;
      padding: 28px; color: var(--white);
    }
    .stat-card--main {
      top: 0; left: 0; right: 0;
      padding: 36px;
    }
    .stat-card__value {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem; font-weight: 700; color: var(--gold);
      line-height: 1;
    }
    .stat-card__label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 6px; }
    .stat-card--sm1 { bottom: 20px; left: -20px; width: 160px; }
    .stat-card--sm2 { bottom: 0; right: -20px; width: 170px; }
    .stat-card--sm1 .stat-card__value,
    .stat-card--sm2 .stat-card__value { font-size: 2rem; }
    .scroll-indicator {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.45); font-size: .75rem; letter-spacing: .1em;
      text-transform: uppercase;
    }
    .scroll-indicator__arrow {
      width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* ── Stats Bar ─────────────────────────────────────── */
    .stats-bar {
      background: var(--navy); padding: 40px 0;
    }
    .stats-bar__grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; border-left: 1px solid rgba(255,255,255,.08);
    }
    .stats-bar__item {
      padding: 0 40px; border-right: 1px solid rgba(255,255,255,.08);
      text-align: center;
    }
    .stats-bar__value {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--gold);
    }
    .stats-bar__label { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 4px; letter-spacing: .04em; }

    /* ── About ──────────────────────────────────────────── */
    .about__grid {
      display: grid; grid-template-columns: 5fr 7fr;
      align-items: center; gap: 72px;
    }
    .about__img-wrap { position: relative; }
    .about__photo {
      width: 100%; aspect-ratio: 3/4; object-fit: cover;
      object-position: top center;
      border-radius: 20px; display: block;
      box-shadow: var(--shadow-lg);
    }
    .about__accent {
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px; background: var(--gold);
      border-radius: 16px; z-index: -1; opacity: .18;
    }
    .about__accent-2 {
      position: absolute; top: -16px; left: -16px;
      width: 80px; height: 80px; border: 3px solid var(--gold);
      border-radius: 12px; opacity: .25;
    }
    .about__name-tag {
      position: absolute; bottom: 24px; left: -20px;
      background: var(--white); border-radius: 12px;
      padding: 14px 20px; box-shadow: var(--shadow-lg);
      border-left: 4px solid var(--gold);
    }
    .about__name-tag strong { display: block; font-size: .95rem; color: var(--navy); font-weight: 700; }
    .about__name-tag span   { font-size: .78rem; color: var(--gray-400); }
    .about__list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
    .about__list-item { display: flex; align-items: flex-start; gap: 14px; }
    .about__check {
      flex-shrink: 0; width: 24px; height: 24px;
      background: var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .about__check svg { width: 12px; height: 12px; }
    .about__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .about__tag {
      font-size: .78rem; font-weight: 600; letter-spacing: .06em;
      padding: 5px 14px; border-radius: 50px;
      background: rgba(201,168,76,.1); color: var(--navy);
      border: 1px solid rgba(201,168,76,.3);
    }
    .about__langs {
      display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
    }
    .about__lang {
      font-size: .78rem; font-weight: 500;
      padding: 4px 12px; border-radius: 50px;
      background: var(--gray-100); color: var(--gray-700);
    }

    /* ── Services ───────────────────────────────────────── */
    .services__intro {
      text-align: center; margin-bottom: 64px;
    }
    .services__intro .subtext { margin: 0 auto; }
    .services__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .service-card {
      background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
      border: 1px solid var(--gray-100);
      transition: var(--transition); position: relative;
      overflow: hidden; display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
    .service-card__header {
      height: 160px; display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; flex-shrink: 0;
    }
    .service-card__header::after {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 120%, rgba(201,168,76,.18) 0%, transparent 70%);
    }
    .service-card__icon-wrap {
      width: 80px; height: 80px; border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
      background: rgba(255,255,255,.12);
      border: 1.5px solid rgba(255,255,255,.2);
      backdrop-filter: blur(4px);
    }
    .service-card__icon-wrap svg { width: 40px; height: 40px; }
    .service-card__body {
      padding: 28px 28px 32px; flex: 1;
      border-top: 3px solid var(--gold);
    }
    .service-card__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: var(--navy); margin-bottom: 10px;
    }
    .service-card__text { font-size: .9rem; color: var(--gray-700); line-height: 1.75; }
    .service-card__list { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
    .service-card__list li {
      font-size: .86rem; color: var(--gray-700);
      display: flex; align-items: center; gap: 8px;
    }
    .service-card__list li::before {
      content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0;
    }

    /* ── Process ────────────────────────────────────────── */
    .process__grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }
    .process__grid::before {
      content: '';
      position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .process__step { text-align: center; padding: 0 20px; }
    .process__number {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--navy); color: var(--gold);
      font-family: 'Playfair Display', serif; font-size: 1.5rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; border: 2px solid var(--gold);
      position: relative; z-index: 1;
    }
    .process__title { font-weight: 600; color: var(--navy); margin-bottom: 8px; }
    .process__text { font-size: .88rem; color: var(--gray-700); line-height: 1.7; }

    /* ── Testimonial / Quote ────────────────────────────── */
    .quote-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
      padding: 96px 0; text-align: center;
    }
    .quote__mark {
      font-size: 5rem; color: var(--gold); opacity: .3; line-height: 1;
      font-family: 'Playfair Display', serif; margin-bottom: -20px;
    }
    .quote__text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--white); max-width: 720px; margin: 0 auto 32px;
      line-height: 1.5;
    }
    .quote__author { color: var(--gold); font-size: .88rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

    /* ── Contact ────────────────────────────────────────── */
    .contact__grid {
      display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
    }
    .contact__info { display: flex; flex-direction: column; gap: 32px; }
    .contact__item { display: flex; gap: 16px; align-items: flex-start; }
    .contact__item-icon {
      flex-shrink: 0; width: 48px; height: 48px;
      background: var(--navy); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .contact__item-label { font-size: .78rem; color: var(--gray-400); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
    .contact__item-value { font-size: .97rem; color: var(--text); font-weight: 500; }
    .contact__form { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
    .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .form__group:last-of-type { margin-bottom: 28px; }
    .form__label { font-size: .82rem; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
    .form__input, .form__select, .form__textarea {
      padding: 13px 16px; border: 1.5px solid var(--gray-100);
      border-radius: var(--radius); font-size: .95rem; font-family: 'Inter', sans-serif;
      color: var(--text); background: var(--off-white);
      transition: var(--transition); outline: none;
    }
    .form__input:focus, .form__select:focus, .form__textarea:focus {
      border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
    }
    .form__textarea { resize: vertical; min-height: 120px; }

    /* ── Footer ─────────────────────────────────────────── */
    .footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 72px 0 32px; }
    .footer__grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 56px;
    }
    .footer__logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; color: var(--white); margin-bottom: 20px; display: block;
    }
    .footer__logo span { color: var(--gold); }
    .footer__tagline { font-size: .95rem; line-height: 1.7; margin-bottom: 28px; margin-top: 16px; color: rgba(255,255,255,.75); }
    .footer__social { display: flex; gap: 12px; }
    .footer__social-link {
      width: 38px; height: 38px; border-radius: 8px;
      border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 700;
      transition: var(--transition);
    }
    .footer__social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
    .footer__heading { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
    .footer__links { display: flex; flex-direction: column; gap: 12px; }
    .footer__links a { font-size: .88rem; transition: var(--transition); }
    .footer__links a:hover { color: var(--gold); padding-left: 6px; }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px; display: flex;
      justify-content: space-between; align-items: center;
      font-size: .82rem;
    }
    .footer__bottom-links { display: flex; gap: 24px; }
    .footer__bottom-links a:hover { color: var(--gold); }

    /* ── Mobile ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .services__grid { grid-template-columns: 1fr 1fr; }
      .process__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process__grid::before { display: none; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .nav__links, .nav__cta, .lang-switch { display: none; }
      .nav__burger { display: block; }
      .hero__grid { grid-template-columns: 1fr; text-align: center; }
      .hero__sub { margin: 0 auto 40px; }
      .hero__actions { justify-content: center; }
      .hero__visual { display: none; }
      .stats-bar__grid { grid-template-columns: 1fr 1fr; }
      .about__grid { grid-template-columns: 1fr; }
      .services__grid { grid-template-columns: 1fr; }
      .process__grid { grid-template-columns: 1fr; }
      .contact__grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; gap: 36px; }
      .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
      .form__row { grid-template-columns: 1fr; }
    }

    /* ── Mobile Nav Drawer ──────────────────────────────── */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: var(--navy); padding: 80px 32px 40px;
      flex-direction: column; gap: 32px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 1.3rem; font-weight: 600; color: rgba(255,255,255,.85); }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav__close {
      position: absolute; top: 20px; right: 24px;
      background: none; border: none; color: var(--white);
      font-size: 1.5rem; cursor: pointer;
    }

    /* ── Reveal Animation ───────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  </style>

    /* === Multipage additions === */
    .nav__links a.active,
    .nav__links a.active::after { color: var(--white); }
    .nav__links a.active::after { width: 100%; }
    .page-main { padding-top: 220px; }
    @media (max-width: 768px) { .page-main { padding-top: 140px; } }
    .page-header {
      background: var(--grad-hero);
      color: var(--white); padding: 220px 0 80px; text-align: center;
      position: relative; overflow: hidden;
    }
    @media (max-width: 768px) { .page-header { padding: 140px 0 60px; } }
    .page-header::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,.05) 0%, transparent 60%);
    }
    .page-header .container { position: relative; z-index: 1; }
    .page-header__badge {
      display: inline-block; font-size: .78rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
    }
    .page-header__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      line-height: 1.2; color: var(--white); margin-bottom: 16px;
    }
    .page-header__sub {
      font-size: 1.05rem; color: rgba(255,255,255,.72);
      max-width: 640px; margin: 0 auto; line-height: 1.7;
    }


    /* ════════ WOW UPGRADES ════════ */

    /* Scroll progress bar (global) */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
      box-shadow: 0 0 12px rgba(201,168,76,.55);
      z-index: 1000; width: 0;
      transition: width .08s linear; pointer-events: none;
    }

    /* Floating ambient orbs in hero (injected via JS) */
    .hero__orb {
      position: absolute; border-radius: 50%;
      pointer-events: none; filter: blur(60px);
      z-index: 0;
    }
    .hero__orb--1 {
      width: 380px; height: 380px; background: var(--gold);
      top: -120px; right: -80px; opacity: .14;
      animation: orbDrift1 16s ease-in-out infinite;
    }
    .hero__orb--2 {
      width: 300px; height: 300px; background: #3b6dbe;
      bottom: -80px; left: -90px; opacity: .38;
      animation: orbDrift2 19s ease-in-out infinite;
    }
    .hero__orb--3 {
      width: 220px; height: 220px; background: var(--gold-lt);
      top: 35%; left: 42%; opacity: .08;
      animation: orbDrift3 22s ease-in-out infinite;
    }
    @keyframes orbDrift1 {
      0%, 100% { transform: translate(0,0) scale(1); }
      50%       { transform: translate(-60px, 50px) scale(1.12); }
    }
    @keyframes orbDrift2 {
      0%, 100% { transform: translate(0,0) scale(1); }
      50%       { transform: translate(80px, -60px) scale(1.18); }
    }
    @keyframes orbDrift3 {
      0%, 100% { transform: translate(0,0) scale(1); }
      33%      { transform: translate(60px, 30px) scale(.9); }
      66%      { transform: translate(-50px,-40px) scale(1.1); }
    }

    /* Hero entrance stagger */
    .hero__badge, .hero__heading, .hero__sub, .hero__actions, .hero__visual {
      opacity: 0; transform: translateY(28px);
      animation: heroIn .95s cubic-bezier(.16,1,.3,1) forwards;
    }
    .hero__badge   { animation-delay: .15s; }
    .hero__heading { animation-delay: .30s; }
    .hero__sub     { animation-delay: .45s; }
    .hero__actions { animation-delay: .60s; }
    .hero__visual  { animation-delay: .75s; }
    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Gold shimmer on highlighted text ("Exzellenz") */
    .hero__heading em {
      color: var(--gold); font-style: normal;
      background: linear-gradient(90deg, var(--gold) 0%, #f5dd8a 45%, #fff3c9 50%, #f5dd8a 55%, var(--gold) 100%);
      background-size: 220% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: goldShimmer 4.5s ease-in-out infinite;
    }
    @keyframes goldShimmer {
      0%, 100% { background-position: 0% 50%; }
      50%       { background-position: 100% 50%; }
    }

    /* Stat cards: 3D-ready and smooth */
    .hero__card-stack { perspective: 1200px; transform-style: preserve-3d; }
    .stat-card {
      transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .3s;
      will-change: transform;
    }
    .stat-card__value, .stats-bar__value {
      font-variant-numeric: tabular-nums;
    }

    /* Magnetic primary buttons */
    .btn-primary { will-change: transform; transition: transform .25s ease, background .25s, box-shadow .25s; }
    .btn-primary:hover {
      box-shadow: 0 10px 30px rgba(201,168,76,.45),
                  0 0 0 1px rgba(255,255,255,.3) inset;
    }

    /* Service card hover upgrade */
    .service-card { will-change: transform; }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 22px 60px rgba(15,31,61,.22),
                  0 0 0 1px rgba(201,168,76,.35);
    }

    /* Reveal animation upgrade with subtle blur */
    .reveal { filter: blur(6px); }
    .reveal.visible {
      filter: blur(0);
      transition: opacity .8s ease, transform .8s ease, filter .8s ease;
    }

    /* Logo entrance */
    .nav__logo img {
      animation: logoIn 1s cubic-bezier(.16,1,.3,1) backwards;
    }
    @keyframes logoIn {
      from { opacity: 0; transform: scale(.92) translateY(-8px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* Process number pulse on view */
    .process__step.visible .process__number {
      animation: numberPop .6s cubic-bezier(.16,1,.3,1);
    }
    @keyframes numberPop {
      0%   { transform: scale(.6); }
      60%  { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    /* Respect prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      .hero__orb, .hero__heading em,
      .hero__badge, .hero__heading, .hero__sub, .hero__actions, .hero__visual,
      .nav__logo img, .process__step.visible .process__number {
        animation: none !important;
      }
      .hero__badge, .hero__heading, .hero__sub, .hero__actions, .hero__visual {
        opacity: 1; transform: none;
      }
      .hero__heading em { -webkit-text-fill-color: var(--gold); color: var(--gold); }
      .scroll-progress { transition: none; }
    }



    /* ════════ MINIMALIST POLISH ════════ */

    body { background: var(--white); }
    .section--alt { background: var(--off-white); }

    /* Page header — clean ink with subtle amber glow */
    .page-header {
      background: var(--grad-hero);
      overflow: hidden; position: relative;
    }
    .page-header::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(circle 420px at 80% 35%, rgba(245,185,66,.14) 0%, transparent 65%),
        radial-gradient(circle 320px at 15% 75%, rgba(245,185,66,.06) 0%, transparent 60%);
    }

    /* Hero — refined background */
    .hero { background: var(--grad-hero); }
    .hero__orb--1 { background: var(--gold); opacity: .14; }
    .hero__orb--2 { background: var(--navy-lt); opacity: .50; }
    .hero__orb--3 { background: var(--gold-lt); opacity: .07; }

    /* Headlines — modern weight */
    .heading-lg, .heading-md, .page-header__title {
      font-weight: 700; letter-spacing: -.01em;
    }
    .hero__heading { font-weight: 700; letter-spacing: -.02em; }

    /* "Exzellenz" — simple amber shimmer */
    .hero__heading em {
      color: var(--gold); font-style: normal;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold) 100%);
      background-size: 220% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: goldShimmer 5s ease-in-out infinite;
    }

    /* Primary button — amber with elegant glow */
    .btn-primary {
      background: var(--grad-amber);
      color: var(--navy); border: 0;
      box-shadow: 0 8px 24px rgba(245,185,66,.30);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
      color: var(--navy);
      box-shadow: 0 14px 36px rgba(245,185,66,.45), 0 0 0 1px rgba(255,255,255,.4) inset;
      transform: translateY(-2px);
    }

    /* Outline button */
    .btn-outline { border-color: rgba(255,255,255,.55); }
    .btn-outline:hover { background: var(--white); color: var(--navy); }

    /* Dark button */
    .btn-dark { border-color: var(--navy); color: var(--navy); }
    .btn-dark:hover {
      background: var(--navy); color: var(--white);
      box-shadow: 0 12px 32px rgba(10,21,48,.35);
    }

    /* Stats bar — pure ink with single amber pulse */
    .stats-bar { background: var(--navy); position: relative; overflow: hidden; }
    .stats-bar::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle 320px at 50% 50%, rgba(245,185,66,.10) 0%, transparent 60%);
    }
    .stats-bar__value { color: var(--gold); }
    .stat-card__value { color: var(--gold); }

    /* Gold-line — clean amber */
    .gold-line {
      width: 56px; height: 3px; background: var(--gold);
      border-radius: 4px;
    }

    /* Service cards — clean ink top, subtle amber accent */
    .service-card { border-radius: var(--radius-lg); }
    .service-card__body {
      border-top: 3px solid var(--gold);
    }
    .service-card__title { font-weight: 700; }
    .service-card__list li::before { color: var(--gold); }

    /* About — amber-only */
    .about__check { background: var(--gold); }
    .about__tag {
      background: rgba(245,185,66,.10);
      border: 1px solid rgba(245,185,66,.32);
      color: var(--navy);
    }
    .about__accent { background: var(--gold); opacity: .22; }
    .about__accent-2 { border-color: var(--gold); opacity: .35; }
    .about__name-tag { border-left-color: var(--gold); }

    /* Process numbers — solid amber ring on ink */
    .process__number {
      background: var(--navy); color: var(--gold);
      border: 2px solid var(--gold);
      box-shadow: 0 8px 24px rgba(10,21,48,.25);
    }
    .process__grid::before {
      background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
      height: 2px;
    }

    /* Quote — clean ink with subtle amber glow */
    .quote-section {
      background: var(--grad-hero);
      position: relative; overflow: hidden;
    }
    .quote-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(circle 420px at 70% 30%, rgba(245,185,66,.14) 0%, transparent 60%);
    }
    .quote-section .container { position: relative; z-index: 1; }
    .quote__mark { color: var(--gold); opacity: .45; font-size: 6rem; }
    .quote__text { font-weight: 500; }
    .quote__author { color: var(--gold); }

    /* Contact — amber focus */
    .form__input, .form__select, .form__textarea {
      border-color: var(--gray-100); background: var(--off-white);
    }
    .form__input:focus, .form__select:focus, .form__textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(245,185,66,.14);
      background: var(--white);
    }
    .contact__item-icon {
      background: var(--navy); color: var(--gold);
      box-shadow: 0 6px 16px rgba(10,21,48,.20);
    }

    /* Nav scrolled — refined ink */
    .nav.scrolled {
      background: rgba(10,21,48,.94);
      backdrop-filter: blur(14px) saturate(120%);
      -webkit-backdrop-filter: blur(14px) saturate(120%);
      box-shadow: 0 4px 24px rgba(0,0,0,.4);
    }

    /* Lang switch */
    .lang-switch { border-color: rgba(245,185,66,.45); }
    .lang-switch__btn.active { background: var(--gold); color: var(--navy); }
    .lang-switch__btn:hover { color: var(--gold-lt); background: rgba(245,185,66,.14); }

    /* Footer */
    .footer { background: #050917; }
    .footer__social-link:hover {
      background: var(--gold); border-color: var(--gold);
      color: var(--navy);
      box-shadow: 0 6px 18px rgba(245,185,66,.35);
    }

    /* Scroll progress — pure amber */
    .scroll-progress {
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
      box-shadow: 0 0 12px rgba(245,185,66,.55);
    }
