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

  :root {
    /* ── core surfaces ── */
    --bg:     #0e0f12;
    --bg2:    #15161a;
    --bg3:    #0a0b0d;

    /* ── text ── */
    --cream:      #ece5d8;
    --cream-dim:  rgba(236,229,216,.62);

    /* ── accent ── */
    --gold:       #c9a464;
    --gold-soft:  rgba(201,164,100,.35);

    /* ── glass system ── */
    --glass:        rgba(20,25,35,.4);
    --glass-hover:  rgba(30,35,50,.5);
    --glass-border: rgba(255,255,255,.15);
    --glass-fill:   rgba(255,255,255,.04);

    /* ── legacy aliases (kept so nothing silently breaks) ── */
    --ink:   #0e0f12;
    --stone: rgba(236,229,216,.62);
    --mist:  rgba(236,229,216,.42);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--cream);
    -webkit-font-smoothing: antialiased;
  }

  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ── site-wide atmosphere (grain + vignette) ── */
  .site-grain {
    position: fixed; inset: -50%; z-index: 2; pointer-events: none; opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 7s steps(8) infinite;
  }
  .site-vignette {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(140% 100% at 50% 0%, transparent 60%, rgba(6,6,8,.5) 100%);
  }
  @keyframes grain {
    0%,100%{transform:translate(0,0)} 25%{transform:translate(-4%,3%)}
    50%{transform:translate(3%,-4%)} 75%{transform:translate(-2%,-2%)}
  }

  /* ── НАВИГАЦИЯ ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
  }
  /* Блюр шапки вынесен в псевдоэлемент: backdrop-filter на самом nav создаёт
     containing block для потомков с position:fixed (спека CSS), из-за чего
     мобильное меню (#navMenu, position:fixed) схлопывалось в границы шапки
     (~76px) вместо всего экрана. Через ::before эффект тот же, а nav остаётся
     "прозрачным" для позиционирования потомков — меню снова растягивается на
     весь viewport. */
  nav::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(14,15,18,.92), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--cream);
    text-decoration: none;
  }
  .logo span { color: var(--gold); }
  .nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    z-index: 210;
    flex-shrink: 0;
    transition: background .25s ease, border-color .25s ease;
  }
  .nav-burger:hover { background: var(--glass-hover); }
  .nav-burger .bar {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease, top .3s ease;
  }
  .nav-burger .bar:nth-child(1) { top: 15px; }
  .nav-burger .bar:nth-child(2) { top: 21px; }
  .nav-burger .bar:nth-child(3) { top: 27px; }
  .nav-burger[aria-expanded="true"] .bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .nav-burger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] .bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  nav ul a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--stone);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s;
  }
  nav ul a:hover { color: var(--cream); }
  .nav-cta {
    display: inline-flex; align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f0e2c4 !important;
    background: linear-gradient(120deg, rgba(201,164,100,.22), rgba(201,164,100,.1));
    border: 1px solid var(--gold-soft);
    padding: 10px 22px;
    border-radius: 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  }
  .nav-cta:hover {
    background: linear-gradient(120deg, rgba(201,164,100,.32), rgba(201,164,100,.16));
    border-color: rgba(201,164,100,.6);
    transform: translateY(-1px);
  }
  @media(max-width:640px){.bar-right span.city{display:none}}

  /* ══════════════ ГЕРОЙ — кинематографичная сцена ══════════════ */
  #hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding: 140px 24px 96px;
    text-align: center;
  }
  #scene { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
  .hero-beam {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(120% 90% at 50% -20%, rgba(201,164,100,.14) 0%, transparent 55%),
      radial-gradient(80% 60% at 50% 115%, rgba(201,164,100,.07) 0%, transparent 60%);
  }
  .hero-vignette {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(130% 100% at 50% 50%, transparent 55%, rgba(8,8,10,.75) 100%);
  }
  .hero-grain {
    position: absolute; inset: -50%; z-index: 3; pointer-events: none; opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 7s steps(8) infinite;
  }

  .hero-text { position: relative; z-index: 10; max-width: 720px; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold);
    padding: 9px 18px; border-radius: 100px;
    background: var(--glass-fill);
    border: 1px solid var(--gold-soft);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    opacity: 0; animation: heroFadeUp 1.2s .3s cubic-bezier(.2,.7,.2,1) forwards;
  }
  h1 {
    margin-top: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(38px, 8vw, 92px);
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--cream);
    max-width: 15ch;
    margin-left: auto; margin-right: auto;
    opacity: 0; animation: heroFadeUp 1.3s .5s cubic-bezier(.2,.7,.2,1) forwards;
  }
  h1 em {
    font-style: italic;
    background: linear-gradient(115deg,#e8d5ac 15%,var(--gold) 50%,#8f713f 90%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub {
    margin: 22px auto 0;
    max-width: 50ch;
    font-size: clamp(14.5px, 1.6vw, 17px);
    font-weight: 300; line-height: 1.7;
    color: var(--cream-dim);
    opacity: 0; animation: heroFadeUp 1.3s .7s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-actions {
    display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: heroFadeUp 1.3s .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(120deg, rgba(201,164,100,.22), rgba(201,164,100,.1));
    color: #f0e2c4;
    padding: 16px 34px;
    font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    border: 1px solid var(--gold-soft);
    border-radius: 100px;
    cursor: pointer; text-decoration: none;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: background .35s ease, border-color .35s ease, transform .2s ease;
  }
  .btn-primary:hover {
    background: linear-gradient(120deg, rgba(201,164,100,.32), rgba(201,164,100,.16));
    border-color: rgba(201,164,100,.6);
    transform: translateY(-2px);
  }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--cream);
    padding: 16px 30px;
    font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
    text-decoration: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: background .35s ease, border-color .35s ease, transform .2s ease;
  }
  .btn-ghost:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
  .btn-ghost::after { content: '→'; }

  .hero-scroll-hint {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim);
    opacity: 0; animation: heroFadeUp 1.3s 1.1s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-scroll-hint .line {
    width: 1px; height: 40px; overflow: hidden; position: relative;
    background: rgba(236,229,216,.12);
  }
  .hero-scroll-hint .line::after {
    content: ''; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
    background: var(--gold); animation: drip 2.4s ease-in-out infinite;
  }
  @keyframes drip { 0%{top:-50%} 60%,100%{top:110%} }
  @keyframes heroFadeUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:none} }
  @media(max-width:640px){ .hero-scroll-hint{display:none} }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--bg2);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 28px 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative; z-index: 4;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--mist);
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ── ОБО МНЕ ── */
  #about {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    color: var(--cream);
  }
  .about-quote .dash {
    display: block;
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .about-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone);
    margin-bottom: 20px;
  }
  .about-text p strong { color: var(--cream); font-weight: 500; }
  .trust-points {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .trust-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .trust-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-soft);
    background: var(--glass-fill);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 16px;
  }
  .trust-point p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--stone);
    margin: 0;
    padding-top: 8px;
  }
  .trust-point p strong { color: var(--cream); font-weight: 500; }

  /* ── УСЛУГИ ── */
  #services {
    background: var(--bg2);
    padding: 120px 48px;
    position: relative; z-index: 4;
  }
  .section-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--glass-fill);
    border: 1px solid var(--gold-soft);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    margin-bottom: 20px;
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-card {
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 44px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    transition: background 0.3s, border-color 0.3s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .service-card:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.28); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(201,164,100,.14);
    line-height: 1;
    margin-bottom: 20px;
    user-select: none;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone);
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--glass-fill);
    border: 1px solid var(--gold-soft);
    padding: 5px 12px;
    border-radius: 100px;
  }

  /* ── ПРОЦЕСС ── */
  #process {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 4;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 72px;
    background: rgba(255,255,255,0.06);
  }
  .process-step {
    background: var(--bg);
    padding: 40px 28px;
    position: relative;
  }
  .step-arrow {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 20px;
    z-index: 1;
    opacity: 0.5;
  }
  .process-step:last-child .step-arrow { display: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .step-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--stone);
  }

  /* ── ГАЛЕРЕЯ ── */
  #gallery {
    background: var(--bg2);
    padding: 120px 48px;
    position: relative; z-index: 4;
  }
  .gallery-intro {
    text-align: center;
    margin-bottom: 64px;
  }
  .gallery-note {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: var(--stone);
    margin-top: 16px;
  }
  .works-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
  }
  .filter-chip {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone);
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    padding: 9px 18px;
    border-radius: 100px;
    cursor: pointer;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }
  .filter-chip:hover { color: var(--cream); border-color: rgba(255,255,255,.28); }
  .filter-chip.active {
    color: #f0e2c4;
    background: linear-gradient(120deg, rgba(201,164,100,.28), rgba(201,164,100,.14));
    border-color: var(--gold-soft);
  }

  .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .work-card {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
  }
  .work-card.no-photo {
    background: radial-gradient(120% 100% at 50% 0%, rgba(201,164,100,.1), var(--glass-fill) 70%);
  }
  .work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  .work-card:hover img { transform: scale(1.05); }
  .work-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(20,18,16,0.85));
    padding: 18px 16px 14px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .work-card:hover .work-overlay { transform: translateY(0); }
  .work-overlay span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* Цитата-мостик */
  .quote-bridge {
    text-align: center;
    padding: 100px 48px;
    background: var(--bg2);
    position: relative; z-index: 4;
  }
  .big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 24px;
  }
  .big-quote-mark {
    font-size: 80px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.25;
    display: block;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
  }
  .quote-author {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
  }

  /* ── ОТЗЫВЫ ── */
  #reviews {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; z-index: 4;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .review-card {
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    padding: 36px 32px;
    border-radius: 8px;
    position: relative;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
  }
  .review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .review-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone);
    font-style: italic;
    margin-bottom: 24px;
  }
  .review-text em { color: var(--cream); font-style: normal; font-weight: 400; }
  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .reviewer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
  }
  .reviewer-meta {
    font-size: 12px;
    color: var(--mist);
    margin-top: 2px;
  }

  /* ── МАТЕРИАЛЫ ── */
  #materials {
    background: var(--bg2);
    padding: 80px 48px;
    position: relative; z-index: 4;
  }
  .materials-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
  }
  .materials-text { flex: 1; }
  .materials-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone);
    margin-top: 20px;
  }
  .brands-row {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }
  .brand-pill {
    background: var(--glass-fill);
    border: 1px solid var(--gold-soft);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.25s, color 0.25s;
  }
  .brand-pill:hover { border-color: var(--gold); color: var(--gold); }
  .brand-pill-type {
    border-style: dashed;
    border-color: var(--glass-border);
    color: var(--mist);
    text-transform: none;
    letter-spacing: 0.04em;
  }

  /* ── ФОРМА ЗАЯВКИ ── */
  #contact {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
    z-index: 4;
  }
  #contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,153,90,0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  .contact-left h2 { text-align: left; }
  .contact-tagline {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone);
    margin-top: 20px;
    margin-bottom: 48px;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--stone);
    font-size: 15px;
    transition: color 0.25s;
  }
  .contact-link:hover { color: var(--cream); }
  .contact-link .icon {
    width: 40px;
    height: 40px;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: border-color 0.25s;
  }
  .contact-link:hover .icon { border-color: var(--gold); }
  /* ── крупные кнопки связи (контакты + подвал) ── */
  .contact-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--cream);
    text-decoration: none;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: background .3s ease, border-color .3s ease, transform .2s ease;
  }
  .btn-contact:hover {
    background: var(--glass-hover);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
  }
  .btn-contact svg { width: 20px; height: 20px; flex-shrink: 0; }
  .btn-contact.wa {
    background: linear-gradient(120deg, rgba(37,211,102,.24), rgba(37,211,102,.1));
    border-color: rgba(37,211,102,.45);
    color: #d9f7e5;
  }
  .btn-contact.wa:hover {
    background: linear-gradient(120deg, rgba(37,211,102,.34), rgba(37,211,102,.16));
    border-color: rgba(37,211,102,.65);
  }
  .footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  @media (max-width: 640px) {
    .contact-cta-row .btn-contact, .footer-cta-row .btn-contact { width: 100%; }
  }
  /* Форма */
  .form-card {
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    padding: 48px 40px;
    border-radius: 8px;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 32px;
  }
  .field-group {
    margin-bottom: 20px;
  }
  label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 8px;
  }
  input, textarea, select {
    width: 100%;
    background: rgba(8,9,11,.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--cream);
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
  }
  input::placeholder, textarea::placeholder { color: var(--mist); }
  input:focus, textarea:focus, select:focus { border-color: var(--gold); }
  select option { background: var(--bg2); }
  textarea { min-height: 100px; resize: vertical; }
  .checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 300;
    color: var(--stone);
    letter-spacing: 0;
    text-transform: none;
    padding: 8px 14px;
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    user-select: none;
  }
  .check-label input[type="checkbox"] { display: none; }
  .check-label.active {
    background: rgba(201,164,100,.12);
    border-color: var(--gold);
    color: var(--gold);
  }
  .submit-btn {
    width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(120deg, rgba(201,164,100,.22), rgba(201,164,100,.1));
    color: #f0e2c4;
    border: 1px solid var(--gold-soft);
    padding: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    cursor: pointer;
    margin-top: 12px;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
    transition: background 0.35s ease, border-color .35s ease, transform 0.2s ease;
  }
  .submit-btn:hover {
    background: linear-gradient(120deg, rgba(201,164,100,.32), rgba(201,164,100,.16));
    border-color: rgba(201,164,100,.6);
    transform: translateY(-2px);
  }
  .submit-btn:disabled { opacity: .65; cursor: default; transform: none; }
  .form-disclaimer {
    font-size: 12px;
    color: var(--mist);
    margin-top: 12px;
    line-height: 1.5;
  }

  /* ── ПОДВАЛ ── */
  footer {
    background: var(--bg3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; z-index: 4;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--cream);
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy {
    font-size: 12px;
    color: var(--mist);
    text-align: center;
  }
  /* ── SUCCESS ── */
  .success-msg {
    display: none;
    text-align: center;
    padding: 40px;
  }
  .success-msg.show { display: block; }
  .success-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .success-msg h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .success-msg p { font-size: 15px; color: var(--stone); font-weight: 300; }

  /* ── ОБОИ VS ДЕКОРАТИВКА ── */
  #vs {
    background: var(--bg2);
    padding: 120px 48px;
    position: relative; z-index: 4;
  }
  .vs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 72px;
  }
  .vs-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .vs-title em { font-style: italic; color: var(--gold); }
  .vs-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--stone);
  }
  .vs-table {
    background: var(--glass-fill);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  }
  .vs-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .vs-row:last-child { border-bottom: none; }
  .vs-cell {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.4;
  }
  .vs-header .vs-cell {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 18px;
    background: rgba(255,255,255,.05);
  }
  .vs-label {
    color: var(--cream);
    font-weight: 400;
    font-size: 13px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .vs-bad {
    color: var(--mist);
    background: rgba(255,255,255,0.01);
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .vs-header .vs-bad {
    color: var(--mist);
  }
  .vs-good {
    color: #9EBF8A;
    background: rgba(158,191,138,0.04);
  }
  .vs-header .vs-good {
    color: var(--gold);
    background: rgba(200,153,90,0.06);
  }
  .vs-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .vs-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: var(--stone);
    line-height: 1.5;
    max-width: 620px;
  }

  /* ── SCROLL REVEAL (не трогать логику — известная хрупкая зона) ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ══════════════ ТЕХНИКИ ══════════════ */
  .techniques-sub {
    max-width: 640px;
    margin: 16px auto 0;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone);
  }
  .techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 56px auto 0;
  }
  .tech-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg2);
    border: 1px solid var(--glass-border);
    isolation: isolate;
    transition: border-color .35s ease;
  }
  .tech-card.no-photo {
    background: radial-gradient(120% 100% at 50% 0%, rgba(201,164,100,.1), var(--bg2) 70%);
  }
  .tech-card:hover, .tech-card:focus-visible { border-color: rgba(201,164,100,.4); }
  .tech-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .6s ease;
    z-index: 0;
  }
  .tech-card:hover .tech-card-bg, .tech-card:focus-visible .tech-card-bg { transform: scale(1.09); }
  .tech-card-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(255,230,180,.32), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
    pointer-events: none;
  }
  .tech-card:hover .tech-card-glow, .tech-card:focus-visible .tech-card-glow { opacity: 1; }
  .tech-card-shade {
    position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
    background: linear-gradient(transparent, rgba(10,9,8,.92));
    z-index: 1;
    pointer-events: none;
  }
  .tech-card-badge {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 500; color: var(--cream);
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 5px 10px; border-radius: 100px;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .tech-card-caption {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    padding: 22px 20px 18px;
  }
  .tech-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 500; color: var(--cream); line-height: 1.15;
  }
  .tech-card-sub {
    margin-top: 4px;
    font-size: 12.5px; color: var(--cream-dim); letter-spacing: .02em;
  }
  .tech-card-open {
    display: inline-block; margin-top: 10px;
    font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--gold);
    opacity: 0; transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .tech-card:hover .tech-card-open, .tech-card:focus-visible .tech-card-open { opacity: 1; transform: none; }

  @media (max-width: 900px) { .techniques-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .techniques-grid { grid-template-columns: 1fr; } }

  /* ── модалка галереи техники ── */
  .tech-modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
  }
  .tech-modal[hidden] { display: none; }
  .tech-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(6,7,9,.75);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    opacity: 0; transition: opacity .3s ease;
  }
  .tech-modal.open .tech-modal-overlay { opacity: 1; }
  .tech-modal-window {
    position: relative; z-index: 1;
    width: 100%; max-width: 1040px; max-height: 88vh;
    display: grid; grid-template-columns: 1.15fr 1fr;
    background: var(--bg2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
    opacity: 0; transform: scale(.96) translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .tech-modal.open .tech-modal-window { opacity: 1; transform: none; }
  .tech-modal-close {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--cream); font-size: 16px; cursor: pointer;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: background .25s ease, border-color .25s ease;
  }
  .tech-modal-close:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.3); }
  .tech-modal-gallery {
    position: relative;
    background: var(--bg3);
    min-height: 320px;
  }
  .tech-slider-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
  .tech-slider-track {
    display: flex; height: 100%;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
  }
  .tech-slide { flex: 0 0 100%; height: 100%; background: var(--bg3); }
  .tech-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .tech-slide.no-photo {
    background: radial-gradient(120% 100% at 50% 0%, rgba(201,164,100,.12), var(--bg3) 70%);
  }
  .tech-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--cream); font-size: 20px; cursor: pointer;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: background .25s ease, border-color .25s ease;
  }
  .tech-arrow:hover { background: var(--glass-hover); border-color: var(--gold-soft); }
  .tech-arrow-prev { left: 14px; }
  .tech-arrow-next { right: 14px; }
  .tech-arrow[hidden] { display: none; }
  .tech-dots {
    position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2;
    display: flex; justify-content: center; gap: 8px;
  }
  .tech-dots[hidden] { display: none; }
  .tech-dot {
    width: 7px; height: 7px; border-radius: 100px;
    background: rgba(236,229,216,.35); border: none; cursor: pointer;
    transition: width .3s ease, background .3s ease;
    padding: 0;
  }
  .tech-dot.active { width: 22px; background: var(--gold); }
  .tech-modal-text {
    padding: 44px 40px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .tech-modal-eyebrow {
    font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .tech-modal-text h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 500;
    color: var(--cream); line-height: 1.15; margin-bottom: 18px;
  }
  .tech-modal-desc {
    font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--stone);
    margin-bottom: 32px;
  }
  @media (max-width: 720px) {
    .tech-modal-window { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .tech-modal-gallery { min-height: 260px; }
    .tech-modal-text { padding: 32px 24px; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-burger { display: flex; }
    nav ul {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: stretch;
      justify-content: flex-start;
      list-style: none;
      gap: 6px;
      margin: 0;
      position: fixed;
      inset: 0;
      z-index: 200;
      padding: 88px 22px 28px;
      background: rgba(10,11,14,.98);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
      overflow-y: auto;
    }
    nav ul.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
    nav ul li { width: 100%; margin: 0; flex: 0 0 auto; }
    nav ul a {
      display: flex;
      align-items: center;
      min-height: 48px;
      padding: 0 2px;
      margin: 0;
      font-size: 17px;
      line-height: 1.15;
      letter-spacing: 0;
      color: var(--cream);
      text-transform: none;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      border-bottom: 1px solid rgba(255,255,255,.08);
      white-space: normal;
    }
    nav ul a:hover { color: var(--gold); }
    nav ul li:last-child a { border-bottom: none; }
    nav ul .nav-cta {
      display: flex;
      width: 100%;
      margin-top: 14px;
      justify-content: center;
      min-height: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      border-bottom: none;
    }
    #hero { padding: 110px 20px 72px; }
    #about { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
    .stats-bar { flex-wrap: wrap; gap: 32px; padding: 24px; }
    .vs-inner { grid-template-columns: 1fr; gap: 40px; }
    .vs-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
    #vs { padding: 80px 24px; }

    .materials-inner { flex-direction: column; }
    .brands-row { justify-content: flex-start; }
    .quote-bridge { padding: 60px 24px; }
    #contact { padding: 80px 24px; }
    .form-card { padding: 32px 24px; }
  }

  @media (max-width: 420px) {
    .hero-eyebrow { letter-spacing: .14em; font-size: 10.5px; padding: 8px 14px; }
    h1 { max-width: 13ch; }
    .section-eyebrow { letter-spacing: .12em; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-delay: 0s !important;
      transition-duration: .01ms !important;
    }
    .hero-grain, .site-grain { display: none; }
  }

/* ══════════ ВНУТРЕННИЕ СТРАНИЦЫ (травертин / кухни / штукатурка-минск) ══════════ */
.page-hero {
  position: relative;
  padding: 160px 24px 76px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(201,164,100,.14) 0%, transparent 55%),
    radial-gradient(80% 60% at 50% 115%, rgba(201,164,100,.06) 0%, transparent 60%);
}
.page-breadcrumb {
  font-size: 12.5px; letter-spacing: .04em; color: var(--cream-dim);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.page-breadcrumb a { color: var(--cream-dim); text-decoration: none; transition: color .2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.12;
  max-width: 17ch;
  margin-left: auto; margin-right: auto;
  color: var(--cream);
}
.page-hero .page-sub {
  margin: 20px auto 0; max-width: 60ch;
  font-size: clamp(14.5px,1.6vw,17px); font-weight: 300; line-height: 1.75; color: var(--cream-dim);
}
.page-hero .hero-actions { margin-top: 32px; }

.page-content { max-width: 780px; margin: 0 auto; padding: 72px 24px; }
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  margin: 48px 0 16px;
  color: var(--cream);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: 15.5px; font-weight: 300; line-height: 1.8; color: var(--stone); margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px 20px; }
.page-content li { font-size: 15.5px; font-weight: 300; line-height: 1.8; color: var(--stone); margin-bottom: 8px; }
.page-content strong { color: var(--cream); font-weight: 500; }
.page-content a { color: var(--gold); }

.page-highlight {
  background: var(--glass-fill);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.page-highlight p { color: var(--cream); margin-bottom: 0; font-weight: 300; }
.page-highlight strong { color: var(--gold); }

.page-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
.page-gallery img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--glass-border);
  display: block;
}

.page-cta-block { text-align: center; padding: 76px 24px; background: var(--bg2); }
.page-cta-block h2 { margin-bottom: 14px; }
.page-cta-block p { max-width: 50ch; margin: 0 auto 32px; }
.page-cta-block .hero-actions { justify-content: center; margin-top: 0; }

.page-crosslinks {
  max-width: 900px; margin: 0 auto; padding: 56px 24px 0;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.page-crosslinks a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  background: var(--glass-fill); border: 1px solid var(--glass-border);
  color: var(--cream); text-decoration: none; font-size: 13.5px;
  transition: border-color .25s, color .25s;
}
.page-crosslinks a:hover { border-color: var(--gold-soft); color: var(--gold); }

.style-card-label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--cream-dim);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.style-card-label.own { color: var(--gold); border-color: var(--gold-soft); }

@media (max-width: 640px) {
  .page-hero { padding: 128px 20px 56px; }
  .page-content { padding: 52px 20px; }
  .page-gallery { padding: 0 20px 56px; }
}
