    /* ========================================
       CSS Variables
       ======================================== */
    :root {
      --bg-primary: #000000;
      --bg-secondary: #0C151F;
      --bg-card: #181D23;
      --text-primary: #ffffff;
      --text-secondary: rgba(255, 255, 255, 0.7);
      --text-muted: rgba(255, 255, 255, 0.4);
      --accent: #5D5D5D;
      --transition-fast: 0.2s ease;
      --transition-base: 0.3s ease;
      --transition-slow: 0.6s ease;
    }

    /* ========================================
       Reset & Base
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-primary);
      background: var(--bg-primary);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: opacity var(--transition-fast);
    }

    a:hover {
      opacity: 0.8;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul {
      list-style: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    /* ========================================
       Header
       ======================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #000000;
      transition: background var(--transition-base);
    }

    .header.scrolled {
      background: #000000;
    }

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo */
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 49px;
      height: 45px;
    }

    .logo-text {
      width: 101px;
      height: 17px;
    }

    .logo-subtitle {
      font-size: 10px;
      font-weight: 400;
      color: #5D5D5D;
      line-height: 1.5;
      max-width: 320px;
      display: none;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    @media (min-width: 1200px) {
      .logo-subtitle {
        display: block;
      }
    }

    /* Navigation */
    .nav-main {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-main a {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-primary);
      white-space: nowrap;
      position: relative;
      padding: 4px 0;
    }

    .nav-main a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--text-primary);
      transition: width var(--transition-base);
    }

    .nav-main a:hover {
      opacity: 1;
    }

    .nav-main a:hover::after {
      width: 100%;
    }

    .nav-item-wrap {
      position: relative;
    }

    .nav-dropdown {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .nav-dropdown svg {
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform 0.3s ease;
    }

    .nav-item-wrap.open .nav-dropdown svg {
      transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 200px;
      background: #111820;
      border: 1px solid rgba(201, 169, 110, 0.1);
      border-radius: 12px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  visibility 0.35s;
      z-index: 2000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.05);
    }

    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid rgba(201, 169, 110, 0.15);
    }

    /* Invisible bridge between trigger and menu */
    .dropdown-menu::after {
      content: '';
      position: absolute;
      top: -20px;
      left: 0;
      right: 0;
      height: 20px;
    }

    .nav-item-wrap.open .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.2s ease;
      letter-spacing: 0.3px;
    }

    .dropdown-menu a::after {
      display: none;
    }

    .dropdown-menu a:hover {
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
      padding-left: 28px;
      opacity: 1;
    }

    /* Mobile dropdown styles */
    @media (max-width: 1024px) {
      .nav-item-wrap {
        width: 100%;
      }

      .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 0;
        border-left: 1px solid rgba(201, 169, 110, 0.15);
        margin-left: 16px;
        padding: 4px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    padding 0.4s ease;
        box-shadow: none;
        backdrop-filter: none;
      }

      .dropdown-menu::before,
      .dropdown-menu::after {
        display: none;
      }

      .nav-item-wrap.open .dropdown-menu {
        max-height: 300px;
        padding: 8px 0;
        transform: none;
      }

      .dropdown-menu a {
        padding: 8px 24px;
        font-size: 15px;
        border-bottom: none;
      }

      .dropdown-menu a:hover {
        padding-left: 28px;
      }
    }

    /* Header Right */
    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .lang-wrap {
      position: relative;
    }

    .lang-switch {
      font-size: 13px;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px 0;
      cursor: pointer;
    }

    .lang-switch svg {
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform 0.3s ease;
    }

    .lang-wrap.open .lang-switch svg {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      min-width: 140px;
      background: #111820;
      border: 1px solid rgba(201, 169, 110, 0.1);
      border-radius: 10px;
      padding: 6px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      z-index: 2000;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }

    .lang-wrap.open .lang-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      display: block;
      width: 100%;
      text-align: left;
      padding: 9px 20px;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      background: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .lang-option:hover {
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
    }

    .lang-option.active {
      color: #c9a96e;
    }

    /* Search Overlay */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 5000;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 15vh;
    }

    .search-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .search-inner {
      width: 100%;
      max-width: 620px;
      padding: 0 24px;
      transform: translateY(20px);
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .search-overlay.open .search-inner {
      transform: translateY(0);
    }

    .search-close {
      position: absolute;
      top: 32px;
      right: 40px;
      background: none;
      border: none;
      cursor: pointer;
      opacity: 0.5;
      transition: opacity 0.2s ease, transform 0.2s ease;
      padding: 8px;
    }

    .search-close:hover {
      opacity: 1;
      transform: rotate(90deg);
    }

    .search-box {
      position: relative;
      width: 100%;
    }

    .search-box-icon {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    .search-input {
      width: 100%;
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding: 16px 0 16px 40px;
      font-size: 22px;
      font-weight: 300;
      color: #fff;
      font-family: inherit;
      outline: none;
      letter-spacing: 0.5px;
      transition: border-color 0.3s ease;
    }

    .search-input::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .search-input:focus {
      border-color: rgba(201, 169, 110, 0.4);
    }

    .search-hints {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .search-hint-label {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      margin-right: 4px;
    }

    .search-hint {
      padding: 6px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
      background: none;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .search-hint:hover {
      border-color: rgba(201, 169, 110, 0.4);
      color: #fff;
      background: rgba(201, 169, 110, 0.08);
    }

    .search-results {
      margin-top: 32px;
    }

    .search-result-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .search-result-item:hover {
      padding-left: 8px;
    }

    .search-result-cat {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #c9a96e;
      min-width: 80px;
    }

    .search-result-name {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.8);
    }

    .search-result-item:hover .search-result-name {
      color: #fff;
    }

    .search-no-results {
      text-align: center;
      padding: 40px 0;
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      font-weight: 300;
    }

    .header-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: background var(--transition-fast);
    }

    .header-icon:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .header-icon svg {
      width: 20px;
      height: 20px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    /* Mobile Toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      z-index: 1100;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: white;
      transition: transform var(--transition-base), opacity var(--transition-base);
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(4px, -5px);
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      width: 100%;
      height: calc(100vh - 93px);
      margin-top: 93px;
      margin-bottom: 0;
      overflow: hidden;
      background: #080808;
    }
    .hero__bg {
      position: absolute;
      top: 0;
      left: 637px;
      width: 884px;
      height: 100%;
      object-fit: cover;
    }
    .hero__gradient-left {
      position: absolute;
      top: 0;
      left: 637px;
      width: 458px;
      height: 100%;
      background: linear-gradient(to right, #080808, rgba(8,8,8,0));
      z-index: 2;
    }
    .hero__gradient-edge {
      position: absolute;
      top: 0;
      left: 637px;
      width: 140px;
      height: 100%;
      background: linear-gradient(to left, #080808, rgba(8,8,8,0));
      z-index: 2;
    }
    .hero__content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      padding: 0 40px;
      max-width: 1440px;
    }
    .hero__brand {
      display: flex;
      align-items: center;
      gap: 3px;
      position: absolute;
      top: 94px;
      left: 144px;
    }
    .hero__brand-logo { width: 89px; height: 23px; }
    .hero__brand-mark { width: 19px; height: 23px; }
    .hero__title {
      position: absolute;
      top: 144px;
      left: 138px;
      font-size: 54px;
      font-weight: 350;
      line-height: 54px;
      width: 579px;
      letter-spacing: 0;
    }
    .hero__desc {
      position: absolute;
      top: 270px;
      left: 138px;
      font-size: 16px;
      line-height: 20px;
      width: 616px;
      font-weight: 400;
    }
    .hero__btn {
      position: absolute;
      top: 441px;
      left: 138px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 30px;
      background: #fff;
      color: #020202;
      font-size: 18px;
      line-height: 20px;
      font-family: 'Avenir', sans-serif;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .hero__btn:hover {
      background: #e0e0e0;
      transform: translateY(-1px);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: relative;
      margin-top: -60px;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      z-index: 5;
    }
    .scroll-indicator__arrow {
      width: 26px;
      height: 26px;
      animation: bounceDown 2s infinite;
    }
    .scroll-indicator__dots {
      width: 80px;
      height: 8px;
    }
    @keyframes bounceDown {
      0%, 100% { transform: scaleY(-1) translateY(0); }
      50% { transform: scaleY(-1) translateY(-8px); }
    }

    /* ===== SECTION: LEGEND ===== */
    .section-legend {
      position: relative;
      width: 100%;
      height: 666px;
      overflow: hidden;
      background: linear-gradient(to top, #000000 0%, #0d0d0d 55%, #1c1c1c 100%);
      margin-top: 65px;
    }
    .section-legend__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .section-legend__glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .section-legend__glow--1 {
      top: -200px;
      left: -150px;
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(130,130,130,0.14) 0%, rgba(80,80,80,0.07) 40%, transparent 70%);
      filter: blur(60px);
    }
    .section-legend__glow--2 {
      bottom: -200px;
      right: -150px;
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(130,130,130,0.11) 0%, rgba(80,80,80,0.06) 40%, transparent 70%);
      filter: blur(60px);
    }
    .section-legend__glow--3 {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(159deg);
      width: 1720px;
      height: 1720px;
      background-image: url('../img/sunshine.png');
      background-size: cover;
      mix-blend-mode: color-dodge;
      filter: blur(35px);
      opacity: 0.25;
      border-radius: 0;
    }

    .section-legend__inner {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      padding: 96px 40px 40px;
      height: 100%;
      z-index: 2;
    }
    .section-legend__title {
      font-size: 48px;
      font-weight: 350;
      line-height: 48px;
      width: 507px;
      margin-bottom: 30px;
      margin-left: 78px;
    }
    .section-legend__text {
      font-size: 16px;
      line-height: 20px;
      width: 553px;
      margin-left: 78px;
    }
    .section-legend__text p {
      margin-bottom: 16px;
    }
    .section-legend__image {
      position: absolute;
      top: 96px;
      right: 80px;
      width: 499px;
      height: 467px;
      object-fit: cover;
    }
    .section-legend__badges {
      position: absolute;
      bottom: 125px;
      right: 80px;
      width: 499px;
      display: flex;
      justify-content: center;
      gap: 22px;
    }
    .badge {
      background: rgba(6,9,13,0.85);
      border-radius: 7px;
      width: 135px;
      height: 64px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .badge__value {
      font-size: 18px;
      font-weight: 500;
      color: #ffc58f;
      line-height: 1.2;
    }
    .badge__label {
      font-size: 14px;
      font-weight: 400;
      color: #fff;
      line-height: 20px;
    }

    /* ===== SECTION: KEY FEATURES ===== */
    .section-features {
      padding: 40px 140px 40px;
      max-width: 1440px;
      margin: 60px auto 0;
    }
    .section-features__title {
      font-size: 48px;
      font-weight: 350;
      line-height: 55px;
      text-align: center;
      margin-bottom: 20px;
    }
    .section-features__subtitle {
      font-size: 16px;
      line-height: 20px;
      text-align: center;
      max-width: 553px;
      margin: 0 auto 63px;
    }
    .features-grid {
      display: flex;
      gap: 15px;
      justify-content: center;
    }
    .feature-card {
      width: 279px;
      min-height: 276px;
      background: #1d1d1d;
      overflow: hidden;
      position: relative;
    }
    .feature-card:first-child {
      background: #1d1d1d;
    }
    .feature-card__image {
      width: 100%;
      height: 175px;
      object-fit: cover;
      border-bottom: 1px solid #c0c0c0;
    }
    .feature-card__info {
      padding: 18px 22px;
    }
    .feature-card__name {
      font-size: 18px;
      font-weight: 800;
      line-height: 20px;
      margin-bottom: 8px;
    }
    .feature-card__desc {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
    }

    /* ===== SECTION: GALLERY ===== */
    .section-gallery {
      padding: 40px 140px 40px;
      max-width: 1440px;
      margin: 0 auto 0;
    }
    .section-gallery__title {
      font-size: 48px;
      font-weight: 350;
      line-height: 55px;
      text-align: center;
      margin-bottom: 44px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: minmax(0, 544fr) minmax(0, 294fr) minmax(0, 293fr);
      grid-template-rows: 273px 273px;
      gap: 14px;
    }
    .gallery-grid__main {
      grid-row: 1 / 3;
      height: 564px;
    }
    .gallery-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ===== SECTION: PRECISION ===== */
    .section-precision {
      position: relative;
      width: 100%;
      height: 666px;
      overflow: hidden;
      background: linear-gradient(135deg, #0a0a14 0%, #1a1320 35%, #14101a 70%, #08080f 100%);
      margin-top: 4px;
    }
    .section-precision::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -150px;
      width: 900px;
      height: 700px;
      background: radial-gradient(ellipse at center, rgba(130,130,130,0.14) 0%, rgba(80,80,80,0.07) 40%, transparent 70%);
      filter: blur(60px);
      border-radius: 50%;
      pointer-events: none;
    }
    .section-precision::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(159deg);
      width: 1720px;
      height: 1720px;
      background-image: url('../img/sunshine.png');
      background-size: cover;
      mix-blend-mode: color-dodge;
      filter: blur(35px);
      opacity: 0.25;
      pointer-events: none;
    }
    .section-precision__inner {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      padding: 96px 40px 40px;
      height: 100%;
      z-index: 2;
    }
    .section-precision__image {
      position: absolute;
      top: 96px;
      left: 118px;
      width: 506px;
      height: 467px;
      object-fit: cover;
    }
    .section-precision__badges {
      position: absolute;
      bottom: 125px;
      left: 118px;
      width: 506px;
      display: flex;
      justify-content: center;
      gap: 22px;
    }
    .section-precision__title {
      position: absolute;
      top: 93px;
      right: 80px;
      font-size: 48px;
      font-weight: 350;
      line-height: 48px;
      width: 553px;
    }
    .section-precision__text {
      position: absolute;
      top: 263px;
      right: 80px;
      font-size: 16px;
      line-height: 20px;
      width: 553px;
    }
    .section-precision__text p {
      margin-bottom: 8px;
    }

    /* ===== SECTION: HERITAGE ===== */
    .section-heritage {
      position: relative;
      max-width: 1440px;
      margin: 80px auto 0;
      padding: 0 40px;
      height: 467px;
      overflow: hidden;
    }
    .section-heritage__title {
      font-size: 48px;
      font-weight: 350;
      line-height: 48px;
      width: 593px;
      margin-bottom: 25px;
      margin-left: 118px;
      padding-top: 28px;
    }
    .section-heritage__text {
      font-size: 16px;
      line-height: 20px;
      width: 608px;
      margin-left: 118px;
    }
    .section-heritage__text p {
      margin-bottom: 16px;
    }
    .section-heritage__image {
      position: absolute;
      top: 0;
      right: 80px;
      width: 499px;
      height: 467px;
      object-fit: cover;
    }
    .section-heritage__badges {
      position: absolute;
      bottom: 30px;
      right: 80px;
      width: 499px;
      display: flex;
      justify-content: center;
      gap: 22px;
    }

    /* ===== SECTION: WHY US ===== */
    .section-whyus {
      padding: 0 140px;
      max-width: 1440px;
      margin: 80px auto 0;
      height: auto;
      padding-bottom: 20px;
      overflow: hidden;
    }
    .section-whyus__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .section-whyus__title {
      font-size: 48px;
      font-weight: 350;
      line-height: 55px;
    }
    .section-whyus__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 30px;
      background: #fff;
      color: #020202;
      font-size: 18px;
      line-height: 20px;
      font-family: 'Avenir', sans-serif;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
    }
    .section-whyus__btn:hover { background: #e0e0e0; }
    .section-whyus__desc {
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 40px;
    }
    .whyus-grid {
      display: flex;
      gap: 15px;
      margin-bottom: 40px;
    }
    .whyus-card {
      width: 279px;
      height: 249px;
      background: #1d1d1d;
      overflow: hidden;
      position: relative;
    }
    .whyus-card:first-child {
      background: #121212;
    }
    .whyus-card__image {
      width: 100%;
      height: 153px;
      object-fit: cover;
    }
    .whyus-card__info {
      padding: 14px 22px;
    }
    .whyus-card__name {
      font-size: 18px;
      font-weight: 800;
      line-height: 20px;
    }

    /* Watches lineup */
    .section-whyus__lineup {
      position: relative;
      width: 100%;
      height: 590px;
      overflow: hidden;
    }
    .section-whyus__lineup img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .section-whyus__lineup-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 30px;
      height: 51px;
      background: #fff;
      color: #020202;
      font-size: 18px;
      font-weight: 500;
      line-height: 20px;
      font-family: 'Avenir', sans-serif;
      border: none;
      border-radius: 43px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .section-whyus__lineup-btn:hover {
      background: #e0e0e0;
      transform: translate(-50%, calc(-50% - 2px));
    }

    /* ===== SECTION: BOUTIQUES ===== */
    .section-boutiques {
      padding: 40px 140px 20px;
      max-width: 1440px;
      margin: 80px auto 0;
    }
    .section-boutiques__header {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 40px;
    }
    .section-boutiques__title {
      font-size: 32px;
      font-weight: 350;
      line-height: 68px;
    }
    .section-boutiques__tabs {
      display: flex;
      background: #0c151f;
      border-radius: 20px;
      padding: 10px;
      gap: 10px;
    }
    .section-boutiques__tab {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 17px 45px;
      height: 50px;
      border-radius: 16px;
      font-size: 16px;
      font-family: 'Manrope', 'Avenir', sans-serif;
      font-weight: 500;
      color: #fff;
      cursor: pointer;
      border: none;
      background: transparent;
      transition: background 0.3s, color 0.3s;
    }
    .section-boutiques__tab--active {
      background: #fff;
      color: #030303;
      font-weight: 600;
    }
    .section-boutiques__content {
      display: flex;
      gap: 40px;
    }
    .section-boutiques__list {
      flex: 1;
      max-width: 616px;
    }
    .boutique-item {
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .boutique-item__row {
      display: flex;
      gap: 80px;
    }
    .boutique-item__col {
      flex: 1;
    }
    .boutique-item__label {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      line-height: 20px;
      margin-bottom: 8px;
    }
    .boutique-item__value {
      font-size: 16px;
      line-height: 20px;
      color: #fff;
    }
    .section-boutiques__map {
      flex: 1;
      max-width: 595px;
      height: 481px;
      overflow: hidden;
      background: #f2f0eb;
      border-radius: 4px;
    }
    .section-boutiques__map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .section-boutiques__map #map,
    .section-boutiques__map .leaflet-container {
      background: #f2f0eb !important;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--bg-primary);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 32px 0;
    }

    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .footer-social {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity var(--transition-fast);
    }

    .footer-social:hover {
      opacity: 0.8;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: black;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-legal p {
      font-size: 11px;
      color: #ffffff !important;
      line-height: 1.6;
    }

    .footer-privacy {
      font-size: 11px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .footer-privacy:hover {
      color: var(--text-secondary);
    }

    @media (max-width: 768px) {
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-legal {
        flex-direction: column;
        gap: 12px;
      }
    }

    /* ========================================
       Premium Animations
       ======================================== */

    /* --- Preloader --- */
    .preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
    }
    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .preloader-logos {
      display: flex;
      align-items: center;
      gap: 16px;
      animation: preloaderPulse 1.6s ease-in-out infinite;
    }
    .preloader-logo {
      width: 60px;
      height: auto;
    }
    .preloader-text {
      width: 120px;
      height: auto;
      opacity: 0.9;
    }
    .preloader-line {
      width: 140px;
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin-top: 32px;
      position: relative;
      overflow: hidden;
      border-radius: 1px;
    }
    .preloader-line::after {
      content: '';
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #c9a96e, #f5d89a, #c9a96e);
      animation: preloaderProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    @keyframes preloaderPulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.03); }
    }
    @keyframes preloaderProgress {
      to { width: 100%; }
    }

    /* --- Gold shimmer text --- */
    .gold-accent {
      background: linear-gradient(135deg, #c9a96e 0%, #f5d89a 50%, #c9a96e 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: goldShimmer 3s ease infinite;
    }
    @keyframes goldShimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* --- Reveal on scroll --- */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal.from-left { transform: translateX(-60px); }
    .reveal.from-right { transform: translateX(60px); }
    .reveal.from-scale { transform: scale(0.92); }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
    }

    /* --- Stagger children --- */
    .stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
    .stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children .reveal:nth-child(3) { transition-delay: 0.12s; }
    .stagger-children .reveal:nth-child(4) { transition-delay: 0.18s; }
    .stagger-children .reveal:nth-child(5) { transition-delay: 0.24s; }
    .stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
    .stagger-children .reveal:nth-child(7) { transition-delay: 0.36s; }
    .stagger-children .reveal:nth-child(8) { transition-delay: 0.42s; }
    .stagger-children .reveal:nth-child(9) { transition-delay: 0.48s; }
    .stagger-children .reveal:nth-child(10) { transition-delay: 0.54s; }

    /* --- Brand card gold hover shine --- */
    .brand-card::before {
      content: '';
      position: absolute;
      inset: -50%;
      z-index: 5;
      background: linear-gradient(135deg,
        transparent 30%,
        rgba(201, 169, 110, 0.12) 50%,
        transparent 70%);
      transform: rotate(45deg) translateX(-200%);
      transition: none;
      pointer-events: none;
    }
    .brand-card:hover::before {
      animation: cardShine 0.8s ease forwards;
    }
    @keyframes cardShine {
      to { transform: rotate(45deg) translateX(200%); }
    }
    .brand-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, #c9a96e, transparent);
      transform: scaleX(0);
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 6;
    }
    .brand-card:hover::after {
      transform: scaleX(1);
    }

    /* --- Hero Ken Burns slow zoom --- */
    .hero-slide-bg {
      transition: opacity 1s ease, transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    .hero-slide.active .hero-slide-bg {
      transform: scale(1.06);
    }

    /* --- Hero brand gold underline --- */
    .hero-brand { position: relative; }
    .hero-brand::after {
      content: '';
      display: block;
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #c9a96e, transparent);
      margin: 16px 0 0 auto;
      animation: lineExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    }
    @keyframes lineExpand {
      from { width: 0; opacity: 0; }
      to { width: 60px; opacity: 1; }
    }

    /* --- Stat glow on visible --- */
    .stat-number {
      text-shadow: 0 0 40px rgba(201, 169, 110, 0);
      transition: text-shadow 0.6s ease;
    }
    .stat-item.visible .stat-number {
      text-shadow: 0 0 40px rgba(201, 169, 110, 0.25);
    }

    /* --- Gold section divider --- */
    .section-divider {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .section-divider-line {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
      transform: scaleX(0);
      transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .section-divider-line.visible {
      transform: scaleX(1);
    }

    /* --- Floating gold particles --- */
    .particles-container {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(201, 169, 110, 0.25);
      border-radius: 50%;
      animation: floatParticle linear infinite;
    }
    @keyframes floatParticle {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }

    /* --- Cursor gold glow (desktop only) --- */
    .cursor-glow {
      position: fixed;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: left 0.15s ease-out, top 0.15s ease-out;
      display: none;
    }
    @media (hover: hover) {
      .cursor-glow { display: block; }
    }

    /* --- Header gold line on scroll --- */
    .header.scrolled {
      border-bottom: 1px solid rgba(201, 169, 110, 0.08) !important;
    }

    /* --- Dots active ring pulse --- */
    .hero-dot { position: relative; overflow: visible; }
    .hero-dot.active::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, 0.5);
      animation: dotPulse 2s ease infinite;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.6); opacity: 0; }
    }

    /* --- Map gold left border --- */
    .boutiques-map::before {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.2), transparent);
      z-index: 999;
    }

    /* --- Footer social hover lift + gold --- */
    .footer-social {
      transition: opacity var(--transition-fast), transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .footer-social:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
    }

    /* --- Magnetic button effect class --- */
    .magnetic { transition: transform 0.2s ease-out; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ========================================
       Mobile Responsive
       ======================================== */
    @media (max-width: 1024px) {
      .header-inner {
        padding: 0 24px;
        height: 72px;
      }

      .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 80vw;
        height: 100vh;
        background: rgba(12, 21, 31, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right var(--transition-base);
        z-index: 1050;
      }

      .nav-main.active {
        right: 0;
      }

      .nav-main a {
        font-size: 18px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav-toggle {
        display: flex;
      }

      .logo-icon {
        height: 36px;
      }

      .hero-content {
        padding: 0 24px;
        text-align: center;
      }

      .hero-brand {
        letter-spacing: 8px;
      }

      .lang-switch {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero {
        max-height: 70vh;
        min-height: 480px;
      }

      .hero-dots {
        bottom: 24px;
        gap: 12px;
      }

      .hero-dot {
        width: 6px;
        height: 6px;
      }
    }

    /* Mobile menu overlay */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ========================================
       RESPONSIVE STYLES - TABLETS & MOBILE
       ======================================== */

    /* ===== TABLET: 1024px ===== */
    @media (max-width: 1024px) {
      /* Section spacing */
      .section-legend {
        height: auto;
        padding: 60px 24px;
      }

      .section-legend__inner {
        padding: 40px 24px;
      }

      .section-legend__title {
        font-size: 36px;
        line-height: 40px;
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
      }

      .section-legend__text {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
        margin-left: 0;
      }

      .section-legend__image {
        position: static;
        width: 100%;
        height: 300px;
        margin-top: 30px;
      }

      .section-legend__badges {
        position: static;
        width: 100%;
        margin-top: 20px;
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      /* Features section */
      .section-features {
        padding: 40px 24px;
        margin: 40px auto 0;
      }

      .section-features__title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 16px;
      }

      .section-features__subtitle {
        font-size: 15px;
        margin: 0 auto 40px;
      }

      .features-grid {
        flex-wrap: wrap;
        gap: 12px;
      }

      .feature-card {
        width: calc(50% - 6px);
        min-height: 250px;
      }

      .feature-card__image {
        height: 140px;
      }

      .feature-card__name {
        font-size: 16px;
      }

      .feature-card__desc {
        font-size: 13px;
      }

      /* Gallery section */
      .section-gallery {
        padding: 40px 24px;
      }

      .section-gallery__title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 30px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
      }

      .gallery-grid__main {
        grid-row: 1;
        height: auto;
      }

      .gallery-grid img {
        height: 200px;
      }

      /* Precision section */
      .section-precision {
        height: auto;
        padding: 60px 24px;
      }

      .section-precision__inner {
        padding: 40px 24px;
      }

      .section-precision__image {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
      }

      .section-precision__badges {
        position: static;
        width: 100%;
        margin-bottom: 30px;
      }

      .section-precision__title {
        position: static;
        font-size: 36px;
        line-height: 40px;
        width: 100%;
        margin-bottom: 16px;
      }

      .section-precision__text {
        position: static;
        font-size: 15px;
        line-height: 22px;
        width: 100%;
      }

      /* Heritage section */
      .section-heritage {
        height: auto;
        padding: 60px 24px;
      }

      .section-heritage__title {
        font-size: 36px;
        line-height: 40px;
        width: 100%;
        margin-left: 0;
        margin-bottom: 16px;
        padding-top: 0;
      }

      .section-heritage__text {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
        margin-left: 0;
      }

      .section-heritage__image {
        position: static;
        width: 100%;
        height: 300px;
        margin-top: 30px;
      }

      .section-heritage__badges {
        position: static;
        width: 100%;
        margin-top: 20px;
        right: auto;
        bottom: auto;
      }

      /* Why Us section */
      .section-whyus {
        padding: 0 24px;
        margin: 40px auto 0;
        height: auto;
      }

      .section-whyus__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
      }

      .section-whyus__title {
        font-size: 36px;
        line-height: 40px;
      }

      .section-whyus__desc {
        font-size: 15px;
        margin-bottom: 30px;
      }

      .whyus-grid {
        flex-wrap: wrap;
        gap: 12px;
      }

      .whyus-card {
        width: calc(50% - 6px);
        height: 220px;
      }

      .whyus-card__image {
        height: 120px;
      }

      .whyus-card__name {
        font-size: 16px;
      }

      .section-whyus__lineup {
        height: 400px;
        margin-top: 40px;
      }

      /* Boutiques section */
      .section-boutiques {
        padding: 40px 24px;
        margin: 40px auto 0;
      }

      .section-boutiques__header {
        flex-direction: column;
        gap: 20px;
      }

      .section-boutiques__title {
        font-size: 28px;
        line-height: 40px;
      }

      .section-boutiques__content {
        flex-direction: column;
        gap: 30px;
      }

      .section-boutiques__list {
        max-width: 100%;
      }

      .section-boutiques__map {
        max-width: 100%;
        height: 300px;
      }

      .boutique-item__row {
        gap: 40px;
      }

      /* Hero section at tablet */
      .hero {
        height: auto;
        min-height: calc(100vh - 72px);
      }

      .hero__content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 70px 24px 60px;
        height: auto;
      }

      .hero__brand {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
      }

      .hero__title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 40px;
        line-height: 44px;
        width: 90%;
        text-align: center;
        margin-bottom: 24px;
      }

      .hero__desc {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 15px;
        line-height: 20px;
        width: 90%;
        text-align: center;
        margin-bottom: 32px;
      }

      .hero__btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
      }

      .hero__bg {
        left: 50%;
        width: 100%;
      }

      .hero__gradient-left,
      .hero__gradient-edge {
        left: 0;
        width: 100%;
      }
    }

    /* ===== MOBILE: 768px ===== */
    @media (max-width: 768px) {
      body {
        font-size: 15px;
      }

      /* Section spacing */
      .section-legend {
        padding: 40px 16px;
      }

      .section-legend__inner {
        padding: 30px 16px;
      }

      .section-legend__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 16px;
      }

      .section-legend__text {
        font-size: 14px;
        line-height: 20px;
      }

      .section-legend__text p {
        margin-bottom: 12px;
      }

      .section-legend__image {
        height: 250px;
        margin-top: 20px;
      }

      .section-legend__badges {
        margin-top: 16px;
        gap: 10px;
      }

      .badge {
        width: 120px;
        height: 56px;
        padding: 10px;
      }

      .badge__value {
        font-size: 16px;
      }

      .badge__label {
        font-size: 12px;
      }

      /* Features section */
      .section-features {
        padding: 30px 16px;
        margin: 30px auto 0;
      }

      .section-features__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
      }

      .section-features__subtitle {
        font-size: 14px;
        margin: 0 auto 30px;
      }

      .features-grid {
        gap: 10px;
      }

      .feature-card {
        width: calc(50% - 5px);
        min-height: 240px;
      }

      .feature-card__image {
        height: 130px;
      }

      .feature-card__info {
        padding: 15px 16px;
      }

      .feature-card__name {
        font-size: 15px;
        margin-bottom: 6px;
      }

      .feature-card__desc {
        font-size: 12px;
        line-height: 18px;
      }

      /* Gallery section */
      .section-gallery {
        padding: 30px 16px;
      }

      .section-gallery__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .gallery-grid img {
        height: 200px;
      }

      /* Precision section */
      .section-precision {
        padding: 40px 16px;
      }

      .section-precision__inner {
        padding: 30px 16px;
      }

      .section-precision__image {
        height: 250px;
        margin-bottom: 20px;
      }

      .section-precision__badges {
        margin-bottom: 20px;
        gap: 10px;
      }

      .section-precision__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
      }

      .section-precision__text {
        font-size: 14px;
        line-height: 20px;
      }

      .section-precision__text p {
        margin-bottom: 6px;
      }

      /* Heritage section */
      .section-heritage {
        margin: 30px auto 0;
        padding: 40px 16px;
      }

      .section-heritage__title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 12px;
      }

      .section-heritage__text {
        font-size: 14px;
        line-height: 20px;
      }

      .section-heritage__text p {
        margin-bottom: 12px;
      }

      .section-heritage__image {
        height: 250px;
        margin-top: 20px;
      }

      .section-heritage__badges {
        margin-top: 16px;
        gap: 10px;
      }

      /* Why Us section */
      .section-whyus {
        padding: 0 16px;
        margin: 30px auto 0;
      }

      .section-whyus__title {
        font-size: 28px;
        line-height: 32px;
      }

      .section-whyus__desc {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .whyus-grid {
        gap: 10px;
        margin-bottom: 30px;
      }

      .whyus-card {
        width: calc(50% - 5px);
        height: 200px;
      }

      .whyus-card__image {
        height: 100px;
      }

      .whyus-card__info {
        padding: 12px 16px;
      }

      .whyus-card__name {
        font-size: 15px;
      }

      .section-whyus__lineup {
        height: 350px;
        margin-top: 30px;
      }

      .section-whyus__lineup-btn {
        padding: 10px 24px;
        font-size: 16px;
      }

      /* Boutiques section */
      .section-boutiques {
        padding: 30px 16px;
        margin: 30px auto 0;
      }

      .section-boutiques__title {
        font-size: 24px;
        line-height: 32px;
      }

      .section-boutiques__tabs {
        padding: 8px;
        gap: 8px;
      }

      .section-boutiques__tab {
        padding: 14px 20px;
        height: 46px;
        font-size: 13px;
      }

      .section-boutiques__content {
        gap: 20px;
      }

      .boutique-item {
        padding: 16px 0;
      }

      .boutique-item__row {
        flex-direction: column;
        gap: 0;
      }

      .boutique-item__col {
        margin-bottom: 8px;
      }

      .boutique-item__label {
        font-size: 12px;
        margin-bottom: 4px;
      }

      .boutique-item__value {
        font-size: 15px;
      }

      .section-boutiques__map {
        height: 250px;
      }

      /* Hero section at mobile */
      .hero {
        min-height: 500px;
      }

      .hero__bg {
        display: none;
      }

      .hero__gradient-left,
      .hero__gradient-edge {
        display: none;
      }

      .hero__content {
        padding: 50px 16px 50px;
      }

      .hero__brand {
        gap: 8px;
        margin-bottom: 16px;
      }

      .hero__brand-logo {
        width: 70px;
        height: 18px;
      }

      .hero__brand-mark {
        width: 14px;
        height: 18px;
      }

      .hero__title {
        font-size: 32px;
        line-height: 36px;
        width: 90%;
        margin-bottom: 20px;
      }

      .hero__desc {
        font-size: 14px;
        line-height: 18px;
        width: 90%;
        margin-bottom: 28px;
      }

      .hero__btn {
        padding: 10px 24px;
        font-size: 16px;
      }

      .scroll-indicator {
        margin-top: -40px;
      }

      .scroll-indicator__arrow {
        width: 20px;
        height: 20px;
      }

      .scroll-indicator__dots {
        width: 60px;
        height: 6px;
      }

      /* Footer adjustments */
      .footer-inner {
        padding: 0 16px;
      }

      .footer-legal {
        gap: 16px;
      }

      .footer-legal p {
        font-size: 10px;
      }

      .footer-privacy {
        font-size: 10px;
      }
    }

    /* ===== SMALL MOBILE: 480px ===== */
    @media (max-width: 480px) {
      body {
        font-size: 14px;
      }

      /* General spacing */
      .section-legend {
        padding: 30px 12px;
      }

      .section-legend__inner {
        padding: 24px 12px;
      }

      .section-legend__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 12px;
      }

      .section-legend__text {
        font-size: 13px;
        line-height: 18px;
      }

      .section-legend__image {
        height: 200px;
        margin-top: 16px;
      }

      .section-legend__badges {
        flex-direction: column;
        gap: 8px;
      }

      .badge {
        width: 100%;
        height: 50px;
      }

      .badge__value {
        font-size: 15px;
      }

      .badge__label {
        font-size: 11px;
      }

      /* Features section */
      .section-features {
        padding: 24px 12px;
        margin: 24px auto 0;
      }

      .section-features__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
      }

      .section-features__subtitle {
        font-size: 13px;
        margin: 0 auto 20px;
      }

      .features-grid {
        flex-direction: column;
        gap: 8px;
      }

      .feature-card {
        width: 100%;
        min-height: 200px;
      }

      .feature-card__image {
        height: 110px;
      }

      .feature-card__info {
        padding: 12px 14px;
      }

      .feature-card__name {
        font-size: 14px;
        margin-bottom: 4px;
      }

      .feature-card__desc {
        font-size: 11px;
        line-height: 16px;
      }

      /* Gallery section */
      .section-gallery {
        padding: 24px 12px;
      }

      .section-gallery__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 16px;
      }

      .gallery-grid {
        gap: 6px;
      }

      .gallery-grid img {
        height: 150px;
      }

      /* Precision section */
      .section-precision {
        padding: 30px 12px;
      }

      .section-precision__inner {
        padding: 24px 12px;
      }

      .section-precision__image {
        height: 200px;
        margin-bottom: 16px;
      }

      .section-precision__badges {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
      }

      .section-precision__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
      }

      .section-precision__text {
        font-size: 13px;
        line-height: 18px;
      }

      .section-precision__text p {
        margin-bottom: 4px;
      }

      /* Heritage section */
      .section-heritage {
        margin: 24px auto 0;
        padding: 30px 12px;
      }

      .section-heritage__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
      }

      .section-heritage__text {
        font-size: 13px;
        line-height: 18px;
      }

      .section-heritage__text p {
        margin-bottom: 8px;
      }

      .section-heritage__image {
        height: 200px;
        margin-top: 16px;
      }

      .section-heritage__badges {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
      }

      /* Why Us section */
      .section-whyus {
        padding: 0 12px;
        margin: 24px auto 0;
      }

      .section-whyus__title {
        font-size: 24px;
        line-height: 28px;
      }

      .section-whyus__desc {
        font-size: 13px;
        margin-bottom: 16px;
      }

      .whyus-grid {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
      }

      .whyus-card {
        width: 100%;
        height: 180px;
      }

      .whyus-card__image {
        height: 90px;
      }

      .whyus-card__info {
        padding: 10px 14px;
      }

      .whyus-card__name {
        font-size: 14px;
      }

      .section-whyus__lineup {
        height: 280px;
        margin-top: 20px;
      }

      .section-whyus__lineup-btn {
        padding: 10px 20px;
        font-size: 15px;
      }

      /* Boutiques section */
      .section-boutiques {
        padding: 24px 12px;
        margin: 24px auto 0;
      }

      .section-boutiques__title {
        font-size: 22px;
        line-height: 28px;
      }

      .section-boutiques__tabs {
        padding: 6px;
        gap: 6px;
      }

      .section-boutiques__tab {
        padding: 12px 16px;
        height: 44px;
        font-size: 12px;
      }

      .section-boutiques__content {
        gap: 16px;
      }

      .boutique-item {
        padding: 12px 0;
      }

      .boutique-item__label {
        font-size: 11px;
      }

      .boutique-item__value {
        font-size: 14px;
      }

      .section-boutiques__map {
        height: 200px;
      }

      /* Hero section */
      .hero {
        min-height: 450px;
      }

      .hero__content {
        padding: 40px 12px 40px;
      }

      .hero__brand-logo {
        width: 60px;
        height: 15px;
      }

      .hero__brand-mark {
        width: 12px;
        height: 15px;
      }

      .hero__title {
        font-size: 26px;
        line-height: 30px;
        width: 95%;
        margin-bottom: 16px;
      }

      .hero__desc {
        font-size: 12px;
        line-height: 16px;
        width: 95%;
        margin-bottom: 24px;
      }

      .hero__btn {
        padding: 10px 20px;
        font-size: 15px;
      }

      .scroll-indicator {
        margin-top: -30px;
      }

      .scroll-indicator__arrow {
        width: 18px;
        height: 18px;
      }

      .scroll-indicator__dots {
        width: 50px;
        height: 5px;
      }

      /* Footer */
      .footer-inner {
        padding: 0 12px;
      }

      .footer-socials {
        gap: 8px;
      }

      .footer-social {
        width: 36px;
        height: 36px;
      }

      .footer-legal {
        gap: 12px;
      }

      .footer-legal p {
        font-size: 9px;
      }

      .footer-privacy {
        font-size: 9px;
      }
    }

    /* Наши ценности: описание под заголовком карточки */
    .whyus-card__desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 18px;
      color: #c9c9c9;
      margin-top: 8px;
    }
    .whyus-card--rich { height: auto; min-height: 249px; }
    @media (max-width: 1024px) {
      .whyus-card--rich { height: auto; min-height: 220px; }
    }

    /* Ссылки в правой части футера: политика + кредит разработчика */
    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }
    .footer-credit { opacity: 0.75; }
    .footer-credit:hover { opacity: 1; }
    @media (max-width: 768px) {
      .footer-links { align-items: flex-start; }
    }

/* телефоны всегда одной строкой */
a[href^="tel:"], .address-col p a, .phone { white-space: nowrap; }

/* ===== УНИФИКАЦИЯ ТИПОГРАФИКИ И БЕЙДЖЕЙ (12.06.2026) ===== */
h1, h2, h3,
.hero__title, .section-legend__title, .section-precision__title, .section-features__title,
.section-gallery__title, .section-heritage__title, .section-whyus__title, .boutiques-title,
.philosophy-title, .heritage-title, .collections-title, .section-title, .design-text h3,
.collection-card__name, .whyus-card__title, .feature-card h3 {
  line-height: 1.15 !important;
}
p, .hero__desc, .section-legend__text p, .section-precision__text p, .section-features__subtitle,
.section-heritage__text, .philosophy-text, .heritage-text, .design-text p, .design-subtitle,
.collections-subtitle, .collection-card__desc, .feature-card p, .whyus-card__desc,
.mg-icons-intro, .mg-icon-card p, .bagliori-text p {
  line-height: 1.5 !important;
}
/* бейджи: гибкая ширина, равная высота в ряду, аккуратный перенос */
.badge {
  width: auto !important;
  min-width: 135px;
  max-width: 200px;
  height: auto !important;
  min-height: 64px;
}
.badge__value { line-height: 1.25 !important; }
.badge__label { line-height: 1.35 !important; }
.section-legend__badges, .section-precision__badges, .section-heritage__badges {
  align-items: stretch;
}

/* факт-карточки: единая типографика на всех страницах */
.badge__value, .heritage-badge__value, .philosophy-card-title {
  font-size: 18px !important; font-weight: 500 !important; line-height: 1.25 !important;
}
.badge__label, .heritage-badge__label, .philosophy-card-text {
  font-size: 14px !important; font-weight: 400 !important; line-height: 1.35 !important;
}
.badge__value, .badge__label, .heritage-badge__value, .heritage-badge__label,
.philosophy-card-title, .philosophy-card-text {
  hyphens: none; word-break: normal; overflow-wrap: normal;
}

/* 15.06.2026: убрать декоративный ряд точек scroll-indicator (дубль пагинации hero) на всех брендах */
.scroll-indicator__dots { display: none !important; }

/* 15.06.2026: убрать чёрный зазор 31px между слайдером и секцией История на всех брендах (десктоп) */
@media (min-width:1025px){ .section-legend { margin-top: 34px !important; } }


/* Цитаты + имя бутика — правки 18.06.2026 */
.hero__desc-author{ margin-top:.7em; font-style:italic; color:#c9a96e; letter-spacing:.02em; }
.section-legend__text .legend-quote-author{ margin-top:.6em; font-style:italic; color:#c9a96e; }
.boutique-item__value .boutique-name{ display:block; font-weight:600; color:#fff; margin-bottom:3px; }

/* ===== JUSTIFY основного текста страниц брендов (правки 22.06.2026) ===== */
.section-legend__text, .section-legend__text p,
.section-precision__text, .section-precision__text p,
.section-heritage__text, .section-heritage__text p,
.section-features__subtitle,
.section-heritage__subtitle,
.collections-subtitle,
.design-subtitle,
.philosophy-text, .philosophy-text p,
.philosophy-card-text,
.design-text, .design-text p,
.heritage-text, .heritage-text p,
.heritage-row__text,
.section-whyus__desc { text-align: justify; }
