/* =========================================================
       01. TOKENS + RESET
       ========================================================= */
    :root {
      --black: #0a0a0a;
      --white: #ffffff;
      --cacao: #4a2c1a;
      --cacao-soft: #6b3e24;
      --muted: #6e6e6e;
      --muted-dark: #9a9a9a;
      --line: rgba(10, 10, 10, 0.12);
      --line-light: rgba(255, 255, 255, 0.14);
      --font-display: "Syne", sans-serif;
      --font-body: "Outfit", sans-serif;
      --pad: max(clamp(1.25rem, 4vw, 4.5rem), calc((100vw - 1920px) / 2 + 4.5rem));
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --nav-h: 88px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { background: var(--black); color: var(--white); }
    body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 18px;
      line-height: 1.65;
      overflow-x: hidden;
      cursor: none;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; cursor: none; }
    button { font-family: inherit; cursor: none; border: 0; background: none; color: inherit; }
    ul { list-style: none; }
    .skip-link {
      position: absolute; left: -999px; top: 0; background: var(--white); color: var(--black);
      padding: 0.75rem 1rem; z-index: 9999;
    }
    .skip-link:focus { left: 1rem; top: 1rem; }

    /* =========================================================
       02. CURSOR
       ========================================================= */
    .cursor {
      position: fixed; top: 0; left: 0; width: 12px; height: 12px;
      border: 1.5px solid var(--white); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      mix-blend-mode: difference;
      transform: translate(-50%, -50%);
      transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
    }
    .cursor.is-hover {
      width: 44px; height: 44px; background: rgba(255,255,255,0.08);
    }
    .cursor-dot {
      position: fixed; top: 0; left: 0; width: 4px; height: 4px;
      background: var(--white); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      mix-blend-mode: difference;
      transform: translate(-50%, -50%);
    }

    /* =========================================================
       03. TYPOGRAPHY + BUTTONS
       ========================================================= */
    .pre {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #fac5a7;
    }
    .section-dark .pre { color: #c4a484; }
    h1, h2, h3, .display {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 0.95;
    }
    .lead {color: var(--muted); }
    .section-dark .lead { color: var(--muted-dark); }

    .btn {
      display: inline-flex; align-items: center; gap: 0.65rem;
      min-height: 48px; padding: 0.85rem 1.6rem;
      border: 1px solid currentColor;
      font-family: var(--font-body);
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-ghost { background: transparent; color: var(--white); }
    .btn-ghost:hover { background:#25d366; color: var(--black); }
    .btn-solid { background: var(--black); color: var(--white); border-color: var(--black); }
    .btn-solid:hover { background: var(--cacao); border-color: var(--cacao); }
    .btn-outline-dark { border-color: var(--black); color: var(--black); }
    .btn-outline-dark:hover { background: var(--black); color: var(--white); }
    .btn svg { width: 16px; height: 16px;  }

    .word { display: inline-block; overflow: hidden; vertical-align: top; }
    .word span { display: inline-block; transform: translateY(110%); }

    /* =========================================================
       04. NAVBAR
       ========================================================= */
    .nav {
      position: fixed; inset: 0 0 auto 0; z-index: 100;
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 var(--pad);
      height: var(--nav-h);
      background: transparent;
      border-bottom: 1px solid transparent;
      color: var(--white);
      transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
    }
    .nav.scrolled {
      background: rgba(10, 10, 10, 0.94);
      backdrop-filter: blur(16px);
      border-bottom-color: var(--line-light);
    }
    .nav.nav-solid {
      background: rgba(10, 10, 10, 0.94);
      backdrop-filter: blur(16px);
      border-bottom-color: var(--line-light);
    }
    .nav-logo { justify-self: start; color: var(--white); display: flex; align-items: center; }
    .nav-logo svg, .logo { height: 42px; width: auto; display: block; }
    .nav-menu {
      display: flex; gap: 2.25rem;
      font-size: 16px; font-weight: 400; letter-spacing: 0.08em;
    }
    .nav-menu a { position: relative; padding: 0.4rem 0; }
    .nav-menu a::after {
      content: ""; position: absolute; left: 0; bottom: 0;
      width: 0; height: 1px; background: currentColor;
      transition: width 0.35s var(--ease);
    }
    .nav-menu a:hover::after { width: 100%; }
    .nav-cta { justify-self: end; }
    .nav-cta .btn { padding: 0.7rem 1.15rem; font-size: 12px; }
    .nav-toggle {
      display: none; width: 44px; height: 44px;
      align-items: center; justify-content: center; flex-direction: column; gap: 6px;
    }
    .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); }

    /* =========================================================
       05. HERO
       ========================================================= */
    .hero {
      position: relative;
      min-height: 100vh; min-height: 100dvh;
      display: flex; align-items: flex-end;
      padding: calc(var(--nav-h) + 2rem) var(--pad) 5rem;
      overflow: hidden;
      margin: 0;
    }
    .hero-media {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-media video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      z-index: 1;
    }
    .hero-fallback {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse at 20% 80%, rgba(74,44,26,0.55), transparent 50%),
        linear-gradient(180deg, #1a100c 0%, #0a0a0a 100%);
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 2;
      background:
        linear-gradient(180deg, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.28) 22%, rgba(10,10,10,0.55) 58%, rgba(10,10,10,0.92) 100%),
        radial-gradient(ellipse at 30% 70%, rgba(74,44,26,0.22), transparent 55%);
    }
    .hero-grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1.4fr 0.8fr;
      gap: 4rem; width: 100%; align-items: end;
    }
    .hero h1 {
      font-size: clamp(3.2rem, 8.4vw, 7.4rem);
      max-width: 14ch;
      margin: 1.1rem 0 1.6rem;
    }
    .hero-copy .lead { color: rgba(255,255,255,0.72); margin-bottom: 3.2rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
    .hero-aside {
      justify-self: end; text-align: right;
      font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      padding-bottom: 0.4rem;
    }
    .hero-scroll {
      position: absolute; right: var(--pad); bottom: 2rem; z-index: 1;
      writing-mode: vertical-rl;
      font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* =========================================================
       06. MARQUEE
       ========================================================= */
    .marquee {
      overflow: hidden; border-top: 1px solid var(--line-light);
      border-bottom: 1px solid var(--line-light);
      background: var(--black); padding: 1.15rem 0;
    }
    .marquee-track {
      display: flex; width: max-content;
      animation: marquee 32s linear infinite;
      gap: 0;
    }
    .marquee-track span {
      font-family: var(--font-display);
      font-size: clamp(1.1rem, 2.2vw, 1.6rem);
      font-weight: 600; letter-spacing: -0.03em;
      padding: 0 1.6rem; white-space: nowrap;
      text-transform: lowercase;
    }
    .marquee-track span::after {
      content: " · "; color: var(--cacao-soft); margin-left: 1.6rem;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* =========================================================
       07. SECTIONS COMMON
       ========================================================= */
    .section { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
    .section-light { background: var(--white); color: var(--black); }
    .section-dark { background: var(--black); color: var(--white); }
    .section-head { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
    .section-head h2, .section-head h1 {
      font-size: clamp(2.6rem, 6.2vw, 5.4rem);
      margin: 0.85rem 0 1.25rem;
      max-width: 16ch;
    }

    /* =========================================================
       08. ABOUT
       ========================================================= */
    .about-grid {
      display: grid; grid-template-columns: 1.15fr 1fr;
      gap: clamp(2rem, 6vw, 7rem); align-items: center;
    }
    .about-media {
      position: relative; overflow: hidden; aspect-ratio: 4 / 5;
      background: #eceae6;
    }
    .about-media img {
      width: 100%; height: 100%; object-fit: cover;
      will-change: transform;
      margin-top:-24px;
    }
    .about-copy h2 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      margin: 0.8rem 0 1.5rem; max-width: 100%;
    }
    .about-copy p { max-width: 100%; color: var(--muted); margin-bottom: 1.8rem; }
    .quote {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 1.7rem);
      font-weight: 500; line-height: 1.25; letter-spacing: -0.03em;
      max-width: 100%; margin: 2.2rem 0 2.4rem;
      border-left: 2px solid var(--cacao); padding-left: 1.4rem;
    }
    .tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .tag {
      border: 1px solid var(--line); padding: 0.45rem 0.9rem;
      font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    }

    /* =========================================================
       09. SERVICES
       ========================================================= */
    .service-row {
      display: grid; grid-template-columns: 1.5fr 1fr;
      gap: clamp(2rem, 5vw, 6rem);
      align-items: center;
      padding: clamp(3rem, 6vw, 5.5rem) 0;
      border-top: 1px solid var(--line-light);
    }
    .service-row.reverse { grid-template-columns: 1fr 1.5fr; }
    .service-row.reverse .service-copy { order: 2; }
    .service-row.reverse .service-copy {
      text-align: right;
    }
    .service-row.reverse .service-copy p,
    .service-row.reverse .service-copy h3 {
      margin-left: auto;
    }
    .service-row h3 {
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      margin: 0.7rem 0 1.2rem; max-width: 14ch;
    }
    .service-row p { max-width: 42ch; color: var(--muted-dark); margin-bottom: 1.8rem; }
    .service-media { overflow: hidden; aspect-ratio: 4 / 5; }
    .service-media img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }

    .service-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--line-light);
      border: 1px solid var(--line-light); margin-top: 1px;
    }
    .service-card {
      background: var(--black); padding: clamp(1.8rem, 3vw, 2.8rem);
      min-height: auto;
      display: flex; flex-direction: column;
      transition: background 0.35s var(--ease);
    }
    .service-card:hover { background: #141414; }
    .service-card h3 {
      font-size: clamp(1.4rem, 2vw, 1.85rem);
      margin: 0.55rem 0 0.7rem;
    }
    .service-card p { color: var(--muted-dark); font-size: 18px; }

    /* =========================================================
       10. PROCESS
       ========================================================= */
    .process-progress {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      margin: 0 0 2.4rem;
    }
    .process-progress::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: #d9d4ce;
      transform: translateY(-50%);
    }
    .process-progress::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 12.5%;
      width: 75%;
      height: 2px;
      background: var(--cacao);
      transform: translateY(-50%);
    }
    .process-node {
      position: relative;
      z-index: 1;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cacao);
      color: var(--white);
      display: grid;
      place-items: center;
      justify-self: center;
    }
    .process-node svg { width: 16px; height: 16px; display: block; }
    .process-node.is-current {
      box-shadow: 0 0 0 5px var(--white), 0 0 0 7px var(--cacao);
    }
    .process-track {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .process-item {
      background: #f3f1ee;
      padding: 2rem 1.5rem 1.8rem;
      min-height: 260px;
      display: flex; flex-direction: column;
    }
    .process-item:nth-child(1) { background: #f6f5f3; }
    .process-item:nth-child(2) { background: #efece8; }
    .process-item:nth-child(3) { background: #e7e2dc; }
    .process-item:nth-child(4) { background: #ddd6ce; }
    .process-num {
      font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
      letter-spacing: -0.05em; color: var(--cacao); line-height: 1;
      margin-bottom: 1.2rem;
    }
    .process-item h3 {
      font-size: 1.45rem; margin-bottom: 0.7rem;
    }
    .process-item p { color: var(--muted); max-width: 28ch; font-size: 0.98rem; flex: 1; }
    .process-step {
      margin-top: 1.4rem;
      font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--cacao-soft);
    }

    /* =========================================================
       11. PORTFOLIO
       ========================================================= */
    .filters {
      display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.4rem;
    }
    .filter {
      min-height: 44px; padding: 0.5rem 1rem;
      border: 1px solid var(--line-light);
      font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--muted-dark);
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    .filter.is-active, .filter:hover {
      background: var(--white); color: var(--black); border-color: var(--white);
    }
    .section-light .filter {
      border-color: var(--line); color: var(--muted);
    }
    .section-light .filter.is-active, .section-light .filter:hover {
      background: var(--black); color: var(--white); border-color: var(--black);
    }
    .portfolio-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0.7rem;
    }
    .p-card {
      position: relative; overflow: hidden; aspect-ratio: 4 / 5;
      background: #161616;
    }
    .p-card.hidden { display: none; }
    .p-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.7s var(--ease);
    }
    .p-card:hover img { transform: scale(1.08); }
    .p-overlay {
      position: absolute; inset: 0;
     background: linear-gradient(180deg, rgb(10 10 10 / 0.43) 10%, rgba(10, 10, 10, 0.98) 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.5rem;
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    }
    .p-card:hover .p-overlay, .p-card:focus-within .p-overlay {
      opacity: 1; transform: translateY(0);
    }
    .p-overlay h3 { font-size: 1.45rem; margin: 0.35rem 0 0.5rem; }
    .p-overlay p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }
    .portfolio-cta { margin-top: 3.5rem; display: flex; justify-content: center; }
    .p-overlay .pre { color: #c4a484; }
    .p-overlay h3 { color: var(--white); }

    /* =========================================================
       11a. PÁGINAS SEM HERO — evitar sobreposição do nav fixo
       ========================================================= */
    #lista-portfolio, #single-portfolio {
      padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
    }
    #single-portfolio {
      padding-bottom: clamp(2rem, 4vw, 3rem);
    }
    #single-portfolio .section-head {
      margin-bottom: 0;
    }

    /* =========================================================
       11b. PORTFOLIO SINGLE — MEDIA STACK
       ========================================================= */
    .single-media-wrap {
      background: var(--white);
    }
    .single-media {
      display: flex;
      flex-direction: column;
      max-width: 1200px;
      margin: 0 auto;
    }
    .single-media-item {
      background: var(--white);
    }
    .single-media-item img,
    .single-media-item video {
      width: 100%; height: auto; display: block;
    }
    .single-media-item img { cursor: pointer; }

    /* =========================================================
       11c. LIGHTBOX
       ========================================================= */
    .lightbox {
      position: fixed; inset: 0; z-index: 500;
      background: rgba(10, 10, 10, 0.92);
      display: none; align-items: center; justify-content: center;
      padding: clamp(1.5rem, 5vw, 4rem);
    }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 100%; max-height: 100%; display: block; }
    .lightbox-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      width: 48px; height: 48px; border: 1px solid var(--white); border-radius: 50%;
      display: grid; place-items: center; color: var(--white);
    }
    .lightbox-close svg { width: 18px; height: 18px; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border: 1px solid var(--white); border-radius: 50%;
      background: rgba(10, 10, 10, 0.4);
      display: grid; place-items: center; color: var(--white);
    }
    .lightbox-prev { left: 1.5rem; }
    .lightbox-next { right: 1.5rem; }
    .lightbox-nav svg { width: 18px; height: 18px; }

    /* =========================================================
       12. TESTIMONIALS
       ========================================================= */
#depoimentos {display:none!important;}

    .carousel-wrap { position: relative; overflow: hidden; }
    .carousel {
      display: flex; gap: 1.2rem;
      transition: transform 0.6s var(--ease);
    }
    .t-card {
      flex: 0 0 calc((100% - 2.4rem) / 3);
      border: 1px solid var(--line);
      padding: 2rem 1.7rem 1.7rem;
      min-height: 340px;
      display: flex; flex-direction: column;
    }
    .t-card svg { width: 28px; height: 28px; color: var(--cacao); }
    .stars { display: flex; gap: 3px; margin: 1rem 0 1.1rem; color: var(--cacao); }
    .stars svg { width: 14px; height: 14px; }
    .t-card blockquote {
      font-size: 1.02rem; line-height: 1.55; flex: 1;
      color: #2a2a2a;
    }
    .t-person { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.6rem; }
    .t-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
    .t-person strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
    .t-person span { font-size: 12px; color: var(--muted); }
    .carousel-nav {
      display: flex; gap: 0.6rem; margin-top: 2rem;
    }
    .carousel-nav button {
      width: 48px; height: 48px; border: 1px solid var(--black);
      display: grid; place-items: center;
      transition: background 0.25s, color 0.25s;
    }
    .carousel-nav button:hover { background: var(--black); color: var(--white); }

    /* =========================================================
       13. FINAL CTA + FOOTER
       ========================================================= */
    .final-cta {
      text-align: center; padding: clamp(6rem, 14vw, 11rem) var(--pad);
      background:
        radial-gradient(ellipse at 50% 120%, rgba(74,44,26,0.55), transparent 55%),
        var(--black);
    }
    .final-cta h2 {
      font-size: clamp(2.8rem, 7vw, 6.2rem);
      margin: 0 auto 1.4rem; max-width: 14ch;
    }
    .final-cta p {
      max-width: 38ch; margin: 0 auto 2.4rem; color: var(--muted-dark);
    }

    .footer {
      background: var(--black); color: var(--white);
      padding: 3rem var(--pad) 2rem;
      border-top: 1px solid var(--line-light);
      display: grid; grid-template-columns: 1.2fr 1fr 1fr auto;
      gap: 2rem; align-items: start;
    }
    .footer svg.logo { height: 42px; width: auto; }
    .footer a { color: var(--muted-dark); transition: color 0.25s; }
    .footer a:hover { color: var(--white); }
    .footer p, .footer a { font-size: 18px; }
    .socials { display: flex; gap: 0.8rem; }
    .socials a {
      width: 44px; height: 44px; 
      display: grid; place-items: center;
    }
    .socials svg { width: 28px; height: 28px;display:none; }
    .copy {
      grid-column: 1 / -1; padding-top: 1.6rem; margin-top: 1rem;
      border-top: 1px solid var(--line-light);
      font-size: 12px!important; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 0.5rem;
    }

    /* =========================================================
       14. REVEAL + A11Y
       ========================================================= */
    .reveal { opacity: 0; transform: translateY(28px); }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation: none !important; transition: none !important; scroll-behavior: auto !important;
      }
      .reveal, .word span { opacity: 1; transform: none; }
      .cursor, .cursor-dot { display: none; }
      body { cursor: auto; }
      a, button { cursor: pointer; }
    }

    /* =========================================================
       15. RESPONSIVE
       ========================================================= */
    @media (max-width: 1199px) {
      .about-grid, .service-row, .service-row.reverse,
      .portfolio-grid, .footer {
        grid-template-columns: 1fr 1fr;
      }
      .hero-grid { grid-template-columns: 2fr 1fr; }
      .about-media { aspect-ratio: 9 / 16; }
      .service-row.reverse .service-copy { order: 0; }
      .process-progress { display: none; }
      .process-track { grid-template-columns: 1fr 1fr; }
      .process-item { min-height: 220px; }
      .t-card { flex-basis: calc((100% - 1.2rem) / 2); }
      .hero-aside { display: none; }
      #portfolio .portfolio-grid .p-card:nth-child(9) { display: none; }
      .footer { justify-items: center; text-align: center; }
    }
    @media (max-width: 959px) {
      body { cursor: auto; }
      .cursor, .cursor-dot { display: none; }
      a, button { cursor: pointer; }
      .nav { grid-template-columns: 1fr auto; }
      .nav-menu {
        position: fixed; inset: var(--nav-h) 0 0 0;
        height: calc(100vh - var(--nav-h));
        height: calc(100dvh - var(--nav-h));
        background: var(--black);
        flex-direction: column; align-items: flex-start;
        padding: 2.4rem var(--pad); gap: 1.4rem;
        font-size: 1.6rem; font-family: var(--font-display);
        transform: translateX(100%); transition: transform 0.45s var(--ease);
      }
      .nav-menu.open { transform: none; }
      .nav-cta { display: none; }
      .nav-toggle { display: flex; justify-self: end; }
      .hero-grid, .about-grid, .service-row, .service-row.reverse,
      .portfolio-grid, .service-cards {
        grid-template-columns: 1fr;
      }
      .service-row.reverse .service-copy {
        text-align: left;
      }
      .service-row.reverse .service-copy p,
      .service-row.reverse .service-copy h3 {
        margin-left: 0;
      }
      .service-row:not(.reverse) .service-media { order: -1; }
      .process-track { grid-template-columns: 1fr; }
      .process-item { min-height: auto; }
      .t-card { flex-basis: 100%; min-height: 170px; }
      .hero { align-items: flex-end; padding-bottom: 4rem; }
      .copy { flex-direction: column; align-items: flex-start; }
      .filter { padding: 0.5rem 0.49rem; }
      .p-card { aspect-ratio: 3 / 2; }
      .footer { grid-template-columns: 1fr 1fr; justify-items: center; text-align: center; }
    }
    @media (max-width: 767px) {
      .hero h1 { font-size: clamp(3.0rem, 8.4vw, 7.4rem); }
      h1, h2, h3, .display { line-height: 1.15; }
      .section-head h2, .section-head h1 { font-size: clamp(2.2rem, 6.2vw, 5.4rem); }
      .btn { padding: 0.85rem 1.0rem; }
      .footer { grid-template-columns: 1fr; }
      .copy { align-items: center; text-align: center; }
.p-card {aspect-ratio: 4 / 5;}
    }
