    :root {
      --ink: #241913;
      --muted: #71645b;
      --paper: #fffaf0;
      --paper-2: #f3eadc;
      --moss: #597247;
      --moss-dark: #304426;
      --clay: #b65f38;
      --amber: #e7b45f;
      --line: rgba(36, 25, 19, .14);
      --shadow: 0 26px 70px rgba(56, 37, 22, .18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      background: #fffaf0;
    }

    body {
      margin: 0;
      min-width: 100%;
      min-height: 100vh;
      color: var(--ink);
      font-family: "Source Han Sans TC", "Noto Sans TC", "思源黑體", "Microsoft JhengHei", Arial, sans-serif;
      line-height: 1.7;
      background: linear-gradient(180deg, #fffaf0 0%, #f3eadc 44%, #fffaf0 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .52;
      background-image:
        linear-gradient(rgba(36, 25, 19, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 25, 19, .025) 1px, transparent 1px);
      background-size: 42px 42px;
      transform: translateY(calc(var(--scroll, 0) * -18px));
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .site-header {
      position: fixed;
      inset: 18px 24px auto;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px 12px 18px;
      border: 1px solid rgba(255, 250, 240, .44);
      border-radius: 999px;
      background: rgba(255, 250, 240, .78);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 40px rgba(52, 35, 20, .12);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-family: "Source Han Sans TC", "Noto Sans TC", "思源黑體", "Microsoft JhengHei", Arial, sans-serif;
      font-weight: 500;
      letter-spacing: .18em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      object-fit: contain;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 4px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }

    nav a {
      padding: 8px 11px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 48%, rgba(159, 195, 178, .28) 100%);
      background-size: 220% 220%;
      background-position: 0% 50%;
      transition: color .3s ease, background-position .42s ease;
    }

    nav a:hover {
      color: var(--ink);
      background-position: 100% 50%;
    }

    .header-cta {
      padding: 9px 16px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: #fffaf0;
      background: var(--clay);
      font-weight: 600;
      box-shadow: 0 10px 24px rgba(182, 95, 56, .24);
      white-space: nowrap;
      transition: color .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease;
    }

    .header-cta:hover {
      color: var(--clay);
      border-color: rgba(182, 95, 56, .28);
      background: #fff4e6;
      box-shadow: 0 10px 24px rgba(182, 95, 56, .14);
    }

    main {
      position: relative;
    }

    .section {
      position: relative;
      padding: 108px 24px;
    }

    .wrap {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .hero {
      min-height: 100vh;
      padding: 96px 24px 64px;
      display: grid;
      align-items: center;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .94fr) minmax(390px, .78fr);
      gap: 44px;
      align-items: center;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--moss-dark);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: none;
    }

    .kicker::before {
      content: "";
      width: 46px;
      height: 2px;
      background: var(--clay);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 860px;
      margin-bottom: 22px;
      font-size: clamp(46px, 8vw, 112px);
      line-height: 1.08;
      letter-spacing: 0;
      font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
      font-weight: 700;
    }

    .title-line {
      display: block;
    }

    h1 .title-accent {
      color: var(--moss);
    }

    .hero-copy {
      max-width: 670px;
      color: var(--muted);
      font-size: 19px;
    }

    .hero-actions,
    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 19px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: .08em;
      background: linear-gradient(135deg, #ffffff 0%, #ffffff 48%, #e7f1ec 100%);
      background-size: 220% 220%;
      background-position: 0% 50%;
      transition: transform .24s ease, box-shadow .24s ease, color .32s ease, border-color .32s ease, background-position .42s ease;
    }

    .btn:hover {
      color: #304426;
      border-color: rgba(159, 195, 178, .42);
      background-position: 100% 50%;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(56, 37, 22, .16);
    }

    .btn.primary {
      color: #fffaf0;
      border-color: transparent;
      background: linear-gradient(135deg, #304426 0%, #9fc3b2 100%);
      background-size: 220% 220%;
      background-position: 0% 50%;
    }

    .btn.primary:hover {
      color: #fffaf0;
      background-position: 100% 50%;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      transform: translateY(calc(var(--scroll, 0) * 34px));
    }

    .portrait {
      position: absolute;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: var(--shadow);
      background: #fffaf0;
      transform-origin: center;
    }

    .portrait.main {
      inset: 42px 4% 18px 10%;
      border: solid #fffaf0;
      border-width: 12px 12px 34px;
      transform: rotate(-2.2deg);
    }

    .portrait.small {
      left: 0;
      bottom: 6%;
      z-index: 2;
      width: 42%;
      height: 33%;
      border: solid #fffaf0;
      border-width: 9px 9px 26px;
      transform: translateY(calc(var(--scroll, 0) * -34px)) rotate(4.5deg);
    }

    .portrait.tall {
      top: 4px;
      right: 2%;
      z-index: 3;
      width: 35%;
      height: 32%;
      border: solid #fffaf0;
      border-width: 8px 8px 24px;
      transform: translateY(calc(var(--scroll, 0) * -22px)) rotate(3deg);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .75fr) minmax(280px, .45fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 42px;
    }

    .section-head.centered {
      display: block;
      max-width: 820px;
      margin-inline: auto;
      text-align: center;
    }

    .section-head.centered p {
      max-width: 680px;
      margin: 18px auto 0;
    }

    .section-head.gallery-head {
      margin-bottom: 34px;
    }

    h2 {
      margin-bottom: 0;
      font-family: Georgia, "Times New Roman", "Noto Serif TC", serif;
      font-size: clamp(34px, 5vw, 68px);
      line-height: 1.2;
      letter-spacing: 0;
    }

    .section-head p,
    .lead {
      color: var(--muted);
      font-size: 18px;
    }

    .intro-band {
      padding: 76px 24px;
      color: #fffaf0;
      background:
        radial-gradient(circle at 38% 24%, rgba(82, 121, 74, .72), rgba(23, 45, 32, .44) 34%, rgba(9, 24, 17, 0) 64%),
        linear-gradient(180deg, #183323 0%, #07140e 100%);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
      gap: 42px;
      align-items: start;
    }

    .intro-grid > .reveal:last-child {
      padding-top: 54px;
    }

    .intro-band h2 {
      color: #fffaf0;
    }

    .intro-band p {
      color: rgba(255, 250, 240, .78);
    }

    .intro-grid .stats {
      margin-bottom: 18px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat {
      min-height: 92px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      padding: 16px 12px;
      border: 1px solid rgba(255, 250, 240, .18);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, .08);
      text-align: center;
      line-height: 1.35;
    }

    .stat strong {
      display: block;
      color: var(--amber);
      font-size: 28px;
      line-height: 1;
      font-family: "Source Han Sans TC", "Noto Sans TC", "思源黑體", "Microsoft JhengHei", Arial, sans-serif;
      font-weight: 900;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 30px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffbf3;
      box-shadow: 0 18px 46px rgba(56, 37, 22, .08);
      transition: transform .42s cubic-bezier(.2, .8, .2, 1), border-color .42s ease, background .42s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 8px;
      z-index: 0;
      background: #c9825a;
      opacity: 0;
      transition: opacity .36s ease;
    }

    .service-card > * {
      position: relative;
      z-index: 1;
    }

    .service-card:hover {
      transform: translateY(-3px);
      border-color: rgba(201, 130, 90, .42);
      background: #fff4e6;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card span {
      display: none;
    }

    .service-card h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .service-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .gallery {
      padding-top: 64px;
      padding-bottom: 92px;
      color: #fffaf0;
      background:
        radial-gradient(circle at 38% 24%, rgba(82, 121, 74, .72), rgba(23, 45, 32, .44) 34%, rgba(9, 24, 17, 0) 64%),
        linear-gradient(180deg, #183323 0%, #07140e 100%);
    }

    .gallery .section-head {
      max-width: 560px;
      margin-bottom: 46px;
    }

    .gallery h2 {
      color: #fffaf0;
    }

    .gallery-grid {
      display: grid;
      width: min(1120px, 100%);
      margin: 0 auto;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: 82px;
      gap: 8px;
    }

    .work {
      position: relative;
      overflow: hidden;
      height: auto;
      margin: 0;
      border: 0;
      border-radius: 8px;
      box-shadow: 0 20px 52px rgba(20, 14, 10, .18);
      background: rgba(255, 250, 240, .1);
      cursor: zoom-in;
      isolation: isolate;
      transition: transform .55s cubic-bezier(.2, .8, .2, 1), box-shadow .55s cubic-bezier(.2, .8, .2, 1), border-color .55s ease;
    }

    .work:nth-child(1) {
      grid-column: 1 / span 5;
      grid-row: 1 / span 3;
    }

    .work:nth-child(2) {
      grid-column: 6 / span 4;
      grid-row: 1 / span 3;
    }

    .work:nth-child(3) {
      grid-column: 10 / span 3;
      grid-row: 1 / span 7;
    }

    .work:nth-child(4) {
      grid-column: 1 / span 5;
      grid-row: 4 / span 2;
    }

    .work:nth-child(5) {
      grid-column: 6 / span 4;
      grid-row: 4 / span 2;
    }

    .work:nth-child(6) {
      grid-column: 1 / span 3;
      grid-row: 6 / span 2;
    }

    .work:nth-child(7) {
      grid-column: 4 / span 3;
      grid-row: 6 / span 2;
    }

    .work:nth-child(8) {
      grid-column: 7 / span 3;
      grid-row: 6 / span 2;
    }

    .work::after {
      content: attr(data-label);
      position: absolute;
      z-index: 2;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 8px 10px;
      border-radius: 999px;
      color: #fffaf0;
      background: rgba(36, 25, 19, .5);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .08em;
      text-align: center;
      white-space: nowrap;
      backdrop-filter: blur(8px);
      transition: background .55s ease;
    }

    .work img {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      scale: 1;
      transition: scale .9s cubic-bezier(.18, .84, .22, 1), filter .9s cubic-bezier(.18, .84, .22, 1);
      backface-visibility: hidden;
      will-change: scale, filter;
    }

    .work:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(20, 14, 10, .26);
    }

    .work:hover::after {
      background: rgba(48, 68, 38, .78);
    }

    .work:hover img {
      scale: 1.07;
      filter: saturate(1.05) contrast(1.03);
    }

    .wide {
      grid-column: auto;
      grid-row: auto;
    }

    .square {
      grid-column: auto;
      grid-row: auto;
    }

    .tall-card {
      grid-column: auto;
      grid-row: auto;
    }

    .medium {
      grid-column: auto;
      grid-row: auto;
    }

    .process {
      background: #fffaf0;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fffdf7;
      box-shadow: 0 22px 60px rgba(56, 37, 22, .08);
    }

    .step {
      min-height: 0;
      padding: 34px 26px 30px;
      border-right: 1px solid var(--line);
    }

    .step:last-child {
      border-right: 0;
    }

    .step span {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: var(--clay);
      font-family: "Source Han Sans TC", "Noto Sans TC", "思源黑體", "Microsoft JhengHei", Arial, sans-serif;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .step span::after {
      content: "";
      width: 34px;
      height: 1px;
      background: rgba(182, 95, 56, .48);
    }

    .step h3 {
      margin-bottom: 10px;
      font-size: 21px;
    }

    .step p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .press {
      color: #fffaf0;
      background:
        linear-gradient(rgba(36, 25, 19, .72), rgba(36, 25, 19, .72)),
        url("../image/pet-901.jpg") center 38% / cover fixed;
    }

    .press .kicker {
      color: #fffaf0;
    }

    .press h2 {
      font-size: clamp(32px, 4.2vw, 56px);
      white-space: nowrap;
    }

    .press-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 52px;
    }

    .video-card {
      position: relative;
      display: block;
      min-height: 230px;
      overflow: hidden;
      border: 1px solid rgba(255, 250, 240, .2);
      border-radius: var(--radius);
      color: #fffaf0;
      background: rgba(255, 250, 240, .09);
      box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
    }

    .video-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: scale .75s cubic-bezier(.18, .84, .22, 1), filter .75s cubic-bezier(.18, .84, .22, 1);
    }

    .video-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(36, 25, 19, .08), rgba(36, 25, 19, .72));
    }

    .video-card:hover img {
      scale: 1.06;
      filter: saturate(1.05) contrast(1.04);
    }

    .video-card strong {
      position: absolute;
      z-index: 2;
      left: 18px;
      right: 18px;
      bottom: 16px;
      font-size: 18px;
    }

    .play-mark {
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 50%;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: rgba(255, 250, 240, .9);
      transform: translate(-50%, -50%);
      box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
    }

    .play-mark::before {
      content: "";
      width: 0;
      height: 0;
      margin-left: 4px;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-left: 17px solid var(--clay);
    }

    .press-item {
      min-height: 170px;
      padding: 20px;
      border: 1px solid rgba(255, 250, 240, .2);
      border-radius: var(--radius);
      background: rgba(255, 250, 240, .09);
      backdrop-filter: blur(10px);
    }

    .press-item strong {
      display: block;
      margin-bottom: 10px;
      color: var(--amber);
      font-size: 18px;
    }

    .press-item p {
      margin: 0;
      color: rgba(255, 250, 240, .78);
    }

    .contact {
      padding-top: 100px;
      padding-bottom: 58px;
    }

    .contact-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(330px, .62fr);
      gap: 74px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      align-items: start;
    }

    .contact-panel > div:first-child {
      max-width: 760px;
    }

    .contact-panel h2 {
      margin-bottom: 34px;
    }

    .contact-panel .lead {
      max-width: 720px;
      line-height: 1.9;
      margin-bottom: 0;
    }

    .contact-panel .contact-actions {
      margin-top: 34px;
    }

    .contact-info {
      display: grid;
      gap: 12px;
      align-self: start;
      padding-top: 54px;
    }

    .info-row {
      min-height: 86px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 16px 18px;
      border-radius: var(--radius);
      background: rgba(89, 114, 71, .09);
    }

    .map-embed {
      min-height: 180px;
      overflow: hidden;
      border-radius: var(--radius);
      background: rgba(89, 114, 71, .09);
    }

    .map-embed iframe {
      display: block;
      width: 100%;
      height: 180px;
      border: 0;
    }

    .process-note {
      max-width: 720px;
      margin: 28px auto 0;
      color: var(--muted);
      text-align: center;
      font-size: 18px;
    }

    .info-row span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .info-row strong {
      display: block;
      margin-top: 8px;
      font-size: 21px;
      line-height: 1.35;
    }

    .footer {
      padding: 28px 24px 36px;
      color: var(--muted);
      text-align: center;
      font-size: 14px;
    }

    .footer a {
      color: var(--clay);
      text-underline-offset: 4px;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 72px 24px 32px;
      background: rgba(20, 14, 10, .84);
      backdrop-filter: blur(12px);
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox img {
      width: auto;
      height: auto;
      max-width: min(1120px, 94vw);
      max-height: 84vh;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 30px 90px rgba(0, 0, 0, .44);
      background: #fffaf0;
    }

    .lightbox-close {
      position: absolute;
      top: 22px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 250, 240, .42);
      border-radius: 50%;
      color: #fffaf0;
      background: rgba(36, 25, 19, .42);
      cursor: pointer;
      font-weight: 900;
      font-size: 16px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .work.reveal {
      opacity: 1;
      transform: none;
      transition:
        box-shadow .65s cubic-bezier(.2, .8, .2, 1);
    }

    .work.reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 980px) {
      .site-header {
        inset: 12px 12px auto;
        border-radius: 18px;
        align-items: flex-start;
      }

      nav {
        display: none;
      }

      .hero-grid,
      .section-head,
      .intro-grid,
      .contact-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 104px;
        align-items: start;
      }

      .hero-visual {
        min-height: 500px;
        transform: translateY(calc(var(--scroll, 0) * 22px));
      }

      .contact-panel {
        gap: 26px;
        align-items: start;
      }

      .intro-grid > .reveal:last-child,
      .contact-info {
        padding-top: 0;
      }

      .contact-info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .info-row {
        min-height: 88px;
      }

      .service-grid,
      .timeline,
      .press-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .step:nth-child(2) {
        border-right: 0;
      }

      .step {
        border-bottom: 1px solid var(--line);
      }

      .step:nth-last-child(-n + 2) {
        border-bottom: 0;
      }

      .gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 82px;
        gap: 8px;
      }

      .work:nth-child(1),
      .work:nth-child(2),
      .work:nth-child(5),
      .work:nth-child(8) {
        grid-column: span 3;
        grid-row: span 3;
      }

      .work:nth-child(3),
      .work:nth-child(4),
      .work:nth-child(6),
      .work:nth-child(7) {
        grid-column: span 3;
        grid-row: span 2;
      }
    }

    @media (max-width: 640px) {
      .site-header {
        padding: 10px;
      }

      .brand {
        font-size: 14px;
        letter-spacing: .1em;
        flex: 1 1 auto;
      }

      .brand span {
        min-width: 0;
      }

      .header-cta {
        padding: 8px 12px;
        font-size: 13px;
      }

      .section {
        padding: 78px 16px;
      }

      .hero {
        min-height: auto;
        padding: 96px 16px 42px;
      }

      h1 {
        font-size: 44px;
      }

      .hero-copy,
      .section-head p,
      .lead {
        font-size: 16px;
      }

      .hero-visual {
        min-height: 410px;
      }

      .portrait.main {
        inset: 52px 3% 28px 10%;
        border-width: 9px 9px 26px;
      }

      .portrait.small {
        width: 46%;
        height: 29%;
        border-width: 7px 7px 20px;
      }

      .portrait.tall {
        width: 38%;
        border-width: 7px 7px 20px;
      }

      .service-grid,
      .timeline,
      .press-list {
        grid-template-columns: 1fr;
      }

      .stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
      }

      .stat {
        min-height: 76px;
        padding: 12px 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        font-size: 12px;
        line-height: 1.35;
      }

      .stat strong {
        font-size: 22px;
      }

      .service-card {
        min-height: 0;
      }

      .step {
        min-height: auto;
      }

      .step span {
        margin-bottom: 16px;
      }

      .step,
      .step:nth-child(2),
      .step:nth-last-child(-n + 2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .step:last-child {
        border-bottom: 0;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px;
        gap: 12px;
      }

      .work:nth-child(1),
      .work:nth-child(2),
      .work:nth-child(3),
      .work:nth-child(4),
      .work:nth-child(5),
      .work:nth-child(6),
      .work:nth-child(7),
      .work:nth-child(8) {
        grid-column: 1;
        grid-row: span 1;
      }

      .wide,
      .medium,
      .square,
      .tall-card {
        grid-column: 1;
        grid-row: span 1;
      }

      .gallery-grid .work:nth-last-child(2),
      .gallery-grid .work:last-child {
        grid-column: 1;
      }

      .gallery-grid .work:nth-child(3) img {
        object-position: 58% 100%;
      }

      .work::after {
        font-size: 13px;
      }

      .press h2 {
        font-size: clamp(15px, 5vw, 22px);
        line-height: 1.35;
        white-space: nowrap;
      }

      .contact-panel {
        padding: 0;
      }

      .contact-info {
        grid-template-columns: 1fr;
      }

      .info-row {
        min-height: 84px;
        padding: 14px 18px;
      }

      .contact-panel .lead {
        line-height: 1.85;
      }

      .contact-actions {
        margin-top: 24px;
        flex-wrap: nowrap;
        gap: 8px;
      }

      .contact-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 11px 10px;
        font-size: 14px;
        letter-spacing: .04em;
        white-space: nowrap;
      }
    }

    @media (max-width: 360px) {
      .brand {
        gap: 8px;
        font-size: 12px;
        letter-spacing: .04em;
      }

      .header-cta {
        padding-inline: 10px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
