:root {
      --red: #e83c35;
      --red-deep: #ed1c24;
      --orange: #f36d21;
      --black: #0b0b0c;
      --charcoal: #171719;
      --ink: #1f2024;
      --paper: #fff9f8;
      --white: #ffffff;
      --soft: #f5f2f1;
      --line: rgba(20, 20, 22, .10);
      --muted: #6d6868;
      --muted-dark: #a9a4a4;
      --glass: rgba(255,255,255,.74);
      --max: 1200px;
      --radius-xl: 42px;
      --radius-lg: 30px;
      --radius-md: 22px;
      --shadow: 0 30px 90px rgba(18, 18, 20, .14);
      --shadow-soft: 0 18px 54px rgba(18, 18, 20, .08);
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-gutter: stable;
    }
    body {
      margin: 0;
      min-height: 100%;
      color: var(--ink);
      background: var(--paper);
      font-family: "DM Sans", "Anuphan", sans-serif;
      overflow-x: hidden;
      overflow-y: visible;
    }
    /* Keep the native page scrollbar usable at all times, including while the mobile menu is open. */

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, textarea { font: inherit; }
    button { color: inherit; }
    .page { overflow-x: hidden; overflow-y: visible; }
    .inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    /* =========================
       NAVIGATION
    ========================== */
    .navbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: 82px;
      display: flex;
      align-items: center;
      background: rgba(11,11,12,.82);
      border-bottom: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(18px);
      transition: .3s ease;
    }
    .navbar.scrolled {
      height: 72px;
      background: rgba(11,11,12,.95);
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
    }
    .nav-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 160px;
    }
    .brand-logo-box {
      width: 146px;
      height: 54px;
      overflow: hidden;
      border-radius: 15px;
      background: #000;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.07);
    }
    .brand-logo-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(1.55);
    }
    .menu {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    .menu a {
      position: relative;
      color: rgba(255,255,255,.76);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .10em;
      text-transform: uppercase;
      transition: .22s ease;
    }
    .menu a:not(.contact-btn)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--orange), var(--red));
      transition: .25s ease;
    }
    .menu a:hover { color: #fff; }
    .menu a:hover::after { right: 0; }
    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 999px;
      color: #fff !important;
      background: linear-gradient(135deg, var(--orange), var(--red));
      box-shadow: 0 14px 34px rgba(232,60,53,.26);
    }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 99px;
      background: #fff;
      transition: .25s ease;
    }

    /* =========================
       HERO
    ========================== */
    .hero {
      position: relative;
      min-height: 100vh;
      padding: 132px 0 84px;
      display: grid;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(8,8,9,.82) 0%, rgba(17,17,20,.76) 48%, rgba(23,16,15,.82) 100%),
        radial-gradient(circle at 78% 22%, rgba(243,109,33,.22), transparent 30%),
        radial-gradient(circle at 74% 70%, rgba(232,60,53,.18), transparent 36%),
        url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .24;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(36px, 6vw, 86px);
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 9px 14px;
      border-radius: 999px;
      color: rgba(255,255,255,.78);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(14px);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 7px rgba(232,60,53,.13);
    }
    .hero h1 {
      margin: 24px 0 0;
      max-width: 760px;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: clamp(50px, 7.6vw, 100px);
      line-height: .91;
      letter-spacing: -.065em;
      font-weight: 800;
    }
    .gradient-text {
      background: linear-gradient(90deg, #ff823a, #f44d32 48%, #e83c35 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-copy {
      max-width: 680px;
      margin: 28px 0 0;
      color: rgba(255,255,255,.66);
      font-size: clamp(16px, 1.45vw, 19px);
      line-height: 1.75;
    }
    .hero-copy strong { color: #fff; }
    .hero .btn-ghost {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      color: #fff;
      backdrop-filter: blur(10px);
    }
    .hero .btn-ghost:hover { background: rgba(255,255,255,.16); }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .btn {
      min-height: 54px;
      padding: 0 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      font-weight: 800;
      transition: .25s ease;
    }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--red));
      box-shadow: 0 20px 48px rgba(232,60,53,.30);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 28px 64px rgba(232,60,53,.38); }
    .btn-ghost {
      color: #fff;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 28px;
      margin-top: 38px;
      color: rgba(255,255,255,.52);
      font-size: 13px;
      font-weight: 700;
    }
    .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta i { color: #ff7350; }

    .hero-visual {
      position: relative;
      min-height: 620px;
      display: grid;
      place-items: center;
    }
    .hero-ring {
      position: absolute;
      width: min(510px, 82vw);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: inset 0 0 0 1px rgba(232,60,53,.10);
      animation: slowSpin 30s linear infinite;
    }
    .hero-ring::before,
    .hero-ring::after {
      content: "";
      position: absolute;
      border-radius: 50%;
    }
    .hero-ring::before {
      inset: 46px;
      border: 1px dashed rgba(243,109,33,.32);
    }
    .hero-ring::after {
      inset: 104px;
      border: 1px solid rgba(255,255,255,.08);
    }
    .logo-orb {
      position: relative;
      z-index: 3;
      width: min(360px, 64vw);
      aspect-ratio: 1;
      border-radius: 42%;
      overflow: hidden;
      background: #000;
      box-shadow: 0 48px 100px rgba(0,0,0,.42);
      border: 1px solid rgba(255,255,255,.09);
      animation: float 6.2s ease-in-out infinite;
    }
    .logo-orb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: scale(1.12);
    }
    .float-card {
      position: absolute;
      z-index: 5;
      min-width: 160px;
      padding: 13px 15px;
      display: flex;
      align-items: center;
      gap: 11px;
      color: #fff;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 20px;
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
      animation: nodeFloat 5.4s ease-in-out infinite;
    }
    .float-card i {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--orange), var(--red));
    }
    .float-card small {
      display: block;
      color: rgba(255,255,255,.48);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .10em;
      text-transform: uppercase;
    }
    .float-card b { display: block; margin-top: 3px; font-size: 14px; }
    .fc1 { top: 62px; left: 2px; }
    .fc2 { top: 148px; right: -8px; animation-delay: -1.2s; }
    .fc3 { right: 10px; bottom: 92px; animation-delay: -2.2s; }
    .fc4 { left: 16px; bottom: 54px; animation-delay: -3.1s; }

    /* =========================
       COMMON SECTIONS
    ========================== */
    .section { padding: clamp(84px, 9vw, 132px) 0; }
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--red);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .section-kicker::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--orange), var(--red));
    }
    .section-title {
      margin: 16px 0 0;
      max-width: 850px;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: clamp(40px, 5.6vw, 76px);
      line-height: 1.02;
      letter-spacing: -.055em;
      font-weight: 800;
    }
    .section-copy {
      max-width: 720px;
      margin: 20px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    /* =========================
       ABOUT
    ========================== */
    .about { background: #fff; }
    .about-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: clamp(34px, 6vw, 86px);
      align-items: start;
    }
    .about-panel {
      position: sticky;
      top: 110px;
    }
    .about-copy {
      margin-top: 28px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
    }
    .about-copy strong { color: var(--ink); }
    .vision-stack { display: grid; gap: 16px; }
    .vision-card {
      position: relative;
      overflow: hidden;
      padding: 28px;
      min-height: 220px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: linear-gradient(145deg, #fff, #faf7f6);
      box-shadow: var(--shadow-soft);
    }
    .vision-card.dark {
      color: #fff;
      background:
        radial-gradient(circle at 90% 10%, rgba(232,60,53,.32), transparent 34%),
        linear-gradient(135deg, #131315, #252124);
      border-color: rgba(255,255,255,.07);
    }
    .vision-index {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--red));
      font-weight: 800;
      box-shadow: 0 16px 34px rgba(232,60,53,.22);
    }
    .vision-card h3 {
      margin: 24px 0 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 26px;
      letter-spacing: -.04em;
    }
    .vision-card p,
    .vision-card ul {
      margin: 14px 0 0;
      color: var(--muted);
      line-height: 1.75;
    }
    .vision-card.dark p,
    .vision-card.dark li { color: rgba(255,255,255,.68); }
    .vision-card ul { padding-left: 19px; }
    .vision-card li + li { margin-top: 7px; }

    /* =========================
       SERVICES
    ========================== */
    .services {
      position: relative;
      color: #fff;
      background:
        radial-gradient(circle at 10% 0%, rgba(232,60,53,.18), transparent 32%),
        radial-gradient(circle at 88% 30%, rgba(243,109,33,.16), transparent 31%),
        #101012;
    }
    .services .section-copy { color: rgba(255,255,255,.56); }
    .services-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 26px;
    }
    .services-head-note {
      max-width: 340px;
      color: rgba(255,255,255,.48);
      font-size: 14px;
      line-height: 1.7;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 46px;
    }
    .service-card {
      position: relative;
      min-height: 300px;
      padding: 26px;
      overflow: hidden;
      border-radius: 28px;
      background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
      border: 1px solid rgba(255,255,255,.08);
      transition: .3s ease;
    }
    .service-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,60,53,.26), transparent 68%);
      opacity: 0;
      transition: .3s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(232,60,53,.38);
      background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
      box-shadow: 0 28px 60px rgba(0,0,0,.20);
    }
    .service-card:hover::after { opacity: 1; }
    .service-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--red));
      box-shadow: 0 14px 30px rgba(232,60,53,.22);
      font-size: 20px;
    }
    .service-no {
      color: rgba(255,255,255,.24);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .service-card h3 {
      margin: 28px 0 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 24px;
      letter-spacing: -.035em;
    }
    .service-card p {
      margin: 12px 0 0;
      color: rgba(255,255,255,.54);
      line-height: 1.7;
    }
    .service-card .mini-list {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .mini-list span {
      padding: 7px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.045);
      color: rgba(255,255,255,.62);
      font-size: 11px;
      font-weight: 700;
    }

    /* =========================
       PUBLIC RELATIONS DETAIL
    ========================== */
    .pr-detail { background: #fff; }
    .pr-layout {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: clamp(34px, 6vw, 80px);
      align-items: start;
    }
    .pr-sticky { position: sticky; top: 110px; }
    .pr-cards { display: grid; gap: 14px; }
    .pr-card {
      padding: 26px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }
    .pr-card-head {
      display: flex;
      align-items: center;
      gap: 13px;
    }
    .pr-card-head i {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--red));
    }
    .pr-card h3 {
      margin: 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 20px;
      letter-spacing: -.03em;
    }
    .pr-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px 20px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }
    .pr-list li {
      position: relative;
      padding-left: 17px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }
    .pr-list li::before {
      content: "";
      position: absolute;
      top: .65em;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
    }

    /* =========================
       PORTFOLIO / WORK AREA
    ========================== */
    .work {
      background:
        radial-gradient(circle at 88% 4%, rgba(232,60,53,.11), transparent 30%),
        linear-gradient(180deg, #f7f3f2, #fff);
    }
    .work-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
    }
    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .filter-btn {
      border: 1px solid var(--line);
      background: rgba(255,255,255,.78);
      color: var(--muted);
      padding: 10px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      transition: .2s ease;
    }
    .filter-btn:hover,
    .filter-btn.active {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--orange), var(--red));
      box-shadow: 0 12px 26px rgba(232,60,53,.18);
    }
    .filter-count {
      display: inline-grid;
      place-items: center;
      min-width: 22px;
      height: 22px;
      margin-left: 7px;
      padding: 0 6px;
      border-radius: 999px;
      color: inherit;
      background: rgba(20,20,22,.07);
      font-size: 10px;
      font-weight: 900;
    }
    .filter-btn.active .filter-count,
    .filter-btn:hover .filter-count { background: rgba(255,255,255,.18); }
    .work-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
      margin-top: 40px;
    }
    .work-card {
      grid-column: span 6;
      overflow: hidden;
      border-radius: 30px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: .3s ease;
    }
    .work-card.wide { grid-column: span 8; }
    .work-card.small { grid-column: span 4; }
    .work-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(18,18,20,.14); }
    .work-media {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(232,60,53,.88), rgba(243,109,33,.78)),
        #1b1b1d;
    }
    .work-card.small .work-media { min-height: 300px; }
    .work-media img {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .55s ease;
    }
    .work-card:hover .work-media img { transform: scale(1.05); }
    .work-placeholder {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 24px;
      color: rgba(255,255,255,.88);
      background:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 36px 36px;
    }
    .work-placeholder i { font-size: 38px; }
    .work-placeholder b { display: block; margin-top: 12px; font-size: 13px; letter-spacing: .12em; }
    .work-placeholder small { display: block; margin-top: 6px; color: rgba(255,255,255,.60); }
    .work-info { padding: 24px; }
    .work-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--red);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .work-info h3 {
      margin: 12px 0 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 26px;
      line-height: 1.15;
      letter-spacing: -.04em;
    }
    .work-info p {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .work-note {
      margin-top: 26px;
      padding: 18px 20px;
      border-radius: 18px;
      color: #6b5f5f;
      background: #fff3f1;
      border: 1px solid rgba(232,60,53,.13);
      font-size: 13px;
      line-height: 1.7;
    }
    .work-note code {
      padding: 2px 6px;
      border-radius: 7px;
      color: #a82b27;
      background: rgba(232,60,53,.08);
    }
    .work-card.hidden { display: none; }
    .portfolio-more {
      display: flex;
      justify-content: center;
      margin-top: 34px;
    }
    .portfolio-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 20px;
      border-radius: 999px;
      color: #fff;
      background: var(--black);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
      box-shadow: 0 14px 34px rgba(20,20,22,.14);
      transition: .24s ease;
    }
    .portfolio-more-btn:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--orange), var(--red));
      box-shadow: 0 18px 42px rgba(232,60,53,.22);
    }
    .portfolio-archive-shell { padding-top: 120px; padding-bottom: 90px; }
    .portfolio-archive-head { margin-bottom: 34px; }
    .portfolio-archive-head .section-copy { max-width: 720px; }



    /* =========================
       CLIENT LOGO WALL
    ========================== */
    .clients {
      position: relative;
      background:
        radial-gradient(circle at 10% 10%, rgba(232,60,53,.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbf8f7 100%);
      overflow: hidden;
    }
    .clients-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 34px;
    }
    .clients-note {
      max-width: 420px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      text-align: right;
    }
    .logo-marquee {
      position: relative;
      overflow: hidden;
      padding: 8px 0;
      mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }
    .logo-marquee + .logo-marquee { margin-top: 14px; }
    .logo-track {
      display: flex;
      width: max-content;
      gap: 14px;
      animation: clientMarquee 28s linear infinite;
    }
    .logo-marquee.reverse .logo-track {
      animation-direction: reverse;
      animation-duration: 34s;
    }
    .client-logo {
      width: 190px;
      height: 108px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(20,20,22,.08);
      box-shadow: 0 14px 34px rgba(18,18,20,.06);
      transition: .25s ease;
    }
    .client-logo:hover {
      transform: translateY(-5px);
      border-color: rgba(232,60,53,.24);
      box-shadow: 0 22px 50px rgba(232,60,53,.10);
    }
    .client-logo img {
      width: 72%;
      height: 58%;
      object-fit: contain;
      filter: none;
      opacity: 1;
      transition: .25s ease;
    }
    .client-logo:hover img {
      filter: none;
      opacity: 1;
    }
    .client-logo .logo-fallback {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 14px;
      text-align: center;
      color: #a6a0a0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .10em;
      text-transform: uppercase;
    }
    .client-logo img:not([style*="display: none"]) + .logo-fallback { opacity: 0; }
    @keyframes clientMarquee {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 7px)); }
    }
    @media (max-width: 720px) {
      .clients-head { align-items: flex-start; flex-direction: column; }
      .clients-note { text-align: left; }
      .client-logo { width: 154px; height: 92px; border-radius: 20px; }
    }

    /* =========================
       APPROACH
    ========================== */
    .approach { background: #fff; }
    .approach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 42px;
    }
    .approach-card {
      padding: 24px;
      min-height: 220px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: linear-gradient(145deg, #fff, #faf8f7);
      transition: .28s ease;
    }
    .approach-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
    .approach-step {
      color: var(--red);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
    }
    .approach-card h3 {
      margin: 38px 0 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 21px;
      letter-spacing: -.03em;
    }
    .approach-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }


    /* =========================
       PROJECT GALLERY
    ========================== */
    .project-gallery {
      background:
        radial-gradient(circle at 92% 12%, rgba(232,60,53,.09), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8f5f4 100%);
      overflow: hidden;
    }
    .project-gallery-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }
    .project-gallery-head .section-copy { max-width: 680px; }
    .gallery-view-all {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 17px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .05em;
      box-shadow: 0 12px 30px rgba(18,18,20,.06);
      transition: .24s ease;
    }
    .gallery-view-all:hover {
      color: #fff;
      background: var(--black);
      transform: translateY(-2px);
    }
    .project-gallery-shell {
      position: relative;
      margin-left: max(-14px, calc((100vw - var(--max)) / -2));
      margin-right: max(-14px, calc((100vw - var(--max)) / -2));
      padding: 0 clamp(18px, 4vw, 54px);
    }
    .project-gallery-viewport {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      overscroll-behavior-inline: contain;
      -webkit-overflow-scrolling: touch;
    }
    .project-gallery-viewport::-webkit-scrollbar { display: none; }
    .project-gallery-track {
      display: flex;
      gap: 16px;
      width: max-content;
      padding: 8px 2px 20px;
    }
    .project-gallery-card {
      position: relative;
      flex: 0 0 clamp(270px, 31vw, 430px);
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-radius: 28px;
      background: #1b1b1d;
      box-shadow: 0 20px 54px rgba(18,18,20,.12);
      scroll-snap-align: start;
      isolation: isolate;
    }
    .project-gallery-card:nth-child(3n+2) { flex-basis: clamp(240px, 26vw, 360px); }
    .project-gallery-card a,
    .project-gallery-static {
      position: absolute;
      inset: 0;
      display: block;
      color: #fff;
    }
    .project-gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease, filter .55s ease;
    }
    .project-gallery-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(to top, rgba(6,6,7,.84), rgba(6,6,7,.10) 58%, transparent 78%);
    }
    .project-gallery-card:hover img { transform: scale(1.055); filter: saturate(1.06); }
    .project-gallery-overlay {
      position: absolute;
      z-index: 2;
      left: 22px;
      right: 22px;
      bottom: 20px;
    }
    .project-gallery-overlay span {
      display: inline-flex;
      margin-bottom: 8px;
      color: #ff8a66;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .project-gallery-overlay h3 {
      margin: 0;
      color: #fff;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: clamp(18px, 2vw, 25px);
      line-height: 1.12;
      letter-spacing: -.035em;
    }
    .project-gallery-arrow {
      position: absolute;
      top: 50%;
      z-index: 6;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      color: #fff;
      background: rgba(11,11,12,.78);
      backdrop-filter: blur(14px);
      box-shadow: 0 16px 38px rgba(0,0,0,.18);
      cursor: pointer;
      transform: translateY(-50%);
      transition: .22s ease;
    }
    .project-gallery-arrow:hover { background: linear-gradient(135deg, var(--orange), var(--red)); transform: translateY(-50%) scale(1.06); }
    .project-gallery-arrow.prev { left: clamp(8px, 2vw, 24px); }
    .project-gallery-arrow.next { right: clamp(8px, 2vw, 24px); }

    @media (max-width: 820px) {
      .project-gallery-head { align-items: flex-start; flex-direction: column; }
      .gallery-view-all { margin-top: -10px; }
      .project-gallery-shell { margin-left: -20px; margin-right: -20px; padding: 0 20px; }
      .project-gallery-card,
      .project-gallery-card:nth-child(3n+2) { flex-basis: min(82vw, 360px); }
      .project-gallery-arrow { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .project-gallery-viewport { scroll-behavior: auto; }
      .project-gallery-card img,
      .project-gallery-arrow { transition: none !important; }
    }

    /* =========================
       CONTACT
    ========================== */
    .contact-section {
      position: relative;
      padding: clamp(84px, 9vw, 130px) 0;
      color: #fff;
      background:
        radial-gradient(circle at 88% 8%, rgba(243,109,33,.22), transparent 31%),
        radial-gradient(circle at 12% 92%, rgba(232,60,53,.22), transparent 30%),
        #0d0d0f;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(36px, 6vw, 80px);
      align-items: center;
    }
    .contact-section .section-copy { color: rgba(255,255,255,.58); }
    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 32px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255,255,255,.78);
    }
    .contact-item i {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.09);
      color: #ff7153;
    }
    .contact-card {
      padding: 32px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
      border: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(18px);
      box-shadow: 0 30px 80px rgba(0,0,0,.20);
    }
    .contact-card h3 {
      margin: 0;
      font-family: "Manrope", "Anuphan", sans-serif;
      font-size: 28px;
      letter-spacing: -.04em;
    }
    .contact-card p { color: rgba(255,255,255,.56); line-height: 1.7; }
    .contact-card .btn { margin-top: 10px; width: 100%; }

    /* =========================
       FOOTER
    ========================== */
    .footer {
      padding: 54px 0 34px;
      color: rgba(255,255,255,.68);
      background: #060607;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-logo {
      width: 170px;
      height: 68px;
      overflow: hidden;
      border-radius: 16px;
      background: #000;
    }
    .footer-logo img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.45); }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .footer-links a { font-size: 12px; font-weight: 700; letter-spacing: .09em; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 26px;
      color: rgba(255,255,255,.34);
      font-size: 12px;
    }

    /* =========================
       FLOATING CONTACT
    ========================== */
    .contact-bubble {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 900;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px 10px 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(11,11,12,.86);
      border: 1px solid rgba(255,255,255,.09);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 50px rgba(0,0,0,.24);
      transition: .25s ease;
    }
    .contact-bubble:hover { transform: translateY(-4px); background: linear-gradient(135deg, var(--orange), var(--red)); }
    .contact-bubble i {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--red));
    }
    .contact-bubble small { display: block; color: rgba(255,255,255,.50); font-size: 9px; letter-spacing: .10em; text-transform: uppercase; }
    .contact-bubble strong { display: block; margin-top: 2px; font-size: 13px; }

    /* =========================
       REVEAL
    ========================== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal[data-reveal="left"] { transform: translateX(-34px); }
    .reveal[data-reveal="right"] { transform: translateX(34px); }
    .reveal.is-visible { opacity: 1; transform: translate(0,0); }

    @keyframes slowSpin { to { transform: rotate(360deg); } }
    @keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1.2deg); } }
    @keyframes nodeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }



    /* Safety net: content must always be able to make a section taller than the viewport. */
    main.page > header.hero,
    main.page > section {
      height: auto;
      max-height: none;
    }
    main.page > section > .inner {
      max-height: none;
    }

    /* =========================
       SECTION NAVIGATION DOTS
       Visual navigation only. Page scrolling remains native.
    ========================== */
    .section-dots {
      position: fixed;
      top: 50%;
      right: 22px;
      z-index: 950;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      transform: translateY(-50%);
    }
    .section-dot {
      position: relative;
      width: 12px;
      height: 12px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
    }
    .section-dot::before {
      content: "";
      position: absolute;
      inset: 2px;
      border-radius: 50%;
      background: rgba(255,255,255,.56);
      border: 1px solid rgba(0,0,0,.18);
      box-shadow: 0 2px 9px rgba(0,0,0,.18);
      transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .section-dot::after {
      content: attr(aria-label);
      position: absolute;
      top: 50%;
      right: 22px;
      width: max-content;
      max-width: 180px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(11,11,12,.88);
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 10px 28px rgba(0,0,0,.18);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: 0;
      pointer-events: none;
      transform: translate(8px,-50%);
      transition: opacity .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .section-dot:hover::after,
    .section-dot:focus-visible::after {
      opacity: 1;
      transform: translate(0,-50%);
    }
    .section-dot.active::before {
      transform: scale(1.55);
      background: linear-gradient(135deg, var(--orange), var(--red));
      border-color: transparent;
      box-shadow: 0 0 0 5px rgba(232,60,53,.14), 0 4px 16px rgba(232,60,53,.34);
    }
    .section-dot:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 5px;
    }


    @media (prefers-reduced-motion: reduce) {
      html { }
      .section-dot::before,
      .section-dot::after { transition: none !important; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    @media (max-width: 1040px) {
      .menu { gap: 16px; }
      .menu a { font-size: 10px; }
      .hero-grid, .about-grid, .pr-layout, .contact-grid { grid-template-columns: 1fr; }
      .hero-visual { min-height: 520px; }
      .about-panel, .pr-sticky { position: static; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .work-card, .work-card.wide, .work-card.small { grid-column: span 6; }
      .approach-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 820px) {
      .navbar { height: 72px; }
      .nav-inner { width: calc(100% - 24px); }
      .brand-logo-box { width: 126px; height: 48px; }
      .menu-toggle { display: block; }
      .menu {
        position: fixed;
        inset: 72px 12px auto;
        max-height: 0;
        overflow: hidden;
        display: grid;
        gap: 8px;
        padding: 0;
        border-radius: 24px;
        background: rgba(12,12,13,.98);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 24px 70px rgba(0,0,0,.32);
        transition: .3s ease;
      }
      .menu.is-open { max-height: 560px; padding: 14px; }
      .menu li { width: 100%; }
      .menu a { display: block; padding: 14px 16px; border-radius: 15px; font-size: 12px; }
      .menu a:not(.contact-btn)::after { display: none; }
      .menu a:hover { background: rgba(255,255,255,.06); }
      .contact-btn { justify-content: center; }
      .hero { padding-top: 114px; }
      .hero h1 { font-size: clamp(48px, 13vw, 78px); }
      .hero-visual { min-height: 460px; }
      .float-card { min-width: 142px; }
      .fc1 { left: 8px; }
      .fc2 { right: 8px; }
      .fc3 { right: 18px; }
      .fc4 { left: 18px; }
      .services-head, .work-head { flex-direction: column; align-items: flex-start; }
      .pr-list { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      .inner { width: min(100% - 28px, var(--max)); }
      .hero { padding-bottom: 58px; }
      .hero-actions .btn { width: 100%; }
      .hero-meta { display: grid; gap: 9px; }
      .hero-visual { min-height: 390px; transform: scale(.90); margin: -20px 0 -28px; }
      .hero-ring { width: 410px; max-width: none; }
      .logo-orb { width: 280px; }
      .float-card { min-width: 132px; padding: 10px 12px; }
      .float-card i { width: 34px; height: 34px; }
      .service-grid, .approach-grid { grid-template-columns: 1fr; }
      .service-card { min-height: 270px; }
      .work-grid { grid-template-columns: 1fr; }
      .work-card, .work-card.wide, .work-card.small { grid-column: auto; }
      .work-media, .work-card.small .work-media { min-height: 270px; }
      .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
      .contact-bubble span { display: none; }
      .contact-bubble { padding: 10px; }
    }
  

    /* =========================
       RESPONSIVE SYSTEM — ALL DEVICES
       Desktop / Laptop / Tablet / Mobile / Landscape
    ========================== */
    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;

    }
    body {
      min-width: 320px;
      overscroll-behavior-y: none;
    }
    img, video, svg, canvas, iframe {
      max-width: 100%;
    }
    .section-title,
    .hero h1,
    .section-copy,
    .hero-copy,
    .work-info h3,
    .service-card h3,
    .pr-card h3,
    .contact-card h3 {
      overflow-wrap: anywhere;
    }
    .navbar,
    .contact-bubble,
    .section-dots {
      padding-left: env(safe-area-inset-left, 0px);
      padding-right: env(safe-area-inset-right, 0px);
    }
    .contact-bubble {
      right: max(22px, env(safe-area-inset-right));
      bottom: max(22px, env(safe-area-inset-bottom));
    }
    .section-dots {
      right: max(22px, env(safe-area-inset-right));
    }

    /* Large desktop / ultrawide */
    @media (min-width: 1440px) {
      :root { --max: 1280px; }
      .hero-grid { gap: 92px; }
      .hero-visual { min-height: 680px; }
      .hero-ring { width: 550px; }
      .logo-orb { width: 390px; }
      .service-grid { gap: 20px; }
      .work-grid { gap: 22px; }
    }

    /* Laptop / small desktop */
    @media (max-width: 1180px) {
      .nav-inner,
      .inner {
        width: min(var(--max), calc(100% - 32px));
      }
      .menu { gap: 18px; }
      .menu a { font-size: 10px; letter-spacing: .08em; }
      .brand-logo-box { width: 136px; }
      .hero h1 { font-size: clamp(52px, 7vw, 88px); }
      .section-title { font-size: clamp(38px, 5.2vw, 68px); }
    }

    /* Tablet and touch-first layouts */
    @media (max-width: 1024px), (hover: none) and (pointer: coarse) {
      html {

      }
      main.page > header.hero,
      main.page > section {


      }
      main.page > header.hero.section-is-long,
      main.page > section.section-is-long {


      }
      .section-dots { display: none !important; }

      .navbar { height: 72px; }
      .nav-inner { width: calc(100% - 24px); }
      .brand-logo-box { width: 126px; height: 48px; }
      .menu-toggle {
        display: block;
        flex: 0 0 auto;
        min-width: 46px;
        min-height: 46px;
      }
      .menu {
        position: fixed;
        inset: calc(72px + env(safe-area-inset-top, 0px)) 12px auto;
        max-height: 0;
        overflow: hidden auto;
        display: grid;
        gap: 8px;
        padding: 0;
        border-radius: 24px;
        background: rgba(12,12,13,.985);
        border: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 24px 70px rgba(0,0,0,.32);
        transition: max-height .3s ease, padding .3s ease;
      }
      .menu.is-open {
        max-height: min(72vh, 620px);
        padding: 14px;
      }
      .menu li { width: 100%; }
      .menu a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 12px 16px;
        border-radius: 15px;
        font-size: 12px;
      }
      .menu a:not(.contact-btn)::after { display: none; }
      .menu a:hover { background: rgba(255,255,255,.06); }
      .contact-btn { justify-content: center; }

      .hero {
        min-height: auto;
        padding: 112px 0 70px;
        background-position: center center;
      }
      .hero-grid,
      .about-grid,
      .pr-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-grid { gap: 30px; }
      .hero h1 {
        max-width: 880px;
        font-size: clamp(50px, 9vw, 78px);
      }
      .hero-copy { max-width: 760px; }
      .hero-visual {
        min-height: 490px;
        width: min(100%, 680px);
        margin-inline: auto;
      }
      .hero-ring { width: min(480px, 78vw); }
      .logo-orb { width: min(330px, 56vw); }
      .about-panel,
      .pr-sticky { position: static; }
      .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .work-card,
      .work-card.wide,
      .work-card.small { grid-column: span 6; }
      .approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .clients-head { align-items: flex-start; }
      .clients-note { text-align: left; }
      .footer-top { align-items: flex-start; }
    }

    /* Standard phones and small tablets */
    @media (max-width: 767px) {
      :root {
        --radius-xl: 30px;
        --radius-lg: 24px;
        --radius-md: 18px;
      }
      .inner { width: calc(100% - 28px); }
      .section { padding: 72px 0; }
      .section-title {
        font-size: clamp(34px, 10.8vw, 56px);
        line-height: 1.03;
        letter-spacing: -.045em;
      }
      .section-copy {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.72;
      }
      .section-kicker { font-size: 10px; }

      .hero {
        padding-top: 102px;
        padding-bottom: 58px;
        background-position: 58% center;
      }
      .hero h1 {
        font-size: clamp(43px, 13.2vw, 66px);
        line-height: .95;
      }
      .hero-copy {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.65;
      }
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 26px;
      }
      .hero-actions .btn { width: 100%; min-height: 52px; }
      .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 26px;
      }
      .hero-visual {
        min-height: 400px;
        transform: none;
        margin: 0;
      }
      .hero-ring { width: min(390px, 92vw); }
      .logo-orb { width: min(260px, 66vw); }
      .float-card {
        min-width: 126px;
        max-width: 44vw;
        padding: 10px 11px;
        gap: 8px;
        border-radius: 17px;
      }
      .float-card i { width: 34px; height: 34px; border-radius: 12px; }
      .float-card small { font-size: 8px; }
      .float-card b { font-size: 12px; }
      .fc1 { top: 40px; left: 0; }
      .fc2 { top: 112px; right: 0; }
      .fc3 { right: 4px; bottom: 74px; }
      .fc4 { left: 6px; bottom: 42px; }

      .service-grid,
      .approach-grid { grid-template-columns: 1fr; }
      .service-grid { margin-top: 32px; }
      .service-card { min-height: auto; padding: 22px; }
      .service-card h3 { margin-top: 22px; font-size: 21px; }
      .pr-card { padding: 22px; }
      .pr-list { grid-template-columns: 1fr; }

      .work-head,
      .services-head,
      .clients-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .filter-row {
        width: calc(100vw - 28px);
        margin-right: calc((100vw - 100%) / -2);
        padding: 2px 14px 8px 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .filter-row::-webkit-scrollbar { display: none; }
      .filter-btn { flex: 0 0 auto; min-height: 42px; }
      .work-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
      .work-card,
      .work-card.wide,
      .work-card.small { grid-column: auto; }
      .work-media,
      .work-card.small .work-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
      }
      .work-info { padding: 20px; }
      .work-info h3 { font-size: 21px; }

      .logo-marquee {
        margin-inline: -14px;
        padding-inline: 14px;
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
      }
      .client-logo { width: 148px; height: 88px; border-radius: 18px; }
      .logo-track { gap: 10px; }

      .contact-card { padding: 24px; border-radius: 26px; }
      .contact-item { align-items: flex-start; }
      .contact-item i { flex: 0 0 44px; }
      .footer-top,
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-links { gap: 14px 18px; }
      .contact-bubble {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        padding: 9px;
      }
      .contact-bubble span { display: none; }
    }

    /* Small phones */
    @media (max-width: 430px) {
      .inner { width: calc(100% - 22px); }
      .nav-inner { width: calc(100% - 20px); }
      .brand-logo-box { width: 112px; height: 44px; border-radius: 13px; }
      .menu { inset-inline: 10px; }
      .hero { padding-top: 96px; }
      .hero h1 { font-size: clamp(39px, 13.5vw, 56px); }
      .eyebrow { font-size: 9px; padding: 8px 11px; }
      .hero-visual { min-height: 350px; }
      .hero-ring { width: 340px; }
      .logo-orb { width: 225px; }
      .float-card { min-width: 112px; max-width: 46vw; }
      .float-card i { display: none; }
      .fc1 { top: 28px; }
      .fc2 { top: 90px; }
      .fc3 { bottom: 62px; }
      .fc4 { bottom: 28px; }
      .section { padding: 62px 0; }
      .section-title { font-size: clamp(32px, 10.5vw, 46px); }
      .service-card,
      .pr-card,
      .approach-card,
      .work-info { padding: 19px; }
      .client-logo { width: 132px; height: 80px; }
      .footer-logo { width: 148px; height: 60px; }
    }

    /* Very narrow screens */
    @media (max-width: 360px) {
      .inner { width: calc(100% - 18px); }
      .hero h1 { font-size: 40px; }
      .hero-copy { font-size: 15px; }
      .hero-visual { min-height: 320px; }
      .hero-ring { width: 310px; }
      .logo-orb { width: 205px; }
      .float-card { min-width: 102px; padding: 8px 9px; }
      .float-card b { font-size: 11px; }
      .contact-card { padding: 20px; }
    }

    /* Landscape phones / short-height devices */
    @media (max-height: 700px) and (orientation: landscape) and (max-width: 1024px) {
      html { }
      .hero {
        min-height: auto;
        padding: 90px 0 46px;
      }
      .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
        gap: 24px;
      }
      .hero h1 { font-size: clamp(38px, 6vw, 58px); }
      .hero-copy { font-size: 14px; margin-top: 16px; }
      .hero-actions { display: flex; width: auto; margin-top: 20px; }
      .hero-actions .btn { width: auto; min-height: 46px; }
      .hero-meta { display: flex; flex-wrap: wrap; margin-top: 20px; }
      .hero-visual { min-height: 330px; }
      .hero-ring { width: 300px; }
      .logo-orb { width: 205px; }
      .float-card { transform: scale(.88); }
      .section { padding: 56px 0; }
      .menu.is-open { max-height: calc(100vh - 92px); }
    }

    /* Hover effects should not feel sticky on touch devices */
    @media (hover: none) {
      .service-card:hover,
      .work-card:hover,
      .approach-card:hover,
      .client-logo:hover,
      .contact-bubble:hover {
        transform: none;
      }
      .work-card:hover .work-media img { transform: none; }
      .client-logo img { filter: none; opacity: 1; }
    }

    /* Accessibility: preserve layout but remove non-essential movement */
    @media (prefers-reduced-motion: reduce) {
      html { }
      .logo-track { animation: none !important; }
      .hero-ring,
      .logo-orb,
      .float-card { animation: none !important; }
    }

/* =========================
   WORDPRESS INTEGRATION
========================== */
:root {
  --eventtika-red: var(--red);
  --eventtika-orange: var(--orange);
  --eventtika-black: var(--black);
}
.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { .admin-bar .navbar { top: 46px; } }
.custom-logo-link { display:block; width:100%; height:100%; }
.custom-logo-link img { width:100%; height:100%; object-fit:contain; }
.screen-reader-text {
  border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px;
  margin:-1px; overflow:hidden; padding:0; position:absolute!important; width:1px; word-wrap:normal!important;
}
.wp-site-blocks, .site-main { min-height: 60vh; }
.content-shell { width:min(var(--max), calc(100% - 40px)); margin:0 auto; padding:130px 0 80px; }
.entry-card { background:#fff; border:1px solid var(--line); border-radius:28px; padding:clamp(24px,4vw,48px); box-shadow:var(--shadow-soft); }
.entry-title { font-family:"Manrope","Anuphan",sans-serif; font-size:clamp(34px,5vw,64px); line-height:1; letter-spacing:-.05em; margin:0 0 22px; }
.entry-content { color:var(--ink); line-height:1.8; }
.entry-content img { border-radius:18px; }
.entry-content a { color:var(--red); text-decoration:underline; text-underline-offset:3px; }
.post-list { display:grid; gap:20px; }
.post-list article { background:#fff; border:1px solid var(--line); border-radius:24px; padding:24px; }
.pagination { margin-top:34px; }
.client-logo a { width:100%; height:100%; display:grid; place-items:center; }
.client-logo img { max-width:78%; max-height:58%; width:auto; height:auto; object-fit:contain; }
.work-card a.work-link { display:block; color:inherit; height:100%; }
.work-card .work-media img { display:block; }
.eventtika-empty-note { padding:18px 22px; border:1px dashed rgba(20,20,22,.16); border-radius:18px; color:var(--muted); background:rgba(255,255,255,.55); }

.brand-logo-box img, .footer-logo img { transform:none !important; padding:3px; }


/* =========================================================
   v1.1.3 — Native scrolling mode
   Keep the desktop navigation dots, but never hijack wheel,
   trackpad, keyboard or scrollbar movement.
========================================================= */
html {

  overflow-y: auto !important;
  overscroll-behavior-y: auto;
}
body,
body.section-nav-enabled,
main.page {
  overflow-y: visible !important;
}
body.section-nav-enabled main.page > header.hero,
body.section-nav-enabled main.page > section,
main.page > header.hero,
main.page > section {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;


}
body.section-nav-enabled main.page > section {
  display: block;
  min-height: 0;
}
body.section-nav-enabled main.page > section > .inner,
main.page > section > .inner {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Hero may still intentionally fill the first screen as part of the design. */
main.page > header.hero {
  min-height: 100svh !important;
}

@media (min-width: 1025px) {
  .section-dots { display: flex; }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html { }
  main.page > header.hero,
  main.page > section {

  }
}

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


/* =========================================================
   v1.1.4 — Responsive header logo
   The logo keeps its original aspect ratio. The wrapper no
   longer forces a fixed 146x54 crop; only safe max dimensions
   change by viewport so wide/tall logos stay proportional.
========================================================= */
.brand {
  min-width: 0 !important;
  flex: 0 1 auto;
  max-width: min(260px, 34vw);
}
.brand-logo-box {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.brand-logo-box img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(220px, 30vw);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  transform: none !important;
  padding: 0 !important;
}

@media (max-width: 1180px) {
  .brand { max-width: min(220px, 30vw); }
  .brand-logo-box img {
    max-width: min(200px, 28vw);
    max-height: 50px;
  }
}

@media (max-width: 820px) {
  .brand { max-width: min(190px, 48vw); }
  .brand-logo-box img {
    max-width: min(180px, 46vw);
    max-height: 44px;
  }
}

@media (max-width: 480px) {
  .brand { max-width: min(170px, 54vw); }
  .brand-logo-box img {
    max-width: min(160px, 52vw);
    max-height: 40px;
  }
}


/* =========================================================
   v1.1.5 — Clean footer
   Footer widgets and designer credit are intentionally removed.
========================================================= */
.footer-bottom { justify-content: flex-start; }

/* =========================================================
   v1.1.6 — Hard reset to browser-native document scrolling
   No scroll snap, no wheel hijacking, no body lock, no custom
   scrollbar painting. This intentionally lets the browser own
   wheel, trackpad, touch, keyboard and scrollbar dragging.
========================================================= */
html {
  width: 100%;
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-behavior: auto !important;
}

body {
  width: 100%;
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: static;
}

body.menu-lock,
body.section-nav-enabled {
  height: auto !important;
  overflow-y: auto !important;
}

main.page,
.site-main,
.wp-site-blocks {
  height: auto !important;
  min-height: 0;
  max-height: none !important;
  overflow: visible !important;
}

main.page > header.hero,
main.page > section,
body.section-nav-enabled main.page > header.hero,
body.section-nav-enabled main.page > section {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

main.page > section > .inner,
body.section-nav-enabled main.page > section > .inner {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Keep only the visual intent of the first screen. It may grow
   naturally when content or accessibility text scaling needs it. */
main.page > header.hero {
  min-height: 100svh !important;
}

/* Never create nested vertical scroll containers inside regular
   content sections. Horizontal scrollers keep their own behavior. */
.section,
.about,
.services,
.pr-detail,
.work,
.clients,
.approach,
.contact-section {
  max-height: none !important;
}

/* Use the OS/browser scrollbar exactly as provided. */
html,
body {
  scrollbar-width: auto;
  scrollbar-color: auto;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html,
  body,
  main.page {
    height: auto !important;
    min-height: 100%;
    overflow-y: auto !important;
  }

  main.page > header.hero,
  main.page > section {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

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



/* =========================================================
   v1.1.7 — Standard browser scrolling
   Section-by-section / full-screen snapping is removed.
   The right-side navigation dots remain as optional anchors.
========================================================= */
html,
body {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-behavior: auto !important;
  overscroll-behavior-y: auto !important;
}

main.page {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

main.page > section,
body.section-nav-enabled main.page > section {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

main.page > section > .inner,
body.section-nav-enabled main.page > section > .inner {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Hero keeps its visual layout but is not a scroll snap target. */
main.page > header.hero {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .section-dots { display: none !important; }
}

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


/* =========================================================
   v1.1.10 — Clients & Partners manual logo strip
   No duplicate marquee copies, no auto movement, no logo cards/borders.
   The arrows move one full visible strip at a time.
========================================================= */
.clients { overflow: hidden; }
.client-slider {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) 48px;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.client-slider-viewport {
  min-width: 0;
  overflow-x: hidden;
  overflow-y: visible;
  scroll-behavior: smooth;
  outline: none;
}
.client-slider-track {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 54px);
  width: max-content;
  min-width: 100%;
  animation: none !important;
  transform: none !important;
}
.client-logo {
  flex: 0 0 calc((100vw - 180px) / 5);
  width: clamp(150px, 15vw, 210px);
  height: 122px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 4px;
  transition: opacity .2s ease, transform .2s ease;
}
.client-logo a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.client-logo img,
.client-logo a img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 86px !important;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .22s ease, opacity .22s ease, transform .22s ease;
}
.client-logo:hover {
  transform: none !important;
  box-shadow: none !important;
}
.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.035);
}
.client-slider-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18,18,20,.12);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  z-index: 2;
}
.client-slider-arrow:hover { background: var(--red); transform: translateY(-2px); }
.client-slider-arrow:disabled { opacity: .22; cursor: default; transform: none; }
.client-slider-arrow i { font-size: 18px; }

@media (max-width: 1100px) {
  .client-slider { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 12px; }
  .client-logo { width: 172px; height: 108px; flex-basis: 172px; }
  .client-logo img, .client-logo a img { max-height: 74px !important; }
}
@media (max-width: 767px) {
  .client-slider { grid-template-columns: 40px minmax(0,1fr) 40px; gap: 8px; }
  .client-slider-arrow { width: 40px; height: 40px; }
  .client-logo { width: 146px; height: 94px; flex-basis: 146px; padding: 8px 2px; }
  .client-logo img, .client-logo a img { max-height: 64px !important; }
  .client-slider-track { gap: 24px; }
}
@media (max-width: 420px) {
  .client-slider { grid-template-columns: 36px minmax(0,1fr) 36px; gap: 5px; }
  .client-slider-arrow { width: 36px; height: 36px; }
  .client-logo { width: 126px; height: 84px; flex-basis: 126px; }
  .client-logo img, .client-logo a img { max-height: 58px !important; }
  .client-slider-track { gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-slider-viewport { scroll-behavior: auto; }
  .client-logo,
  .client-logo img,
  .client-slider-arrow { transition: none !important; }
}


/* =========================================================
   v1.1.14 — Clients & Partners paged logo grid
   Desktop: 5 columns × 2 rows (10 logos per click/page).
   Tablet/mobile: keep two rows, reduce columns responsively.
========================================================= */
.client-slider-viewport {
  overflow: hidden !important;
}
.client-slider-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
}
.client-logo-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(118px, auto));
  gap: 24px 34px;
  align-items: center;
  padding: 8px 2px;
}
.client-logo-page .client-logo {
  width: 100% !important;
  height: 118px !important;
  min-width: 0;
  flex: none !important;
  padding: 8px 10px;
}
.client-logo-page .client-logo img,
.client-logo-page .client-logo a img {
  max-width: 92% !important;
  max-height: 88px !important;
}

@media (max-width: 1100px) {
  .client-logo-page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(108px, auto));
    gap: 20px 26px;
  }
  .client-logo-page .client-logo { height: 108px !important; }
  .client-logo-page .client-logo img,
  .client-logo-page .client-logo a img { max-height: 78px !important; }
}

@media (max-width: 767px) {
  .client-logo-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(96px, auto));
    gap: 16px 18px;
  }
  .client-logo-page .client-logo { height: 96px !important; padding: 6px; }
  .client-logo-page .client-logo img,
  .client-logo-page .client-logo a img { max-height: 68px !important; }
}

@media (max-width: 420px) {
  .client-logo-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(88px, auto));
    gap: 12px 14px;
  }
  .client-logo-page .client-logo { height: 88px !important; }
  .client-logo-page .client-logo img,
  .client-logo-page .client-logo a img { max-height: 60px !important; }
}


/* =========================================================
   v1.1.15 — Clients & Partners logos always use original color
========================================================= */
.client-logo img,
.client-logo a img,
.client-logo:hover img,
.client-logo:focus-within img {
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
}


/* =========================================================
   v1.1.16 — Clients & Partners dot navigation
   Removes arrows and uses clickable dots below the logo grid.
========================================================= */
.client-slider {
  display: block !important;
  margin-top: 8px;
}
.client-slider-arrow {
  display: none !important;
}
.client-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  min-height: 18px;
}
.client-slider-dots[hidden] {
  display: none !important;
}
.client-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31,32,36,.20);
  cursor: pointer;
  transition: width .22s ease, background .22s ease, transform .22s ease;
}
.client-slider-dot:hover,
.client-slider-dot:focus-visible {
  background: rgba(232,60,53,.58);
  transform: scale(1.12);
  outline: none;
}
.client-slider-dot.active {
  width: 28px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}
@media (max-width: 767px) {
  .client-slider-dots { margin-top: 18px; gap: 8px; }
  .client-slider-dot { width: 9px; height: 9px; }
  .client-slider-dot.active { width: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-slider-dot { transition: none !important; }
}

/* =========================
   SINGLE POST / PROJECT
   v1.1.18 editorial layout
========================== */
.single-story {
  background: #fff;
}
.single-story-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(243,109,33,.20), transparent 30%),
    radial-gradient(circle at 15% 92%, rgba(232,60,53,.14), transparent 34%),
    #0b0b0c;
}
.single-story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 100%);
}
.single-story-hero-inner {
  position: relative;
  z-index: 1;
}
.single-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(34px, 5vw, 52px);
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}
.single-back:hover {
  color: #fff;
  transform: translateX(-3px);
}
.single-story-heading {
  max-width: 980px;
}
.single-story-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.single-story-eyebrow > span:first-child {
  color: #fff;
}
.single-story-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 999px;
  background: var(--orange);
}
.single-story-heading h1 {
  max-width: 1040px;
  margin: 0;
  font-family: "Manrope", "Anuphan", sans-serif;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.single-story-lead {
  max-width: 800px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
}
.single-feature-wrap {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding-top: 0;
}
.single-feature {
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  background: #141416;
  box-shadow: 0 34px 80px rgba(15,15,18,.14);
}
.single-feature img {
  width: 100%;
  height: clamp(420px, 62vw, 760px);
  object-fit: cover;
}
.single-story-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(48px, 8vw, 110px);
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(80px, 10vw, 128px);
}
.single-story-layout--no-image {
  padding-top: clamp(70px, 9vw, 120px);
}
.single-story-aside {
  align-self: start;
}
.single-aside-card {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.single-aside-item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.single-aside-item span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.single-aside-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.single-aside-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--black);
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.single-aside-link:hover {
  transform: translateY(-2px);
  background: var(--red);
}
.single-story-content {
  min-width: 0;
  color: #323236;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.88;
}
.single-story-content > :first-child {
  margin-top: 0;
}
.single-story-content > :last-child {
  margin-bottom: 0;
}
.single-story-content p {
  margin: 0 0 1.45em;
}
.single-story-content h2,
.single-story-content h3,
.single-story-content h4 {
  color: var(--ink);
  font-family: "Manrope", "Anuphan", sans-serif;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.single-story-content h2 {
  margin: 2.1em 0 .7em;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
.single-story-content h3 {
  margin: 1.9em 0 .6em;
  font-size: clamp(24px, 3vw, 33px);
  line-height: 1.18;
}
.single-story-content h4 {
  margin: 1.7em 0 .55em;
  font-size: 21px;
}
.single-story-content ul,
.single-story-content ol {
  margin: 1.1em 0 1.7em;
  padding-left: 1.35em;
}
.single-story-content li {
  margin: .48em 0;
  padding-left: .2em;
}
.single-story-content blockquote {
  position: relative;
  margin: 2.4em 0;
  padding: 30px 32px 30px 38px;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Anuphan", sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.025em;
}
.single-story-content blockquote::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--orange), var(--red));
}
.single-story-content blockquote p:last-child {
  margin-bottom: 0;
}
.single-story-content img,
.single-story-content .wp-block-image img,
.single-story-content .wp-block-cover,
.single-story-content .wp-block-gallery {
  border-radius: 22px;
}
.single-story-content .wp-block-image,
.single-story-content .wp-block-gallery,
.single-story-content .wp-block-video,
.single-story-content .wp-block-embed {
  margin-top: 2.2em;
  margin-bottom: 2.2em;
}
.single-story-content .alignwide {
  width: min(980px, calc(100vw - 48px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-story-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.single-story-content figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.single-story-content a {
  color: var(--red-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.single-story-content hr {
  margin: 3em 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.single-story-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 14px;
}
.single-story-content th,
.single-story-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.single-story-content th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}
.single-page-links {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}
.single-story-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: clamp(80px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.single-nav-item {
  min-width: 0;
  padding: 30px 0 32px;
}
.single-nav-item + .single-nav-item {
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 4vw, 54px);
}
.single-nav-item span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.single-nav-item strong {
  display: block;
  max-width: 440px;
  overflow: hidden;
  color: var(--ink);
  font-family: "Manrope", "Anuphan", sans-serif;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.25;
  letter-spacing: -.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.single-nav-next {
  text-align: right;
}
.single-nav-next span {
  justify-content: flex-end;
}
.single-nav-next strong {
  margin-left: auto;
}
.single-nav-item:hover strong {
  color: var(--red);
}
.single-related {
  padding: clamp(76px, 8vw, 110px) 0 clamp(92px, 10vw, 138px);
  background: var(--paper);
  border-top: 1px solid rgba(20,20,22,.06);
}
.single-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.single-related-head h2 {
  margin: 8px 0 0;
  font-family: "Manrope", "Anuphan", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}
.single-related-head > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}
.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.single-related-card {
  min-width: 0;
}
.single-related-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: #171719;
}
.single-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.single-related-card:hover .single-related-media img {
  transform: scale(1.035);
}
.single-related-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-size: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(243,109,33,.32), transparent 34%),
    linear-gradient(145deg, #171719, #292329);
}
.single-related-copy {
  padding: 17px 2px 0;
}
.single-related-copy > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.single-related-copy h3 {
  margin: 7px 0 0;
  font-family: "Manrope", "Anuphan", sans-serif;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -.03em;
}
.single-related-card:hover h3 {
  color: var(--red);
}

@media (max-width: 900px) {
  .single-story-hero { padding: 124px 0 56px; }
  .single-back { margin-bottom: 34px; }
  .single-feature img { height: clamp(360px, 72vw, 600px); }
  .single-story-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
  }
  .single-story-aside { order: 2; }
  .single-story-content { order: 1; }
  .single-aside-card {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
  .single-aside-link { align-self: center; }
  .single-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-related-card:last-child:nth-child(odd) { display: none; }
}

@media (max-width: 640px) {
  .single-story-hero { padding: 108px 0 44px; }
  .single-back { margin-bottom: 28px; }
  .single-story-heading h1 {
    font-size: clamp(30px, 8.6vw, 40px);
    line-height: 1.12;
    letter-spacing: -.03em;
  }
  .single-story-lead { margin-top: 22px; font-size: 16px; }
  .single-feature-wrap { width: 100%; }
  .single-feature { border-radius: 0; box-shadow: none; }
  .single-feature img { height: 74vw; min-height: 300px; max-height: 460px; }
  .single-story-layout {
    width: min(100% - 36px, var(--max));
    gap: 38px;
    padding-top: 50px;
    padding-bottom: 76px;
  }
  .single-story-content { font-size: 16px; line-height: 1.78; }
  .single-story-content h2 { font-size: 30px; }
  .single-story-content h3 { font-size: 24px; }
  .single-story-content blockquote {
    margin: 2em 0;
    padding: 24px 24px 24px 29px;
    border-radius: 18px;
    font-size: 20px;
  }
  .single-story-content .alignwide,
  .single-story-content .alignfull {
    width: calc(100vw - 24px);
  }
  .single-aside-card { grid-template-columns: 1fr; }
  .single-story-nav {
    width: min(100% - 36px, var(--max));
    grid-template-columns: 1fr;
  }
  .single-nav-item { padding: 24px 0; }
  .single-nav-item + .single-nav-item {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }
  .single-nav-next { text-align: left; }
  .single-nav-next span { justify-content: flex-start; }
  .single-nav-next strong { margin-left: 0; }
  .single-related-head { align-items: start; flex-direction: column; }
  .single-related-grid { grid-template-columns: 1fr; }
  .single-related-card:last-child:nth-child(odd) { display: block; }
  .single-related-media { border-radius: 20px; }
}
