@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,400;7..72,600;7..72,700&family=Figtree:wght@400;500;600&display=swap');

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

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img, video { max-width: 100%; height: auto; display: block; }
  ul, ol { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; }
  fieldset { border: none; }
  legend { font-weight: 600; }
}

@layer tokens {
  :root {
    --color-canvas: #faf8f4;
    --color-surface: #f3efe8;
    --color-surface-alt: #ede8df;
    --color-dark: #1e1a14;
    --color-dark-alt: #2d2820;
    --color-mid: #5c5242;
    --color-text: #3a3128;
    --color-text-muted: #7a6e60;
    --color-primary: #b87333;
    --color-primary-dark: #9a5e20;
    --color-primary-light: #d4955a;
    --color-accent: #c9a96e;
    --color-accent-light: #e8d5b0;
    --color-white: #fdfaf6;
    --color-border: #ddd5c5;

    --gradient-warm: linear-gradient(135deg, #b87333 0%, #c9a96e 50%, #e8c87a 100%);
    --gradient-dark: linear-gradient(135deg, #1e1a14 0%, #2d2820 100%);
    --gradient-hero: linear-gradient(160deg, #1e1a14 0%, #3a2e1e 60%, #5c4a2a 100%);
    --gradient-text: linear-gradient(135deg, #b87333, #e8c87a, #c9a96e);

    --shadow-sm: 0 1px 3px rgba(30,26,20,0.08), 0 1px 2px rgba(30,26,20,0.06);
    --shadow-md: 0 4px 12px rgba(30,26,20,0.10), 0 2px 6px rgba(30,26,20,0.07);
    --shadow-lg: 0 8px 32px rgba(30,26,20,0.14), 0 4px 12px rgba(30,26,20,0.08);
    --shadow-xl: 0 16px 48px rgba(30,26,20,0.18), 0 8px 20px rgba(30,26,20,0.10);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    --font-heading: 'Literata', Georgia, serif;
    --font-body: 'Figtree', system-ui, sans-serif;

    --nav-h: 72px;
    --transition-base: 0.25s ease;
    --transition-slow: 0.45s ease;
  }
}

@layer layout {
  .canvas {
    background-color: var(--color-canvas);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main { flex: 1; }

  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-md);
  }

  .canvas-section {
    padding-block: var(--space-2xl);
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
  }

  .section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: var(--space-sm);
  }

  .section-subheading {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
  }
}

@layer components {

  
  .skip-to-content {
    position: absolute;
    top: 0;
    left: var(--space-sm);
    z-index: 9999;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transform: translateY(-100%);
    transition: transform var(--transition-base);
    font-weight: 600;
  }
  .skip-to-content:focus { transform: translateY(0); }

  
  .nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-block: 0;
    transition: background var(--transition-slow), box-shadow var(--transition-slow);
  }

  .nav-bar--solid {
    position: relative;
    background: var(--color-dark);
    box-shadow: var(--shadow-md);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-md);
    gap: var(--space-md);
  }

  .nav-logo img { height: 36px; width: auto; }

  .nav-links {
    display: none;
    gap: var(--space-lg);
    align-items: center;
  }

  .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    color: rgba(253,250,246,0.82);
    transition: color var(--transition-base);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
  }
  .nav-link:hover { color: var(--color-white); }
  .nav-link:hover::after, .nav-link.active::after { width: 100%; }
  .nav-link.active { color: var(--color-accent-light); }

  
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-base);
  }
  .hamburger:hover { background: rgba(255,255,255,0.08); }
  .hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
  }
  .hamburger.open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open .hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  
  .drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    overflow: hidden;
  }
  .drawer.is-open { pointer-events: all; }

  .drawer-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-dark-alt);
    transform: scale(0);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .drawer.is-open .drawer-circle {
    transform: scale(300);
  }

  .drawer-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease 0.3s;
    pointer-events: none;
  }
  .drawer.is-open .drawer-content {
    opacity: 1;
    pointer-events: all;
  }

  .drawer-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    color: var(--color-white);
    font-size: 1.5rem;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
  }
  .drawer-close:hover { background: rgba(255,255,255,0.1); }

  .drawer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .drawer-link {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
  }
  .drawer-link:hover { color: var(--color-accent); }

  
  .stage {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
  }

  .stage-figure {
    position: absolute;
    inset: 0;
    margin: 0;
  }
  .stage-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .stage-texture {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }

  .stage-curtain {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      160deg,
      rgba(18, 14, 8, 0.82) 0%,
      rgba(30, 22, 10, 0.70) 50%,
      rgba(20, 16, 8, 0.55) 100%
    );
  }

  .stage-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-md);
    padding-block: calc(var(--nav-h) + var(--space-xl)) var(--space-xl);
    width: 100%;
  }

  .stage-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
  }

  .stage-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--color-white);
  }

  .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  .stage-heading-sub {
    display: block;
    color: rgba(253,250,246,0.75);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
  }

  .stage-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(253,250,246,0.82);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: var(--space-lg);
  }

  .stage-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

  .stage-scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
  }
  .scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }
  .scroll-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    font-weight: 500;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    min-height: 48px;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--gradient-warm);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm), 0 0 0 0 rgba(184,115,51,0);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(184,115,51,0.15);
  }
  .btn-primary:active { transform: translateY(0); }

  .btn-ghost {
    background: rgba(253,250,246,0.10);
    color: var(--color-white);
    border: 1.5px solid rgba(253,250,246,0.25);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(253,250,246,0.18);
    border-color: rgba(253,250,246,0.5);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
  }
  .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

  .btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

  .cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
  }

  
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .intro-text .section-heading { margin-bottom: var(--space-md); }
  .intro-text p { margin-bottom: var(--space-md); color: var(--color-text-muted); line-height: 1.8; }
  .intro-text .btn { margin-top: var(--space-xs); }

  .body-lead {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: var(--space-md);
  }

  .intro-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 0;
  }
  .intro-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
  .intro-caption {
    display: block;
    padding: var(--space-sm);
    background: var(--color-surface);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
  }

  
  .canvas-highlight {
    background: var(--color-surface);
    padding-block: var(--space-xl);
    position: relative;
  }
  .canvas-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }

  .highlight-statement {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    padding: var(--space-lg) var(--space-md);
  }
  .highlight-statement::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent-light);
    line-height: 1;
    opacity: 0.6;
  }
  .highlight-statement p {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    line-height: 1.6;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: var(--space-sm);
  }
  .highlight-statement mark {
    background: none;
    color: var(--color-primary);
    font-style: italic;
  }
  .highlight-statement cite {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  
  .canvas-process { background: var(--color-canvas); }

  .process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    position: relative;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .process-step-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
    min-width: 3rem;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .process-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.35;
  }

  .process-step p { color: var(--color-text-muted); line-height: 1.75; font-size: 0.95rem; margin-bottom: var(--space-xs); }
  .process-step p:last-child { margin-bottom: 0; }

  .process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: var(--space-xs);
  }
  .process-list li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
  }

  .process-hgroup { margin-bottom: var(--space-sm); }
  .process-hgroup-sub {
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 2px;
  }

  
  .canvas-gallery { background: var(--color-surface); }

  .mosaic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .spotlight {
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-base);
  }
  .spotlight:hover { transform: translateY(-4px); }

  .spotlight-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .spotlight-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
  }
  .spotlight-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
  }
  .spotlight p { color: rgba(253,250,246,0.78); line-height: 1.75; font-size: 0.95rem; margin-bottom: var(--space-md); }

  .spotlight-figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; }
  .spotlight-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

  .shelf-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
  }
  .shelf-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .shelf-card header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
  }
  .shelf-card header i {
    font-size: 1.1rem;
    color: var(--color-primary);
  }
  .shelf-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
  }
  .shelf-card p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }
  .shelf-card ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: var(--space-xs);
  }
  .shelf-card ul li {
    padding-left: 1.1rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  .shelf-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
  }

  .shelf-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md); width: calc(100% + 2 * var(--space-md)); }

  .hgroup-sub {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: var(--space-xs);
  }

  
  .canvas-visual-break {
    position: relative;
    height: 400px;
    overflow: hidden;
  }
  .visual-break-figure {
    position: absolute;
    inset: 0;
    margin: 0;
  }
  .visual-break-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .visual-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18,14,8,0.80) 0%, rgba(30,22,10,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual-break-quote {
    text-align: center;
    max-width: 640px;
    padding-inline: var(--space-md);
  }
  .visual-break-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: var(--space-sm);
  }
  .visual-break-quote mark {
    background: none;
    color: var(--color-accent);
    font-style: italic;
  }
  .visual-break-quote cite {
    font-size: 0.8rem;
    color: rgba(253,250,246,0.55);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .info-main .section-heading { margin-bottom: var(--space-md); }
  .info-main p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-md); }

  .info-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xs) var(--space-sm);
    margin-block: var(--space-lg);
    align-items: start;
  }
  .info-details dt {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 2px;
  }
  .info-details dd { color: var(--color-text-muted); font-size: 0.95rem; }

  .info-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 0;
  }
  .info-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
  .info-figure figcaption {
    padding: var(--space-sm);
    background: var(--color-surface);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
  }

  
  .canvas-cta-mid {
    background: var(--color-dark-alt);
    position: relative;
    overflow: hidden;
  }
  .canvas-cta-mid::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }
  .cta-mid-inner {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
  }
  .cta-mid-inner .section-heading { color: var(--color-white); margin-bottom: var(--space-sm); }
  .cta-mid-inner p { color: rgba(253,250,246,0.7); margin-bottom: var(--space-lg); line-height: 1.7; }

  
  .page-hero {
    background: var(--color-dark);
    padding-block: calc(var(--nav-h) + var(--space-xl)) var(--space-xl);
    position: relative;
    overflow: hidden;
  }
  .page-hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-canvas));
  }
  .page-hero--idea::before { background: linear-gradient(135deg, #2a1a08, #1e1a14); }
  .page-hero--scope::before { background: linear-gradient(135deg, #14201e, #1e1a14); }
  .page-hero--video::before { background: linear-gradient(135deg, #1a1428, #1e1a14); }
  .page-hero--contact::before { background: linear-gradient(135deg, #1e1614, #1e1a14); }
  .page-hero--legal::before { background: linear-gradient(135deg, #1e1a14, #2d2820); }

  .page-hero-content { position: relative; z-index: 1; max-width: 640px; }
  .page-hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-sm);
  }
  .page-hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
  }
  .page-hero-lead {
    font-size: 1.05rem;
    color: rgba(253,250,246,0.72);
    line-height: 1.7;
  }

  
  .idea-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .idea-text .section-heading { margin-bottom: var(--space-md); }
  .idea-text p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-md); }
  .idea-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
  .idea-visual figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); margin: 0; }
  .idea-visual figcaption { padding: var(--space-sm); background: var(--color-surface); font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; text-align: center; }

  .approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .approach-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .approach-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .approach-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }
  .approach-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-xs); }
  .approach-card p { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.7; }
  .approach-card ul { display: flex; flex-direction: column; gap: 6px; margin-top: var(--space-xs); }
  .approach-card ul li { padding-left: 1.1rem; position: relative; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }
  .approach-card ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }
  .approach-card--img { padding: 0; overflow: hidden; }
  .approach-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

  
  .evening-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-block: var(--space-xl);
    border-top: 1px solid var(--color-border);
  }
  .evening-block:first-child { border-top: none; }

  .evening-tag {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  .evening-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
  }
  .evening-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
  }

  .evening-content .section-heading { margin-bottom: var(--space-sm); }
  .evening-content .body-lead { margin-bottom: var(--space-lg); }

  .topic-list { display: flex; flex-direction: column; gap: var(--space-md); }

  .topic-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .topic-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

  .topic-item header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-sm);
  }
  .topic-icon { font-size: 1.1rem; color: var(--color-primary); }
  .topic-item h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-dark); }
  .topic-item p { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: var(--space-xs); }
  .topic-item p:last-child { margin-bottom: 0; }
  .topic-item ul { display: flex; flex-direction: column; gap: 6px; margin-top: var(--space-xs); }
  .topic-item ul li { padding-left: 1.1rem; position: relative; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }
  .topic-item ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }
  .topic-item--visual { padding: 0; overflow: hidden; }
  .topic-item--visual figcaption { padding: var(--space-md); }
  .topic-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

  
  .video-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .video-intro-text .section-heading { margin-bottom: var(--space-md); }
  .video-intro-text p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: var(--space-md); }
  .video-intro-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
  .video-intro-visual figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); margin: 0; }
  .video-intro-visual figcaption { padding: var(--space-sm); background: var(--color-surface); font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; text-align: center; }

  .tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .tip-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .tip-card header { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-sm); }
  .tip-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
    min-width: 2rem;
  }
  .tip-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-dark); }
  .tip-card p { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.75; }
  .tip-card ul { display: flex; flex-direction: column; gap: 6px; margin-top: var(--space-xs); }
  .tip-card ul li { padding-left: 1.1rem; position: relative; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }
  .tip-card ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }
  .tip-card--visual { padding: 0; overflow: hidden; }
  .tip-card--visual figcaption { padding: var(--space-md); }
  .tip-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

  .canvas-formats { background: var(--color-surface); }
  .formats-list { display: flex; flex-direction: column; gap: var(--space-md); }
  .format-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }
  .format-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .format-item header { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
  .format-icon { font-size: 1.1rem; color: var(--color-primary); }
  .format-item h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-dark); }
  .format-item p { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.75; }
  .format-item ul { display: flex; flex-direction: column; gap: 6px; margin-top: var(--space-xs); }
  .format-item ul li { padding-left: 1.1rem; position: relative; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }
  .format-item ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }
  .format-item--visual { padding: 0; overflow: hidden; }
  .format-item--visual figcaption { padding: var(--space-md); }
  .format-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

  
  .contact-section { background: var(--color-canvas); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
  }

  .contact-info-panel .section-heading { margin-bottom: var(--space-lg); }
  .contact-address-block { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); font-style: normal; }
  .contact-address-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
  }
  .contact-address-item i { color: var(--color-primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
  .contact-address-item strong { display: block; font-weight: 600; color: var(--color-dark); margin-bottom: 4px; font-size: 0.9rem; }
  .contact-address-item p { color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.6; margin: 0; }
  .contact-address-item a { color: var(--color-primary); transition: color var(--transition-base); }
  .contact-address-item a:hover { color: var(--color-primary-dark); }

  .contact-directions { background: var(--color-surface); border-radius: var(--radius-md); padding: var(--space-md); border: 1px solid var(--color-border); }
  .contact-directions h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-sm); }
  .contact-directions p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: var(--space-sm); }
  .contact-directions p:last-child { margin-bottom: 0; }

  .contact-form-panel .section-heading { margin-bottom: var(--space-lg); }

  
  .wizard-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-lg);
    padding: var(--space-sm);
    background: var(--color-surface);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
  }
  .wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    padding: 8px var(--space-xs);
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
    cursor: default;
  }
  .wizard-step.active {
    background: var(--color-primary);
  }
  .wizard-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-white);
  }
  .wizard-step.active .wizard-step-num { background: rgba(255,255,255,0.25); }
  .wizard-step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-muted);
  }
  .wizard-step.active .wizard-step-label { color: var(--color-white); }
  .wizard-connector { flex-shrink: 0; width: 20px; height: 1px; background: var(--color-border); }

  .wizard-panel { display: none; }
  .wizard-panel.active { display: block; }

  .wizard-nav {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }

  
  fieldset { margin-bottom: var(--space-md); }
  legend {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
    display: block;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-md);
  }
  .form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.95rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    min-height: 48px;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .privacy-group { margin-top: var(--space-sm); }
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    cursor: pointer;
  }
  .checkbox-label input[type="checkbox"] {
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
  }
  .checkbox-label a { color: var(--color-primary); text-decoration: underline; }

  
  .canvas-map { background: var(--color-surface); }
  .canvas-map .section-heading { margin-bottom: var(--space-lg); }
  .map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
  }

  
  .thanks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: var(--space-3xl) var(--space-2xl);
    min-height: 60vh;
  }
  .thanks-container {
    max-width: 640px;
    width: 100%;
    padding-inline: var(--space-md);
  }
  .thanks-quote-card {
    background: var(--color-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-xl);
  }
  .thanks-quote-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-sm);
    left: var(--space-lg);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    opacity: 0.5;
  }
  .thanks-quote-card p {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-white);
    line-height: 1.65;
    margin-bottom: var(--space-md);
    font-weight: 400;
  }
  .thanks-quote-card cite {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .thanks-content { text-align: center; }
  .thanks-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  .thanks-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
  }
  .thanks-text {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
  }

  
  .legal-section { background: var(--color-canvas); }
  .legal-container { max-width: 860px; }
  .legal-intro {
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    margin-bottom: var(--space-xl);
  }
  .legal-intro p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.95rem; }

  .legal-block {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  .legal-summary {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(184,115,51,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    display: inline-block;
  }
  .legal-detail h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
  }
  .legal-detail h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
  }
  .legal-detail p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }
  .legal-detail p:last-child { margin-bottom: 0; }
  .legal-detail ul { display: flex; flex-direction: column; gap: 8px; margin: var(--space-sm) 0; }
  .legal-detail ul li { padding-left: 1.25rem; position: relative; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }
  .legal-detail ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); }
  .legal-detail address { font-style: normal; }
  .legal-detail address p { margin-bottom: var(--space-xs); }
  .legal-detail a { color: var(--color-primary); text-decoration: underline; }

  
  .legal-container--terms { max-width: 860px; }
  .legal-intro--alt {
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
    margin-bottom: var(--space-xl);
  }
  .legal-intro--alt p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.95rem; }

  .terms-accordion { display: flex; flex-direction: column; gap: var(--space-sm); }
  .terms-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .terms-summary-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
  }
  .terms-letter {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    flex-shrink: 0;
  }
  .terms-summary-box strong { color: var(--color-dark); font-size: 0.95rem; }
  .terms-body { padding: var(--space-md); }
  .terms-body h2 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-sm); }
  .terms-body p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }
  .terms-body p:last-child { margin-bottom: 0; }
  .terms-body ul { display: flex; flex-direction: column; gap: 6px; margin: var(--space-sm) 0; }
  .terms-body ul li { padding-left: 1.25rem; position: relative; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }
  .terms-body ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); }

  
  .legal-container--cookies { max-width: 860px; }
  .cookies-intro-block {
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--color-primary);
    margin-bottom: var(--space-xl);
  }
  .cookies-intro-block p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.95rem; }

  .cookies-what { margin-bottom: var(--space-xl); }
  .cookies-what h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-sm); }
  .cookies-what p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }

  .cookies-categories { margin-bottom: var(--space-xl); }
  .cookies-categories h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-lg); }

  .cookie-category-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    background: var(--color-white);
  }
  .cookie-category-card--required { border-color: var(--color-primary); }

  .cookie-cat-header { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-sm); }
  .cookie-cat-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--color-surface-alt);
    color: var(--color-text-muted);
  }
  .cookie-cat-badge--required { background: rgba(184,115,51,0.12); color: var(--color-primary); }
  .cookie-cat-header h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-dark); }
  .cookie-category-card p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }
  .cookie-category-card p:last-child { margin-bottom: 0; }
  .cookie-category-card code { font-family: monospace; font-size: 0.88em; background: var(--color-surface); padding: 2px 6px; border-radius: 4px; color: var(--color-primary); }

  .cookies-manage { margin-bottom: var(--space-xl); }
  .cookies-manage h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-sm); }
  .cookies-manage p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }
  .cookies-manage ul { display: flex; flex-direction: column; gap: 8px; margin: var(--space-sm) 0; }
  .cookies-manage ul li { padding-left: 1.25rem; position: relative; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.7; }
  .cookies-manage ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); }

  .cookies-update h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-sm); }
  .cookies-update p { color: var(--color-text-muted); line-height: 1.8; font-size: 0.93rem; margin-bottom: var(--space-sm); }
  .cookies-update a { color: var(--color-primary); text-decoration: underline; }

  
  .canvas-footer {
    background: var(--color-dark);
    margin-top: auto;
  }

  .footer-cta-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-md);
    max-width: 1200px;
    margin-inline: auto;
  }

  .footer-cta-content { max-width: 480px; }
  .footer-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
  }
  .footer-cta-sub { color: rgba(253,250,246,0.6); margin-bottom: var(--space-lg); line-height: 1.6; font-size: 0.95rem; }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-lg);
  }

  .footer-nav-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
  }

  .footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-nav ul a {
    font-size: 0.9rem;
    color: rgba(253,250,246,0.6);
    transition: color var(--transition-base);
  }
  .footer-nav ul a:hover { color: var(--color-white); }

  .footer-nav address { font-style: normal; display: flex; flex-direction: column; gap: 6px; }
  .footer-nav address p { font-size: 0.9rem; color: rgba(253,250,246,0.6); }
  .footer-nav address a { color: rgba(253,250,246,0.6); transition: color var(--transition-base); }
  .footer-nav address a:hover { color: var(--color-white); }

  .footer-bottom {
    border-top: 1px solid rgba(253,250,246,0.08);
    padding: var(--space-md);
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom small { font-size: 0.82rem; color: rgba(253,250,246,0.4); }
  .footer-bottom a { color: rgba(253,250,246,0.5); transition: color var(--transition-base); }
  .footer-bottom a:hover { color: var(--color-white); }

  
  .back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-md);
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: var(--color-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base);
  }
  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  
  .cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-dark-alt);
    border-bottom: 1px solid rgba(253,250,246,0.1);
    padding: var(--space-sm) var(--space-md);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
  }
  .cookie-banner.is-visible { transform: translateY(0); }

  .cookie-banner-inner {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  .cookie-banner-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.88rem;
    color: rgba(253,250,246,0.78);
    line-height: 1.5;
  }
  .cookie-banner-text a { color: var(--color-accent); text-decoration: underline; }
  .cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
  }
  .cookie-btn {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 36px;
    white-space: nowrap;
  }
  .cookie-btn-accept {
    background: var(--gradient-warm);
    color: var(--color-dark);
    border: none;
  }
  .cookie-btn-accept:hover { opacity: 0.9; transform: translateY(-1px); }
  .cookie-btn-reject {
    background: transparent;
    color: rgba(253,250,246,0.6);
    border: 1px solid rgba(253,250,246,0.2);
  }
  .cookie-btn-reject:hover { border-color: rgba(253,250,246,0.5); color: var(--color-white); }
  .cookie-btn-customize {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
  }
  .cookie-btn-customize:hover { background: rgba(201,169,110,0.1); }

  .cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(18,14,8,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }
  .cookie-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .cookie-modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
  }
  .cookie-modal h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-dark); margin-bottom: var(--space-md); }
  .cookie-modal-category { margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid var(--color-border); }
  .cookie-modal-category:last-of-type { border-bottom: none; }
  .cookie-modal-category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-xs); }
  .cookie-modal-category h3 { font-size: 0.95rem; font-weight: 700; color: var(--color-dark); }
  .cookie-modal-category p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }
  .cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }
  .cookie-toggle input { opacity: 0; width: 0; height: 0; }
  .cookie-toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition-base);
  }
  .cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: var(--color-white);
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-sm);
  }
  .cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-primary); }
  .cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
  .cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
  .cookie-modal-actions { display: flex; gap: var(--space-sm); justify-content: flex-end; flex-wrap: wrap; margin-top: var(--space-md); }

  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
}

@layer utilities {
  
  @media (min-width: 640px) {
    .process-track { grid-template-columns: repeat(2, 1fr); }
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    .mosaic-featured { grid-column: 1 / -1; }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .formats-list { display: grid; grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .topic-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 768px) {
    .nav-links { display: flex; }
    .hamburger { display: none; }

    .intro-grid { grid-template-columns: 1fr 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .idea-grid { grid-template-columns: 1fr 1fr; }
    .video-intro-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }

    .footer-cta-block { grid-template-columns: 1fr 1fr; align-items: start; }

    .evening-block { grid-template-columns: 200px 1fr; }
    .evening-tag { flex-direction: column; align-items: flex-start; padding-top: var(--space-xs); }
  }

  @media (min-width: 1024px) {
    .process-track { grid-template-columns: repeat(4, 1fr); }
    .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
    .mosaic-featured { grid-column: 1 / 3; grid-row: 1 / 3; }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }

    .canvas-section { padding-block: var(--space-3xl); }
  }

  @media (max-width: 767px) {
    .stage-actions { flex-direction: column; align-items: flex-start; }
    .stage-actions .btn { width: 100%; justify-content: center; }
    .wizard-step-label { display: none; }
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
    .cookie-banner-actions { width: 100%; }
  }
}