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

    :root {
      --black:  #0C0C0C;
      --ivory:  #FFFFFF;
      --pearl:  #C8C3B8;
      --indigo: #1D2E50;
      --serif:  'Cormorant Garamond', Georgia, serif;
      --sans:   'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: #FFFFFF;
      color: var(--black);
      overflow-x: hidden;
      cursor: none;
    }

    /* Cursor */
    .cursor {
      position: fixed; width: 7px; height: 7px;
      background: var(--black); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
    }
    .cursor-ring {
      position: fixed; width: 32px; height: 32px;
      border: 1px solid rgba(12,12,12,.18); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform .4s cubic-bezier(.23,1,.32,1);
    }




    /* Profile photo */
    .cover-photo-wrap {
      display: flex; justify-content: center;
      padding-top: 140px; padding-bottom: 0;
    }
    .cover-photo {
      width: 216px; height: 216px; border-radius: 50%;
      border: 1px solid rgba(12,12,12,.15);
      overflow: hidden; position: relative;
      opacity: 0; animation: fadeIn 1s ease .4s forwards;
    }
    .cover-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .cover-photo-placeholder {
      width: 100%; height: 100%;
      background: rgba(29,46,80,.06);
      display: flex; align-items: center; justify-content: center;
    }
    .cover-photo-placeholder svg {
      width: 40px; height: 40px; opacity: .2;
    }




    /* MENU LATERAL */
    .menu-btn {
      position: fixed; top: 32px; right: 64px; z-index: 600;
      width: 36px; height: 36px;
      display: flex; flex-direction: column;
      justify-content: center; align-items: flex-end;
      gap: 6px; cursor: none; background: none; border: none; padding: 0;
    }
    .menu-btn span {
      display: block; height: 1px; background: var(--black); opacity: .7;
    }
    .menu-btn span:nth-child(1) { width: 24px; }
    .menu-btn span:nth-child(2) { width: 16px; }
    .menu-btn span:nth-child(3) { width: 20px; }
    .menu-btn span {
      transition: width .35s cubic-bezier(.23,1,.32,1),
                  transform .35s cubic-bezier(.23,1,.32,1),
                  opacity .25s;
    }
    .menu-btn.open span:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
    .menu-btn.open span:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

    .menu-overlay {
      position: fixed; inset: 0; background: rgba(12,12,12,.08);
      z-index: 550; opacity: 0; pointer-events: none;
      transition: opacity .5s;
    }
    .menu-overlay.open { opacity: 1; pointer-events: all; }

    .menu-panel {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(420px, 85vw);
      background: var(--ivory); z-index: 560;
      border-left: 1px solid rgba(12,12,12,.08);
      display: flex; flex-direction: column; justify-content: space-between;
      padding: 64px 56px 52px;
      transform: translateX(100%);
      transition: transform .65s cubic-bezier(.23,1,.32,1);
    }
    .menu-panel.open { transform: translateX(0); }
    .menu-panel-logo {
      font-family: var(--serif); font-weight: 500;
      font-size: 13px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--black); opacity: .25;
    }
    .menu-links { display: flex; flex-direction: column; gap: 4px; }
    .menu-links a {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(38px, 5.5vw, 58px);
      line-height: 1.15; letter-spacing: -.02em;
      color: var(--black); text-decoration: none; display: block;
      opacity: 0; transform: translateX(24px);
      transition: opacity .5s, transform .5s, color .3s, padding-left .35s cubic-bezier(.23,1,.32,1);
    }
    .menu-links a em { font-style: italic; color: var(--indigo); }
    .menu-panel.open .menu-links a { opacity: 1; transform: translateX(0); }
    .menu-panel.open .menu-links a:nth-child(1) { transition-delay: .18s; }
    .menu-panel.open .menu-links a:nth-child(2) { transition-delay: .26s; }
    .menu-panel.open .menu-links a:nth-child(3) { transition-delay: .34s; }
    .menu-panel.open .menu-links a:nth-child(4) { transition-delay: .42s; }
    .menu-links a:hover { color: var(--indigo); padding-left: 8px; }
    .menu-panel-footer {
      font-family: var(--sans); font-weight: 300; font-size: 8px;
      letter-spacing: .4em; text-transform: uppercase; color: var(--black); opacity: .25;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 32px 64px; z-index: 500;
    }
    nav > .nav-tag { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-logo {
      font-family: var(--serif); font-weight: 500;
      font-size: 14px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--black);
    }
    .nav-tag {
      font-family: var(--sans); font-weight: 300;
      font-size: 9px; letter-spacing: .3em;
      text-transform: uppercase; color: var(--black); opacity: .55;
    }

    /* ══ 01 PORTADA ══ */
    .cover {
      min-height: 100vh;
      display: grid;
      grid-template-rows: 1fr auto;
      padding: 0 64px 72px;
      position: relative;
      overflow: hidden;
    }
    .cover-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end; gap: 40px;
    }
    .cover-kicker {
      font-family: var(--sans); font-weight: 300;
      font-size: 9px; letter-spacing: .38em;
      text-transform: uppercase; color: var(--black); opacity: 0;
      margin-bottom: 24px;
      animation: fadeUp .8s ease .3s forwards;
    }
    .cover-title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(56px, 6.5vw, 96px);
      line-height: .96; letter-spacing: -.02em;
      color: var(--black); opacity: 0;
      animation: fadeUp 1s ease .5s forwards;
    }
    .cover-title em { font-style: italic; color: var(--indigo); }
    .cover-right {
      display: flex; flex-direction: column;
      justify-content: flex-end; gap: 20px;
    }
    .cover-proposition {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(17px, 1.8vw, 23px);
      line-height: 1.5; color: var(--indigo);
      font-style: italic; text-align: right; opacity: 0;
      animation: fadeUp 1s ease .8s forwards;
    }
    .cover-sub {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; line-height: 1.85;
      letter-spacing: .07em; color: rgba(12,12,12,.58);
      text-align: right; max-width: 280px; align-self: flex-end;
      opacity: 0; animation: fadeUp 1s ease 1s forwards;
    }
    .cover-footer {
      display: flex; align-items: center; justify-content: space-between;
    }
    .cover-scroll {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeIn 1s ease 2s forwards;
    }
    .cover-scroll span {
      font-size: 8px; letter-spacing: .3em;
      text-transform: uppercase; color: var(--black); opacity: .5;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(12,12,12,.25), transparent);
      animation: pulse 2.2s ease infinite;
    }
    .cover-location {
      font-size: 9px; letter-spacing: .25em;
      text-transform: uppercase; color: var(--black); opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }

    /* ══ 02 PARA QUIÉN ══ */
    .forwhom {
      padding: 120px 64px;
      border-top: 1px solid rgba(12,12,12,.08);
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 80px; align-items: start;
    }
    .section-label {
      font-family: var(--sans); font-weight: 300;
      font-size: 8px; letter-spacing: .4em;
      text-transform: uppercase; color: var(--black); opacity: .55;
      padding-top: 8px;
    }
    .forwhom-lead {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1.3; color: var(--black); margin-bottom: 48px;
    }
    .forwhom-lead em { font-style: italic; color: var(--indigo); }
    .forwhom-traits {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 32px 48px;
    }
    .trait { border-left: 1px solid rgba(12,12,12,.12); padding-left: 20px; }
    .trait-title {
      font-family: var(--serif); font-size: 24px;
      font-weight: 400; color: var(--black); margin-bottom: 6px;
    }
    .trait-desc {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; line-height: 1.8;
      color: rgba(12,12,12,.6); letter-spacing: .03em;
    }

    /* ══ 03 SERVICIOS ══ */
    .services {
      padding: 120px 64px;
      border-top: 1px solid rgba(12,12,12,.08);
    }
    .services-header {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 80px; margin-bottom: 80px; align-items: baseline;
    }
    .services-title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--black); letter-spacing: -.01em;
    }
    .services-title em { font-style: italic; color: var(--indigo); }
    .services-stack {
      display: flex; flex-direction: column;
      border-top: 1px solid rgba(12,12,12,.08);
    }
    .service-row {
      display: grid;
      grid-template-columns: 280px 1fr 1fr;
      gap: 40px 80px; padding: 56px 0;
      border-bottom: 1px solid rgba(12,12,12,.08);
      align-items: start; cursor: default;
      transition: background .3s;
    }
    .service-row:hover { background: rgba(29,46,80,.025); }
    .service-index {
      font-family: var(--serif); font-size: 11px;
      color: var(--indigo); letter-spacing: .2em; opacity: .5; padding-top: 6px;
    }
    .service-name {
      font-family: var(--serif); font-weight: 400;
      font-size: clamp(24px, 2.5vw, 36px);
      color: var(--black); line-height: 1.1;
    }
    .service-name em { font-style: italic; color: var(--indigo); }
    .service-desc {
      font-family: var(--sans); font-weight: 300;
      font-size: 18px; line-height: 1.9;
      color: rgba(12,12,12,.62); letter-spacing: .04em; margin-bottom: 28px;
    }
    .service-deliverables { display: flex; flex-direction: column; gap: 8px; }
    .deliverable {
      font-family: var(--sans); font-weight: 300;
      font-size: 10px; letter-spacing: .15em;
      text-transform: uppercase; color: var(--black);
      opacity: .6; display: flex; align-items: center; gap: 10px;
    }
    .deliverable::before {
      content: ''; display: block; width: 16px; height: 1px;
      background: var(--indigo); opacity: .4; flex-shrink: 0;
    }

    /* ══ 04 METODOLOGÍA ══ */
    .method {
      padding: 120px 64px;
      border-top: 1px solid rgba(12,12,12,.08);
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 80px; align-items: start;
    }
    .method-lead {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(22px, 2.5vw, 34px);
      line-height: 1.35; color: var(--black); margin-bottom: 56px;
    }
    .method-lead em { font-style: italic; color: var(--indigo); }
    .method-diagram { width: 100%; }
    .fw-row {
      display: flex; align-items: flex-end; gap: 0;
    }
    .fw-item {
      display: flex; flex-direction: column; align-items: center; gap: 16px;
    }
    .fw-arrow-wrap { padding-bottom: 32px; }
    .fw-circle {
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .fw-digit {
      font-family: var(--serif); font-weight: 300;
      color: var(--black); line-height: 1;
    }
    .fw-circle-label {
      font-family: var(--sans); font-weight: 300;
      font-size: 8px; letter-spacing: .4em;
      text-transform: uppercase; color: rgba(12,12,12,.45);
    }
    .fw-arrow-wrap {
      display: flex; flex-direction: column; align-items: center;
      gap: 6px; flex: 1; min-width: 80px;
    }
    .fw-arrow-label {
      font-family: var(--serif); font-style: italic;
      font-size: 12px; color: rgba(12,12,12,.45); white-space: nowrap;
    }
    .fw-arrow-line { display: flex; align-items: center; }

    /* ══ 05 PROCESO ══ */
    .process {
      padding: 120px 64px;
      border-top: 1px solid rgba(12,12,12,.08);
    }
    .process-header {
      display: grid; grid-template-columns: 280px 1fr;
      gap: 80px; margin-bottom: 80px; align-items: baseline;
    }
    .process-title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(32px, 3.5vw, 52px);
      color: var(--black); letter-spacing: -.01em;
    }
    .process-title em { font-style: italic; color: var(--indigo); }
    .process-timeline {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: rgba(12,12,12,.08);
    }
    .timeline-step {
      background: var(--ivory); padding: 48px 36px; position: relative;
    }
    .timeline-step::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--indigo); transform: scaleX(0); transform-origin: left;
      transition: transform .5s cubic-bezier(.23,1,.32,1);
    }
    .timeline-step:hover::before { transform: scaleX(1); }
    .timeline-num {
      font-family: var(--serif); font-size: 11px;
      color: var(--indigo); letter-spacing: .15em;
      margin-bottom: 28px; display: block; opacity: .5;
    }
    .timeline-name {
      font-family: var(--serif); font-weight: 400;
      font-size: 33px; color: var(--black); line-height: 1.2; margin-bottom: 16px;
    }
    .timeline-name em { font-style: italic; color: var(--indigo); }
    .timeline-desc {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; line-height: 1.85;
      color: rgba(12,12,12,.6); letter-spacing: .03em;
    }

    /* ══ 06 CONTACTO ══ */
    .contact {
      padding: 140px 64px 100px;
      border-top: 1px solid rgba(12,12,12,.08);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; position: relative; overflow: hidden;
    }
    .contact-eyebrow {
      font-family: var(--sans); font-weight: 300;
      font-size: 9px; letter-spacing: .38em;
      text-transform: uppercase; color: var(--black); opacity: .55; margin-bottom: 28px;
    }
    .contact-title {
      font-family: var(--serif); font-weight: 300;
      font-size: clamp(38px, 4.5vw, 68px);
      line-height: 1.0; letter-spacing: -.02em; color: var(--black);
    }
    .contact-title em { font-style: italic; color: var(--indigo); }
    .contact-right {
      display: flex; flex-direction: column;
      justify-content: flex-end; gap: 32px;
    }
    .contact-info {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; line-height: 2;
      color: rgba(12,12,12,.62); letter-spacing: .06em;
    }
    .contact-info a {
      color: var(--black); text-decoration: none;
      border-bottom: 1px solid rgba(12,12,12,.15); padding-bottom: 1px;
      transition: border-color .3s, color .3s;
    }
    .contact-info a:hover { border-color: var(--indigo); color: var(--indigo); }
    .cta-btn {
      display: inline-flex; align-items: center;
      font-family: var(--sans); font-weight: 300;
      font-size: 9px; letter-spacing: .35em;
      text-transform: uppercase; color: var(--black);
      border: 1px solid rgba(12,12,12,.22); padding: 18px 40px;
      text-decoration: none; position: relative; overflow: hidden;
      align-self: flex-start; transition: color .4s;
    }
    .cta-btn::before {
      content: ''; position: absolute; inset: 0; background: var(--black);
      transform: translateX(-101%); transition: transform .45s cubic-bezier(.23,1,.32,1);
    }
    .cta-btn:hover::before { transform: translateX(0); }
    .cta-btn:hover { color: var(--ivory); }
    .cta-btn span { position: relative; z-index: 1; }


    /* ══ 06 JOURNAL ══ */
    .journal {
      padding: 120px 64px;
      border-top: 1px solid rgba(12,12,12,.08);
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 80px; align-items: start;
    }
    .journal-body { display: flex; flex-direction: column; }
    .journal-card {
      border: 1px solid rgba(12,12,12,.1);
      padding: 52px 52px 48px;
      position: relative;
      transition: border-color .3s;
      min-height: 220px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .journal-card:hover { border-color: rgba(29,46,80,.25); }
    .journal-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 3px;
      height: 100%; background: var(--indigo); opacity: .18;
    }
    .journal-loading {
      display: flex; gap: 8px; align-items: center; justify-content: center;
    }
    .jl-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--indigo); opacity: .3;
      animation: jlpulse 1.2s ease infinite;
    }
    .jl-dot:nth-child(2) { animation-delay: .2s; }
    .jl-dot:nth-child(3) { animation-delay: .4s; }
    @keyframes jlpulse { 0%,100%{opacity:.2;transform:scale(1)} 50%{opacity:.7;transform:scale(1.3)} }
    .journal-meta {
      display: flex; align-items: center; flex-wrap: wrap; gap: 0;
      font-family: var(--sans); font-weight: 300;
      font-size: 8px; letter-spacing: .25em;
      text-transform: uppercase; color: var(--black); opacity: .45;
      margin-bottom: 20px;
    }
    .journal-meta-item { white-space: nowrap; }
    .journal-meta-sep {
      margin: 0 12px; opacity: .4;
      font-size: 8px; letter-spacing: 0;
    }
    .journal-meta-item.--date { color: var(--indigo); opacity: .8; }
    .journal-title {
      font-family: var(--serif); font-weight: 400;
      font-size: clamp(22px, 2.4vw, 34px);
      color: var(--black); line-height: 1.2; margin-bottom: 18px;
      letter-spacing: -.01em;
    }
    .journal-excerpt {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; line-height: 1.9;
      color: rgba(12,12,12,.6); letter-spacing: .03em;
      margin-bottom: 32px;
    }
    .journal-link {
      font-family: var(--sans); font-weight: 300;
      font-size: 9px; letter-spacing: .3em;
      text-transform: uppercase; color: var(--black);
      text-decoration: none;
      border-bottom: 1px solid rgba(12,12,12,.2); padding-bottom: 2px;
      align-self: flex-start;
      transition: color .3s, border-color .3s;
    }
    .journal-link:hover { color: var(--indigo); border-color: var(--indigo); }
    .journal-error {
      font-family: var(--sans); font-weight: 300;
      font-size: 17px; color: rgba(12,12,12,.4);
      letter-spacing: .04em; text-align: center;
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(12,12,12,.08); padding: 28px 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-l { font-family: var(--serif); font-size: 12px; color: var(--black); opacity: .5; letter-spacing: .1em; }
    .footer-c { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--black); opacity: .42; }
    .footer-r { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--black); opacity: .42; }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:.7} }
    @keyframes draw {
      from { stroke-dashoffset: var(--len, 800); } to { stroke-dashoffset: 0; }
    }

    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .85s cubic-bezier(.23,1,.32,1), transform .85s cubic-bezier(.23,1,.32,1);
    }
    .reveal.on { opacity: 1; transform: none; }
    .d1 { transition-delay: .12s; }
    .d2 { transition-delay: .24s; }
    .d3 { transition-delay: .36s; }

    /* ══ RESPONSIVE ══ */

    /* Tablet landscape */
    @media (max-width: 1100px) {
      nav { padding: 28px 40px; }
      .menu-btn { right: 40px; }
      .cover { padding: 0 40px 60px; }
      .forwhom { padding: 100px 40px; gap: 48px; }
      .services { padding: 100px 40px; }
      .service-row { grid-template-columns: 200px 1fr 1fr; gap: 32px 48px; }
      .services-header { grid-template-columns: 200px 1fr; gap: 48px; }
      .method { padding: 100px 40px; gap: 48px; }
      .process { padding: 100px 40px; }
      .journal { padding: 100px 40px; gap: 48px; }
      .contact { padding: 100px 40px 80px; }
      footer { padding: 28px 40px; }
    }

    /* Tablet portrait */
    @media (max-width: 860px) {
      nav { padding: 22px 28px; }
      nav > .nav-tag { display: none; }
      .menu-btn { right: 28px; top: 22px; }
      .menu-panel { padding: 48px 36px 40px; }
      .menu-links a { font-size: clamp(30px, 6vw, 48px); }

      .cover { padding: 0 28px 56px; }
      .cover-body { grid-template-columns: 1fr; gap: 32px; }
      .cover-proposition, .cover-sub { text-align: left; }
      .cover-photo { width: 160px; height: 160px; }
      .cover-photo-wrap { padding-top: 110px; }

      .forwhom { grid-template-columns: 1fr; gap: 36px; padding: 80px 28px; }
      .forwhom-traits { grid-template-columns: 1fr 1fr; gap: 24px 32px; }

      .services { padding: 80px 28px; }
      .services-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
      .service-row { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
      .service-index { display: none; }

      .method { grid-template-columns: 1fr; gap: 36px; padding: 80px 28px; }
      .fw-row { gap: 8px; }
      .fw-digit { font-size: clamp(28px, 8vw, 64px) !important; }
      .fw-circle { width: auto !important; height: auto !important; padding: 8px; }
      .fw-arrow-label { font-size: 10px; }

      .process { padding: 80px 28px; }
      .process-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
      .process-timeline { grid-template-columns: 1fr 1fr; gap: 1px; }

      .journal { grid-template-columns: 1fr; gap: 36px; padding: 80px 28px; }
      .journal-card { padding: 32px 24px; }

      .contact { grid-template-columns: 1fr; gap: 48px; padding: 80px 28px 60px; }

      footer { flex-direction: column; gap: 10px; padding: 24px 28px; text-align: center; }
    }

    /* Mobile */
    @media (max-width: 540px) {
      nav { padding: 20px 20px; }
      .menu-btn { right: 20px; top: 20px; }
      .menu-panel { width: 100vw; padding: 40px 28px 36px; }

      .cover { padding: 0 20px 48px; }
      .cover-photo { width: 130px; height: 130px; }
      .cover-photo-wrap { padding-top: 96px; }

      .forwhom { padding: 64px 20px; gap: 28px; }
      .forwhom-traits { grid-template-columns: 1fr; gap: 20px; }
      .forwhom-lead { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 32px; }

      .services { padding: 64px 20px; }
      .service-row { padding: 28px 0; gap: 12px; }
      .service-name { font-size: clamp(20px, 5vw, 28px); }
      .service-deliverables { gap: 6px; }

      .method { padding: 64px 20px; }
      .fw-row { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .fw-arrow-wrap { display: none; }
      .fw-item { flex: 0 0 auto; }

      .process { padding: 64px 20px; }
      .process-timeline { grid-template-columns: 1fr; }
      .timeline-step { padding: 32px 24px; }

      .journal { padding: 64px 20px; }
      .journal-card { padding: 28px 20px; min-height: 160px; }

      .contact { padding: 64px 20px 48px; gap: 36px; }
      .contact-title { font-size: clamp(32px, 8vw, 52px); }
      .cta-btn { padding: 16px 28px; align-self: stretch; justify-content: center; }

      footer { padding: 20px; gap: 8px; }
    }

body.admin-bar nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar nav { top: 46px; } }

.menu-links a, .journal-title a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.inner-page, .single-journal-page {
  padding: 140px 64px 100px;
}
.journal-archive-simple {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
}
.single-journal-article {
  max-width: 860px; margin: 0 auto;
  border-top: 1px solid rgba(12,12,12,.08);
  padding-top: 48px;
}
.single-journal-meta {
  font-family: var(--sans); font-weight: 300; font-size: 9px; letter-spacing: .3em; text-transform: uppercase; opacity: .5; margin-bottom: 24px;
}
.single-journal-title {
  font-family: var(--serif); font-weight: 300; font-size: clamp(42px, 5vw, 72px); line-height: 1.02; letter-spacing: -.02em; margin-bottom: 28px;
}
.single-journal-thumb { margin: 28px 0 36px; }
.single-journal-content, .single-journal-content p, .single-journal-content li {
  font-family: var(--sans); font-weight: 300; font-size: 18px; line-height: 1.9; color: rgba(12,12,12,.78);
}
.single-journal-content h2, .single-journal-content h3, .single-journal-content h4 {
  font-family: var(--serif); font-weight: 400; color: var(--black); margin: 34px 0 14px;
}
.single-journal-content a { color: var(--indigo); }
.single-journal-content ul, .single-journal-content ol { margin-left: 24px; }

@media (max-width: 860px) {
  .inner-page, .single-journal-page { padding: 110px 28px 70px; }
  .journal-archive-simple { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .inner-page, .single-journal-page { padding: 96px 20px 56px; }
}

/* ══ JOURNAL / CONTACT PAGES ══ */
.inner-page, .single-journal-page, .contact-page-shell {
  padding: 140px 64px 100px;
}

.inner-journal-page {
  border-top: 1px solid transparent;
}

.journal-archive-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.archive-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--black);
  margin: 0 0 16px;
}
.archive-title em { font-style: italic; color: var(--indigo); }
.archive-intro {
  max-width: 640px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(12,12,12,.62);
}
.journal-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.journal-link-secondary { opacity: .65; }
.journal-title a {
  color: inherit;
  text-decoration: none;
}
.journal-title a:hover { color: var(--indigo); }
.journal-pagination {
  padding-top: 20px;
}
.journal-pagination .nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.journal-pagination a,
.journal-pagination span {
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(12,12,12,.14);
  padding: 12px 14px;
}
.journal-pagination .current {
  background: rgba(29,46,80,.06);
  border-color: rgba(29,46,80,.16);
}

.single-journal-article {
  max-width: 860px;
  margin: 0 auto;
}
.single-journal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--black);
  opacity: .6;
  margin-bottom: 22px;
}
.single-journal-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--black);
  margin: 0 0 32px;
}
.single-journal-thumb { margin: 28px 0 36px; }
.single-journal-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.single-journal-content {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 2;
  letter-spacing: .03em;
  color: rgba(12,12,12,.78);
}
.single-journal-content p,
.single-journal-content ul,
.single-journal-content ol,
.single-journal-content blockquote {
  margin: 0 0 1.35em;
}
.single-journal-content h2,
.single-journal-content h3,
.single-journal-content h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin: 1.6em 0 .5em;
}
.single-journal-content a { color: var(--indigo); }
.single-journal-content ul, .single-journal-content ol { margin-left: 24px; }

.contact-page-hero {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(12,12,12,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.contact-page-content {
  max-width: 860px;
  padding-top: 56px;
  margin-left: auto;
}
.contact-page-section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  color: var(--black);
  margin: 0 0 22px;
}

@media (max-width: 1100px) {
  .inner-page, .single-journal-page, .contact-page-shell { padding: 120px 40px 80px; }
  .journal-archive-head { grid-template-columns: 200px 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  .inner-page, .single-journal-page, .contact-page-shell { padding: 110px 28px 70px; }
  .journal-archive-head,
  .contact-page-hero { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 540px) {
  .inner-page, .single-journal-page, .contact-page-shell { padding: 96px 20px 56px; }
  .single-journal-content { font-size: 17px; line-height: 1.95; }
  .journal-actions { gap: 14px; }
}
