:root {
    --gold: #c9a866;
    --gold-soft: #b89556;
    --gold-light: #e6cf9b;
    --cream: #ede4cf;
    --ink: #1a1916;
    --light-text: #f3eedf;
    --display: 'Cormorant Garamond', Georgia, serif;
    --body: 'Inter', -apple-system, sans-serif;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: var(--ink);
    color: var(--light-text);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* === Top minibar === */
  .topbar {
    background: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid rgba(243, 238, 223, 0.08);
  }
  .topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--light-text);
  }
  .topbar-inner .geo { display: flex; align-items: center; gap: 8px; }
  .topbar-inner .geo::before {
    content: '';
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.65;
  }
  .topbar-inner a { color: inherit; text-decoration: none; }

  /* Логотип в шапке + сгруппированные контакты */
  .brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
  .brand-logo { height: 42px; width: auto; display: block; }
  .topbar-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--light-text);
    line-height: 1.25;
  }
  .topbar-contact .geo { opacity: 0.9; }
  .topbar-contact a { color: var(--gold); font-weight: 600; letter-spacing: 0.02em; }

  /* Логотип в блоке с картой */
  .footer-logo { height: 56px; width: auto; display: block; margin-bottom: 26px; }

  /* === HERO === */
  .hero {
    padding: 28px 48px 48px;
    background: var(--ink);
  }
  .hero-frame {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    aspect-ratio: 16/9.2;
    overflow: hidden;
    isolation: isolate;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/bundles/odnajdy/frontend/images/landings/podbor-podarka/hero-bg.webp');
    background-size: cover;
    background-position: center 60%;
    z-index: 1;
  }

  /* Layered overlays: directional darkening */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(20, 18, 14, 0.92) 0%,
        rgba(20, 18, 14, 0.78) 30%,
        rgba(20, 18, 14, 0.55) 60%,
        rgba(20, 18, 14, 0.65) 100%
      ),
      linear-gradient(
        180deg,
        rgba(20, 18, 14, 0.4) 0%,
        rgba(20, 18, 14, 0.3) 50%,
        rgba(20, 18, 14, 0.75) 100%
      );
    z-index: 2;
  }

  /* Subtle vignette */
  .hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse at center,
      transparent 40%,
      rgba(20, 18, 14, 0.4) 100%
    );
    z-index: 3;
    pointer-events: none;
  }

  /* === CONTENT === */
  .hero-content {
    position: relative;
    z-index: 5;
    padding: 70px 80px 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    height: 100%;
  }

  /* Crown decorative element */
  .crown {
    margin-bottom: 14px;
    color: var(--gold);
    opacity: 0.9;
  }

  /* Eyebrow */
  .hero-eyebrow {
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    align-self: flex-start;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }

  /* Main title */
  .hero-title {
    font-family: var(--display);
    font-size: 64px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 880px;
  }
  .hero-title span {
    display: block;
  }

  /* Subtitle with golden line */
  .hero-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
  }
  .hero-subtitle-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .hero-subtitle {
    font-family: var(--body);
    font-size: 15px;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
  }

  /* Secondary heading */
  .hero-second-title {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 28px;
    max-width: 640px;
    opacity: 0.95;
  }

  /* Description */
  .hero-desc {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 48px;
    max-width: 480px;
    opacity: 0.9;
    font-weight: 300;
  }

  /* CTA row */
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 42px;
    background: linear-gradient(180deg, #f0e3c2 0%, #e2cf9f 100%);
    color: var(--ink);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(201, 168, 102, 0.18);
  }
  .hero-cta:hover {
    background: linear-gradient(180deg, #f6eccb 0%, #e8d5a4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(201, 168, 102, 0.32);
  }
  .hero-cta .icon { font-size: 18px; line-height: 1; }

  /* Mini info card on the right */
  .hero-info-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border: 1px solid rgba(201, 168, 102, 0.4);
    background: rgba(20, 18, 14, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .hero-info-card:hover {
    border-color: var(--gold);
    background: rgba(20, 18, 14, 0.65);
  }
  .hero-info-card .icon {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
  }
  .hero-info-card .text {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--cream);
  }
  .hero-info-card .text strong {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  /* Bottom features */
  .hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(201, 168, 102, 0.25);
    background: linear-gradient(180deg, transparent 0%, rgba(20, 18, 14, 0.4) 100%);
    padding: 26px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    z-index: 5;
  }
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--cream);
  }
  .hero-feature .ficon {
    width: 32px; height: 32px;
    flex-shrink: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-feature .ftext {
    font-family: var(--body);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .crown { animation: fadeUp 0.9s ease 0.1s both; }
  .hero-eyebrow { animation: fadeUp 0.9s ease 0.2s both; }
  .hero-title { animation: fadeUp 0.9s ease 0.35s both; }
  .hero-subtitle-wrap { animation: fadeUp 0.9s ease 0.5s both; }
  .hero-second-title { animation: fadeUp 0.9s ease 0.6s both; }
  .hero-desc { animation: fadeUp 0.9s ease 0.7s both; }
  .hero-cta-row { animation: fadeUp 0.9s ease 0.85s both; }
  .hero-features { animation: fadeUp 0.9s ease 1s both; }

  /* === RESPONSIVE === */
  @media (max-width: 1100px) {
    .hero-title { font-size: 48px; }
    .hero-content { padding: 50px 50px 200px; }
  }
  @media (max-width: 760px) {
    .topbar-inner {
      padding: 0 20px;
      font-size: 11px;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .topbar-inner .geo { line-height: 1.3; }
    .topbar { padding: 12px 0; }
    .hero { padding: 16px 16px 32px; }
    .hero-frame { aspect-ratio: auto; min-height: 800px; }
    .hero-content { padding: 40px 24px 280px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 24px; }
    .hero-eyebrow::before, .hero-eyebrow::after { width: 24px; }
    .hero-title { font-size: 32px; letter-spacing: 0; }
    .hero-subtitle { font-size: 12px; letter-spacing: 0.12em; }
    .hero-subtitle-line { width: 32px; }
    .hero-second-title { font-size: 19px; }
    .hero-desc { font-size: 15px; margin-bottom: 32px; }
    .hero-cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
    .hero-cta { padding: 18px 28px; font-size: 13px; justify-content: center; }
    .hero-info-card { padding: 14px 20px; }
    .hero-features {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 20px 24px;
    }
  }

/* ============================================================ */
  /* SERVICE SECTION                                              */
  /* ============================================================ */
  .service {
    position: relative;
    padding: 90px 48px 100px;
    background: var(--ink);
    overflow: hidden;
  }
  .service::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 102, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .service-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
  }

  /* === SERVICE HEADING === */
  .service-heading {
    text-align: center;
    margin-bottom: 64px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .service-eyebrow::before,
  .service-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .service-h {
    font-family: var(--display);
    font-size: 44px;
    color: var(--cream-warm);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.005em;
  }
  .service-h em {
    font-style: italic;
    color: var(--gold-light);
  }

  /* === CATEGORIES GRID — 7 категорий === */
  .categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 90px;
  }
  /* Каталог: 2 колонки на ПК/планшете, 1 на мобайле */
  .category {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2620, #1a1815);
    border: 1px solid rgba(201, 168, 102, 0.15);
    transition: all 0.4s ease;
  }
  .category:hover {
    border-color: rgba(201, 168, 102, 0.3);
  }

  /* Slideshow inside category */
  .category-slides {
    position: absolute;
    inset: 0;
  }
  .category-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(135deg, #2a2620, #1a1815);
  }
  .category-slide.active { opacity: 1; }
  .category-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }

  /* Decorative ornament — painted above the photo */
  .category-slide::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 168, 102, 0.18);
    z-index: 1;
  }
  .category-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(201, 168, 102, 0.15) 0%, transparent 60%);
    z-index: 1;
  }

  /* Bottom gradient + label */
  .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 18, 14, 0.85) 100%);
    z-index: 2;
  }
  .category-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
  }
  .category-name {
    font-family: var(--body);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cream-warm);
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .category-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    transition: gap 0.3s ease;
  }
  .category:hover .category-arrow { gap: 14px; }
  .category-arrow::after {
    content: '→';
    font-size: 14px;
  }

  /* Slide indicators (dots) */
  .category-dots {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 5px;
    z-index: 3;
  }
  .category-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(245, 240, 230, 0.35);
    transition: all 0.3s ease;
  }
  .category-dot.active {
    background: var(--gold-light);
    width: 16px;
    border-radius: 3px;
  }

  /* VIP card — accent */
  .category[data-type="vip"] {
    border-color: rgba(201, 168, 102, 0.4);
  }
  .category[data-type="vip"]::before {
    content: 'VIP';
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    border-radius: 2px;
    background: rgba(20, 18, 14, 0.65);
    backdrop-filter: blur(4px);
  }

  /* === USP BAR — 4 преимущества в одну строку === */
  .usp-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 36px 0;
    margin-bottom: 80px;
    border-top: 1px solid rgba(201, 168, 102, 0.18);
    border-bottom: 1px solid rgba(201, 168, 102, 0.18);
  }
  .usp {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    border-right: 1px solid rgba(201, 168, 102, 0.12);
  }
  .usp:last-child { border-right: none; }
  .usp-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .usp-text {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-warm);
    font-weight: 500;
    line-height: 1.35;
  }

  /* === ADDRESS BLOCK — карта + контакты === */
  .address {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    border: 1px solid rgba(201, 168, 102, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-card) 0%, var(--ink-deep) 100%);
  }

  /* LEFT — text */
  .address-info {
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(201, 168, 102, 0.18);
  }
  .address-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .address-h {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.1;
    color: var(--cream-warm);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .address-h em {
    font-style: italic;
    color: var(--gold-light);
  }
  .address-lines {
    margin-bottom: 32px;
  }
  .address-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 102, 0.12);
    font-size: 14px;
    line-height: 1.5;
    color: var(--cream);
    opacity: 0.88;
  }
  .address-line:last-child { border-bottom: none; }
  .address-line strong {
    color: var(--cream-warm);
    font-weight: 500;
    opacity: 1;
  }
  .address-line svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
  }
  .address-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--cream-warm);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
  }
  .address-link:hover {
    background: var(--gold);
    color: var(--ink);
  }
  .address-link::after { content: '→'; font-size: 16px; }

  /* RIGHT — map */
  .address-map {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #2a2620 0%, #14130f 100%);
    overflow: hidden;
  }
  .address-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  /* Лёгкое затемнение карты под тёмную тему — iOS-safe, без CSS-фильтра на iframe */
  .address-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 11, 8, 0.22);
    pointer-events: none;
    z-index: 1;
  }
  /* Кастомная красная метка поверх карты */
  .map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
  }
  .map-pin-label {
    margin-bottom: 3px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #e02424;
    color: #fff;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .map-pin-icon {
    display: block;
    color: #e02424;
  }
  .address-map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(20, 18, 14, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 102, 0.3);
    padding: 16px 22px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .address-map-overlay-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .address-map-overlay-text {
    color: var(--cream-warm);
    font-size: 13px;
    line-height: 1.35;
  }
  .address-map-overlay-text strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream-warm);
    margin-bottom: 2px;
  }
  .address-map-overlay-text span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Плейсхолдер для карты — если iframe не загрузится, виден стилизованный фон */
  .map-placeholder {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(20, 18, 14, 0.3) 0%, rgba(20, 18, 14, 0.6) 100%),
      radial-gradient(circle at 50% 50%, rgba(201, 168, 102, 0.08) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--cream);
  }
  .map-placeholder svg { color: var(--gold); opacity: 0.6; }
  .map-placeholder-text {
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--cream-warm);
    text-align: center;
  }
  .map-placeholder-sub {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .service-heading { animation: fadeUp 0.8s ease 0.1s both; }
  .category { animation: fadeUp 0.7s ease both; }
  .category:nth-child(1) { animation-delay: 0.2s; }
  .category:nth-child(2) { animation-delay: 0.25s; }
  .category:nth-child(3) { animation-delay: 0.3s; }
  .category:nth-child(4) { animation-delay: 0.35s; }
  .category:nth-child(5) { animation-delay: 0.4s; }
  .category:nth-child(6) { animation-delay: 0.45s; }
  .category:nth-child(7) { animation-delay: 0.5s; }
  .usp-bar { animation: fadeUp 0.8s ease 0.55s both; }
  .address { animation: fadeUp 0.8s ease 0.65s both; }

  /* === RESPONSIVE === */
  @media (max-width: 1100px) {
    .service-h { font-size: 36px; }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .usp-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
    .usp { padding: 16px 24px; }
    .usp:nth-child(2) { border-right: none; }
    .usp:nth-child(1), .usp:nth-child(2) { border-bottom: 1px solid rgba(201, 168, 102, 0.12); }
    .address { grid-template-columns: 1fr; }
    .address-info { border-right: none; border-bottom: 1px solid rgba(201, 168, 102, 0.18); padding: 40px; }
    .address-map { min-height: 320px; }
  }
  @media (max-width: 700px) {
    .service { padding: 56px 20px 72px; }
    .service-h { font-size: 26px; }
    .service-eyebrow { font-size: 10px; letter-spacing: 0.25em; }
    .service-eyebrow::before, .service-eyebrow::after { width: 24px; }
    .categories { grid-template-columns: 1fr; gap: 20px; }
    .category { border-radius: 24px; }
    .category-name { font-size: 15px; letter-spacing: 0.14em; }
    .usp-bar { grid-template-columns: 1fr; }
    .usp { padding: 16px 8px; border-right: none; border-bottom: 1px solid rgba(201, 168, 102, 0.12); gap: 16px; }
    .usp:last-child { border-bottom: none; }
    .usp-icon { width: 34px; height: 34px; flex-shrink: 0; }
    .usp-text { font-size: 12px; line-height: 1.4; }
    .address-info { padding: 32px 24px; }
    .address-h { font-size: 26px; }
    .address-map { min-height: 280px; }
  }

/* ============================================================ */
  /* STEPS SECTION                                                */
  /* ============================================================ */
  .steps-section {
    position: relative;
    padding: 90px 48px 100px;
    background: var(--ink);
    overflow: hidden;
  }
  .steps-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -10%;
    width: 50%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 102, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .steps-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
  }

  /* === HEADING === */
  .steps-heading {
    text-align: center;
    margin-bottom: 72px;
  }
  .steps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .steps-eyebrow::before,
  .steps-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .steps-h {
    font-family: var(--display);
    font-size: 52px;
    color: var(--cream-warm);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.005em;
  }
  .steps-h em {
    font-style: italic;
    color: var(--gold-light);
  }

  /* === 3 STEPS ROW === */
  .steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 90px;
  }
  .step {
    background: linear-gradient(180deg, var(--ink-card) 0%, var(--ink-deep) 100%);
    border: 1px solid rgba(201, 168, 102, 0.18);
    border-radius: 6px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
  }
  .step:hover {
    border-color: rgba(201, 168, 102, 0.4);
    transform: translateY(-4px);
  }
  .step-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 56px;
    line-height: 1;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .step-title {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--cream-warm);
    margin-bottom: 16px;
  }
  .step-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.82;
    font-weight: 300;
    margin-bottom: 24px;
    flex-grow: 1;
  }

  /* Кнопка внутри первого шага */
  .step-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(180deg, #f0e3c2 0%, #e2cf9f 100%);
    color: var(--ink);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(201, 168, 102, 0.15);
    align-self: flex-start;
  }
  .step-btn:hover {
    background: linear-gradient(180deg, #f6eccb 0%, #e8d5a4 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 168, 102, 0.28);
  }

  /* Arrows between steps */
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.6;
  }
  .step-arrow svg { width: 32px; height: 32px; }

  /* === EXPERTS GROUP — общее ч/б фото кучкой === */
  .experts-block {
    background: linear-gradient(180deg, var(--ink-card) 0%, var(--ink-deep) 100%);
    border: 1px solid rgba(201, 168, 102, 0.18);
    border-radius: 6px;
    padding: 64px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
  }
  .experts-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  }

  /* Фото экспертов — ряд круглых аватаров */
  .experts-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .expert-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--ink-card);
    box-shadow: 0 0 0 1px rgba(201, 168, 102, 0.35);
    margin-left: -14px;
    filter: grayscale(1);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .expert-avatar:first-child { margin-left: 0; }
  .expert-avatar:hover {
    transform: translateY(-4px);
    filter: grayscale(0);
    z-index: 1;
  }

  /* Right column — text */
  .experts-text {
    color: var(--cream);
  }
  .experts-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .experts-h {
    font-family: var(--display);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--cream-warm);
    margin-bottom: 20px;
  }
  .experts-h em {
    font-style: italic;
    color: var(--gold-light);
  }
  .experts-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.88;
    font-weight: 300;
    margin-bottom: 20px;
  }
  .experts-desc strong {
    color: var(--cream-warm);
    font-weight: 500;
    opacity: 1;
  }
  .experts-footnote {
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 102, 0.18);
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.78;
    font-weight: 300;
  }
  .experts-footnote strong {
    color: var(--gold-light);
    font-weight: 500;
    opacity: 1;
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .steps-heading { animation: fadeUp 0.8s ease 0.1s both; }
  .step { animation: fadeUp 0.7s ease both; }
  .step:nth-child(1) { animation-delay: 0.2s; }
  .step:nth-child(3) { animation-delay: 0.35s; }
  .step:nth-child(5) { animation-delay: 0.5s; }
  .experts-block { animation: fadeUp 0.8s ease 0.6s both; }

  /* === RESPONSIVE === */
  @media (max-width: 1100px) {
    .steps-h { font-size: 40px; }
    .steps {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .step-arrow {
      transform: rotate(90deg);
      padding: 4px 0;
    }
    .experts-block { padding: 40px; gap: 32px; }
    .experts-h { font-size: 26px; }
  }
  @media (max-width: 760px) {
    .steps-section { padding: 56px 20px 72px; }
    .steps-h { font-size: 28px; }
    .steps-eyebrow { font-size: 10px; letter-spacing: 0.25em; }
    .steps-eyebrow::before, .steps-eyebrow::after { width: 24px; }
    .step { padding: 32px 24px; }
    .step-num { font-size: 44px; margin-bottom: 20px; }
    .step-title { font-size: 20px; }
    .experts-block {
      grid-template-columns: 1fr;
      padding: 32px 24px;
      gap: 32px;
      text-align: center;
    }
    .experts-group { justify-content: center; max-width: 100%; }
    .experts-h { font-size: 22px; }
    .experts-eyebrow { display: block; }
    .experts-footnote { text-align: left; }
    .expert-avatar {
      width: clamp(44px, 15vw, 76px);
      height: clamp(44px, 15vw, 76px);
      margin-left: -10px;
    }
  }

  /* ============================================================ */
  /* === ABOUT BLOCK STYLES === */
  /* ============================================================ */

/* ============================================================ */
  /* ABOUT SECTION                                                */
  /* ============================================================ */
  .about {
    position: relative;
    padding: 60px 48px 110px;
    background: var(--ink);
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 102, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
  }

  /* === HEADING === */
  .about-heading {
    text-align: center;
    margin-bottom: 80px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
  }
  .about-eyebrow::before,
  .about-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .about-h {
    font-family: var(--display);
    font-size: 52px;
    color: var(--cream-warm);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
  }
  .about-h em {
    font-style: italic;
    color: var(--gold-light);
  }
  .about-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.85;
    font-weight: 300;
  }

  /* === CASE === */
  .case {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(201, 168, 102, 0.18);
  }
  .case:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  /* Чередование фото-текст / текст-фото */
  .case.reversed {
    grid-template-columns: 1fr 1.2fr;
  }
  .case.reversed .case-gallery { order: 2; }
  .case.reversed .case-info { order: 1; }

  /* GALLERY (слайдер фото) */
  .case-gallery {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 102, 0.25);
    background: linear-gradient(135deg, #2a2620, #1a1815);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  }
  /* Рамочный акцент — уголки по углам, без сплошной линии поперёк кадра */
  .case-gallery::before {
    content: '';
    position: absolute;
    inset: 12px;
    z-index: 3;
    pointer-events: none;
    border-radius: 3px;
    --c: rgba(201, 168, 102, 0.45);
    --len: 26px;
    --th: 1px;
    background:
      linear-gradient(var(--c), var(--c)) top left,
      linear-gradient(var(--c), var(--c)) top left,
      linear-gradient(var(--c), var(--c)) top right,
      linear-gradient(var(--c), var(--c)) top right,
      linear-gradient(var(--c), var(--c)) bottom left,
      linear-gradient(var(--c), var(--c)) bottom left,
      linear-gradient(var(--c), var(--c)) bottom right,
      linear-gradient(var(--c), var(--c)) bottom right;
    background-repeat: no-repeat;
    background-size:
      var(--len) var(--th), var(--th) var(--len),
      var(--len) var(--th), var(--th) var(--len),
      var(--len) var(--th), var(--th) var(--len),
      var(--len) var(--th), var(--th) var(--len);
  }
  .case-slides {
    position: absolute;
    inset: 0;
  }
  .case-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .case-slide.active { opacity: 1; }
  .case-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Dots */
  .case-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 6px;
    z-index: 4;
    background: rgba(20, 18, 14, 0.6);
    backdrop-filter: blur(4px);
    padding: 8px 14px;
    border-radius: 20px;
  }
  .case-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 240, 230, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .case-dot.active {
    background: var(--gold-light);
    width: 22px;
    border-radius: 3px;
  }

  /* Arrows */
  .case-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 18, 14, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 168, 102, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    color: var(--gold-light);
    transition: all 0.3s ease;
  }
  .case-arrow:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }
  .case-arrow.prev { left: 20px; }
  .case-arrow.next { right: 20px; }
  .case-arrow svg { width: 18px; height: 18px; }

  /* Tag */
  .case-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    max-width: calc(100% - 48px);
    z-index: 4;
    background: rgba(20, 18, 14, 0.78);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 168, 102, 0.4);
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  /* INFO */
  .case-info {
    position: relative;
  }
  .case-num {
    font-family: var(--display);
    font-style: italic;
    font-size: 80px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .case-partner {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .case-h {
    font-family: var(--display);
    font-size: 38px;
    line-height: 1.15;
    color: var(--cream-warm);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .case-h em {
    font-style: italic;
    color: var(--gold-light);
  }
  .case-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 24px;
  }
  .case-text strong {
    color: var(--cream-warm);
    font-weight: 500;
    opacity: 1;
  }

  /* Items used (для проектов где предметы перечисляются) */
  .case-items {
    border-top: 1px solid rgba(201, 168, 102, 0.18);
    padding-top: 20px;
    margin-top: 20px;
  }
  .case-items-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .case-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.82;
    font-weight: 300;
  }
  .case-item-marker {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 16px;
    line-height: 1.3;
  }
  .case-item strong {
    color: var(--cream-warm);
    font-weight: 500;
    opacity: 1;
  }
  .case-item em {
    font-style: normal;
    color: var(--gold-light);
  }

  /* CTA */
  .about-cta {
    text-align: center;
    padding-top: 80px;
    border-top: 1px solid rgba(201, 168, 102, 0.18);
    margin-top: 100px;
  }
  .about-cta-h {
    font-family: var(--display);
    font-size: 36px;
    line-height: 1.2;
    color: var(--cream-warm);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .about-cta-h em {
    font-style: italic;
    color: var(--gold-light);
  }
  .about-cta-sub {
    font-size: 15px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.78;
    margin-bottom: 32px;
    font-weight: 300;
  }
  .about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 48px;
    background: linear-gradient(180deg, #f0e3c2 0%, #e2cf9f 100%);
    color: var(--ink);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(201, 168, 102, 0.2);
  }
  .about-cta-btn:hover {
    background: linear-gradient(180deg, #f6eccb 0%, #e8d5a4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 102, 0.35);
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .about-heading { animation: fadeUp 0.8s ease 0.1s both; }
  .case { animation: fadeUp 0.8s ease 0.3s both; }
  .about-cta { animation: fadeUp 0.8s ease 0.4s both; }

  /* === RESPONSIVE === */
  @media (max-width: 1000px) {
    .about-h { font-size: 36px; }
    .case, .case.reversed {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .case.reversed .case-gallery { order: 1; }
    .case.reversed .case-info { order: 2; }
    .case-h { font-size: 28px; }
    .case-num { font-size: 56px; }
  }
  @media (max-width: 700px) {
    .about { padding: 56px 20px 72px; }
    .about-h { font-size: 26px; }
    .about-eyebrow { font-size: 10px; letter-spacing: 0.25em; }
    .about-eyebrow::before, .about-eyebrow::after { width: 24px; }
    .case { margin-bottom: 56px; padding-bottom: 56px; }
    .case-h { font-size: 22px; }
    .case-num { font-size: 48px; }
    .case-text { font-size: 14px; }
    .case-item { font-size: 13px; }
    .case-arrow { width: 36px; height: 36px; }
    .about-cta { padding-top: 56px; margin-top: 56px; }
    .about-cta-h { font-size: 22px; }
    .about-cta-btn { padding: 18px 32px; font-size: 13px; }
  }

  /* === LOCATION SECTION (адрес внизу) === */
  .location-section {
    background: var(--ink);
    padding: 60px 48px 100px;
  }
  .location-container {
    max-width: 1320px;
    margin: 0 auto;
  }
  .location-section .address {
    margin-top: 0;
  }
  @media (max-width: 700px) {
    .location-section { padding: 40px 20px 60px; }
  }

  /* === Mobile layout adjustments === */
  @media (max-width: 700px) {
    /* Тег на фото кейсов — компактный, в нижнем углу, не на лицах */
    .case-tag {
      bottom: 12px;
      left: 12px;
      right: auto;
      max-width: calc(100% - 80px);
      font-size: 9px;
      letter-spacing: 0.15em;
      padding: 7px 12px;
      background: rgba(20, 18, 14, 0.85);
    }
    .case-dots { bottom: 12px; right: 12px; }
    /* Чуть уменьшу стрелки чтобы не перекрывали лица */
    .case-arrow { width: 34px; height: 34px; }
    .case-arrow.prev { left: 12px; }
    .case-arrow.next { right: 12px; }
  }

  /* === Touch interaction layer for carousels === */
  .category, .case-gallery {
    touch-action: pan-x pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  .category-dot, .case-dot, .case-arrow {
    cursor: pointer;
  }
  .category-slides, .case-slides {
    pointer-events: none;
  }
  .category-dots, .case-dots, .case-arrow, .category-label, .case-tag {
    pointer-events: auto;
  }

  /* === Mobile carousels: native horizontal scroll-snap, driven by JS === */
@media (max-width: 900px) {
  .category,
  .case-gallery {
    touch-action: pan-x pan-y;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .category-slides,
  .case-slides {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    pointer-events: auto !important;
    touch-action: pan-x pan-y !important;
    z-index: 1;
    scrollbar-width: none;
  }
  .category-slides::-webkit-scrollbar,
  .case-slides::-webkit-scrollbar {
    display: none;
  }

  .category-slide,
  .case-slide {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }

  .category:not(.is-manual) .category-slide,
  .category:not(.is-manual) .category-dot,
  .category-slide,
  .category-dot {
    animation: none !important;
  }

  .category-overlay,
  .category-label,
  .case-tag {
    pointer-events: none !important;
  }

  .category-dots,
  .case-dots,
  .case-arrow {
    pointer-events: auto !important;
    z-index: 20 !important;
  }

  .category-dot,
  .case-dot,
  .case-arrow {
    cursor: pointer;
  }

  .case-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
  }
}


@media (max-width: 700px) {
  .brand-logo { height: 32px; }
  .topbar-contact { align-items: flex-start; font-size: 12px; }
  .footer-logo { height: 46px; margin-bottom: 20px; }
}

