:root{
    --ink: #14130f;
    --primary: #024031;
    --paper: #f4f1ea;
    --white: #f4f1ea;
    --line: rgba(255,255,255,.4);
    --line-dark: rgba(20,19,15,.16);
    --muted-on-dark: rgba(255,255,255,.72);
    --serif: "Nanum Myeongjo", Georgia, serif;
    --sans-inter: "Inter", -apple-system, system-ui, sans-serif;
    --sans-montserrat: "Montserrat", -apple-system, system-ui, sans-serif;
    --sans-dmsans: "DM Sans", -apple-system, system-ui, sans-serif;
    --sans-roboto: "Roboto", "Helvetica Neue", sans-serif;
  }
  *{ box-sizing: border-box; }
  html, body{ margin:0; padding:0; }
  body{
    background: var(--ink);
    color: var(--white);
    font-family: var(--serif);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  a{ color: inherit; text-decoration: none; }
  img{ display:block; max-width:100%; }

  /* ===== Logo ===== */
  .logo-img{
    display: block;
    width: auto;
    object-fit: contain;
  }
  .logo-topbar{
    height: 18px;
    filter: invert(1);
    mix-blend-mode: screen;
  }
  .topbar.on-light .logo-topbar{
    filter: none;
    mix-blend-mode: multiply;
  }
  .topbar.menu-open .logo-topbar{
    filter: none;
    mix-blend-mode: multiply;
  }
  .logo-menu{
    height: 20px;
    mix-blend-mode: multiply;
  }
  .logo-footer{
    height: 28px;
    mix-blend-mode: multiply;
  }

  /* ===== TOPBAR ===== */
  .topbar{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 1fr minmax(180px, 1fr);
    align-items: center;
    gap: 48px;
    padding: 28px 48px;
    border-bottom: 1px solid transparent;
    background: transparent;
    transition: background .3s, border-color .3s, color .3s;
  }
  .topbar.scrolled{ background: transparent; backdrop-filter: none; }
  .topbar.on-light{ color: var(--ink); border-bottom-color: transparent; }
  .topbar.on-light .pill{ border-color: var(--ink); color: var(--ink); }
  .topbar.on-light .pill:hover{ background: var(--ink); color: var(--paper); }
  .topbar.on-light.scrolled{ background: transparent; }
  .brand{
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: lowercase;
  }
  .brand .gr{ font-size: 9px; letter-spacing: .18em; opacity: .7; display:block; margin-top: -2px; }
  .topbar-tagline{
    margin: 0;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity .28s ease, transform .28s ease, max-height .28s ease;
  }
  .topbar.scrolled .topbar-tagline{
    max-height: 0;
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
  }
  .menu-toggle,
  .menu-close{
    appearance: none;
    cursor: pointer;
    font: inherit;
  }
  .menu-toggle{
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    background: var(--paper);
    color: #14130f;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
  }
  .menu-icon{
    position: relative;
    width: 22px;
    height: 12px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  .menu-icon::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid currentColor;
  }
  .topbar.on-light .menu-toggle{
    background: var(--primary);
    color: var(--paper);
  }
  .topbar.menu-open{
    color: #14130f;
  }
  .topbar.menu-open .menu-toggle{
    visibility: hidden;
  }
  .menu-backdrop{
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0,0,0,.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
  }
  .menu-backdrop.open{
    opacity: 1;
    pointer-events: auto;
  }
  .menu-panel{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    min-height: min(520px, 100vh);
    background: var(--paper);
    color: #14130f;
    border-bottom: 1px solid rgba(20,19,15,.18);
    transform: translateY(-105%);
    transition: transform .48s cubic-bezier(.77, 0, .18, 1);
    pointer-events: none;
  }
  .menu-panel.open{
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu-panel-top{
    min-height: 90px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 1fr minmax(180px, 1fr);
    align-items: center;
    gap: 48px;
    padding: 26px 48px;
    border-bottom: 1px solid rgba(20,19,15,.16);
  }
  .menu-logo{
    width: fit-content;
    font-size: 25px;
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: lowercase;
  }
  .menu-panel-top p{
    margin: 0;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
  }
  .menu-close{
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 15px;
    border: 1px solid currentColor;
    background: transparent;
    color: #14130f;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
  }
  .menu-close span:last-child{
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
  }
  .menu-panel.open .menu-close{
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
  }
  .menu-panel-body{
    display: grid;
    grid-template-columns: minmax(320px, 1.2fr) 1fr;
    gap: 120px;
    padding: 30px 48px 120px;
  }
  .menu-statement{
    max-width: 680px;
    font-size: clamp(30px, 3.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
  }
  .menu-statement p{
    margin: 0;
  }
  .menu-statement p + p{
    margin-top: 20px;
  }
  .menu-learn{
    margin-top: 34px;
  }
  .menu-links{
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 18px 72px;
    align-content: start;
    padding-top: 4px;
  }
  .menu-links a{
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.035em;
  }
  .menu-links a.active,
  .menu-links a:hover{
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  .pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    border: 1px solid currentColor;
    border-radius: 0;
    padding: 0 15px;
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 400;
    transition: background .2s, color .2s;
  }
  .pill:hover{ background: var(--white); color: var(--ink); }
  .pill.solid{
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
  }
  .pill.solid:hover{
    background: transparent;
    color: var(--primary);
  }
  .pill.lang{ min-width: 60px; text-align: center; }
  .site-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    width: fit-content;
    padding: 0 15px;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    border-radius: 0;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
  }
  .menu-learn{
    background: var(--primary);
    border-color: var(--primary);
    color: var(--paper);
  }
  .site-button.menu-learn:hover{
    background: transparent;
    color: var(--primary);
  }
  .site-button:hover,
  .menu-close:hover{
    background: var(--primary);
    color: var(--paper);
  }
  .menu-toggle:hover{
    background: var(--paper);
    color: #14130f;
  }
  .topbar.on-light .menu-toggle:hover{
    background: var(--primary);
    color: var(--paper);
  }

  /* ===== SECTION (slide) ===== */
  .slide{
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
  }
  .slide .bg{
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(1);
  }
  .slide .scrim{
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.22) 75%, rgba(0,0,0,.4) 100%);
    z-index: 1;
  }
  .slide .scrim.right-panel{
    background: linear-gradient(90deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.35) 100%);
  }
  .slide .inner{
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    padding: 140px 48px 64px;
    min-height: 100vh;
  }
  .slide .title-block{ max-width: 720px; }
  .slide .big{
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--white);
    margin: 0;
    text-wrap: balance;
  }
  .slide .copy{
    max-width: 460px;
    justify-self: end;
    align-self: end;
    padding-bottom: 14px;
  }
  .slide .copy p{
    font-size: 15px; line-height: 1.65;
    color: var(--white);
    margin: 0 0 14px;
  }
  .slide .copy p:last-child{ margin-bottom: 0; }
  .slide .copy strong{ font-weight: 600; }
  .partner .title-block{
    max-width: 1120px;
    justify-self: center;
    text-align: center;
    grid-column: 1 / -1;
  }
  .partner .big{
    text-transform: lowercase;
  }
  .partner .inner{
    grid-template-columns: 1fr;
    place-items: center;
    padding: 140px 48px 64px;
  }
  .partner-intro{
    background: var(--paper);
    color: var(--ink);
    padding: 110px 48px 150px;
  }
  .partner-heading{
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(320px, .78fr);
    gap: clamp(48px, 8vw, 140px);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto 72px;
  }
  .partner-heading h2{
    margin: 0;
    max-width: 600px;
    font-size: clamp(54px, 7.2vw, 108px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.045em;
  }
  .partner-heading p{
    max-width: 460px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    opacity: .9;
  }
  .partner-intro .page-actions{
    max-width: 1120px;
    margin: 0 auto;
  }

  /* numbered list (services) */
  .acc{
    display:grid; gap: 0;
    width: 100%;
    max-width: 520px;
    justify-self: end;
  }
  .acc .row{
    border-top: 1px solid rgba(255,255,255,.35);
    padding: 18px 0;
    cursor: pointer;
  }
  .acc .row:last-child{ border-bottom: 1px solid rgba(255,255,255,.35); }
  .acc .row-h{
    display:grid; grid-template-columns: 28px 1fr 18px;
    gap: 14px;
    align-items: baseline;
    font-size: 18px;
    font-weight: 600;
  }
  .acc .row-h .n{ opacity: .7; font-weight: 500; }
  .acc .row-h .pm{ text-align: right; font-weight: 400; font-size: 22px; line-height: 1; }
  .acc .body{ display: none; padding: 14px 0 6px 42px; font-size: 14px; line-height: 1.65; color: var(--muted-on-dark); }
  .acc .row.open .body{ display: block; }
  .acc .row.open .pm{ transform: rotate(45deg); }

  /* ===== About founders ===== */
  .about-founders-page{
    background: var(--paper);
    color: var(--ink);
  }
  .about-founder-hero{
    position: relative;
    min-height: 56vh;
    overflow: hidden;
    display: grid;
  }
  .about-founder-bg,
  .about-founder-scrim{
    position: absolute;
    inset: 0;
  }
  .about-founder-bg{
    background-size: cover;
    background-position: center 42%;
    filter: grayscale(1);
  }
  .about-founder-scrim{
    background: linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.14) 48%, rgba(0,0,0,.6) 100%);
  }
  .about-founder-hero-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    gap: 48px;
    align-items: end;
    min-height: 56vh;
    padding: 140px 48px 52px;
    color: var(--paper);
  }
  .about-founders-page .big{
    font-size: clamp(72px, 10vw, 150px);
    line-height: .9;
    letter-spacing: -.04em;
    margin: 0;
  }
  .about-founder-intro{
    max-width: 360px;
    justify-self: end;
    padding-bottom: 10px;
  }
  .about-founder-intro p{
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
  }
  .founders-showcase{
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 520px));
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 48px 140px;
  }
  .founder-card{
    display: grid;
    gap: 28px;
  }
  .founder-card-offset{
    margin-top: 120px;
  }
  .founder-visual{
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    filter: saturate(.9);
  }
  .founder-content{
    max-width: 520px;
  }
  .founder-content h2{
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
  }
  .founder-content .rl{
    margin: 12px 0 22px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .58;
  }
  .founder-content p{
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
    opacity: .82;
  }
  .founder-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .founder-content li{
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line-dark);
    font-size: 13px;
    line-height: 1.35;
  }
  .founder-content li:last-child{
    border-bottom: 1px solid var(--line-dark);
  }
  .founder-content .yr{
    opacity: .58;
  }

  /* ===== Contact page ===== */
  .contact-page{
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper);
    color: var(--ink);
  }
  .contact-image{
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
  }
  .contact-panel{
    display: grid;
    align-content: center;
    padding: 150px 56px 72px;
  }
  .contact-heading{
    max-width: 660px;
    margin-bottom: 84px;
  }
  .contact-heading h1{
    margin: 0;
    font-size: clamp(72px, 8vw, 136px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
  }
  .contact-heading p{
    max-width: 430px;
    margin: 70px 0 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
  }
  .contact-details{
    border-top: 1px solid var(--line-dark);
  }
  .contact-detail{
    display: grid;
    grid-template-columns: minmax(120px, 170px) 1fr;
    gap: 28px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .contact-detail .k{
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .58;
  }
  .contact-detail .v{
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.2;
  }
  .contact-detail .v a{
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
  }

  /* footer */
  .foot{
    min-height: 500px;
    background: var(--paper);
    color: #000;
    padding: 300px 48px 24px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .foot-main{
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(210px, 1fr) minmax(260px, 1fr);
    align-items: end;
    gap: 56px;
  }
  .foot-title{
    display: flex;
    align-items: center;
    font-size: 0;
    line-height: 0;
  }
  .foot-contact,
  .foot-address{
    display: grid;
    gap: 5px;
    font-size: 18px;
    line-height: 1.45;
  }
  .foot-contact a{
    width: fit-content;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }
  .foot-address{
    justify-self: end;
    font-style: normal;
  }
  .foot-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 0;
    gap: 24px;
  }
  .foot-copy,
  .foot-credit{
    margin: 0;
    font-size: 13px;
    line-height: 1;
  }
  .foot-credit{
    justify-self: end;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
  }

  /* ===== light variant (Approach) ===== */
  .slide.light{ background: var(--paper); color: var(--ink); }
  .slide.light .scrim{ display: none; }
  .slide.light .big{ color: var(--ink); }
  .slide.light .copy p{ color: var(--ink); }
  .slide.light .copy p{ opacity: .8; }

  /* ===== Method page ===== */
  .method-page{
    background: var(--paper);
    color: var(--ink);
  }
  .method-hero{
    position: relative;
    min-height: 56vh;
    overflow: hidden;
    display: grid;
  }
  .method-hero-bg,
  .method-hero-scrim{
    position: absolute;
    inset: 0;
  }
  .method-hero-bg{
    background-size: cover;
    background-position: center 45%;
    filter: grayscale(1);
  }
  .method-hero-scrim{
    background: linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.58) 100%);
  }
  .method-hero-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    gap: 48px;
    align-items: end;
    min-height: 56vh;
    padding: 140px 48px 52px;
    color: var(--paper);
  }
  .method-inner{
    width: 100%;
    padding: 48px 48px 64px;
  }
  .method-page .big{
    font-size: clamp(72px, 10vw, 150px);
    line-height: .9;
    letter-spacing: -.04em;
    margin: 0;
  }
  .method-hero-copy{
    max-width: 380px;
    justify-self: end;
    padding-bottom: 10px;
  }
  .method-hero-copy p{
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
  }
  .method-list{
    display: grid;
    gap: 0;
  }
  .method-heading{
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(320px, .78fr);
    gap: clamp(48px, 8vw, 140px);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto 210px;
    padding: 52px 0 18px;
  }
  .method-section-title{
    margin: 0;
    max-width: 560px;
    font-size: clamp(64px, 8.2vw, 124px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
  }
  .method-heading p{
    max-width: 430px;
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    opacity: .9;
  }
  .method-row{
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(500px, 1000px);
    gap: 48px;
    padding: 18px 0;
    border-top: 1px solid var(--line-dark);
    min-width: 0;
  }
  .method-row:last-child{
    border-bottom: 1px solid var(--line-dark);
  }
  .method-copy{
    display: grid;
    align-content: start;
    min-height: 260px;
  }
  .method-copy h2{
    margin: 0;
    max-width: 430px;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--primary);
  }
  .method-copy h2 span{
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1;
    color: var(--primary);
    opacity: .72;
  }
  .method-copy p{
    align-self: end;
    max-width: 360px;
    margin: 48px 0 0;
    font-size: 15px;
    line-height: 1.55;
    opacity: .82;
  }
  .method-media{
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2 / 1;
    min-height: 0;
    min-width: 0;
    background-size: cover;
    background-position: center;
  }

  /* timeline (heritage) */
  .tl{ display:grid; gap: 0; max-width: 520px; justify-self: end; }
  .tl-row{
    display: grid; grid-template-columns: 70px 1fr; gap: 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.2);
    font-size: 13px;
    align-items: baseline;
  }
  .tl-row:last-child{ border-bottom: 1px solid rgba(255,255,255,.2); }
  .tl-row .y{ font-weight: 600; }
  .tl-row .t{ color: var(--muted-on-dark); line-height: 1.55; }

  /* responsive */
  @media (max-width: 980px){
    .topbar{
      grid-template-columns: 1fr auto;
      gap: 10px 18px;
      padding: 18px 22px;
    }
    .topbar.on-light{ border-bottom-color: transparent; }
    .topbar-tagline{
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: start;
      text-align: left;
      font-size: 17px;
    }
    .menu-panel{
      min-height: 100vh;
      overflow-y: auto;
    }
    .menu-panel-top{
      grid-template-columns: 1fr auto;
      gap: 18px;
      padding: 18px 22px;
    }
    .menu-panel-top p{
      grid-column: 1 / -1;
      grid-row: 2;
      text-align: left;
      font-size: 17px;
    }
    .menu-close{
      grid-column: 2;
      grid-row: 1;
    }
    .menu-panel-body{
      grid-template-columns: 1fr;
      gap: 42px;
      padding: 28px 22px 72px;
    }
    .menu-statement{
      font-size: clamp(31px, 10vw, 48px);
    }
    .menu-links{
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .menu-links a{
      font-size: 30px;
    }
    .slide .inner{ grid-template-columns: 1fr; padding: 110px 22px 70px; gap: 32px; align-content: end; }
    .slide .big{ font-size: 14vw; }
    .slide .copy, .acc, .tl{ justify-self: stretch; max-width: none; }
    .partner .inner{
      place-items: center;
      padding: 118px 22px 70px;
    }
    .partner-intro{
      padding: 72px 22px 96px;
    }
    .partner-heading{
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 42px;
    }
    .partner-heading h2{
      font-size: clamp(48px, 14vw, 76px);
    }
    .partner-heading p{
      max-width: 360px;
      margin-top: 0;
      font-size: 17px;
    }
    .method-hero,
    .method-hero-inner{
      min-height: 62vh;
    }
    .method-hero-inner{
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 118px 22px 42px;
    }
    .method-hero-copy{
      justify-self: start;
      max-width: 320px;
      padding-bottom: 0;
    }
    .method-hero-copy p{
      font-size: 17px;
    }
    .method-inner{
      padding: 34px 22px 70px;
    }
    .method-heading{
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 110px;
      padding-top: 34px;
    }
    .method-section-title{
      font-size: clamp(52px, 15vw, 82px);
    }
    .method-heading p{
      max-width: 360px;
      margin-top: 0;
      font-size: 17px;
    }
    .method-row{
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 22px 0;
    }
    .method-copy{
      min-height: 0;
    }
    .method-copy p{
      align-self: auto;
      max-width: none;
      margin-top: 22px;
    }
    .method-media{
      width: min(100%, calc(100vw - 44px));
      max-width: calc(100vw - 44px);
      min-height: 0;
      aspect-ratio: 16 / 9;
    }
    .about-founder-hero,
    .about-founder-hero-inner{
      min-height: 62vh;
    }
    .about-founder-hero-inner{
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 118px 22px 42px;
    }
    .about-founder-intro{
      justify-self: start;
      max-width: 320px;
      padding-bottom: 0;
    }
    .about-founder-intro p{
      font-size: 17px;
    }
    .founders-showcase{
      grid-template-columns: 1fr;
      gap: 64px;
      min-height: 0;
      padding: 72px 22px 90px;
    }
    .founder-card-offset{
      margin-top: 0;
    }
    .founder-visual{
      border-radius: 12px;
      max-height: 620px;
    }
    .founder-content li{
      grid-template-columns: 76px 1fr;
    }
    .contact-page{
      grid-template-columns: 1fr;
    }
    .contact-image{
      min-height: 46vh;
    }
    .contact-panel{
      padding: 64px 22px 72px;
    }
    .contact-heading{
      margin-bottom: 58px;
    }
    .contact-heading h1{
      font-size: clamp(58px, 17vw, 92px);
    }
    .contact-heading p{
      margin-top: 34px;
      font-size: 17px;
    }
    .contact-detail{
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 22px 0;
    }
    .foot{
      min-height: 520px;
      padding: 190px 22px 22px;
    }
    .foot-main{
      grid-template-columns: 1fr;
      gap: 34px;
      align-items: start;
    }
    .foot-title{
      font-size: 0;
    }
    .foot-contact,
    .foot-address{
      justify-self: start;
      font-size: 17px;
    }
    .foot-bottom{
      align-items: flex-start;
      margin-top: 44px;
    }
    .foot-copy,
    .foot-credit{
      font-size: 12px;
    }
  }

  /* tweaks: visible by default if loaded */

  /* page actions */
  .page-actions{ display:flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
  /* About / archivio */
  .about-page{
    background: var(--paper);
    color: #000;
  }
  .about-hero{
    position: relative;
    min-height: 56vh;
    overflow: hidden;
    display: grid;
  }
  .about-bg,
  .about-scrim{
    position: absolute;
    inset: 0;
  }
  .about-bg{
    background-size: cover;
    background-position: center 38%;
    filter: grayscale(1);
  }
  .about-scrim{
    background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.16) 45%, rgba(0,0,0,.64) 100%);
  }
  .about-hero-inner{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 420px);
    gap: 48px;
    align-items: end;
    min-height: 56vh;
    padding: 140px 48px 52px;
    color: var(--paper);
  }
  .about-page .big{
    font-size: clamp(72px, 10vw, 150px);
    line-height: .9;
    letter-spacing: -.04em;
    margin: 0;
  }
  .about-intro{
    max-width: 340px;
    justify-self: end;
    padding-bottom: 10px;
  }
  .about-intro p{
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
  }
  .archive{
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: center;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--paper);
    color: #000;
    padding: 68px 48px;
    border-top: 0;
  }
  .archive-h{
    font-size: clamp(32px, 3.5vw, 54px);
    letter-spacing: -.04em;
    line-height: .95;
    color: #000;
    margin: 0;
    text-align: left;
    font-weight: 400;
    align-self: center;
  }
  .archive-gallery{
    width: 100%;
    overflow: hidden;
  }
  .polaroids{
    display: flex;
    gap: 24px;
    width: max-content;
    max-width: none;
    margin: 0;
    will-change: transform;
  }
  .pol{
    flex: 0 0 clamp(320px, 42vw, 640px);
    margin: 0;
    background: transparent;
    padding: 0;
  }
  .pol:hover{
    transform: none;
    box-shadow: none;
  }
  .pol-img{
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: #f4f1ea;
  }
  .pol figcaption{
    color: #000;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.3;
  }
  .heritage-editorial{
    display: grid;
    grid-template-columns: minmax(330px, 660px) minmax(520px, 980px);
    gap: clamp(38px, 5vw, 84px);
    align-items: start;
    background: var(--paper);
    color: var(--ink);
    padding: 130px clamp(48px, 7vw, 110px) 150px;
    border-top: 1px solid var(--line-dark);
  }
  .heritage-editorial-head{
    position: sticky;
    top: 120px;
  }
  .heritage-editorial-head span{
    display: block;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 12px;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .heritage-editorial-head h2{
    margin: 0;
    max-width: 460px;
    font-size: clamp(42px, 4.8vw, 84px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.045em;
  }
  .heritage-editorial-body{
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 54px 64px;
    max-width: 980px;
    padding-top: 8px;
  }
  .heritage-editorial-body p{
    margin: 0;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.62;
    text-wrap: pretty;
  }
  .heritage-editorial-body p:first-child{
    grid-column: 1 / -1;
    max-width: 760px;
    font-size: clamp(24px, 2.8vw, 44px);
    line-height: 1.08;
    letter-spacing: -.025em;
  }
  .heritage-editorial-body p:nth-child(2),
  .heritage-editorial-body p:nth-child(3){
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.42;
  }
  .heritage-editorial-body p:nth-child(4),
  .heritage-editorial-body p:nth-child(8),
  .heritage-editorial-body p:nth-child(11){
    padding-top: 34px;
    border-top: 1px solid var(--line-dark);
  }
  .tl.wide{ max-width: 900px; margin: 0 auto; justify-self: auto; }
  .tl.wide .tl-row{ grid-template-columns: 90px 1fr; }

  @media (max-width: 980px){
    .about-hero,
    .about-hero-inner{
      min-height: 62vh;
    }
    .about-hero-inner{
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 118px 22px 42px;
    }
    .about-intro{
      justify-self: start;
      max-width: 320px;
      padding-bottom: 0;
    }
    .about-intro p{ font-size: 17px; }
    .archive{
      grid-template-columns: 1fr;
      gap: 32px;
      height: 100vh;
      min-height: 640px;
      padding: 56px 22px;
      align-content: center;
    }
    .polaroids{ gap: 18px; }
    .pol{ flex-basis: 82vw; }
    .heritage-editorial{
      grid-template-columns: 1fr;
      gap: 42px;
      padding: 72px 22px 90px;
    }
    .heritage-editorial-head{
      position: static;
    }
    .heritage-editorial-body p{
      grid-column: auto;
      font-size: 17px;
    }
    .heritage-editorial-body{
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .heritage-editorial-body p:first-child{
      font-size: clamp(24px, 8vw, 34px);
    }
    .heritage-editorial-body p:nth-child(2),
    .heritage-editorial-body p:nth-child(3){
      font-size: 18px;
    }
  }

  /* ===== Page transitions ===== */
  .page-wrap{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .38s ease;
  }
  .page-exit{
    opacity: 0;
  }
  .page-enter{
    animation: pageIn .55s cubic-bezier(.16,1,.3,1) both;
  }
  @keyframes pageIn{
    from{ opacity: 0; transform: translateY(28px); }
    to{ opacity: 1; transform: translateY(0); }
  }

  /* ===== Image reveal ===== */
  .will-reveal{
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s cubic-bezier(.16,1,.3,1),
                transform 1.4s cubic-bezier(.16,1,.3,1);
  }
  .will-reveal.revealed{
    opacity: 1;
    transform: scale(1);
  }

  /* ===== Font overrides ===== */
  body.font-inter{ font-family: var(--sans-inter); }
  body.font-montserrat{ font-family: var(--sans-montserrat); }
  body.font-dmsans{ font-family: var(--sans-dmsans); }
  body.font-roboto{ font-family: var(--sans-roboto); }

  /* ===== Tweaks panel ===== */
  .tweaks-toggle{
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: var(--ink);
    color: var(--paper);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s, border-color .2s;
  }
  .tweaks-toggle:hover{
    border-color: rgba(255,255,255,.5);
  }
  .tweaks-panel{
    position: fixed;
    bottom: 76px;
    right: 24px;
    z-index: 200;
    width: 220px;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    padding: 18px 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s;
  }
  .tweaks-panel.open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .tweaks-label{
    display: block;
    margin: 0 0 12px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
  }
  .tweaks-options{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 6px;
  }
  .tweaks-options.wide{
    grid-template-columns: 1fr;
  }
  .tweaks-opt{
    appearance: none;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    background: transparent;
    color: var(--paper);
    font-size: 13px;
    padding: 8px 0;
    cursor: pointer;
    transition: background .15s, border-color .15s;
  }
  .tweaks-opt:hover{
    border-color: rgba(255,255,255,.4);
  }
  .tweaks-opt.active{
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
  }
  .tweaks-opt-serif{ font-family: var(--serif); }
  .tweaks-opt-inter{ font-family: var(--sans-inter); }
  .tweaks-opt-montserrat{ font-family: var(--sans-montserrat); }
  .tweaks-opt-dmsans{ font-family: var(--sans-dmsans); }
  .tweaks-opt-roboto{ font-family: var(--sans-roboto); }
