/* roulang page: index */
:root {
      --ink: #1B1D1C;
      --amber: #C4A574;
      --oxide: #3A5348;
      --sand: #F3F0EA;
      --concrete: #E7E4DE;
      --void: #121413;
      --muted: rgba(27, 29, 28, .62);
      --faint: rgba(27, 29, 28, .42);
      --line: rgba(27, 29, 28, .12);
      --line-strong: rgba(27, 29, 28, .22);
      --sand-soft: rgba(243, 240, 234, .78);
      --radius-btn: 2px;
      --radius: 4px;
      --shadow: 0 8px 24px rgba(18, 20, 19, .08);
      --edge: 0 1px 0 rgba(27, 29, 28, .08);
      --container: 1280px;
      --ease: 240ms ease;
      --nav-top: 42px;
      --nav-main: 70px;
      --font: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      --mono: "JetBrains Mono", "Noto Sans SC", ui-monospace, monospace;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      font-size: 17px;
      line-height: 1.75;
      color: var(--ink);
      background: var(--sand);
      letter-spacing: .01em;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font-family: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, h4, p { margin: 0; }
    ul { margin: 0; padding: 0; list-style: none; }
    :focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
    .container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 500;
    }
    .kicker::before {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--amber);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border-radius: var(--radius-btn);
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .04em;
      transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
      text-decoration: none;
    }
    .btn-primary {
      background: var(--ink);
      color: #F7F4EE;
    }
    .btn-primary:hover,
    .btn-primary:active {
      transform: translate(2px, -2px);
      box-shadow: 0 2px 0 var(--amber);
      background: #111312;
    }
    .btn-ghost {
      background: transparent;
      color: #F7F4EE;
      border-color: rgba(247, 244, 238, .38);
    }
    .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
    .btn-line {
      background: transparent;
      color: var(--ink);
      border-color: var(--oxide);
    }
    .btn-line:hover {
      border-color: var(--amber);
      color: var(--ink);
      transform: translateY(-2px);
    }
    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--amber);
      color: var(--amber);
      font-size: 12px;
      letter-spacing: .12em;
      border-radius: 2px;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: var(--sand);
    }
    .header-top {
      height: var(--nav-top);
      background: var(--concrete);
      display: flex;
      align-items: center;
      overflow: hidden;
      transition: height var(--ease), opacity var(--ease);
    }
    .header-top .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: var(--muted);
    }
    .header-top a { color: var(--ink); }
    .header-top a:hover { color: var(--oxide); }
    .top-meta { display: flex; gap: 18px; flex-wrap: wrap; }
    .top-actions { display: flex; gap: 18px; align-items: center; }
    .header-main {
      height: var(--nav-main);
      display: flex;
      align-items: center;
      background: var(--sand);
      border-bottom: 1px solid transparent;
      transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .header-main .container {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      letter-spacing: .08em;
      font-size: 16px;
    }
    .logo-mark {
      width: 22px;
      height: 22px;
      border: 1px solid var(--amber);
      display: grid;
      place-items: center;
      font-size: 10px;
      color: var(--amber);
      letter-spacing: 0;
    }
    .nav-links {
      display: flex;
      justify-content: center;
      gap: 26px;
    }
    .nav-links a {
      font-size: 14px;
      color: var(--muted);
      position: relative;
      padding: 8px 0;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 1px;
      background: var(--amber);
      transition: width var(--ease);
    }
    .nav-links a:hover,
    .nav-links a.is-active { color: var(--ink); }
    .nav-links a:hover::after,
    .nav-links a.is-active::after { width: 100%; }
    .nav-cta { justify-self: end; }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      padding: 0;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 1px;
      background: var(--ink);
      position: relative;
      margin: 0 auto;
    }
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }
    .menu-toggle span::before { top: -6px; }
    .menu-toggle span::after { top: 6px; }
    .site-header.is-compact .header-top {
      height: 0;
      opacity: 0;
    }
    .site-header.is-compact .header-main {
      background: #FFFcf7;
      border-bottom-color: var(--line);
    }
    .drawer {
      position: fixed;
      inset: 0;
      background: var(--sand);
      z-index: 90;
      transform: translateX(100%);
      transition: transform 280ms ease;
      display: flex;
      flex-direction: column;
      padding: 28px 28px 40px;
    }
    .drawer.is-open { transform: translateX(0); }
    .drawer-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-close {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: transparent;
      font-size: 22px;
    }
    .drawer nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 48px;
    }
    .drawer nav a {
      font-size: 28px;
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }
    .drawer-phone {
      margin-top: auto;
      font-size: 15px;
      color: var(--muted);
    }
    .hero {
      position: relative;
      min-height: 84vh;
      overflow: hidden;
      color: #F7F4EE;
      background: var(--void);
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 700ms ease;
    }
    .hero-slide.is-active { opacity: 1; z-index: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      animation: ken 18s linear infinite alternate;
    }
    @keyframes ken {
      from { transform: scale(1.02) translate3d(0, 0, 0); }
      to { transform: scale(1.07) translate3d(-1.5%, -1%, 0); }
    }
    .hero-mask {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(18,20,19,.78) 0%, rgba(18,20,19,.38) 48%, rgba(18,20,19,.18) 100%);
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      min-height: 84vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 120px 0 88px;
    }
    .hero h1, .hero .slide-title {
      font-size: clamp(32px, 5.6vw, 68px);
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -.04em;
      max-width: 11em;
    }
    .hero-lead {
      max-width: 38em;
      margin-top: 22px;
      font-size: 16px;
      line-height: 1.8;
      color: rgba(247,244,238,.82);
    }
    .hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .hero-foot {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      padding-bottom: 28px;
      border-top: 1px solid rgba(247,244,238,.14);
      margin-top: -1px;
    }
    .hero-metric {
      display: flex;
      gap: 28px;
      font-size: 13px;
      color: rgba(247,244,238,.72);
    }
    .hero-metric b {
      display: block;
      font-family: var(--mono);
      font-size: 22px;
      color: var(--amber);
      font-weight: 500;
    }
    .hero-controls { display: flex; gap: 8px; }
    .hero-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(247,244,238,.35);
      background: transparent;
      color: #F7F4EE;
    }
    .hero-btn:hover { border-color: var(--amber); color: var(--amber); }
    .hero-dots {
      position: absolute;
      right: 0;
      top: 38%;
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .hero-dots button {
      width: 18px;
      height: 2px;
      border: 0;
      padding: 0;
      background: rgba(247,244,238,.35);
    }
    .hero-dots button.is-on { background: var(--amber); width: 28px; }
    main section { padding: 112px 0; }
    .sec-head { max-width: 720px; margin-bottom: 48px; }
    .sec-head h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 500;
      letter-spacing: -.03em;
      line-height: 1.2;
      margin: 12px 0 18px;
    }
    .sec-head p, .block-copy { color: var(--muted); font-size: 16px; line-height: 1.8; }
    #pain { background: #FFFcf7; }
    .pain-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 72px;
      align-items: start;
    }
    .pain-quote {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.28;
      letter-spacing: -.03em;
      font-weight: 500;
    }
    .pain-quote span { color: var(--amber); font-family: var(--mono); font-size: .7em; display: block; margin-bottom: 16px; }
    .pain-list a {
      display: grid;
      grid-template-columns: 48px 1fr auto;
      gap: 16px;
      padding: 22px 0;
      border-top: 1px solid var(--line);
      align-items: center;
    }
    .pain-list a:last-child { border-bottom: 1px solid var(--line); }
    .pain-list strong { font-weight: 500; }
    .pain-list em { font-style: normal; color: var(--faint); font-size: 14px; }
    .pain-list:hover a { opacity: .55; }
    .pain-list a:hover { opacity: 1; }
    .split {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 64px;
      align-items: center;
    }
    .split-media { position: relative; }
    .split-media img { width: 100%; height: 560px; object-fit: cover; border-radius: 2px; }
    .split-note {
      position: absolute;
      left: 16px;
      bottom: 16px;
      background: rgba(18,20,19,.82);
      color: #F7F4EE;
      padding: 14px 16px;
      font-size: 13px;
      max-width: 240px;
    }
    .ability-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .ability {
      border: 1px solid var(--line);
      padding: 32px;
      min-height: 210px;
      background: #FFFcf7;
      transition: transform var(--ease), border-color var(--ease);
    }
    .ability:hover { transform: translateY(-4px); border-color: var(--ink); }
    .ability:hover .num { color: var(--amber); }
    .ability.span-6 { grid-column: span 6; min-height: 280px; }
    .ability.span-3 { grid-column: span 3; }
    .ability .num {
      font-family: var(--mono);
      color: var(--faint);
      font-size: 13px;
      letter-spacing: .16em;
      transition: color var(--ease);
    }
    .ability h3 { font-size: 24px; font-weight: 500; margin: 28px 0 12px; letter-spacing: -.02em; }
    .ability p { color: var(--muted); font-size: 15px; }
    #process { background: var(--concrete); }
    .steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      position: relative;
      gap: 18px;
    }
    .steps::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 18px;
      height: 1px;
      background: var(--line-strong);
    }
    .step { position: relative; padding-top: 44px; }
    .step i {
      position: absolute;
      top: 12px;
      width: 12px;
      height: 12px;
      border: 1px solid var(--ink);
      background: var(--sand);
      border-radius: 50%;
      font-style: normal;
    }
    .step h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
    .step p { font-size: 15px; color: var(--muted); }
    .project-hero {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      min-height: 420px;
      border: 1px solid var(--line);
      margin-bottom: 16px;
      background: #FFFcf7;
    }
    .project-hero img, .project-card img { width: 100%; height: 100%; object-fit: cover; }
    .project-copy, .project-card { padding: 36px; display: flex; flex-direction: column; }
    .project-copy h3, .project-card h3 { font-size: 28px; font-weight: 500; margin: 12px 0; }
    .project-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .project-card { border: 1px solid var(--line); min-height: 420px; background: #FFFcf7; }
    .project-card img { height: 220px; }
    .text-link {
      margin-top: auto;
      padding-top: 20px;
      color: var(--ink);
      border-bottom: 1px solid var(--amber);
      width: max-content;
      font-size: 14px;
    }
    .text-link:hover { color: var(--oxide); }
    #cases { background: var(--void); color: #F3F0EA; padding: 120px 0; }
    .case-wrap {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 72px;
    }
    .case-wrap h2 {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: 1.12;
      max-width: 6em;
    }
    .case-item {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 20px;
      padding: 24px 0;
      border-top: 1px solid rgba(196,165,116,.28);
    }
    .case-item img { width: 140px; height: 96px; object-fit: cover; }
    .case-item a { color: var(--amber); text-decoration: underline; text-underline-offset: 4px; }
    .tag-wall { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
    .tag {
      border: 1px solid var(--oxide);
      color: var(--oxide);
      min-height: 40px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      font-size: 14px;
      border-radius: 2px;
    }
    .scene-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .scene-grid a {
      padding: 28px 24px 28px 0;
      border-bottom: 1px solid var(--line);
      display: block;
    }
    .scene-grid a:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--line); }
    .scene-grid h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
    .story {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 48px;
      padding: 36px 0;
      border-top: 1px solid var(--line);
      align-items: center;
    }
    .story img { width: 100%; height: 320px; object-fit: cover; }
    .story h3 { font-size: 26px; font-weight: 500; margin-bottom: 16px; }
    .story dl { display: grid; gap: 12px; }
    .story dt { font-size: 12px; letter-spacing: .18em; color: var(--amber); }
    .story dd { margin: 0; color: var(--muted); }
    #metrics { background: var(--concrete); padding: 72px 0; }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat b {
      display: block;
      font-family: var(--mono);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 500;
      letter-spacing: -.04em;
      line-height: 1;
      color: var(--ink);
    }
    .stat span { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; }
    .quotes { display: grid; grid-template-columns: 1fr; gap: 0; }
    .quote {
      padding: 36px 0;
      border-top: 1px solid var(--line);
    }
    .quote p {
      font-size: clamp(22px, 2.4vw, 32px);
      line-height: 1.45;
      letter-spacing: -.02em;
      max-width: 18em;
    }
    .quote p::before { content: "“"; color: var(--amber); font-size: 1.2em; margin-right: 4px; }
    .quote footer {
      margin-top: 16px;
      display: flex;
      gap: 18px;
      color: var(--faint);
      font-size: 14px;
    }
    .quote .score { font-family: var(--mono); color: var(--amber); }
    .news-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 16px;
    }
    .news-card {
      border: 1px solid var(--line);
      padding: 28px;
      background: #FFFcf7;
      display: flex;
      flex-direction: column;
      min-height: 240px;
      transition: transform var(--ease), border-color var(--ease);
    }
    .news-card:first-child { min-height: 320px; }
    .news-card:hover { transform: translateY(-4px); border-color: var(--ink); }
    .news-card time { font-size: 12px; letter-spacing: .16em; color: var(--amber); }
    .news-card h3 { font-size: 22px; font-weight: 500; margin: 16px 0 12px; }
    .hours {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
      border-top: 1px solid var(--line);
    }
    .hours div {
      display: grid;
      grid-template-columns: 1.1fr .9fr .7fr .7fr;
      gap: 12px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      font-size: 15px;
    }
    .hours .head { color: var(--faint); font-size: 12px; letter-spacing: .14em; }
    .faq-item { border-top: 1px solid var(--line); }
    .faq-item:last-child { border-bottom: 1px solid var(--line); }
    .faq-item button {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      min-height: 64px;
      padding: 18px 36px 18px 0;
      font-size: 18px;
      font-weight: 500;
      position: relative;
    }
    .faq-item button::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--amber);
      font-size: 22px;
    }
    .faq-item.is-open button::after { content: "–"; }
    .faq-item .ans {
      max-height: 0;
      overflow: hidden;
      color: var(--muted);
      transition: max-height 280ms ease, padding 280ms ease;
    }
    .faq-item.is-open .ans { max-height: 220px; padding-bottom: 20px; }
    .topic-list a {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      align-items: center;
      padding: 22px 0;
      border-top: 1px solid var(--line);
      font-size: 18px;
    }
    .topic-list a:last-child { border-bottom: 1px solid var(--line); }
    .topic-list span { font-family: var(--mono); color: var(--amber); }
    #cta { background: var(--concrete); }
    .cta-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 64px;
      align-items: start;
    }
    .form {
      display: grid;
      gap: 18px;
    }
    .field { display: grid; gap: 8px; }
    .field label { font-size: 13px; color: var(--muted); }
    .field input, .field select {
      width: 100%;
      height: 48px;
      border: 0;
      border-bottom: 1px solid var(--line-strong);
      background: transparent;
      font-size: 16px;
      border-radius: 0;
    }
    .field input:focus, .field select:focus {
      outline: none;
      border-bottom: 2px solid var(--amber);
    }
    .form-side {
      margin-top: 28px;
      display: grid;
      gap: 8px;
      color: var(--muted);
      font-size: 15px;
    }
    .form-ok {
      border: 1px solid var(--oxide);
      padding: 16px 18px;
      color: var(--oxide);
      margin-bottom: 12px;
    }
    .site-footer {
      background: var(--void);
      color: rgba(243,240,234,.78);
      padding: 72px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(243,240,234,.12);
    }
    .site-footer h3 { color: #F3F0EA; font-size: 16px; font-weight: 500; margin-bottom: 16px; }
    .site-footer a { color: rgba(243,240,234,.72); }
    .site-footer a:hover { color: var(--amber); }
    .footer-links { display: grid; gap: 8px; }
    .copy { padding-top: 20px; font-size: 13px; color: rgba(243,240,234,.45); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    @media (max-width: 1280px) {
      .ability.span-6 { grid-column: span 6; }
      .news-grid { grid-template-columns: 1fr 1fr; }
      .news-card:first-child { grid-column: 1 / -1; }
    }
    @media (max-width: 1024px) {
      .header-main .container { grid-template-columns: auto auto; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .menu-toggle { display: block; justify-self: end; }
      .pain-grid, .split, .case-wrap, .cta-grid, .project-hero, .story { grid-template-columns: 1fr; gap: 28px; }
      .split-media img, .story img { height: 360px; }
      .ability.span-6, .ability.span-3 { grid-column: span 6; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .hours { grid-template-columns: 1fr; }
      .hero-dots { display: none; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 28px, var(--container)); }
      main section { padding: 80px 0; }
      .top-meta span:last-child, .top-actions span { display: none; }
      .ability.span-6, .ability.span-3 { grid-column: span 12; }
      .project-pair, .scene-grid, .stat-row, .footer-grid { grid-template-columns: 1fr; }
      .scene-grid a:nth-child(odd) { border-right: 0; padding-right: 0; }
      .hours div { grid-template-columns: 1fr 1fr; }
      .stat-row { grid-template-columns: 1fr 1fr; gap: 28px; }
      .hero { min-height: 78vh; }
      .hero-copy { min-height: 78vh; padding: 96px 0 72px; }
      .hero-foot { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 520px) {
      body { font-size: 16px; }
      .steps { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .copy { flex-direction: column; }
      .hero-metric { gap: 16px; }
    }

/* roulang page: index */
:root {
      --ink: #1B1D1C;
      --amber: #C4A574;
      --green: #3A5348;
      --sand: #F3F0EA;
      --concrete: #E7E4DE;
      --deep: #121413;
      --paper: #F7F5F1;
      --muted: #5C5F5C;
      --line: rgba(27, 29, 28, 0.12);
      --line-strong: rgba(27, 29, 28, 0.22);
      --sand-soft: rgba(243, 240, 234, 0.88);
      --shadow: 0 8px 24px rgba(27, 29, 28, 0.08);
      --radius: 4px;
      --radius-btn: 2px;
      --container: 1280px;
      --ease: 240ms ease;
      --header-top: 42px;
      --header-main: 74px;
      --space: 112px;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }
    body {
      margin: 0;
      font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: var(--sand);
      font-size: 17px;
      line-height: 1.75;
      font-weight: 400;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; display: block; height: auto; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font-family: inherit; }
    button { cursor: pointer; }
    h1, h2, h3, p { margin: 0; }
    ul { margin: 0; padding: 0; list-style: none; }
    :focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
    }
    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--amber);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .kicker::before {
      content: "";
      width: 22px;
      height: 1px;
      background: currentColor;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border-radius: var(--radius-btn);
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: transform var(--ease), background var(--ease), color var(--ease), box-shadow var(--ease), border-color var(--ease);
      text-align: center;
    }
    .btn-primary {
      background: var(--ink);
      color: #F7F5F1;
      box-shadow: 0 0 0 0 var(--amber);
    }
    .btn-primary:hover,
    .btn-primary:active {
      transform: translate(2px, -1px);
      box-shadow: 0 2px 0 var(--amber);
      background: #232625;
    }
    .btn-ghost {
      background: transparent;
      color: #F3F0EA;
      border-color: rgba(243, 240, 234, 0.45);
    }
    .btn-ghost:hover {
      border-color: var(--amber);
      color: var(--amber);
      transform: translate(2px, 0);
    }
    .btn-line {
      background: transparent;
      color: var(--ink);
      border-color: var(--green);
    }
    .btn-line:hover {
      border-color: var(--amber);
      color: var(--ink);
      transform: translate(2px, 0);
      box-shadow: 0 2px 0 var(--amber);
    }
    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid var(--amber);
      color: var(--amber);
      font-size: 12px;
      letter-spacing: 0.12em;
      border-radius: 2px;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      background: var(--concrete);
    }
    .nav-top {
      height: var(--header-top);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: #3E4240;
      border-bottom: 1px solid var(--line);
      transition: transform var(--ease), opacity var(--ease), height var(--ease);
    }
    .nav-top a { color: var(--ink); border-bottom: 1px solid transparent; }
    .nav-top a:hover { border-bottom-color: var(--amber); }
    .nav-main {
      height: var(--header-main);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
      background: var(--sand);
      transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
      border-bottom: 1px solid transparent;
    }
    .site-header.is-compact .nav-top {
      height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      border: 0;
    }
    .site-header.is-compact .nav-main {
      background: #FBF9F5;
      border-bottom-color: var(--line-strong);
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      font-weight: 600;
      letter-spacing: 0.08em;
      font-size: 18px;
      white-space: nowrap;
    }
    .logo-mark {
      width: 28px;
      height: 28px;
      border: 1px solid var(--ink);
      display: grid;
      place-items: center;
      font-size: 11px;
      letter-spacing: 0;
      color: var(--amber);
    }
    .menu {
      display: flex;
      justify-content: center;
      gap: 28px;
    }
    .menu a {
      font-size: 15px;
      color: #2A2D2C;
      position: relative;
      padding: 10px 0;
    }
    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 0;
      height: 1px;
      background: var(--amber);
      transition: width var(--ease);
    }
    .menu a:hover::after,
    .menu a.is-active::after { width: 100%; }
    .nav-cta { white-space: nowrap; }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line-strong);
      background: transparent;
      padding: 0;
      position: relative;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      position: absolute;
      left: 12px;
      width: 18px;
      height: 1px;
      background: var(--ink);
      transition: transform var(--ease);
    }
    .menu-toggle span { top: 21px; }
    .menu-toggle span::before { content: ""; top: -6px; }
    .menu-toggle span::after { content: ""; top: 6px; }
    .drawer {
      position: fixed;
      inset: 0;
      background: var(--sand);
      z-index: 90;
      transform: translateX(100%);
      transition: transform 280ms ease;
      display: flex;
      flex-direction: column;
      padding: 28px 28px 40px;
    }
    .drawer.is-open { transform: translateX(0); }
    .drawer-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-close {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line-strong);
      background: transparent;
      font-size: 22px;
    }
    .drawer-nav {
      margin-top: 48px;
      display: grid;
      gap: 8px;
    }
    .drawer-nav a {
      font-size: 32px;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }
    .drawer-phone {
      margin-top: auto;
      padding-top: 24px;
      font-size: 18px;
    }
    .hero {
      position: relative;
      min-height: 84vh;
      background: var(--deep);
      color: var(--sand);
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 700ms ease;
    }
    .hero-slide.is-active {
      opacity: 1;
      pointer-events: auto;
      z-index: 1;
    }
    .hero-media {
      position: absolute;
      inset: 0;
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
    }
    .hero-slide.is-active .hero-media img {
      animation: ken 16s ease-out forwards;
    }
    @keyframes ken {
      from { transform: scale(1) translate3d(0, 0, 0); }
      to { transform: scale(1.045) translate3d(-1.2%, 0, 0); }
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(18, 20, 19, 0.82) 0%, rgba(18, 20, 19, 0.55) 42%, rgba(18, 20, 19, 0.18) 100%),
        linear-gradient(180deg, rgba(18, 20, 19, 0.15) 0%, rgba(18, 20, 19, 0.55) 100%);
    }
    .hero-copy {
      position: relative;
      z-index: 2;
      min-height: 84vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 140px 0 92px;
    }
    .hero-grades {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 18px 0 28px;
    }
    .hero h1,
    .hero-heading {
      font-size: clamp(32px, 5.4vw, 68px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.12;
      max-width: 11em;
    }
    .hero-lead {
      max-width: 36em;
      margin-top: 22px;
      font-size: 16px;
      line-height: 1.8;
      color: rgba(243, 240, 234, 0.86);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }
    .hero-foot {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-top: 48px;
      border-top: 1px solid rgba(196, 165, 116, 0.28);
      padding-top: 18px;
    }
    .hero-metric {
      display: flex;
      gap: 28px;
      font-variant-numeric: tabular-nums;
    }
    .hero-metric b {
      display: block;
      font-size: 28px;
      font-weight: 500;
      color: var(--amber);
      letter-spacing: -0.04em;
    }
    .hero-metric span {
      font-size: 12px;
      letter-spacing: 0.16em;
      color: rgba(243, 240, 234, 0.7);
    }
    .hero-controls {
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .hero-controls button {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(243, 240, 234, 0.35);
      background: transparent;
      color: var(--sand);
      font-size: 18px;
    }
    .hero-controls button:hover { border-color: var(--amber); color: var(--amber); }
    .hero-dots {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      display: grid;
      gap: 10px;
    }
    .hero-dots button {
      width: 22px;
      height: 2px;
      border: 0;
      padding: 10px 0;
      background: transparent;
    }
    .hero-dots button i {
      display: block;
      height: 2px;
      background: rgba(243, 240, 234, 0.35);
    }
    .hero-dots button.is-active i { background: var(--amber); }
    main { overflow: hidden; }
    .section {
      padding: var(--space) 0;
    }
    .section-sand { background: var(--sand); }
    .section-paper { background: var(--paper); }
    .section-concrete { background: var(--concrete); }
    .section-deep {
      background: var(--deep);
      color: var(--sand);
    }
    .section-head {
      max-width: 720px;
      margin-bottom: 48px;
    }
    .section-head h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.22;
      margin: 12px 0 18px;
    }
    .section-head p {
      color: var(--muted);
      font-size: 16px;
      max-width: 34em;
    }
    .section-deep .section-head p { color: rgba(243, 240, 234, 0.72); }
    .pain-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 64px;
      align-items: end;
    }
    .pain-quote {
      font-size: clamp(36px, 4.6vw, 58px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      font-weight: 500;
      max-width: 6em;
    }
    .pain-quote span {
      display: block;
      color: var(--amber);
      font-size: 13px;
      letter-spacing: 0.18em;
      margin-bottom: 18px;
    }
    .pain-list a {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 22px 0;
      border-top: 1px solid var(--line);
      min-height: 88px;
    }
    .pain-list a:last-child { border-bottom: 1px solid var(--line); }
    .pain-list em {
      font-style: normal;
      color: var(--amber);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.12em;
    }
    .pain-list strong { font-weight: 500; display: block; }
    .pain-list small { color: var(--muted); font-size: 14px; }
    .pain-list b {
      font-weight: 400;
      color: var(--green);
      font-size: 13px;
    }
    .pain-list a:hover { padding-left: 8px; transition: padding var(--ease); }
    .split {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 56px;
      align-items: center;
    }
    .split-visual {
      position: relative;
    }
    .split-visual img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      border-radius: 2px;
    }
    .split-note {
      position: absolute;
      left: 16px;
      bottom: 16px;
      background: rgba(18, 20, 19, 0.86);
      color: var(--sand);
      padding: 12px 14px;
      font-size: 12px;
      letter-spacing: 0.12em;
    }
    .split-copy h2 {
      font-size: clamp(28px, 3.2vw, 42px);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.22;
      margin: 12px 0 22px;
    }
    .split-copy p {
      color: var(--muted);
      margin-bottom: 16px;
      max-width: 36em;
    }
    .spec-line {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      font-size: 14px;
      color: var(--ink);
    }
    .spec-line b { color: var(--green); font-weight: 500; }
    .cap-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .cap-card {
      border: 1px solid var(--line);
      padding: 32px 28px;
      background: #FBF9F5;
      min-height: 180px;
      transition: transform var(--ease), border-color var(--ease);
    }
    .cap-card:nth-child(1),
    .cap-card:nth-child(2) {
      grid-column: span 6;
      min-height: 250px;
    }
    .cap-card:nth-child(n+3) { grid-column: span 3; }
    .cap-card:hover {
      transform: translateY(-4px);
      border-color: rgba(196, 165, 116, 0.85);
      border-width: 1px;
      box-shadow: 0 0 0 1px rgba(196, 165, 116, 0.35);
    }
    .cap-no {
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--muted);
      transition: color var(--ease);
    }
    .cap-card:hover .cap-no { color: var(--amber); }
    .cap-card h3 {
      margin: 18px 0 10px;
      font-size: 24px;
      font-weight: 500;
      letter-spacing: -0.03em;
    }
    .cap-card p { color: var(--muted); font-size: 15px; }
    .steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }
    .steps::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 18px;
      height: 1px;
      background: var(--line-strong);
    }
    .step { position: relative; padding-top: 0; }
    .step-index {
      width: 36px;
      height: 36px;
      border: 1px solid var(--amber);
      background: var(--sand);
      display: grid;
      place-items: center;
      font-size: 12px;
      color: var(--amber);
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }
    .step h3 {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 8px;
    }
    .step p { font-size: 14px; color: var(--muted); max-width: 16em; }
    .proj-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 18px;
    }
    .proj-card {
      border: 1px solid var(--line);
      background: #FBF9F5;
      overflow: hidden;
      display: grid;
      transition: transform var(--ease), border-color var(--ease);
    }
    .proj-card:hover {
      transform: translateY(-4px);
      border-color: rgba(27, 29, 28, 0.28);
    }
    .proj-wide {
      grid-column: 1 / -1;
      grid-template-columns: 1.25fr 0.9fr;
      min-height: 360px;
    }
    .proj-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 240px;
    }
    .proj-body { padding: 32px; display: flex; flex-direction: column; }
    .proj-body h3 {
      font-size: 28px;
      font-weight: 500;
      letter-spacing: -0.03em;
      margin: 10px 0 12px;
    }
    .proj-body p { color: var(--muted); flex: 1; }
    .proj-body a {
      margin-top: 22px;
      color: var(--ink);
      border-bottom: 1px solid var(--amber);
      align-self: flex-start;
      padding-bottom: 2px;
    }
    .case-wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: start;
    }
    .case-title {
      font-size: clamp(36px, 4.8vw, 64px);
      line-height: 1.12;
      letter-spacing: -0.045em;
      font-weight: 500;
      max-width: 7em;
    }
    .case-title em {
      font-style: normal;
      color: var(--amber);
    }
    .case-list { display: grid; gap: 28px; }
    .case-item {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 20px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(196, 165, 116, 0.25);
    }
    .case-item img {
      width: 160px;
      height: 120px;
      object-fit: cover;
    }
    .case-item a {
      color: var(--sand);
      border-bottom: 1px solid var(--amber);
    }
    .case-item p { color: rgba(243, 240, 234, 0.72); margin-top: 8px; font-size: 15px; }
    .tag-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }
    .tag-wall a {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      padding: 0 16px;
      border: 1px solid var(--green);
      color: var(--green);
      font-size: 14px;
    }
    .tag-wall a:hover {
      border-color: var(--amber);
      color: var(--ink);
    }
    .crowd-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--line);
    }
    .crowd-grid article {
      padding: 28px 28px 28px 0;
      border-bottom: 1px solid var(--line);
    }
    .crowd-grid article:nth-child(odd) { padding-right: 36px; border-right: 1px solid var(--line); }
    .crowd-grid article:nth-child(even) { padding-left: 36px; }
    .crowd-grid h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
    .crowd-grid p { color: var(--muted); font-size: 15px; }
    .story {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 40px;
      align-items: center;
      padding: 36px 0;
      border-top: 1px solid var(--line);
    }
    .story:last-child { border-bottom: 1px solid var(--line); }
    .story img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }
    .story h3 {
      font-size: 30px;
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.25;
      margin: 10px 0 20px;
    }
    .story-lines { display: grid; gap: 12px; }
    .story-lines div {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 12px;
      font-size: 15px;
    }
    .story-lines b {
      color: var(--amber);
      font-weight: 500;
    }
    .metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .metric b {
      display: block;
      font-size: clamp(40px, 5vw, 72px);
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 500;
      font-variant-numeric: tabular-nums;
      color: var(--ink);
    }
    .metric span {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-size: 14px;
    }
    .quotes {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 28px;
    }
    .quote {
      border-top: 1px solid var(--line-strong);
      padding-top: 24px;
    }
    .quote-mark {
      font-size: 64px;
      line-height: 0.6;
      color: var(--amber);
      font-weight: 500;
    }
    .quote p {
      font-size: 18px;
      margin: 16px 0 24px;
      letter-spacing: -0.02em;
    }
    .quote footer {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 12px;
    }
    .quote .score { color: var(--green); letter-spacing: 0.12em; }
    .news-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 20px;
    }
    .news-card {
      border-top: 1px solid var(--ink);
      padding-top: 18px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }
    .news-card time {
      font-size: 12px;
      letter-spacing: 0.16em;
      color: var(--amber);
    }
    .news-card h3 {
      font-size: 22px;
      font-weight: 500;
      margin: 12px 0;
      letter-spacing: -0.03em;
    }
    .news-card p { color: var(--muted); font-size: 15px; }
    .news-more {
      margin-top: 28px;
      display: inline-flex;
      border-bottom: 1px solid var(--amber);
      padding-bottom: 2px;
    }
    .hours {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
      border-top: 1px solid var(--line-strong);
    }
    .hours div {
      display: grid;
      grid-template-columns: 1.1fr 1.1fr 0.8fr 0.7fr;
      gap: 12px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
    }
    .hours .hours-head {
      color: var(--muted);
      letter-spacing: 0.08em;
      font-size: 12px;
    }
    .faq-item { border-top: 1px solid var(--line-strong); }
    .faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
    .faq-item button {
      width: 100%;
      text-align: left;
      background: transparent;
      border: 0;
      min-height: 64px;
      padding: 18px 40px 18px 0;
      font-size: 18px;
      font-weight: 500;
      position: relative;
    }
    .faq-item button::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--amber);
      font-size: 22px;
    }
    .faq-item.is-open button::after { content: "–"; }
    .faq-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 280ms ease;
    }
    .faq-item.is-open .faq-panel { max-height: 220px; }
    .faq-panel p {
      padding: 0 0 20px;
      color: var(--muted);
      max-width: 46em;
    }
    .scene-list a {
      display: grid;
      grid-template-columns: 72px 1fr auto;
      align-items: center;
      gap: 16px;
      min-height: 88px;
      border-top: 1px solid var(--line);
      padding: 8px 0;
    }
    .scene-list a:last-child { border-bottom: 1px solid var(--line); }
    .scene-list em {
      font-style: normal;
      color: var(--amber);
      letter-spacing: 0.16em;
    }
    .scene-list strong { font-weight: 500; font-size: 22px; }
    .scene-list span { color: var(--muted); font-size: 14px; }
    .scene-list a:hover { transform: translateX(4px); transition: transform var(--ease); }
    .cta-box {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: start;
    }
    .cta-box h2 {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 1.18;
      margin: 12px 0 16px;
    }
    .cta-side p { color: var(--muted); max-width: 28em; }
    .cta-meta {
      margin-top: 28px;
      display: grid;
      gap: 8px;
      font-size: 15px;
    }
    .cta-meta a { border-bottom: 1px solid var(--amber); }
    form {
      display: grid;
      gap: 18px;
    }
    .field label {
      display: block;
      font-size: 12px;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 6px;
    }
    .field input,
    .field select {
      width: 100%;
      height: 48px;
      border: 0;
      border-bottom: 1px solid var(--line-strong);
      background: transparent;
      font-size: 16px;
      color: var(--ink);
      border-radius: 0;
    }
    .field input:focus,
    .field select:focus {
      outline: 2px solid var(--amber);
      outline-offset: 2px;
      border-bottom-color: var(--amber);
    }
    .form-note {
      padding: 14px 16px;
      border: 1px solid var(--green);
      color: var(--green);
      font-size: 14px;
    }
    .form-error {
      padding: 14px 16px;
      border: 1px solid #8A4A3A;
      color: #8A4A3A;
      font-size: 14px;
    }
    .site-footer {
      background: var(--deep);
      color: rgba(243, 240, 234, 0.78);
      padding: 72px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr 1.1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(243, 240, 234, 0.12);
    }
    .site-footer .logo { color: var(--sand); margin-bottom: 16px; }
    .site-footer .logo-mark { border-color: var(--amber); }
    .footer-grid h3 {
      color: var(--amber);
      font-size: 12px;
      letter-spacing: 0.2em;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .footer-grid a { display: block; padding: 4px 0; }
    .footer-grid a:hover { color: var(--sand); }
    .copy {
      padding-top: 18px;
      font-size: 12px;
      color: rgba(243, 240, 234, 0.45);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    body.nav-lock { overflow: hidden; }
    @media (max-width: 1280px) {
      .quotes { grid-template-columns: 1fr 1fr 1fr; }
      .news-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 1024px) {
      :root { --space: 88px; }
      .menu { gap: 16px; }
      .menu a { font-size: 14px; }
      .split, .pain-grid, .case-wrap, .cta-box, .story { grid-template-columns: 1fr; }
      .split-visual img, .story img { height: 380px; }
      .cap-card:nth-child(1),
      .cap-card:nth-child(2),
      .cap-card:nth-child(n+3) { grid-column: span 6; }
      .steps { grid-template-columns: 1fr 1fr; }
      .steps::before { display: none; }
      .proj-wide { grid-template-columns: 1fr; }
      .news-grid, .quotes, .metrics { grid-template-columns: 1fr 1fr; }
      .hours { grid-template-columns: 1fr; }
      .hero-dots { display: none; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 32px, var(--container)); }
      .nav-top { display: none; }
      .nav-main {
        grid-template-columns: 1fr auto;
        height: 64px;
      }
      .menu, .nav-cta { display: none; }
      .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .hero-copy { padding: 110px 0 72px; }
      .hero, .hero-copy { min-height: 78vh; }
      .hero-foot { flex-direction: column; align-items: flex-start; }
      .cap-card:nth-child(1),
      .cap-card:nth-child(2),
      .cap-card:nth-child(n+3) { grid-column: span 12; }
      .proj-grid { grid-template-columns: 1fr; }
      .crowd-grid { grid-template-columns: 1fr; }
      .crowd-grid article,
      .crowd-grid article:nth-child(odd),
      .crowd-grid article:nth-child(even) {
        padding: 20px 0;
        border-right: 0;
      }
      .metrics, .quotes, .news-grid { grid-template-columns: 1fr 1fr; }
      .hours div { grid-template-columns: 1fr 1fr; gap: 6px 12px; }
      .footer-grid { grid-template-columns: 1fr; }
      .case-item { grid-template-columns: 1fr; }
      .case-item img { width: 100%; height: 200px; }
    }
    @media (max-width: 520px) {
      .metrics, .quotes, .news-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .hero-metric { flex-wrap: wrap; }
      .hero h1, .hero-heading { max-width: 8em; }
      .pain-quote { max-width: none; }
      .copy { flex-direction: column; }
    }
    @media (max-width: 375px) {
      body { font-size: 16px; }
      .container { width: min(100% - 28px, var(--container)); }
      .hero, .hero-copy { min-height: 78vh; }
      .btn { width: 100%; }
      .hero-actions .btn { width: auto; }
    }
