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

  :root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --accent: #c9a86c;
    --accent-hover: #dbbe85;
    --text-primary: #f5f5f5;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border: #2a2a2a;
    --telegram: #2AABEE;
    --telegram-hover: #229ED9;
    --hero-overlay-alpha: 0.8;
    --services-bg: #111111;
    --hero-tagline-scale: 1;
    --hero-title-scale: 1;
    --hero-desc-scale: 1;
    --hero-cta-scale: 1;
    --services-overlay-alpha: 0.7;
    --reviews-overlay-alpha: 0.7;
    --contact-overlay-alpha: 0.7;
    --hero-tagline-shadow-blur: 0px;
    --hero-tagline-shadow-color: #000;
    --hero-title-shadow-blur: 0px;
    --hero-title-shadow-color: #000;
    --hero-desc-shadow-blur: 0px;
    --hero-desc-shadow-color: #000;
    --hero-tagline-color: var(--accent);
    --hero-desc-color: var(--text-secondary);
  }

  /* Keyboard focus ring (only shows for keyboard users, not mouse) */
  :focus { outline: none; }
  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
  }
  .form-group input:focus-visible,
  .form-group textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 0;
    border-color: var(--accent);
  }

  /* On fine pointers (desktop) the JS handler in main.js animates anchor jumps,
     so native CSS smooth-scroll would fight it. Only enable CSS smooth-scroll
     on touch (where the JS handler is skipped) and when motion is not reduced. */
  @media (pointer: coarse) and (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* === AGE GATE === */
  html, body { background: #000; }
  .age-gate {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0;
    background: #000;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: max(16px, env(safe-area-inset-top))
            max(16px, env(safe-area-inset-right))
            max(16px, env(safe-area-inset-bottom))
            max(16px, env(safe-area-inset-left));
    transition: opacity 0.5s ease;
  }
  .age-gate.hidden { opacity: 0; pointer-events: none; }
  .age-gate-box {
    background: var(--accent-gradient, linear-gradient(135deg, var(--accent), #a8854e));
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    max-width: 460px;
    max-height: 100%;
    overflow-y: auto;
  }
  .age-gate-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
  }
  .age-gate-btns { display: flex; gap: 16px; justify-content: center; }
  .age-gate-btns button {
    padding: 14px 50px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    font-family: 'Inter', sans-serif;
  }
  .btn-yes { background: #fff; color: var(--accent); border-color: #fff; }
  .btn-yes:hover { background: var(--text-primary); transform: translateY(-2px); }
  .btn-yes:active { transform: translateY(0) scale(0.98); }
  .btn-no { background: transparent; color: #fff; }
  .btn-no:hover { background: rgba(255,255,255,0.15); }
  .btn-no:active { transform: scale(0.98); }

  /* === NAVIGATION === */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 60px;
    padding-top: max(20px, env(safe-area-inset-top));
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10,10,10,0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-decoration: none;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--accent); }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none; border: none;
  }
  .hamburger span {
    width: 28px; height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* === HERO === */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0, calc(var(--hero-overlay-alpha) * 0.375)) 0%, rgba(0,0,0, var(--hero-overlay-alpha)) 100%);
    z-index: 1;
  }
  .hero-bg {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(201,168,108,0.15) 0%, transparent 60%);
  }
  .hero-bg img,
  .hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 800px;
  }
  .hero-tagline {
    font-size: calc(0.85rem * var(--hero-tagline-scale));
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--hero-tagline-color, var(--accent));
    margin-bottom: 20px;
    font-weight: 500;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: calc(clamp(2.25rem, 5.4vw, 4.6rem) * var(--hero-title-scale));
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
  }
  .hero p[data-cms="hero_desc"] {
    font-size: calc(1.1rem * var(--hero-desc-scale));
    color: var(--hero-desc-color, var(--text-secondary));
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: calc(0.85rem * var(--hero-cta-scale));
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .hero-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
  .hero-tagline { text-shadow: 0 0 var(--hero-tagline-shadow-blur) var(--hero-tagline-shadow-color); }
  .hero h1, .hero h1 span { text-shadow: 0 0 var(--hero-title-shadow-blur) var(--hero-title-shadow-color); }
  .hero p[data-cms="hero_desc"] { text-shadow: 0 0 var(--hero-desc-shadow-blur) var(--hero-desc-shadow-color); }
  .hero-cta { text-shadow: none; }

  /* === HERO TEXT VARIANTS (minimalist, no shadow) ===
     Applied to .hero-tagline and .hero p via class variant-* */
  .hero-tagline.variant-pill-dark,
  .hero p[data-cms="hero_desc"].variant-pill-dark {
    display: inline-block;
    background: rgba(10, 10, 10, 0.82);
    color: #fff;
    border-radius: 4px;
  }
  .hero-tagline.variant-pill-dark { padding: 6px 14px; }
  .hero p[data-cms="hero_desc"].variant-pill-dark { padding: 14px 20px; max-width: 560px; }

  .hero-tagline.variant-pill-light,
  .hero p[data-cms="hero_desc"].variant-pill-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    color: #0a0a0a;
    border-radius: 4px;
  }
  .hero-tagline.variant-pill-light { padding: 6px 14px; }
  .hero p[data-cms="hero_desc"].variant-pill-light { padding: 14px 20px; max-width: 560px; }

  .hero-tagline.variant-blur,
  .hero p[data-cms="hero_desc"].variant-blur {
    display: inline-block;
    background: rgba(10, 10, 10, 0.38);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 6px;
  }
  .hero-tagline.variant-blur { padding: 6px 14px; border-radius: 999px; }
  .hero p[data-cms="hero_desc"].variant-blur { padding: 14px 20px; max-width: 560px; }

  .hero-tagline.variant-bar { padding-left: 14px; border-left: 2px solid var(--accent); }
  .hero p[data-cms="hero_desc"].variant-bar { padding-left: 18px; border-left: 2px solid var(--accent); }

  .hero-tagline.variant-contrast { color: #0a0a0a; font-weight: 700; }
  .hero p[data-cms="hero_desc"].variant-contrast { color: #0a0a0a; font-weight: 500; }

  /* === AGE-GATE SPLASH (logo shown briefly after pressing ДА) === */
  .age-splash {
    position: fixed; inset: 0;
    background: #000;
    z-index: 10001;
    display: flex;
    align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
    pointer-events: none;
  }
  .age-splash.visible {
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  .age-splash-inner {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text-primary);
    text-align: center;
    animation: ageSplashIn 0.6s ease both;
    max-width: 80vw;
  }
  .age-splash-inner span { color: var(--accent); }
  .age-splash-inner img { max-width: min(60vw, 480px); max-height: 55vh; object-fit: contain; }
  @keyframes ageSplashIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
  .hero-big-text {
    position: absolute;
    bottom: -20px; left: 0; right: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 700;
    text-align: center;
    color: rgba(255,255,255,0.08);
    letter-spacing: 20px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }

  /* === SECTION COMMON === */
  section { padding: clamp(48px, 7vw, 100px) 60px; }
  .section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .section-desc {
    color: var(--text-secondary);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .section-title-standalone {
    margin-bottom: 8px;
    padding-top: 8px;
  }
  .section-title-standalone::before,
  .section-title-standalone::after { content: none !important; display: none !important; }

  /* === ABOUT === */
  .about { background: var(--bg-secondary); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: clamp(28px, 4vw, 60px);
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .about-stats.about-stats-single { grid-template-columns: 1fr; }
  .stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
  }
  .stat-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
  }
  .about-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .about-image::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .about-image svg { width: 80px; height: 80px; opacity: 0.2; }
  .about-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

  /* === PORTFOLIO GRID === */
  .portfolio { background: var(--bg-primary); }
  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .portfolio-card {
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  .portfolio-card:hover { transform: translateY(-8px); }
  .portfolio-card .card-bg {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, #1e1e2e, #2a2035);
    transition: transform 0.6s ease;
  }
  .portfolio-card:nth-child(2) .card-bg { background: linear-gradient(135deg, #1e2e2a, #20352a); }
  .portfolio-card:nth-child(3) .card-bg { background: linear-gradient(135deg, #2e1e1e, #352020); }
  .portfolio-card:nth-child(4) .card-bg { background: linear-gradient(135deg, #2e2a1e, #353020); }
  .portfolio-card:hover .card-bg { transform: scale(1.05); }
  .card-overlay {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    z-index: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .card-overlay p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .card-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
  }

  /* === SECTION BACKGROUND MEDIA === */
  .section-bg-media {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0;
  }
  .section-bg-media img,
  .section-bg-media video {
    width: 100%; height: 100%; object-fit: cover;
  }
  .section-bg-media::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0, var(--section-overlay-alpha, 0.7));
  }

  /* === SERVICES === */
  .services { background: var(--services-bg, var(--bg-secondary)); }
  .service-icon-img { width: 28px; height: 28px; object-fit: contain; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(28px, 4vw, 60px);
  }
  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
  }
  .service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
  }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(201,168,108,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

  /* === REVIEWS === */
  .reviews { background: var(--bg-primary); }

  /* Reviews toggle buttons */
  .reviews-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 40px auto 50px;
    background: var(--bg-card);
    border-radius: 50px;
    padding: 4px;
    max-width: 380px;
    border: 1px solid var(--border);
  }
  .reviews-toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
  }
  .reviews-toggle-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
  }
  .reviews-toggle-btn:not(.active):hover {
    color: var(--text-primary);
  }

  /* Telegram-style circle video grid */
  .tg-circles-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .tg-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .tg-circle-item:hover {
    transform: scale(1.05);
  }
  .tg-circle-wrap {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    padding: 4px;
    background: var(--accent-gradient, linear-gradient(135deg, var(--accent), #a8854e, var(--accent)));
    position: relative;
    overflow: hidden;
  }
  .tg-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-card);
    position: relative;
  }
  .tg-circle-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
  }
  .tg-circle-inner iframe {
    width: 200%;
    height: 200%;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .tg-circle-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s;
    pointer-events: none;
  }
  .tg-circle-item:hover .tg-circle-play {
    background: rgba(201,168,108,0.8);
  }
  .tg-circle-play svg {
    width: 24px; height: 24px;
    fill: #fff;
    margin-left: 2px;
  }
  .tg-circle-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    max-width: 240px;
  }
  .tg-circle-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 240px;
    margin-top: -8px;
  }

  /* Video modal overlay */
  .video-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .video-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .video-modal-content {
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .video-modal-content video,
  .video-modal-content iframe {
    width: 100%; height: 100%;
    border: none;
  }
  .video-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
  }
  .video-modal-close:hover {
    background: rgba(255,255,255,0.2);
  }

  /* Text review modal — full-text popup */
  .review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .review-modal.active { opacity: 1; pointer-events: all; }
  .review-modal-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 36px 32px;
    position: relative;
    transform: translateY(10px);
    transition: transform 0.3s ease;
  }
  .review-modal.active .review-modal-inner { transform: translateY(0); }
  .review-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
  }
  .review-modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
  .review-modal-photo {
    margin: -40px -36px 24px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a0a;
  }
  .review-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .review-modal-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 14px 0 28px;
    white-space: pre-wrap;
  }
  .review-modal-inner .review-stars { margin-bottom: 4px; }
  .review-modal-inner .review-author { margin-top: 4px; }
  @media (max-width: 560px) {
    .review-modal-inner { padding: 28px 22px 22px; border-radius: 14px; }
    .review-modal-photo { margin: -28px -22px 20px; }
    .review-modal-text { font-size: 0.95rem; }
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(28px, 4vw, 60px);
  }
  .review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    cursor: pointer;
  }
  .review-card:hover { border-color: rgba(201,168,108,0.3); transform: translateY(-2px); }
  .review-card--with-photo { padding-top: 0; }
  .review-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
  }
  .review-photo {
    margin: 0 -32px 28px;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0a;
  }
  .review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .review-card--with-photo:hover .review-photo img { transform: scale(1.04); }
  .review-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10,10,10,0.65), transparent);
    pointer-events: none;
  }
  .review-card--with-photo .review-quote { top: auto; bottom: 20px; right: 24px; opacity: 0.6; }
  .review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 18px; }
  .review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    flex: 1 1 auto;
    /* Fallback for browsers that don't support line-clamp (e.g. older Firefox) */
    max-height: calc(1.8em * 5);
  }
  @supports (-webkit-line-clamp: 5) {
    .review-text { max-height: none; }
  }
  /* Soft fade on the last line when text is clamped — prettier than the hard
     ellipsis the browser would draw. Only applied when JS detects overflow. */
  .review-card.is-clamped .review-text {
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }
  /* "Читать полностью" hint — clearly signals the card is interactive */
  .review-expand-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.2s ease, gap 0.2s ease;
    pointer-events: none; /* click bubbles to .review-card */
  }
  .review-expand-hint svg {
    /* Arrow icon hidden per design request — the "Читать полностью" text
       alone signals interactivity. */
    display: none;
  }
  .review-card:hover .review-expand-hint,
  .review-card:focus-within .review-expand-hint { opacity: 1; gap: 10px; }
  /* Hide the hint on short reviews where nothing is clamped */
  .review-card:not(.is-clamped) .review-expand-hint { display: none; }
  /* On touch devices (no hover) show the hint at full opacity — users can't
     discover the interaction through hover, so make it obvious. */
  @media (hover: none) {
    .review-expand-hint { opacity: 1; }
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
  }
  .review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--accent-gradient, linear-gradient(135deg, var(--accent), #a8854e));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bg-primary);
  }
  .review-author-info h4 { font-size: 0.95rem; font-weight: 600; }
  .review-author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
  }
  .review-quote {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(201,168,108,0.1);
    line-height: 1;
  }

  /* === CONTACT FORM === */
  .contact { background: var(--bg-secondary); }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--text-muted); }
  .file-upload-area {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
  }
  .file-upload-area:hover { border-color: var(--accent); }
  .file-upload-area input[type="file"] {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; cursor: pointer;
  }
  .file-upload-area svg { width: 32px; height: 32px; stroke: var(--text-muted); fill: none; margin-bottom: 8px; }
  .file-upload-area p { color: var(--text-muted); font-size: 0.85rem; }
  .file-upload-area span { color: var(--accent); font-weight: 500; }
  .file-preview-row {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
  }
  .file-preview-thumb {
    width: 60px; height: 60px; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--border); position: relative;
  }
  .file-preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .file-preview-thumb button {
    position: absolute; top: 2px; right: 2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(0,0,0,0.7); color: #fff; border: none;
    font-size: 0.7rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
  }
  .submit-btn {
    padding: 18px 40px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
  }
  .submit-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
  .submit-btn:active { transform: translateY(0) scale(0.98); }
  .submit-btn[disabled] { opacity: 0.7; cursor: wait; transform: none; }
  /* Spinner shown inside submit button while sending */
  .submit-btn .btn-spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: rgba(0,0,0,0.8);
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
    vertical-align: -2px;
    margin-right: 8px;
  }
  @keyframes btnSpin { to { transform: rotate(360deg); } }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .contact-info > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 36px;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-detail:first-of-type { border-top: 1px solid var(--border); }
  .contact-detail-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(201,168,108,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
  .contact-detail p { color: var(--text-secondary); font-size: 0.9rem; }
  .contact-detail strong { color: var(--text-primary); display: block; margin-bottom: 2px; font-size: 0.95rem; }

  /* === TELEGRAM WIDGET === */
  .tg-widget {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
  }
  .tg-bubble {
    background: #fff;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #1a1a1a;
  }
  .tg-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  }
  .tg-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--telegram), #1E96C8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .tg-avatar svg { width: 22px; height: 22px; }
  .tg-info { display: flex; flex-direction: column; }
  .tg-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
  }
  .tg-role {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1px;
  }
  .tg-online {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4CD964;
    position: absolute;
    top: 8px; right: 8px;
    box-shadow: 0 0 0 2px #fff;
  }

  /* === FOOTER === */
  footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 60px 30px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  .footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.7;
  }
  .footer-links { display: flex; gap: 60px; }
  .footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 5px 0;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
  }
  .footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
  }
  .footer-socials a:hover { border-color: var(--accent); background: rgba(201,168,108,0.1); }
  .footer-socials svg { width: 18px; height: 18px; stroke: var(--text-secondary); fill: none; }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
    section, nav, .hero, footer { padding-left: 30px; padding-right: 30px; }
    .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--bg-primary);
      padding: 24px;
      border-bottom: 1px solid var(--border);
      z-index: 100;
    }
    section, .hero, footer { padding-left: 20px; padding-right: 20px; }
    .hero { padding-bottom: 50px; }
    .hero h1 { font-size: calc(clamp(1.75rem, 8.5vw, 3rem) * var(--hero-title-scale)); }
    .portfolio-grid { grid-template-columns: 1fr; }

    /* Horizontal swipe carousels on mobile */
    .services-grid,
    #textReviewsPanel .reviews-grid,
    .tg-circles-grid {
      display: flex;
      grid-template-columns: none;
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 16px;
      padding: 10px 0 24px;
    }
    .services-grid::-webkit-scrollbar,
    #textReviewsPanel .reviews-grid::-webkit-scrollbar,
    .tg-circles-grid::-webkit-scrollbar { display: none; }

    .services-grid .service-card,
    #textReviewsPanel .reviews-grid .review-card {
      flex: 0 0 85%;
      max-width: 85%;
      scroll-snap-align: center;
    }
    .tg-circles-grid .tg-circle-item {
      flex: 0 0 auto;
      scroll-snap-align: center;
    }
    .tg-circle-wrap { width: 195px; height: 195px; }
    .tg-circle-name { font-size: 0.9rem; }
    .reviews-toggle { max-width: 320px; }
    .reviews-toggle-btn { padding: 10px 16px; font-size: 0.7rem; letter-spacing: 1px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links { gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item h3 { font-size: 1.8rem; }
    .contact-wrapper { gap: 30px; }
    /* TG widget - visible and styled on mobile */
    .tg-widget { bottom: 16px; right: 16px; }
    .tg-bubble {
      background: var(--bg-card);
      border: 1px solid var(--accent);
      border-radius: 14px 14px 4px 14px;
      padding: 10px 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    .tg-bubble .tg-info { display: flex; }
    .tg-name { color: var(--text-primary); font-size: 0.8rem; }
    .tg-role { color: var(--text-secondary); font-size: 0.7rem; }
    .tg-online { box-shadow: 0 0 0 2px var(--bg-card); }
    .tg-avatar { width: 36px; height: 36px; }
    .tg-avatar svg { width: 18px; height: 18px; }
  }
  @media (max-width: 480px) {
    section, .hero, footer { padding-left: 16px; padding-right: 16px; }
    nav { padding: 14px 16px; }
    .hero { min-height: 90vh; }
    .hero p[data-cms="hero_desc"] { font-size: calc(0.95rem * var(--hero-desc-scale)); }
    .hero-cta { padding: 14px 28px; font-size: 0.8rem; }
    .hero-big-text { font-size: 3rem; letter-spacing: 8px; }
    .section-title { font-size: 1.6rem; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .age-gate-box { padding: 30px 24px; }
    .age-gate-btns button { padding: 12px 30px; font-size: 0.9rem; }
    .review-card { padding: 24px 20px; }
    .review-card--with-photo { padding-top: 0; }
    .review-photo { margin: 0 -20px 20px; aspect-ratio: 5 / 4; }
    .tg-circles-grid { gap: 14px; }
    .tg-circle-wrap { width: 165px; height: 165px; }
    .tg-circle-play { width: 48px; height: 48px; }
    .tg-circle-play svg { width: 18px; height: 18px; }
    .tg-circle-name { font-size: 0.85rem; max-width: 165px; }
    .tg-circle-role { font-size: 0.65rem; max-width: 110px; }
    .service-card { padding: 28px 20px; }
    .submit-btn { padding: 14px 24px; }
    /* Bump modal-close buttons to a 48px tap target on small screens */
    .video-modal-close,
    .review-modal-close { width: 48px; height: 48px; top: 12px; right: 12px; }
    /* TG widget compact on very small screens */
    .tg-bubble .tg-info { display: none; }
    .tg-bubble {
      padding: 12px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 1px solid var(--accent);
    }
  }

  /* === COOKIE BANNER === */
  .cookie-banner {
    position: fixed;
    left: 24px;
    right: auto;
    bottom: 24px;
    max-width: 460px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: rgba(15, 15, 15, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.4s ease;
    pointer-events: none;
  }
  .cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cookie-banner-text {
    flex: 1;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .cookie-banner-btn {
    flex: 0 0 auto;
    padding: 10px 28px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .cookie-banner-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
  .cookie-banner-btn:active { transform: translateY(0) scale(0.98); }
  @media (max-width: 640px) {
    .cookie-banner {
      left: 12px;
      right: 12px;
      bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      max-width: none;
      padding: 10px 12px;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      border-radius: 12px;
    }
    .cookie-banner-text {
      font-size: 0.72rem;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .cookie-banner-btn {
      flex: 0 0 auto;
      width: auto;
      padding: 8px 16px;
      font-size: 0.7rem;
      letter-spacing: 0.8px;
      white-space: nowrap;
    }
  }
  @media (max-width: 480px) {
    /* Leave room for the circular Telegram widget in the bottom-right corner */
    .cookie-banner {
      right: auto;
      max-width: calc(100vw - 90px);
    }
  }

  /* === FORM UPLOAD PROGRESS === */
  .form-upload-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
  }
  .form-progress-bar {
    flex: 1;
    height: 6px;
    border-radius: 4px;
    background: var(--accent);
    width: 0%;
    transition: width 0.2s ease;
  }
  .form-progress-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
  }

  /* === ANIMATIONS === */
  .fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
