/* ---------- Hero ---------- */
  .hero {
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .hero-eyebrow-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap; gap: 16px;
  }
  .hero-meta {
    display: flex; align-items: center; gap: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(56px, 10vw, 150px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    margin: 0;
  }
  .hero-title em {
    font-style: normal;
    color: var(--green);
    font-weight: 500;
  }
  .hero-title .italic {
    font-style: italic;
    font-family: "Unbounded", serif;
    font-weight: 300;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    align-items: end;
  }
  .hero-photo {
    position: relative;
    aspect-ratio: 16/11;
    border-radius: 22px;
    overflow: hidden;
    background:
      radial-gradient(120% 80% at 30% 20%, oklch(0.75 0.08 140 / 0.55), transparent 60%),
      radial-gradient(80% 60% at 80% 80%, oklch(0.35 0.06 150 / 0.8), transparent 70%),
      repeating-linear-gradient(135deg, oklch(0.48 0.08 145) 0 10px, oklch(0.42 0.07 145) 10px 20px);
  }
  .hero-photo::after {
    content: "ГЛАВНОЕ ФОТО / САД КЛИЕНТА";
    position: absolute; left: 20px; bottom: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
  }
  .hero-photo-tag {
    position: absolute; top: 20px; left: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--ink);
    text-transform: uppercase;
  }
  .hero-right {
    display: flex; flex-direction: column; gap: 24px;
    padding-bottom: 12px;
  }
  .hero-lede {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 46ch;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Stat strip ---------- */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 48px;
  }
  .stat {
    padding: 28px 0;
    border-right: 1px dashed var(--line);
  }
  .stat:last-child { border-right: 0; }
  .stat-n {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
  }
  .stat-n sup { font-size: 0.5em; color: var(--green); margin-left: 2px; }
  .stat-l { font-size: 13px; color: var(--ink-3); margin-top: 8px; max-width: 22ch; }
  @media (max-width: 900px) {
    .stats { grid-template-columns: 1fr 1fr; }
    .stat { border-right: 0; border-bottom: 1px dashed var(--line); padding: 20px 0; }
  }

  /* ---------- About strip ---------- */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
  }
  .about-strip h2 { margin: 0; }
  .about-card {
    background: var(--green-soft);
    border-radius: 22px;
    padding: 36px;
    display: grid; gap: 20px;
  }
  .about-list { display: grid; gap: 16px; }
  .about-list li {
    list-style: none;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(24,32,26,0.1);
  }
  .about-list li:last-child { border-bottom: 0; padding-bottom: 0; }
  .about-list .num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--green-deep);
    letter-spacing: 0.05em;
    padding-top: 4px;
  }
  .about-list .t { font-weight: 600; color: var(--ink); }
  .about-list .d { color: var(--ink-2); font-size: 14px; margin-top: 4px; }
  @media (max-width: 900px) {
    .about-strip { grid-template-columns: 1fr; }
  }

  /* ---------- Services ---------- */
  .services-section { background: var(--bg); }
  .services-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  .service-card {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .2s ease, transform .2s ease;
  }
  .service-card:hover { border-color: var(--ink); }
  .service-card .media {
    aspect-ratio: 4/3;
    position: relative;
  }
  .service-card .body {
    padding: 24px;
    display: flex; flex-direction: column; gap: 14px; flex: 1;
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  .service-card p { font-size: 14px; color: var(--ink-3); margin: 0; }
  .service-card .foot {
    margin-top: auto;
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-size: 13px;
    color: var(--ink-2);
  }
  .service-card .from { color: var(--ink-4); }
  .service-card .from b { color: var(--ink); font-weight: 600; }

  .svc-lg { grid-column: span 6; }
  .svc-md { grid-column: span 4; }
  .svc-sm { grid-column: span 4; }
  .svc-xl { grid-column: span 8; }
  .svc-side { grid-column: span 4; }
  @media (max-width: 900px) {
    .svc-lg, .svc-md, .svc-sm, .svc-xl, .svc-side { grid-column: span 12; }
  }

  .svc-feature {
    background: var(--ink);
    color: #e8eee0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 22px;
    overflow: hidden;
    min-height: 380px;
  }
  .svc-feature .body {
    padding: 36px;
    display: flex; flex-direction: column;
    gap: 16px;
  }
  .svc-feature h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    color: #f4f6ef;
  }
  .svc-feature .media { position: relative; }
  .svc-feature .eyebrow { color: var(--green-bright); }
  .svc-feature .eyebrow::before { background: var(--green-bright); }

  /* ---------- Process ---------- */
  .process-head { display: flex; gap: 40px; align-items: end; justify-content: space-between; flex-wrap: wrap; margin-bottom: 48px; }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  @media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
  .step {
    background: var(--bg-2);
    border-radius: 22px;
    padding: 28px;
    position: relative;
    min-height: 220px;
    display: flex; flex-direction: column;
  }
  .step-n {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1;
    font-weight: 300;
    color: var(--green);
    letter-spacing: -0.03em;
  }
  .step-t {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-top: 24px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .step-d {
    font-size: 13px;
    color: var(--ink-3);
    margin-top: 8px;
  }
  .step-tag {
    margin-top: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-deep);
    padding-top: 16px;
  }

  /* ---------- Works ---------- */
  .works-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
  .work {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #000;
    aspect-ratio: 4/3;
    display: block;
  }
  .work .media { position: absolute; inset: 0; }
  .work .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,26,22,0.85) 0%, rgba(20,26,22,0) 55%);
    padding: 24px;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: #f4f6ef;
  }
  .work h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0;
  }
  .work .work-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .work.w-lg { grid-column: span 8; aspect-ratio: 16/10; }
  .work.w-md { grid-column: span 4; aspect-ratio: 4/5; }
  .work.w-sq { grid-column: span 6; aspect-ratio: 4/3; }
  @media (max-width: 900px) {
    .work.w-lg, .work.w-md, .work.w-sq { grid-column: span 12; }
  }

  /* ---------- Testimonial / Blog ---------- */
  .quote {
    background: var(--ink);
    color: #e8eee0;
    border-radius: 22px;
    padding: 64px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: end;
  }
  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 40px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #f4f6ef;
  }
  .quote-text em { font-style: italic; color: var(--green-mid); font-weight: 300; }
  .quote-author {
    display: flex; align-items: center; gap: 14px;
    margin-top: 24px;
  }
  .quote-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--green-bright); }
  .quote-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    display: grid;
    gap: 12px;
  }
  .quote-nav { display: flex; gap: 8px; }
  .quote-nav button {
    width: 44px; height: 44px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #f4f6ef;
  }
  .quote-nav button:hover { background: rgba(255,255,255,0.08); }
  @media (max-width: 900px) { .quote { grid-template-columns: 1fr; padding: 36px; } }

  /* ---------- Blog ---------- */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
  .post {
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .post .media {
    aspect-ratio: 4/3;
    border-radius: 18px;
    position: relative;
  }
  .post-cat {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-deep);
  }
  .post h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.15;
  }
  .post-meta { font-size: 12px; color: var(--ink-3); }

  /* ---------- CTA ---------- */
  .cta-band {
    background: var(--green);
    color: #f4f6ef;
    border-radius: 28px;
    padding: 72px 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: end;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: ""; position: absolute;
    right: -80px; top: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, oklch(0.58 0.13 142 / 0.55), transparent 65%);
  }
  .cta-band h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 80px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
    color: #f4f6ef;
  }
  .cta-band h2 em { font-style: italic; font-weight: 300; color: var(--green-soft); }
  .cta-band .cta-ctas { display: flex; flex-direction: column; gap: 12px; align-items: stretch; z-index: 1; }
  .cta-band .btn-ghost {
    background: transparent; border: 1px solid rgba(255,255,255,0.35); color: #f4f6ef;
  }
  .cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
  .cta-band .btn-light {
    background: #f4f6ef; color: var(--ink);
  }
  .cta-band .btn-light:hover { background: #fff; }
  @media (max-width: 900px) {
    .cta-band { grid-template-columns: 1fr; padding: 40px 28px; }
  }