@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { min-height: 100vh; }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  button { font: inherit; cursor: pointer; border: none; background: none; }
  ul, ol { list-style: none; }
  input, textarea, select { font: inherit; }
}

@layer tokens {
  :root {
    --ink-950: #241f19;
    --ink-900: #2c251d;
    --ink-800: #40382d;
    --ink-600: #6b5f4f;
    --ink-400: #948572;
    --paper-100: #faf6ee;
    --paper-200: #f3ecdd;
    --paper-300: #e9dfc8;
    --accent-600: #a25738;
    --accent-500: #bd6a45;
    --accent-100: #f1ded1;
    --shadow-sm: 0 1px 2px rgba(44, 37, 29, 0.08), 0 1px 1px rgba(44, 37, 29, 0.05);
    --shadow-md: 0 4px 10px rgba(44, 37, 29, 0.1), 0 2px 4px rgba(44, 37, 29, 0.06);
    --shadow-lg: 0 20px 40px -12px rgba(44, 37, 29, 0.22), 0 8px 16px -6px rgba(44, 37, 29, 0.1);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Epilogue', sans-serif;
  }
}

@layer layout {
  html, body {
    font-family: var(--font-body);
    background: var(--paper-100);
    color: var(--ink-900);
    line-height: 1.65;
  }
  .canvas {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
      radial-gradient(ellipse at 10% 0%, rgba(189, 106, 69, 0.05), transparent 45%),
      radial-gradient(ellipse at 90% 20%, rgba(162, 87, 56, 0.04), transparent 50%);
  }
  main { flex: 1; }

  .stage { position: relative; padding: clamp(3rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
  .stage--hero { min-height: 92vh; align-items: center; text-align: left; gap: 3rem; }
  .stage--hero .stage__inner { max-width: 640px; z-index: 2; }
  .stage--hero .stage__figure { position: absolute; right: 4%; bottom: 0; width: min(42vw, 480px); z-index: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
  .stage--hero .stage__figure img { height: 100%; object-fit: cover; aspect-ratio: 3/4; }
  .stage__texture { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(189, 106, 69, 0.08), transparent 60%); z-index: 0; }

  .stage--split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; min-height: 80vh; }
  .stage--split-reverse { direction: rtl; }
  .stage--split-reverse > * { direction: ltr; }
  .stage__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
  .stage__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

  .stage--band { background: linear-gradient(135deg, var(--ink-950), var(--ink-800)); color: var(--paper-100); min-height: 50vh; align-items: center; text-align: center; }
  .stage__band-content { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.4rem; align-items: center; }
  .stage__band-content h2 { color: var(--paper-100); }
  .stage__band-content p { color: var(--paper-200); font-size: 1.05rem; }

  .stage--page-hero { min-height: 46vh; padding-top: clamp(6rem, 10vw, 9rem); align-items: flex-start; text-align: left; }
  .stage--legal-hero { min-height: 32vh; padding-top: clamp(6rem, 10vw, 8rem); align-items: flex-start; }
  .stage--thanks { min-height: 80vh; align-items: center; text-align: center; }

  .stage__inner--narrow { max-width: 720px; }
  .stage__inner--center { margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }

  .gallery { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem); }
  .gallery__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
  .gallery--faq .gallery__head, .gallery--journey .gallery__head, .gallery--intro .gallery__head, .gallery--photos .gallery__head, .gallery--courses .gallery__head { text-align: center; }

  .gallery__grid { display: grid; gap: 1.75rem; max-width: 1200px; margin: 0 auto; }
  .gallery__grid--2 { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid--3 { grid-template-columns: repeat(3, 1fr); }
  .gallery__grid--4 { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid--faq { grid-template-columns: repeat(2, 1fr); }

  .gallery__journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 1300px; margin: 0 auto; counter-reset: step; }
  .gallery__step { position: relative; padding: 2rem 1.4rem; background: var(--paper-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.6rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .gallery__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .gallery__step-num { font-family: var(--font-body); font-weight: 800; font-size: 1.8rem; color: var(--accent-600); }

  .gallery__mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 220px); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
  .gallery__mosaic-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
  .gallery__mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
  .gallery__mosaic-item:hover img { transform: scale(1.06); }
  .gallery__mosaic-item--tall { grid-row: span 2; }
  .gallery__mosaic-item--wide { grid-column: span 2; }
  .gallery__mosaic--alt { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); }

  .gallery__contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto 3rem; }
  .gallery__map { max-width: 1200px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

  .canvas__footer { background: var(--ink-950); color: var(--paper-200); margin-top: auto; }
  .canvas__footer-quote { max-width: 800px; margin: 0 auto; padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 5vw, 3rem) 2rem; text-align: center; }
  .canvas__footer-quote p { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 500; line-height: 1.4; font-family: var(--font-body); color: var(--paper-100); }
  .canvas__footer-quote span { display: block; margin-top: 1.2rem; color: var(--accent-500); font-size: 0.95rem; }
  .canvas__footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; padding: 2rem clamp(1.25rem, 5vw, 3rem) 3rem; border-top: 1px solid rgba(250, 246, 238, 0.1); }
  .canvas__footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
  .canvas__footer-col h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--paper-100); margin-bottom: 0.4rem; }
  .canvas__footer-col a, .canvas__footer-col p { color: var(--paper-300); font-size: 0.95rem; transition: color 0.2s var(--ease); }
  .canvas__footer-col a:hover { color: var(--accent-500); }
  .canvas__footer-col p { display: flex; align-items: center; gap: 0.5rem; }
  .canvas__footer-bottom { text-align: center; padding: 1.5rem; border-top: 1px solid rgba(250, 246, 238, 0.08); font-size: 0.85rem; color: var(--ink-400); }
}

@layer components {
  h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 700; color: var(--ink-950); letter-spacing: -0.01em; }
  h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.08; font-weight: 800; }
  h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.18; margin-bottom: 0.9rem; }
  h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); margin-bottom: 0.5rem; }
  p { color: var(--ink-800); }

  .stage-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 246, 238, 0.92); backdrop-filter: blur(10px); border-bottom: 2px solid transparent; transition: border-color 0.3s var(--ease); }
  .stage-header::after { content: ''; position: absolute; left: 50%; bottom: -2px; width: 0%; height: 2px; background: var(--accent-600); transform: translateX(-50%) scaleX(0); transition: width 0.4s var(--ease), transform 0.4s var(--ease); }
  .stage-header.is-sealed::after { width: 100%; transform: translateX(-50%) scaleX(1); }
  .stage-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem clamp(1.25rem, 5vw, 3rem); max-width: 1400px; margin: 0 auto; }
  .stage-header__logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; color: var(--ink-950); }
  .stage-header__nav { display: flex; gap: 2rem; }
  .stage-header__nav a { font-weight: 500; color: var(--ink-800); position: relative; padding: 0.3rem 0; transition: color 0.25s var(--ease); }
  .stage-header__nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--accent-600); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
  .stage-header__nav a:hover { color: var(--ink-950); }
  .stage-header__nav a:hover::after, .stage-header__nav a.is-active::after { transform: scaleX(1); }
  .stage-header__nav a.is-active { color: var(--accent-600); }
  .stage-header__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
  .stage-header__toggle span { width: 22px; height: 2px; background: var(--ink-950); border-radius: 2px; transition: all 0.25s var(--ease); }

  .drawer { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: none; background: var(--paper-100); border-top: 1px solid var(--paper-300); box-shadow: 0 -8px 24px rgba(44, 37, 29, 0.12); padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom)); justify-content: space-around; }
  .drawer__tab { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); color: var(--ink-600); font-size: 0.72rem; min-width: 44px; min-height: 44px; justify-content: center; transition: color 0.25s var(--ease), background 0.25s var(--ease); }
  .drawer__tab i { font-size: 1.1rem; }
  .drawer__tab.is-active { color: var(--accent-600); background: var(--accent-100); }

  .stage__eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-600); font-weight: 600; margin-bottom: 1rem; }
  .stage__title { margin-bottom: 1.4rem; }
  .stage__title--md { font-size: clamp(2rem, 4vw, 3rem); }
  .stage__lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-600); max-width: 60ch; }
  .stage__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
  .stage__list { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
  .stage__list li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-800); }
  .stage__list i { color: var(--accent-600); }

  .btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 1.9rem; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.98rem; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease); min-height: 44px; }
  .btn--ink { background: var(--ink-950); color: var(--paper-100); box-shadow: var(--shadow-sm); }
  .btn--ink:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--accent-600); }
  .btn--ghost { border: 1.5px solid var(--ink-800); color: var(--ink-950); }
  .btn--ghost:hover { transform: translateY(-3px); background: var(--ink-950); color: var(--paper-100); }
  .btn--on-dark { border-color: var(--paper-300); color: var(--paper-100); }
  .btn--on-dark:hover { background: var(--paper-100); color: var(--ink-950); }
  .btn--full { width: 100%; }

  .spotlight__tag { display: inline-block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-600); font-weight: 700; margin-bottom: 0.6rem; }

  .shelf__card { background: var(--paper-200); border-radius: var(--radius-md); padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .shelf__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .shelf__card i { font-size: 1.7rem; color: var(--accent-600); margin-bottom: 1rem; display: block; }
  .shelf__card p { font-size: 0.95rem; color: var(--ink-600); }

  .shelf__course { background: var(--paper-100); border: 1px solid var(--paper-300); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .shelf__course:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .shelf__course-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--accent-500), var(--accent-600)); display: flex; align-items: center; justify-content: center; color: var(--paper-100); font-size: 1.4rem; }
  .shelf__course-list { display: grid; gap: 0.5rem; margin: 0.5rem 0 1rem; }
  .shelf__course-list li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.92rem; color: var(--ink-600); }
  .shelf__course-list i { color: var(--accent-600); font-size: 0.5rem; }

  .drawer-card { background: var(--paper-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease); }
  .drawer-card:hover { box-shadow: var(--shadow-md); }
  .drawer-card__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.6rem; font-weight: 600; text-align: left; color: var(--ink-950); font-size: 1.02rem; }
  .drawer-card__head i { color: var(--accent-600); transition: transform 0.3s var(--ease); }
  .drawer-card.is-open .drawer-card__head i { transform: rotate(45deg); }
  .drawer-card__body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s var(--ease); padding: 0 1.6rem; }
  .drawer-card.is-open .drawer-card__body { max-height: 300px; padding: 0 1.6rem 1.6rem; }
  .drawer-card__body p { font-size: 0.95rem; color: var(--ink-600); }

  .drawer-legal { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
  .drawer-legal__item { background: var(--paper-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
  .drawer-legal__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.6rem; font-weight: 600; text-align: left; }
  .drawer-legal__head i { transition: transform 0.3s var(--ease); color: var(--accent-600); }
  .drawer-legal__item.is-open .drawer-legal__head i { transform: rotate(180deg); }
  .drawer-legal__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); padding: 0 1.6rem; }
  .drawer-legal__item.is-open .drawer-legal__body { max-height: 600px; padding: 0 1.6rem 1.5rem; }
  .drawer-legal__body p { color: var(--ink-600); font-size: 0.97rem; }

  .shelf__form-wrap { background: var(--paper-200); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); }
  .shelf__form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.3rem; }
  .shelf__form-row label { font-weight: 600; font-size: 0.9rem; color: var(--ink-900); }
  .shelf__form-row input, .shelf__form-row select, .shelf__form-row textarea { padding: 0.85rem 1rem; border: 1.5px solid var(--paper-300); border-radius: var(--radius-sm); background: var(--paper-100); color: var(--ink-950); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
  .shelf__form-row input:focus, .shelf__form-row select:focus, .shelf__form-row textarea:focus { outline: none; border-color: var(--accent-600); box-shadow: 0 0 0 3px var(--accent-100); }
  .shelf__form-checkbox { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.5rem; }
  .shelf__form-checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent-600); }
  .shelf__form-checkbox label { font-size: 0.88rem; color: var(--ink-600); }
  .shelf__form-checkbox a { color: var(--accent-600); text-decoration: underline; }

  .shelf__info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
  .shelf__info-card { background: var(--paper-200); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); }
  .shelf__info-card h3 { margin-bottom: 0.8rem; }
  .shelf__info-card p { margin-bottom: 0.6rem; font-size: 0.95rem; display: flex; align-items: center; gap: 0.6rem; }
  .shelf__info-card i { color: var(--accent-600); }

  .thanks__check { margin-bottom: 1rem; }
  .thanks__check-circle { stroke: var(--accent-600); stroke-dasharray: 340; stroke-dashoffset: 340; animation: drawCircle 0.8s var(--ease) forwards; }
  .thanks__check-mark { stroke: var(--ink-950); stroke-dasharray: 80; stroke-dashoffset: 80; animation: drawCheck 0.5s var(--ease) 0.7s forwards; }
  @keyframes drawCircle { to { stroke-dashoffset: 0; } }
  @keyframes drawCheck { to { stroke-dashoffset: 0; } }
  .thanks__title { opacity: 0; animation: fadeUp 0.6s var(--ease) 1.2s forwards; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

  .spotlight__totop { position: fixed; right: 1.5rem; bottom: 1.5rem; width: 48px; height: 48px; border-radius: 50%; background: var(--ink-950); color: var(--paper-100); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s var(--ease); z-index: 150; }
  .spotlight__totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .spotlight__totop:hover { background: var(--accent-600); transform: translateY(-3px); }

  .drawer-consent { position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 300; background: var(--ink-950); color: var(--paper-100); border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); padding: 0.8rem 1.3rem; display: flex; align-items: center; gap: 0.9rem; max-width: 92vw; transition: border-radius 0.4s var(--ease), padding 0.4s var(--ease), max-width 0.4s var(--ease), background 0.4s var(--ease); }
  .drawer-consent.is-expanded { border-radius: var(--radius-lg); flex-direction: column; align-items: stretch; padding: 1.8rem; max-width: 480px; width: 92vw; }
  .drawer-consent p { font-size: 0.85rem; color: var(--paper-200); margin: 0; }
  .drawer-consent__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
  .drawer-consent .btn-pill { padding: 0.5rem 1rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; white-space: nowrap; transition: all 0.25s var(--ease); }
  .btn-pill--accept { background: var(--accent-600); color: var(--paper-100); }
  .btn-pill--accept:hover { background: var(--accent-500); }
  .btn-pill--manage { background: transparent; color: var(--paper-200); border: 1px solid rgba(250,246,238,0.3); }
  .btn-pill--manage:hover { border-color: var(--paper-100); color: var(--paper-100); }
  .drawer-consent__title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--paper-100); }
  .drawer-consent__categories { display: none; flex-direction: column; gap: 0.9rem; margin: 1rem 0; }
  .drawer-consent.is-expanded .drawer-consent__categories { display: flex; }
  .drawer-consent.is-expanded .drawer-consent__actions { flex-direction: column; }
  .drawer-consent__cat { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .drawer-consent__cat span { font-size: 0.88rem; color: var(--paper-200); }
  .drawer-consent__cat small { display: block; color: var(--ink-400); font-size: 0.75rem; margin-top: 0.15rem; }
  .switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
  .switch input { opacity: 0; width: 0; height: 0; }
  .switch__track { position: absolute; inset: 0; background: var(--ink-600); border-radius: var(--radius-pill); transition: background 0.25s var(--ease); cursor: pointer; }
  .switch__track::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--paper-100); border-radius: 50%; transition: transform 0.25s var(--ease); }
  .switch input:checked + .switch__track { background: var(--accent-600); }
  .switch input:checked + .switch__track::before { transform: translateX(18px); }
  .switch input:disabled + .switch__track { background: var(--accent-100); opacity: 0.6; cursor: not-allowed; }
}

@layer utilities {
  .rellax { will-change: transform; }

  @media (max-width: 980px) {
    .stage-header__nav { display: none; }
    .stage-header__toggle { display: flex; }
    .stage--hero { text-align: left; padding-top: 7rem; }
    .stage--hero .stage__figure { position: relative; width: 100%; margin-top: 2rem; right: 0; }
    .stage--split, .stage--split-reverse { grid-template-columns: 1fr; direction: ltr; }
    .gallery__grid--2, .gallery__grid--3, .gallery__grid--4, .gallery__grid--faq { grid-template-columns: 1fr; }
    .gallery__journey { grid-template-columns: 1fr; }
    .gallery__mosaic, .gallery__mosaic--alt { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery__mosaic-item--wide { grid-column: span 2; }
    .gallery__contact-grid { grid-template-columns: 1fr; }
    .canvas__footer-grid { grid-template-columns: 1fr 1fr; }
    body { padding-bottom: 70px; }
    .drawer { display: flex; }
  }

  @media (max-width: 600px) {
    .canvas__footer-grid { grid-template-columns: 1fr; }
    .gallery__mosaic, .gallery__mosaic--alt { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); }
    .gallery__mosaic-item--wide, .gallery__mosaic-item--tall { grid-column: span 1; grid-row: span 1; }
    .stage { padding-left: 1.25rem; padding-right: 1.25rem; }
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  }
}