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

  :root {
    --black: #050505;
    --graphite: #0d0d0d;
    --charcoal: #161616;
    --surface: #1d1a17;
    --warm-white: #F5F3EF;
    --soft-gray: #8a8880;
    --muted: #4a4845;
    --tan: #9A7B5F;
    --bronze: #8A6A47;
    --burgundy: #4E1E1E;
    --cream: #e8e4dc;
    --gold: #c9a96e;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    background: #ffffff;
    color: #1a1814;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 14px; height: 14px; }
  body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.5; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 22px 40px;
    mix-blend-mode: normal;
    background: rgba(5,5,5,0.62);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201,169,110,0.08);
    transition: background 0.45s var(--ease), padding 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  nav.scrolled {
    background: rgba(5,5,5,0.92);
    backdrop-filter: blur(20px);
    padding: 16px 40px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--warm-white);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
  .nav-links li { position: relative; }
  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: var(--soft-gray);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.28s var(--ease);
    display: inline-block;
    padding: 8px 0;
  }
  .nav-links a:hover { color: var(--warm-white); }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: rgba(201,169,110,0.72);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s var(--ease);
  }
  .nav-links a:hover::after,
  .nav-links a.is-active::after {
    transform: scaleX(1);
  }
  .nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(201,169,110,0.4);
    padding: 11px 20px;
    transition: all 0.3s var(--ease);
  }
  .nav-cta:hover { background: var(--gold); color: var(--black); }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
    padding: 136px 60px 92px;
    overflow: hidden;
  }
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(154,123,95,0.1) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(78,30,30,0.18) 0%, transparent 50%),
      linear-gradient(to top, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.35) 42%, rgba(5,5,5,0.2) 100%);
  }
  .hero-noise {
    position: absolute; inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
  }
  .hero-line {
    position: absolute; top: 0; right: 200px; bottom: 0;
    z-index: 2;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.12) 30%, rgba(201,169,110,0.06) 70%, transparent 100%);
  }
  .hero-year {
    position: absolute; top: 50%; right: 60px;
    z-index: 3;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .hero-scroll-hint {
    position: absolute; bottom: 48px; right: 60px;
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .hero-scroll-hint span {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }
  .hero-tag {
    position: relative;
    z-index: 4;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.3s forwards;
  }
  .hero-h1 {
    position: relative;
    z-index: 4;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 10vw, 156px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--warm-white);
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.5s forwards;
  }
  .hero-h1 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.82em;
  }
  .hero-h1 .luxury-video-text {
    display: inline-block;
    position: relative;
    font-size: 1em;
    width: 4.95em;
    height: 1.26em;
    vertical-align: -0.14em;
    line-height: 1;
    overflow: hidden;
  }
  .hero-h1 .hero-for-luxury-line {
    white-space: nowrap;
  }
  .hero-h1 .luxury-video-fill {
    display: none;
  }
  .hero-h1 .luxury-fallback {
    display: inline;
    position: relative;
    z-index: 1;
    font-weight: 700;
  }
  @supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .hero-h1 .luxury-video-fill {
      display: block;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Warm the video slightly to stay in the site's gold palette. */
      filter: sepia(0.35) saturate(1.15) brightness(0.88);
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 320'%3E%3Ctext x='24' y='255' font-family='DM Serif Display,serif' font-size='256' font-style='italic' font-weight='700'%3ELuxury%3C/text%3E%3C/svg%3E");
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 320'%3E%3Ctext x='24' y='255' font-family='DM Serif Display,serif' font-size='256' font-style='italic' font-weight='700'%3ELuxury%3C/text%3E%3C/svg%3E");
      mask-repeat: no-repeat;
      mask-size: 100% 100%;
    }
    .hero-h1 .luxury-fallback {
      display: none;
    }
  }
  .hero-h1 .luxury-video-svg {
    display: none;
  }
  .hero-sub {
    position: relative;
    z-index: 4;
    margin-top: 40px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--soft-gray);
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 0.8s forwards;
  }
  .hero-actions {
    position: relative;
    z-index: 4;
    margin-top: 52px;
    display: flex; gap: 24px; align-items: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1s forwards;
  }
  .btn-primary {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 16px 36px;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    display: inline-block;
  }
  .btn-primary:hover { background: var(--warm-white); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gray);
    text-decoration: none;
    display: flex; align-items: center; gap: 12px;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--warm-white); }
  .btn-ghost::after {
    content: '';
    display: block; width: 32px; height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
  }
  .btn-ghost:hover::after { width: 56px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* EDITORIAL DIVIDER */
  .editorial-divider {
    display: flex; align-items: center; gap: 24px;
    padding: 0 60px;
    margin: 0;
  }
  .editorial-divider .line { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
  .editorial-divider .label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* SECTION BASE */
  section { position: relative; }
  .section-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  /* PHILOSOPHY SECTION */
  #philosophy {
    padding: 180px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }
  .phil-left { }
  .phil-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 96px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
  }
  .phil-h2 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.9em;
  }
  .phil-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 32px;
  }
  .phil-right {
    position: relative;
  }
  .phil-image-box {
    position: relative;
    background: var(--charcoal);
    aspect-ratio: 3/4;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .phil-image-box::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 60%, rgba(154,123,95,0.15) 0%, transparent 60%),
      linear-gradient(135deg, rgba(78,30,30,0.1) 0%, transparent 70%);
  }
  .phil-leather-texture {
    width: 100%; height: 100%;
    background:
      repeating-linear-gradient(
        45deg,
        rgba(154,123,95,0.03) 0px,
        rgba(154,123,95,0.03) 1px,
        transparent 1px,
        transparent 8px
      ),
      repeating-linear-gradient(
        -45deg,
        rgba(154,123,95,0.02) 0px,
        rgba(154,123,95,0.02) 1px,
        transparent 1px,
        transparent 8px
      ),
      linear-gradient(170deg, #2a2018 0%, #1a1210 50%, #0f0a07 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
  }
  .texture-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.5em;
    color: rgba(201,169,110,0.4);
    text-transform: uppercase;
  }
  .stitch-line {
    display: flex; gap: 4px; align-items: center;
  }
  .stitch-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(201,169,110,0.3);
    animation: stitchPulse 2.4s ease-in-out infinite;
  }
  .stitch-dot:nth-child(2) { animation-delay: 0.2s; }
  .stitch-dot:nth-child(3) { animation-delay: 0.4s; }
  .stitch-dot:nth-child(4) { animation-delay: 0.6s; }
  .stitch-dot:nth-child(5) { animation-delay: 0.8s; }
  .stitch-dot:nth-child(6) { animation-delay: 1.0s; }
  .stitch-dot:nth-child(7) { animation-delay: 1.2s; }
  .stitch-dot:nth-child(8) { animation-delay: 1.4s; }
  @keyframes stitchPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.4); }
  }
  .phil-offset-box {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px; height: 200px;
    border: 1px solid rgba(201,169,110,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 8px;
    background: var(--graphite);
  }
  .phil-offset-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
  }
  .phil-offset-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    text-align: center;
  }

  /* MATERIALS SECTION */
  #materials {
    padding: 180px 0;
    background: var(--graphite);
    overflow: hidden;
  }
  .materials-header {
    padding: 0 60px;
    margin-bottom: 80px;
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .materials-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 110px);
    line-height: 0.9;
  }
  .materials-sub {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--soft-gray);
    text-align: right;
  }
  .materials-scroll-track {
    display: flex; gap: 2px;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .materials-scroll-track::-webkit-scrollbar { display: none; }
  .material-card {
    flex: 0 0 340px;
    height: 520px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex-basis 0.6s var(--ease);
  }
  .material-card:hover { flex-basis: 480px; }
  .material-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s var(--ease);
  }
  .material-card:hover .material-bg { transform: scale(1.04); }
  .material-bg-leather {
    background:
      repeating-linear-gradient(30deg, rgba(154,123,95,0.06) 0, rgba(154,123,95,0.06) 1px, transparent 1px, transparent 12px),
      linear-gradient(135deg, #3a2a1a, #1f140a);
  }
  .material-bg-velvet {
    background:
      repeating-linear-gradient(60deg, rgba(78,30,30,0.1) 0, rgba(78,30,30,0.1) 1px, transparent 1px, transparent 8px),
      linear-gradient(135deg, #2a0f0f, #1a0808);
  }
  .material-bg-linen {
    background:
      repeating-linear-gradient(0deg, rgba(200,190,170,0.05) 0, rgba(200,190,170,0.05) 1px, transparent 1px, transparent 6px),
      linear-gradient(135deg, #2a2620, #191612);
  }
  .material-bg-suede {
    background:
      radial-gradient(ellipse at 40% 60%, rgba(138,106,71,0.15) 0, transparent 60%),
      linear-gradient(135deg, #261c10, #130e07);
  }
  .material-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
  }
  .material-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 32px;
  }
  .material-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    display: block;
    margin-bottom: 8px;
  }
  .material-origin {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
  }
  .material-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--soft-gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.4s;
    opacity: 0;
  }
  .material-card:hover .material-desc { max-height: 100px; opacity: 1; }
  .material-num {
    position: absolute; top: 32px; right: 32px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(201,169,110,0.4);
  }

  /* PROCESS SECTION */
  #process {
    padding: 180px 60px;
    background: var(--black);
  }
  .process-header {
    text-align: center;
    margin-bottom: 120px;
  }
  .process-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    margin-bottom: 24px;
  }
  .process-intro {
    font-size: 15px;
    color: var(--soft-gray);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,0.2), rgba(201,169,110,0.4), rgba(201,169,110,0.2), transparent);
  }
  .process-step {
    padding: 0 20px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    position: relative;
  }
  .step-circle {
    width: 104px; height: 104px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    margin-bottom: 32px;
    background: var(--graphite);
    transition: border-color 0.4s, background 0.4s;
    position: relative;
    z-index: 1;
  }
  .process-step:hover .step-circle {
    border-color: var(--gold);
    background: rgba(201,169,110,0.06);
  }
  .step-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
  }
  .step-icon-text {
    font-size: 22px;
    margin-top: 4px;
  }
  .step-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--warm-white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
  }
  .step-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
  }

  /* METRICS SECTION */
  #metrics {
    padding: 160px 60px;
    background: var(--surface);
    border-top: 1px solid rgba(201,169,110,0.08);
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.06);
  }
  .metric-cell {
    background: var(--surface);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .metric-cell:hover { background: rgba(201,169,110,0.03); }
  .metric-cell::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 2px; height: 0;
    background: var(--gold);
    transition: height 0.6s var(--ease);
  }
  .metric-cell:hover::before { height: 100%; }
  .metric-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 6vw, 96px);
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
  }
  .metric-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--soft-gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
  }
  .metric-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
  }

  /* PROJECTS SECTION */
  #projects {
    padding: 180px 60px;
    background: var(--black);
  }
  .projects-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px;
  }
  .projects-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 96px);
    line-height: 0.9;
  }
  .projects-h2 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
  }
  .projects-count {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .project-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
  }
  .project-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
  .project-bg {
    position: absolute; inset: 0;
    transition: transform 0.9s var(--ease), opacity 0.4s;
  }
  .project-card:hover .project-bg { transform: scale(1.06); }
  .project-bg-1 {
    background:
      radial-gradient(ellipse at 60% 30%, rgba(154,123,95,0.2) 0%, transparent 60%),
      linear-gradient(160deg, #2a1e12 0%, #120c06 100%);
  }
  .project-bg-2 {
    background:
      radial-gradient(ellipse at 30% 70%, rgba(78,30,30,0.25) 0%, transparent 60%),
      linear-gradient(160deg, #1a0d0d 0%, #0d0505 100%);
  }
  .project-bg-3 {
    background:
      radial-gradient(ellipse at 70% 50%, rgba(138,106,71,0.18) 0%, transparent 60%),
      linear-gradient(160deg, #251a10 0%, #100b05 100%);
  }
  .project-bg-4 {
    background:
      radial-gradient(ellipse at 40% 40%, rgba(200,180,150,0.1) 0%, transparent 60%),
      linear-gradient(160deg, #1e1a14 0%, #0f0c09 100%);
  }
  .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, transparent 60%);
    transition: opacity 0.4s;
  }
  .project-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px;
    transform: translateY(20px);
    transition: transform 0.5s var(--ease);
  }
  .project-card:hover .project-info { transform: translateY(0); }
  .project-cat {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }
  .project-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    display: block;
    margin-bottom: 12px;
  }
  .project-detail {
    font-size: 13px;
    color: var(--soft-gray);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.4s 0.1s;
  }
  .project-card:hover .project-detail { opacity: 1; }
  .project-arrow {
    position: absolute; top: 32px; right: 32px;
    width: 44px; height: 44px;
    border: 1px solid rgba(201,169,110,0.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease);
    color: var(--gold);
    font-size: 18px;
    font-family: 'DM Mono', monospace;
  }
  .project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }

  /* WORKSHOP / ABOUT */
  #workshop {
    padding: 180px 60px;
    background: var(--graphite);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }
  .workshop-right { }
  .workshop-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
  }
  .workshop-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 80px);
    line-height: 0.92;
    margin-bottom: 40px;
  }
  .workshop-h2 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
  }
  .workshop-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 20px;
  }
  .workshop-visual {
    position: relative;
  }
  .workshop-main-box {
    background: var(--charcoal);
    aspect-ratio: 1/1.1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .workshop-pattern {
    width: 100%; height: 100%;
    background:
      repeating-conic-gradient(rgba(154,123,95,0.03) 0deg, rgba(154,123,95,0.03) 90deg, transparent 90deg, transparent 180deg) 0 0 / 24px 24px,
      linear-gradient(135deg, #1a1410 0%, #0f0c09 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
  }
  .workshop-center-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(201,169,110,0.08);
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
  }
  .workshop-badge {
    position: absolute; bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
  }
  .badge-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--black);
    text-align: center;
    line-height: 1.3;
  }
  .badge-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--black);
    line-height: 1;
  }
  .workshop-qualities {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 0;
  }
  .quality-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 20px;
    transition: padding-left 0.3s var(--ease);
    cursor: default;
  }
  .quality-item:hover { padding-left: 8px; }
  .quality-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .quality-text {
    font-size: 14px;
    color: var(--soft-gray);
    letter-spacing: 0.02em;
  }

  /* CONVERSION / CTA */
  #cta {
    padding: 200px 60px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,169,110,0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 40px;
  }
  .cta-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 9vw, 140px);
    line-height: 0.88;
    margin-bottom: 32px;
  }
  .cta-h2 em {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--gold);
  }
  .cta-sub {
    font-size: 15px;
    line-height: 1.8;
    color: var(--soft-gray);
    max-width: 480px;
    margin: 0 auto 60px;
  }
  .cta-actions {
    display: flex; gap: 20px; align-items: center; justify-content: center;
  }
  .btn-large {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 20px 52px;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    display: inline-block;
  }
  .btn-large:hover { background: var(--warm-white); transform: translateY(-3px); }
  .btn-outline-large {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-gray);
    background: transparent;
    padding: 20px 52px;
    text-decoration: none;
    border: 1px solid rgba(201,169,110,0.2);
    transition: all 0.4s var(--ease);
    display: inline-block;
  }
  .btn-outline-large:hover { border-color: var(--gold); color: var(--gold); }

  /* FOOTER */
  footer {
    background: var(--graphite);
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(201,169,110,0.08);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-brand { }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.08em;
    color: var(--warm-white);
    display: block;
    margin-bottom: 20px;
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 280px;
  }
  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--warm-white); }
  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--muted);
  }
  .footer-social { display: flex; gap: 20px; }
  .footer-social a {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .footer-social a:hover { color: var(--gold); }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* HORIZONTAL MARQUEE */
  .marquee-track {
    padding: 40px 0;
    background: var(--surface);
    border-top: 1px solid rgba(201,169,110,0.06);
    border-bottom: 1px solid rgba(201,169,110,0.06);
    overflow: hidden;
  }
  .marquee-inner {
    display: flex; gap: 60px; align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.15em;
    color: var(--muted);
    flex-shrink: 0;
    display: flex; align-items: center; gap: 60px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 12px;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* MOBILE NAV TOGGLE (simplified) */
  .nav-mobile-toggle {
    display: none;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--soft-gray);
    text-transform: uppercase;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-video-wrap {
      display: none;
    }
    .hero-bg {
      background:
        radial-gradient(ellipse at 70% 30%, rgba(154,123,95,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(78,30,30,0.12) 0%, transparent 50%),
        linear-gradient(160deg, #0a0805 0%, #050505 100%);
    }
  }

  @media (max-width: 900px) {
    nav { padding: 24px 30px; }
    nav.scrolled { padding: 16px 30px; }
    .nav-links, .nav-cta { display: none; }
    .nav-mobile-toggle { display: block; }
    #hero {
      margin: 0;
      padding-top: 0;
      padding-right: 20px;
      padding-bottom: 80px;
      padding-left: 20px;
    }
    .hero-tag,
    .hero-h1,
    .hero-sub,
    .hero-actions {
      margin-left: 0;
      margin-right: 0;
    }
    .hero-h1 .hero-for-luxury-line {
      white-space: nowrap;
    }
    .hero-h1 .luxury-video-text {
      width: 3.12em;
      height: 0.96em;
      vertical-align: -0.09em;
    }
    .hero-line { right: 28px; }
    .hero-year { right: -56px; }
    #philosophy { grid-template-columns: 1fr; padding: 100px 30px; gap: 60px; }
    #materials { padding: 100px 0; }
    .materials-header { padding: 0 30px; flex-direction: column; gap: 20px; align-items: flex-start; }
    .materials-sub { text-align: left; }
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
    .process-steps::before { display: none; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-row: auto; }
    #workshop { grid-template-columns: 1fr; padding: 100px 30px; gap: 60px; }
    #cta { padding: 120px 30px; }
    .cta-actions { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    footer { padding: 60px 30px 30px; }
    #process { padding: 100px 30px; }
    #metrics { padding: 100px 30px; }
    #projects { padding: 100px 30px; }
  }

/* Interior pages + shared layout extensions */

/* UX polish */
a:focus-visible,
button:focus-visible,
.nav-mobile-toggle:focus-visible {
  outline: 1px solid rgba(201, 169, 110, 0.8);
  outline-offset: 3px;
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 140px 60px 72px;
  overflow: hidden;
}
.page-hero .hero-h1 {
  font-size: clamp(48px, 8vw, 110px);
  max-width: 920px;
}
.page-hero .hero-sub {
  max-width: 520px;
}
.page-hero .hero-bg,
.page-hero .hero-noise,
.page-hero .hero-line {
  position: absolute;
  inset: 0;
}
.page-hero .hero-line {
  inset: 0;
  right: 200px;
  left: auto;
  width: 1px;
  height: auto;
}
.page-hero .hero-year {
  position: absolute;
  top: 50%;
  right: 60px;
}

.page-main {
  padding: 0 60px 120px;
}
.page-section {
  padding: 100px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}
.page-section:first-of-type {
  border-top: none;
  padding-top: 40px;
}
.page-section--surface {
  background: var(--surface);
  margin: 0 -60px;
  padding-left: 60px;
  padding-right: 60px;
}
.page-section--graphite {
  background: var(--graphite);
  margin: 0 -60px;
  padding-left: 60px;
  padding-right: 60px;
}

.page-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.page-grid-2--wide-left {
  grid-template-columns: 1.15fr 0.85fr;
}

.prose {
  font-size: 15px;
  line-height: 1.9;
  color: var(--soft-gray);
}
.prose p + p {
  margin-top: 1.25em;
}
.prose strong {
  color: var(--warm-white);
  font-weight: 500;
}

.section-kicker {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.section-title-page {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.section-title-page em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--gold);
}

.spec-list {
  list-style: none;
  margin-top: 28px;
}
.spec-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--soft-gray);
}
.spec-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(201, 169, 110, 0.08);
}
.service-card {
  background: var(--black);
  padding: 48px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
}
.service-card:hover {
  background: rgba(201, 169, 110, 0.04);
}
.service-card-num {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(201, 169, 110, 0.5);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--soft-gray);
  flex: 1;
}
.service-card a {
  margin-top: 24px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  padding-bottom: 4px;
}
.service-card a:hover {
  color: var(--warm-white);
  border-bottom-color: var(--warm-white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.stat-row .stat-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-row .stat-lbl {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
}

.material-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.material-tier {
  border: 1px solid rgba(201, 169, 110, 0.12);
  padding: 32px 28px;
  background: rgba(13, 13, 13, 0.6);
}
.material-tier h4 {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.material-tier .tier-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.material-tier p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--soft-gray);
}

.timeline-deep {
  margin-top: 48px;
  border-left: 1px solid rgba(201, 169, 110, 0.2);
  padding-left: 32px;
}
.timeline-deep-item {
  margin-bottom: 48px;
  position: relative;
}
.timeline-deep-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}
.timeline-deep-item h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.timeline-deep-item .tl-meta {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.timeline-deep-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--soft-gray);
  max-width: 640px;
}

.project-list {
  display: grid;
  gap: 2px;
  margin-top: 40px;
}
.project-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  padding: 48px 40px;
  background: var(--charcoal);
  align-items: center;
}
.project-row:nth-child(even) {
  background: var(--graphite);
}
.project-row-visual {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.project-row-visual .project-bg {
  position: absolute;
  inset: 0;
}
.project-row-copy .project-cat {
  margin-bottom: 8px;
}
.project-row-copy .project-name {
  font-size: 40px;
  margin-bottom: 16px;
}
.project-row-copy .project-detail {
  opacity: 1;
  max-width: 520px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.contact-block {
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 40px 36px;
  background: rgba(5, 5, 5, 0.5);
}
.contact-block h3 {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-block p,
.contact-block a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--soft-gray);
  text-decoration: none;
  display: block;
}
.contact-block a:hover {
  color: var(--warm-white);
}

/* Footer: services heading with ring + dot (matches brand screenshot) */
.footer-col-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-title-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-title-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-links a.is-active {
  color: var(--warm-white);
}

/* Global mobile menu drawer — base layout; theme in mobile-first.css (loaded last) */
body.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 8, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 9990;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  height: 100dvh;
  height: 100svh;
  background-color: #09080f;
  color: #f5f3ef;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9991;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(20px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.open {
  transform: translate3d(0, 0, 0);
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.mobile-nav-links a {
  color: #ece8e0;
  text-decoration: none;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.is-active {
  color: #ffffff;
}
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #1a1206;
  background: linear-gradient(135deg, #d4b87a 0%, #c9a96e 52%, #a8864a 100%);
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-decoration: none;
}

/* Studio section sidebar (vertical nav + dot + STUDIO kicker) */
.page-with-sidebar {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 52px 60px 120px;
  align-items: start;
}
.page-with-sidebar .page-main {
  padding: 0 0 0 0;
  min-width: 0;
}
.page-with-sidebar .page-section:first-of-type {
  padding-top: 0;
}
.studio-sidebar {
  position: sticky;
  top: 132px;
  padding-top: 4px;
  padding-right: 24px;
  padding-left: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(9, 9, 9, 0.92) 0%,
    rgba(9, 9, 9, 0.72) 100%
  );
  min-height: 250px;
  max-width: 260px;
}
.studio-sidebar-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}
.studio-sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
}
.studio-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.studio-sidebar-link {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--soft-gray);
  text-decoration: none;
  line-height: 1.22;
  transition: color 0.3s var(--ease);
}
.studio-sidebar-link:hover {
  color: var(--warm-white);
}
.studio-sidebar-link.is-current {
  color: var(--warm-white);
}

a.material-tier:hover {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.28);
}

.studio-hub-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.studio-hub-grid a:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .nav-mobile-toggle {
    position: relative;
    z-index: 140;
    user-select: none;
    font-size: 10px;
    letter-spacing: 0.22em;
    padding: 8px 0;
  }
  #mainNav.mobile-open .nav-mobile-toggle {
    color: var(--gold);
  }
  .page-hero {
    padding: 106px 30px 38px;
    min-height: 42vh;
  }
  .page-hero .hero-h1 {
    font-size: clamp(42px, 12.5vw, 74px);
    line-height: 0.9;
  }
  .page-hero .hero-sub {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.55;
    max-width: 92%;
  }
  .page-hero .hero-year {
    display: none;
  }
  .page-main {
    padding: 0 30px 64px;
  }
  .mobile-nav-links a {
    font-size: 18px;
    line-height: 1.2;
    padding: 8px 0;
  }
  .mobile-nav-cta {
    min-height: 46px;
  }
  .page-section {
    padding: 72px 0;
  }
  .page-section--surface,
  .page-section--graphite {
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-grid-2,
  .page-grid-2--wide-left {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .material-tier-grid,
  .studio-hub-grid {
    grid-template-columns: 1fr;
  }
  .studio-hub-grid a:last-child {
    grid-column: auto;
  }
  .project-row {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .page-with-sidebar {
    grid-template-columns: 1fr;
    padding: 0 30px 80px;
  }
  .studio-sidebar {
    position: static;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(8, 8, 8, 0.9) 100%
    );
    padding-right: 0;
    padding-bottom: 16px;
    padding-left: 14px;
    padding-top: 18px;
    margin-top: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    min-height: 0;
  }
  .studio-sidebar-kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }
  .studio-sidebar-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .studio-sidebar-link {
    font-size: 18px;
    line-height: 1.16;
    letter-spacing: -0.01em;
  }
}
