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

  :root {
    --paper: #FFFDF7;
    --cream: #FFF1D8;
    --butter: #FFD76A;
    --tomato: #E9552E;
    --tomato-dark: #B63A21;
    --herb: #2F7B57;
    --mint: #D8F0D2;
    --sky: #DDF1FF;
    --ink: #1B1814;
    --muted: #6B6258;
    --line: #E9DDC8;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }

  img { display: block; max-width: 100%; }
  a { color: inherit; }

  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(255, 253, 247, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .brand-stamp {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--tomato);
    color: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: "Fraunces", serif;
    font-size: 20px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }

  .brand-text span:first-child { font-size: 21px; }

  .brand-text span:last-child {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links a:hover { color: var(--tomato); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  .btn-primary { background: var(--butter); }
  .btn-tomato { background: var(--tomato); color: var(--paper); }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  }

  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--tomato-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .kicker::before {
    content: "";
    width: 38px;
    height: 3px;
    background: currentColor;
  }

  h1, h2, h3 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.05em;
  }

  h1 {
    max-width: 780px;
    font-size: clamp(54px, 9vw, 112px);
    line-height: 0.88;
  }

  .hero-copy p {
    max-width: 620px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 19px;
  }

  .hero-photo {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .workshop-picker {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px) clamp(60px, 7vw, 86px);
  }

  .picker-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 2px solid var(--ink);
    list-style: none;
  }

  .picker-list a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 9px 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .picker-list li:nth-child(1) a { background: var(--butter); }
  .picker-list li:nth-child(2) a { background: var(--mint); }
  .picker-list li:nth-child(3) a { background: var(--sky); }
  .picker-list li:nth-child(4) a { background: var(--cream); }
  .picker-list li:nth-child(5) a { background: #FFD7C9; }
  .picker-list li:nth-child(6) a { background: var(--white); }
  .picker-list li:nth-child(7) a { background: var(--sky); }

  .workshop {
    scroll-margin-top: 96px;
    padding: clamp(62px, 8vw, 96px) clamp(20px, 5vw, 72px);
    border-top: 2px solid var(--ink);
  }

  .workshop:nth-of-type(odd) { background: var(--cream); }
  .workshop:nth-of-type(even) { background: var(--paper); }

  .workshop-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(28px, 5vw, 68px);
    max-width: 1240px;
    margin: 0 auto;
  }

  .workshop-photo {
    position: sticky;
    top: 102px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .workshop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .workshop-copy {
    min-width: 0;
  }

  .workshop-title {
    max-width: 720px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.92;
  }

  .workshop-lede {
    max-width: 680px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
  }

  .facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 34px;
  }

  .fact {
    min-height: 96px;
    padding: 14px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
  }

  .fact span {
    display: block;
    color: var(--tomato-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .fact strong {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.25;
  }

  .process {
    display: grid;
    gap: 14px;
    list-style: none;
    counter-reset: process;
  }

  .process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 4px 4px 0 rgba(27, 24, 20, 0.18);
  }

  .process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--butter);
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
  }

  .process-step:nth-child(2)::before { background: var(--mint); }
  .process-step:nth-child(3)::before { background: var(--sky); }
  .process-step:nth-child(4)::before { background: #FFD7C9; }

  .process-step h3 {
    margin-bottom: 6px;
    font-size: 27px;
    line-height: 1;
  }

  .process-step p {
    color: var(--muted);
    font-weight: 600;
  }

  .workshop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }

  footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 42px clamp(20px, 5vw, 72px);
    background: var(--ink);
    color: var(--paper);
  }

  .footer-brand {
    font-family: "Fraunces", serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .footer-note {
    max-width: 460px;
    margin-top: 10px;
    color: rgba(255, 253, 247, 0.7);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: start;
    list-style: none;
  }

  .footer-links a {
    color: rgba(255, 253, 247, 0.78);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @media (max-width: 980px) {
    .hero,
    .workshop-inner {
      grid-template-columns: 1fr;
    }

    .hero-photo {
      aspect-ratio: 16 / 10;
    }

    .workshop-photo {
      position: relative;
      top: auto;
      max-height: 520px;
    }
  }

  @media (max-width: 760px) {
    nav {
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      min-height: auto;
      padding: 12px 16px;
    }

    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      gap: 28px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }

    .nav-links a { font-size: 11px; }

    .brand-stamp {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }

    .brand-text span:first-child { font-size: 18px; }
    .brand-text span:last-child { display: none; }

    .nav .btn,
    .nav-cta {
      min-height: 42px;
      padding: 9px 12px;
      font-size: 10px;
      box-shadow: 3px 3px 0 var(--ink);
    }

    .hero {
      padding: 34px 16px 34px;
    }

    h1 {
      font-size: clamp(46px, 16vw, 66px);
      line-height: 0.92;
    }

    .hero-copy p,
    .workshop-lede {
      font-size: 16px;
      line-height: 1.5;
    }

    .hero-photo {
      aspect-ratio: 4 / 3;
    }

    .workshop-picker {
      padding: 0 16px 46px;
    }

    .picker-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .picker-list a {
      justify-content: center;
      text-align: center;
      font-size: 10px;
    }

    .workshop {
      scroll-margin-top: 128px;
      padding: 54px 16px;
    }

    .workshop-title {
      font-size: clamp(36px, 13vw, 54px);
      line-height: 0.96;
    }

    .facts {
      grid-template-columns: 1fr;
      margin: 22px 0 26px;
    }

    .fact {
      min-height: auto;
    }

    .process-step {
      grid-template-columns: 48px 1fr;
      gap: 14px;
      padding: 15px;
    }

    .process-step::before {
      width: 44px;
      height: 44px;
      font-size: 13px;
    }

    .process-step h3 {
      font-size: 24px;
    }

    .workshop-actions .btn {
      width: 100%;
    }

    footer {
      grid-template-columns: 1fr;
      padding: 34px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn { transition: none; }
  }
