:root {
      --bg: #161618;
      --surface: #1C1C1F;
      --surface-high: #252529;
      --text: #F0F0F2;
      --muted: #A0A0A5;
      --primary: #D97A4F;
      --primary-hover: #E88E65;
      --outline: rgba(255, 255, 255, 0.08);
      --outline-strong: rgba(255, 255, 255, 0.15);
      --max: 1280px;
      --section-y: clamp(80px, 12vw, 160px);
      --radius: 6px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Manrope', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 400;
      letter-spacing: -0.02em;
      margin: 0;
      line-height: 1.2;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
    ul { margin: 0; padding: 0; list-style: none; }

    .container { width: min(100% - 48px, var(--max)); margin-inline: auto; }
    
    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 24px;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(22, 22, 24, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--outline);
    }
    .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 80px;
    }
    .wordmark {
      font-weight: 500;
      font-size: 20px;
      letter-spacing: -0.02em;
      color: var(--text);
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
    }
    .nav a:hover, .nav a.active { color: var(--text); }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      padding: 8px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 52px;
      padding: 0 32px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn--primary {
      background: var(--primary);
      color: #fff;
      border: 1px solid var(--primary);
    }
    .btn--primary:hover { 
      background: var(--primary-hover);
      border-color: var(--primary-hover);
    }
    .btn--ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--outline-strong);
    }
    .btn--ghost:hover { 
      border-color: var(--text); 
    }

    /* Hero */
    .hero {
      padding: clamp(80px, 15vw, 160px) 0;
      position: relative;
      overflow: hidden;
    }
    .hero__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      max-width: 960px;
    }
    .hero__title {
      font-size: clamp(40px, 7vw, 80px);
      font-weight: 300;
      color: var(--text);
    }
    .hero__title em {
      font-style: normal;
      color: var(--primary);
    }
    .hero__lead {
      font-size: clamp(18px, 2.5vw, 24px);
      color: var(--muted);
      max-width: 38ch;
      margin: 32px 0 48px;
      font-weight: 300;
      line-height: 1.5;
    }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
    
    /* Trust strip */
    .trust {
      border-top: 1px solid var(--outline);
      border-bottom: 1px solid var(--outline);
      padding: 40px 0;
    }
    .trust__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .trust__item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .trust__item strong {
      font-weight: 500;
      font-size: 16px;
      color: var(--text);
    }
    .trust__item span {
      font-size: 14px;
      color: var(--muted);
    }

    /* Sections */
    .section {
      padding: var(--section-y) 0;
    }
    .section--surface { background: var(--surface); }

    .section__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 64px;
    }
    .section__title {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 300;
    }
    .section__link {
      font-size: 14px;
      font-weight: 500;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .section__link:hover { color: var(--primary-hover); }

    /* Editorial List (Services) */
    .editorial-list {
      border-top: 1px solid var(--outline);
    }
    .editorial-list__item {
      display: grid;
      grid-template-columns: 80px 1fr 1fr;
      gap: 32px;
      padding: 40px 0;
      border-bottom: 1px solid var(--outline);
      transition: background-color 0.3s ease;
    }
    .editorial-list__item:hover {
      background: rgba(255, 255, 255, 0.02);
    }
    .editorial-list__num {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
    }
    .editorial-list__title {
      font-size: 24px;
      font-weight: 400;
      color: var(--text);
    }
    .editorial-list__text {
      font-size: 16px;
      color: var(--muted);
      margin: 0;
    }

    /* Case frames */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }
    .case-frame {
      display: block;
      group: case;
    }
    .case-frame__img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 24px;
      aspect-ratio: 16/10;
      background: var(--surface-high);
    }
    .case-frame__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0.8;
    }
    .case-frame:hover .case-frame__img {
      transform: scale(1.05);
      opacity: 1;
    }
    .case-frame__meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
    }
    .case-frame__title {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 8px;
    }
    .case-frame__tags {
      font-size: 13px;
      color: var(--muted);
    }

    /* About strip */
    .about-editorial {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-editorial__img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 3/4;
      background: var(--surface-high);
    }
    .about-editorial__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      mix-blend-mode: luminosity;
    }
    .about-editorial__text {
      font-size: 18px;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.7;
    }
    .about-editorial__text strong {
      color: var(--text);
      font-weight: 500;
    }

    /* Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .process-step {
      position: relative;
    }
    .process-step::before {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      background: var(--outline);
      margin-bottom: 32px;
    }
    .process-step__num {
      font-size: 13px;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 16px;
    }
    .process-step__title {
      font-size: 20px;
      margin-bottom: 16px;
    }
    .process-step__text {
      font-size: 15px;
      color: var(--muted);
    }

    /* Blog cards */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .blog-card {
      display: block;
    }
    .blog-card__cover {
      aspect-ratio: 16/9;
      background: var(--surface-high);
      border-radius: var(--radius);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .blog-card__topic {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .blog-card__title {
      font-size: 20px;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }
    .blog-card:hover .blog-card__title { color: var(--primary); }
    .blog-card__text {
      font-size: 15px;
      color: var(--muted);
    }

    /* CTA */
    .cta-editorial {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: clamp(64px, 10vw, 120px) 0;
    }
    .cta-editorial__title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 300;
      margin-bottom: 24px;
    }
    .cta-editorial__text {
      font-size: 20px;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 48px;
    }

    /* Footer */
    .site-footer {
      padding: 80px 0 40px;
      background: var(--surface);
      border-top: 1px solid var(--outline);
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 64px;
      margin-bottom: 80px;
    }
    .footer__brand { 
      font-size: 24px;
      font-weight: 300;
      color: var(--text);
      margin-bottom: 24px; 
    }
    .footer__muted { color: var(--muted); font-size: 15px; max-width: 40ch; line-height: 1.6; }
    .footer__col h4 {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin: 0 0 32px;
    }
    .footer__col a {
      display: block;
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .footer__col a:hover { color: var(--text); }
    
    .footer__legal {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding-top: 40px;
      border-top: 1px solid var(--outline);
      font-size: 13px;
      color: var(--muted);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .editorial-list__item { grid-template-columns: 48px 1fr; }
      .editorial-list__text { grid-column: 2; margin-top: 16px; }
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .footer__brand-col { grid-column: 1 / -1; margin-bottom: 32px; }
    }
    @media (max-width: 768px) {
      .nav { display: none; }
      .nav-toggle { display: block; }
      .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
      .case-grid { grid-template-columns: 1fr; }
      .about-editorial { grid-template-columns: 1fr; gap: 48px; }
      .blog-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }
      .section__head { flex-direction: column; align-items: flex-start; gap: 24px; }
      .editorial-list__item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
      .editorial-list__num { display: none; }
      .editorial-list__text { margin-top: 0; }
      .footer__grid { grid-template-columns: 1fr; gap: 48px; }
    }