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

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

@layer tokens {
  :root {
    --void: #0a0c11;
    --surface-1: #12151d;
    --surface-2: #191d27;
    --surface-3: #212636;
    --border-soft: rgba(201, 169, 98, .16);
    --border-soft-2: rgba(201, 169, 98, .28);

    --gold: #c9a962;
    --gold-bright: #e3c98a;
    --gold-deep: #9b7e42;
    --sapphire: #3d5a78;
    --sapphire-bright: #5b7fa3;
    --emerald: #3f6b5e;

    --text-primary: #ece9e2;
    --text-secondary: #b7bac4;
    --text-muted: #838798;
    --text-on-gold: #1c1608;

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --radius-full: 999px;

    --space-3xs: .25rem;
    --space-2xs: .5rem;
    --space-xs: .75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
    --shadow-md: 0 10px 28px -10px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35);
    --shadow-lg: 0 30px 70px -24px rgba(0,0,0,.65), 0 10px 26px -8px rgba(0,0,0,.5);
    --shadow-gold: 0 12px 34px -10px rgba(201,169,98,.4);

    --ease: cubic-bezier(.22,1,.36,1);
    --font-display: "Wix Madefor Display", sans-serif;
    --font-body: "Wix Madefor Text", sans-serif;
  }
}

@layer layout {
  html, body { background: var(--void); color: var(--text-primary); }
  body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
  .canvas { display: flex; flex-direction: column; min-height: 100vh; }
  main { flex: 1; }
  h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; color: var(--text-primary); }
  h1 { font-size: clamp(2.2rem, 4.5vw + 1rem, 3.8rem); }
  h2 { font-size: clamp(1.7rem, 2.6vw + 1rem, 2.6rem); }
  h3 { font-size: clamp(1.15rem, 1vw + .9rem, 1.4rem); font-weight: 600; }
  p { color: var(--text-secondary); }
  .eyebrow { font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: var(--space-sm); }

  .section { padding: var(--space-3xl) var(--space-lg); position: relative; }
  .section--void { background: radial-gradient(120% 100% at 10% 0%, #0e1119 0%, var(--void) 55%); }
  .section--surface { background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%); }
  .section--deep { background: linear-gradient(160deg, #0c1a1f 0%, var(--void) 60%); }

  @media (max-width: 780px) {
    .section { padding: var(--space-2xl) var(--space-md); }
  }
}

@layer components {

  
  .cookie-bar {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    max-height: 200px;
    transition: max-height .5s var(--ease), padding .5s var(--ease), opacity .4s ease;
  }
  .cookie-bar.is-hidden { max-height: 0; opacity: 0; border-bottom: none; }
  .cookie-bar__inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
    padding: var(--space-xs) var(--space-lg);
    flex-wrap: wrap;
  }
  .cookie-bar__inner p { font-size: .82rem; color: var(--text-muted); max-width: 720px; }
  .cookie-bar__inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-bar__actions { display: flex; gap: var(--space-xs); flex-shrink: 0; }
  .cookie-bar__btn {
    padding: .5rem 1rem; border-radius: var(--radius-full); font-size: .8rem; font-weight: 600;
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    min-height: 38px;
  }
  .cookie-bar__btn--ghost { border: 1px solid var(--border-soft-2); color: var(--text-secondary); }
  .cookie-bar__btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
  .cookie-bar__btn--solid { background: var(--gold); color: var(--text-on-gold); box-shadow: var(--shadow-sm); }
  .cookie-bar__btn--solid:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

  
  .stage-nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(8, 9, 13, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
    transition: transform .5s var(--ease), opacity .4s ease;
  }
  .stage-nav--hidden { transform: translateY(-110%); opacity: 0; pointer-events: none; }
  .stage-nav__inner {
    max-width: 1320px; margin: 0 auto; padding: var(--space-sm) var(--space-lg);
    display: flex; align-items: center; gap: var(--space-lg);
  }
  .stage-nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-right: auto; }
  .stage-nav__logo { width: 34px; height: 34px; }
  .stage-nav__links { display: flex; gap: var(--space-lg); }
  .stage-nav__links a { font-size: .93rem; font-weight: 500; color: var(--text-secondary); position: relative; padding: .3rem 0; transition: color .25s var(--ease); }
  .stage-nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
  .stage-nav__links a:hover, .stage-nav__links a.is-active { color: var(--gold-bright); }
  .stage-nav__links a:hover::after, .stage-nav__links a.is-active::after { width: 100%; }
  .stage-nav__burger { display: none; flex-direction: column; gap: 5px; width: 26px; height: 44px; justify-content: center; align-items: flex-end; }
  .stage-nav__burger span { width: 100%; height: 2px; background: var(--gold); border-radius: 2px; transition: all .3s var(--ease); }

  .spotlight-trigger {
    position: fixed; top: var(--space-md); left: var(--space-md); z-index: 70;
    width: 52px; height: 52px; border-radius: var(--radius-full);
    background: linear-gradient(140deg, var(--gold-deep), var(--gold));
    color: var(--text-on-gold); display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
    opacity: 0; transform: translateY(-16px) scale(.85); pointer-events: none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    font-size: 1.1rem;
  }
  .spotlight-trigger.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .spotlight-trigger:hover { transform: translateY(-2px) scale(1.04); }

  .stage-curtain {
    position: fixed; inset: 0; background: rgba(4,5,8,.6); backdrop-filter: blur(2px);
    z-index: 80; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
  }
  .stage-curtain.is-visible { opacity: 1; pointer-events: auto; }

  .drawer {
    position: fixed; top: 0; left: 0; bottom: 0; width: 80%; max-width: 360px;
    background: linear-gradient(175deg, var(--surface-1), var(--void));
    border-right: 1px solid var(--border-soft-2);
    z-index: 90; transform: translateX(-100%);
    transition: transform .5s var(--ease);
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer__close { position: absolute; top: var(--space-md); right: var(--space-md); width: 44px; height: 44px; font-size: 1.2rem; color: var(--gold); }
  .drawer__links { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
  .drawer__links a {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--text-primary);
    opacity: 0; transform: translateX(-16px);
    transition: color .25s var(--ease);
  }
  .drawer.is-open .drawer__links a { animation: drawerIn .5s var(--ease) forwards; animation-delay: calc(var(--i) * .07s + .12s); }
  .drawer__links a.is-active, .drawer__links a:hover { color: var(--gold-bright); }
  @keyframes drawerIn { to { opacity: 1; transform: translateX(0); } }
  .drawer__cta { margin-top: auto; text-align: center; }

  
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.7rem; border-radius: var(--radius-full);
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    min-height: 48px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  }
  .btn--gold { background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); color: var(--text-on-gold); box-shadow: var(--shadow-gold); }
  .btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201,169,98,.5); }
  .btn--ghost { border: 1px solid var(--border-soft-2); color: var(--text-primary); }
  .btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(201,169,98,.06); }

  
  .stage {
    position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
    padding: var(--space-2xl) var(--space-md); overflow: hidden;
  }
  .stage__gradient {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(120deg, #0a0c11, #162330, #1c2f2a, #0a0c11);
    background-size: 320% 320%;
    animation: gradientShift 22s ease infinite;
  }
  @keyframes gradientShift {
    0% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
    100% { background-position: 0% 40%; }
  }
  .stage__shape {
    position: absolute; border-radius: 50%; z-index: 1; filter: blur(2px);
    width: 340px; height: 340px; top: 8%; right: 8%;
    background: radial-gradient(circle at 35% 35%, rgba(201,169,98,.28), transparent 70%);
  }
  .stage__shape--2 {
    width: 260px; height: 260px; top: auto; bottom: 6%; left: 6%; right: auto;
    background: radial-gradient(circle at 35% 35%, rgba(61,90,120,.35), transparent 70%);
  }
  .stage__panel {
    position: relative; z-index: 2; max-width: 780px; text-align: center;
    background: rgba(10,12,17,.6); backdrop-filter: blur(18px);
    border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg); box-shadow: var(--shadow-lg);
  }
  .stage__lead { font-size: 1.08rem; margin: var(--space-md) auto var(--space-lg); max-width: 620px; }
  .stage__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

  
  .page-hero { padding: var(--space-2xl) var(--space-lg) var(--space-lg); background: linear-gradient(160deg, #101722, var(--void)); }
  .page-hero__panel { max-width: 760px; margin: 0 auto; text-align: center; }
  .page-hero__panel p:last-child { margin-top: var(--space-sm); font-size: 1.05rem; }

  
  .gallery__intro { max-width: 680px; margin: 0 auto var(--space-xl); text-align: center; }
  .gallery__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg);
    max-width: 1100px; margin: 0 auto;
  }
  .spotlight {
    background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
    border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
    padding: var(--space-lg); box-shadow: var(--shadow-md);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  }
  .spotlight:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-soft-2); }
  .spotlight__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: var(--radius-md);
    background: linear-gradient(140deg, rgba(201,169,98,.22), rgba(201,169,98,.05));
    color: var(--gold-bright); font-size: 1.25rem; margin-bottom: var(--space-sm);
  }
  .spotlight h3 { margin-bottom: var(--space-2xs); }
  .gallery__cta { text-align: center; margin-top: var(--space-xl); }

  
  .spotlight-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center;
    max-width: 1180px; margin: 0 auto var(--space-2xl);
  }
  .spotlight-row:last-child { margin-bottom: 0; }
  .spotlight-row--reverse .spotlight-row__media { order: 2; }
  .spotlight-row--reverse .spotlight-row__text { order: 1; }
  .spotlight-row__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); }
  .spotlight-row__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
  .spotlight-row__text p { margin-bottom: var(--space-sm); }
  .spotlight-row__text p:last-of-type { margin-bottom: var(--space-md); }

  .spotlight-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; max-width: 1180px; margin: 0 auto; }
  .spotlight-split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-soft); }
  .spotlight-split__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
  .spotlight-split__text p { margin: var(--space-sm) 0; }

  
  .fold-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
  .fold-item { background: linear-gradient(160deg, var(--surface-2), var(--surface-1)); border: 1px solid var(--border-soft); border-radius: var(--radius-md); overflow: hidden; transition: border-color .3s var(--ease); }
  .fold-item.is-open { border-color: var(--border-soft-2); box-shadow: var(--shadow-md); }
  .fold-trigger { width: 100%; display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-md); text-align: left; min-height: 60px; }
  .fold-trigger__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(201,169,98,.14); color: var(--gold-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .fold-trigger__text { flex: 1; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
  .fold-trigger__caret { color: var(--gold); transition: transform .35s var(--ease); }
  .fold-item.is-open .fold-trigger__caret { transform: rotate(180deg); }
  .fold-panel { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
  .fold-item.is-open .fold-panel { max-height: 600px; }
  .fold-panel p, .fold-panel label, .fold-panel input, .fold-panel textarea { padding-left: var(--space-md); padding-right: var(--space-md); }
  .fold-panel p { padding-bottom: var(--space-md); }

  
  .fold-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-secondary); margin: var(--space-sm) 0 .4rem; }
  .fold-form input[type="text"], .fold-form input[type="email"], .fold-form textarea {
    width: calc(100% - 3rem); margin: 0 var(--space-md); padding: .8rem 1rem;
    background: var(--void); border: 1px solid var(--border-soft-2); border-radius: var(--radius-sm);
    color: var(--text-primary); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  }
  .fold-form input:focus, .fold-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,98,.18); }
  .fold-form textarea { resize: vertical; min-height: 120px; }
  .fold-form .fold-panel { padding-bottom: var(--space-md); }
  .checkbox-label { display: flex; align-items: flex-start; gap: .6rem; margin: 0 var(--space-md) var(--space-md); font-size: .88rem; color: var(--text-secondary); }
  .checkbox-label input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
  .checkbox-label a { color: var(--gold); text-decoration: underline; }
  .contact-submit { margin: 0 var(--space-md) var(--space-md); width: calc(100% - 3rem); }

  
  .shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); max-width: 1100px; margin: 0 auto; }
  .shelf__card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface-1));
    border: 1px solid var(--border-soft); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-md); text-align: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .shelf__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .shelf__card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
  .shelf__card h3, .shelf__card p { padding: 0 var(--space-sm); }
  .shelf__card h3 { margin-top: var(--space-sm); }
  .shelf__card p { font-size: .85rem; padding-bottom: var(--space-sm); color: var(--gold-bright); }
  .shelf__card--photo img { aspect-ratio: 4/3; }
  .team-teaser { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--space-2xl); align-items: center; max-width: 1180px; margin: 0 auto; }
  .team-teaser__text p { margin: var(--space-sm) 0 var(--space-md); }
  .shelf--wide { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .shelf__card--large { text-align: left; }
  .shelf__card--large img { aspect-ratio: 16/10; }
  .shelf__body { padding: var(--space-md); }
  .shelf__role { color: var(--gold-bright); font-size: .85rem; font-weight: 600; margin: .2rem 0 var(--space-sm); }
  .shelf-wrap { padding-top: var(--space-2xl); }

  
  .cta-band__inner { max-width: 640px; margin: 0 auto; text-align: center; }
  .cta-band__inner p { margin: var(--space-sm) 0 var(--space-lg); }

  
  .process { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-lg); }
  .process__item { display: flex; gap: var(--space-lg); align-items: flex-start; padding-bottom: var(--space-lg); border-bottom: 1px solid var(--border-soft); }
  .process__item:last-child { border-bottom: none; padding-bottom: 0; }
  .process__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); opacity: .8; flex-shrink: 0; width: 70px; }
  .process__text p { margin-top: .4rem; }

  
  .contact-layout { display: grid; grid-template-columns: .9fr 1.2fr; gap: var(--space-2xl); max-width: 1180px; margin: 0 auto; align-items: start; }
  .contact-layout__info h2 { margin-bottom: var(--space-md); }
  .contact-info-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }
  .contact-info-list li { display: flex; align-items: center; gap: .8rem; color: var(--text-secondary); }
  .contact-info-list li i { color: var(--gold); width: 20px; text-align: center; }
  .contact-info-list a { transition: color .25s var(--ease); }
  .contact-info-list a:hover { color: var(--gold-bright); }
  .contact-layout__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-md); }
  .contact-layout__map iframe { display: block; filter: grayscale(.2) invert(.92) hue-rotate(180deg); }
  .contact-gallery { padding-top: var(--space-2xl); }

  
  .thanks { text-align: center; }
  .thanks__inner { max-width: 640px; margin: 0 auto; }
  .thanks__inner p { margin: var(--space-sm) 0 var(--space-lg); }
  .timeline { margin-top: var(--space-2xl); text-align: left; display: flex; flex-direction: column; gap: var(--space-lg); position: relative; }
  .timeline::before { content: ""; position: absolute; left: 21px; top: 12px; bottom: 12px; width: 2px; background: var(--border-soft); }
  .timeline__item { display: flex; gap: var(--space-md); position: relative; }
  .timeline__marker {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-2); border: 1px solid var(--border-soft-2); color: var(--text-muted);
  }
  .timeline__item.is-done .timeline__marker { background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); color: var(--text-on-gold); border-color: transparent; }
  .timeline__item.is-current .timeline__marker { box-shadow: 0 0 0 5px rgba(201,169,98,.18); }
  .timeline__item.is-upcoming h3 { color: var(--text-muted); }
  .timeline__text p { margin-top: .2rem; }

  
  .legal__inner { max-width: 760px; margin: 0 auto; }
  .legal__inner h1 { margin: var(--space-2xs) 0 var(--space-md); }
  .legal__inner > p:first-of-type { margin-bottom: var(--space-lg); }
  .legal__inner h2 { margin: var(--space-xl) 0 var(--space-sm); color: var(--gold-bright); font-size: 1.3rem; }
  .legal-bullets { display: flex; flex-direction: column; gap: var(--space-xs); }
  .legal-bullets li { padding-left: 1.4rem; position: relative; color: var(--text-secondary); }
  .legal-bullets li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: .15em; color: var(--gold); font-size: .75rem; }
  .cookie-table { width: 100%; border-collapse: collapse; margin-top: var(--space-sm); }
  .cookie-table th, .cookie-table td { border: 1px solid var(--border-soft); padding: .8rem; text-align: left; font-size: .92rem; color: var(--text-secondary); }
  .cookie-table th { color: var(--gold-bright); font-family: var(--font-display); }

  
  .canvas-foot { background: linear-gradient(150deg, #101722 0%, #182338 45%, #14231e 100%); border-top: 1px solid var(--border-soft); margin-top: auto; }
  .canvas-foot__inner { max-width: 1280px; margin: 0 auto; padding: var(--space-2xl) var(--space-lg) var(--space-lg); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--space-lg); }
  .canvas-foot__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
  .canvas-foot__logo { width: 40px; height: 40px; }
  .canvas-foot__brand p { font-size: .92rem; max-width: 320px; }
  .canvas-foot__col h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-bright); margin-bottom: var(--space-sm); }
  .canvas-foot__col a, .canvas-foot__col p { display: block; margin-bottom: .6rem; font-size: .92rem; color: var(--text-secondary); transition: color .25s var(--ease); }
  .canvas-foot__col a:hover { color: var(--gold-bright); }
  .canvas-foot__col p a { display: inline; margin: 0; }
  .canvas-foot__col i { color: var(--gold); margin-right: .5rem; }
  .canvas-foot__bottom { border-top: 1px solid var(--border-soft); padding: var(--space-md) var(--space-lg); text-align: center; }
  .canvas-foot__bottom p { font-size: .82rem; color: var(--text-muted); }
}

@layer utilities {
  @media (max-width: 980px) {
    .stage-nav__links, .stage-nav__cta { display: none; }
    .stage-nav__burger { display: flex; }
    .gallery__grid { grid-template-columns: 1fr; }
    .spotlight-row, .spotlight-row--reverse, .spotlight-split { grid-template-columns: 1fr; }
    .spotlight-row--reverse .spotlight-row__media, .spotlight-row--reverse .spotlight-row__text { order: initial; }
    .shelf, .shelf--wide { grid-template-columns: 1fr; }
    .team-teaser { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .canvas-foot__inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .canvas-foot__inner { grid-template-columns: 1fr; }
    .cookie-bar__inner { flex-direction: column; align-items: flex-start; }
    .stage__panel { padding: var(--space-lg) var(--space-md); }
    .fold-form input[type="text"], .fold-form input[type="email"], .fold-form textarea, .contact-submit { width: calc(100% - 2rem); margin: 0 var(--space-sm); }
    .checkbox-label { margin: 0 var(--space-sm) var(--space-sm); }
  }
}