@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%; }
  body { -webkit-font-smoothing: antialiased; }
  img, video { max-width: 100%; height: auto; display: block; }
  input, button, textarea, select { font: inherit; }
  ul, ol { list-style: none; }
  a { color: inherit; text-decoration: none; }
  button { background: none; border: none; cursor: pointer; }
}

@layer tokens {
  :root {
    --ink: #1a1208;
    --ink-light: #3d2e1a;
    --ink-muted: #6b5740;
    --cream: #faf7f2;
    --warm-white: #f5f0e8;
    --warm-white-2: #ede8df;
    --gold: #c8922a;
    --gold-light: #e8b84b;
    --gold-pale: #f5e6c8;
    --forest: #2c3e2d;
    --forest-light: #3d5c3e;
    --forest-pale: #e8ede8;
    --nav-h: 72px;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(26,18,8,.06), 0 1px 2px rgba(26,18,8,.04);
    --shadow-md: 0 4px 12px rgba(26,18,8,.08), 0 2px 6px rgba(26,18,8,.05);
    --shadow-lg: 0 8px 32px rgba(26,18,8,.10), 0 4px 12px rgba(26,18,8,.06), 0 1px 3px rgba(26,18,8,.04);
    --shadow-xl: 0 16px 48px rgba(26,18,8,.14), 0 8px 24px rgba(26,18,8,.08), 0 2px 6px rgba(26,18,8,.04);
    --shadow-gold: 0 4px 20px rgba(200,146,42,.25), 0 2px 8px rgba(200,146,42,.15);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  }
}

@layer layout {
  .canvas {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
  }
  main { flex: 1; }
}

@layer components {

  
  .cookie-bar {
    background: var(--forest);
    color: #e8ede8;
    padding: 0.65rem clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-family: var(--font-body);
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    max-height: fit-content;
    transition: max-height 0.45s var(--ease-out), opacity 0.45s, padding 0.45s;
  }
  .cookie-bar.hidden {
    max-height: 0 !important;
    padding-block: 0;
    opacity: 0;
    pointer-events: none;
  }
  .cookie-bar__text { flex: 1; min-width: 200px; line-height: 1.5; }
  .cookie-bar__text a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
  .cookie-bar__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
  .cookie-bar__btn {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-head);
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    min-height: 32px;
  }
  .cookie-bar__btn--accept {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
  }
  .cookie-bar__btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .cookie-bar__btn--decline {
    background: transparent;
    color: #e8ede8;
    border: 2px solid rgba(232,237,232,.4);
  }
  .cookie-bar__btn--decline:hover { border-color: #e8ede8; }

  
  .nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  }
  .nav-bar.nav-solid {
    background: var(--cream);
    box-shadow: 0 2px 20px rgba(26,18,8,.08), 0 1px 4px rgba(26,18,8,.04);
  }
  .nav-logo img {
    height: 36px;
    width: auto;
    transition: opacity 0.2s;
  }
  .nav-logo:hover img { opacity: 0.8; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-link {
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 0.75rem;
    position: relative;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transition: transform 0.25s var(--ease-out);
    transform-origin: left;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }
  .nav-link.active { color: var(--gold); }

  .nav-bar:not(.nav-solid) .nav-link { color: rgba(255,255,255,.9); }
  .nav-bar:not(.nav-solid) .nav-link:hover { color: var(--gold-light); }
  .nav-bar:not(.nav-solid) .nav-link.active { color: var(--gold-light); }
  .nav-bar:not(.nav-solid) .nav-link::after { background: var(--gold-light); }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 101;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
  }
  .nav-bar:not(.nav-solid) .nav-hamburger span { background: #fff; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,18,8,.5);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .drawer-overlay.visible {
    opacity: 1;
    pointer-events: all;
  }
  .drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--cream);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow:
      0 -8px 40px rgba(26,18,8,.15),
      0 -2px 12px rgba(26,18,8,.08);
    padding: 1rem 1.5rem 2.5rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    will-change: transform;
  }
  .drawer.open { transform: translateY(0); }
  .drawer__handle {
    width: 40px;
    height: 4px;
    background: var(--warm-white-2);
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
  }
  .drawer__links { display: flex; flex-direction: column; gap: 0.25rem; }
  .drawer__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
    min-height: 52px;
  }
  .drawer__link i { color: var(--gold); width: 20px; text-align: center; flex-shrink: 0; }
  .drawer__link:hover { background: var(--warm-white); color: var(--gold); }

  
  .stage {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stage-curtain-left,
  .stage-curtain-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 10;
    overflow: hidden;
    transition: transform 0.95s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
  }
  .stage-curtain-left { left: 0; transform: translateX(0); }
  .stage-curtain-right { right: 0; transform: translateX(0); }
  .stage-curtain-left.open { transform: translateX(-105%); }
  .stage-curtain-right.open { transform: translateX(105%); }

  .stage-curtain-inner {
    position: absolute;
    inset: 0;
  }
  .stage-curtain-inner--left {
    background: var(--forest);
  }
  .stage-curtain-inner--right {
    background: var(--ink);
  }
  .stage-bg-full {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .stage-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .stage-bg-img--main {
    filter: brightness(0.52) saturate(0.85);
  }
  .stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,18,8,.08) 0%,
      rgba(26,18,8,.3) 55%,
      rgba(26,18,8,.65) 100%
    );
  }
  .stage-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 2rem clamp(1rem, 5vw, 3rem);
    max-width: 820px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s 1s var(--ease-out), transform 0.7s 1s var(--ease-out);
  }
  .stage-content.visible { opacity: 1; transform: none; }

  .stage-eyebrow {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
  }
  .stage-headline {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
  }
  .stage-headline em {
    font-style: italic;
    color: var(--gold-light);
  }
  .stage-subline {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255,255,255,.82);
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
  }
  .stage-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    min-height: 44px;
    border: 2px solid transparent;
  }
  .btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
  }
  .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,146,42,.38), 0 2px 8px rgba(200,146,42,.2);
  }
  .btn-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.85);
    transform: translateY(-2px);
  }
  .btn-outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
  }
  .btn-outline:hover {
    background: var(--forest);
    color: #fff;
    transform: translateY(-2px);
  }
  .btn-full { width: 100%; justify-content: center; }

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: gap 0.22s, color 0.22s;
  }
  .text-link:hover { color: var(--gold-light); gap: 0.8rem; }

  
  .section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .section-label--light { color: var(--gold-light); }

  .section-headline {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.022em;
    margin-bottom: 1.25rem;
  }
  .section-headline--light { color: var(--cream); }

  .section-subtext {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.75;
    max-width: 600px;
  }
  .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  .section-header .section-subtext { margin-inline: auto; }

  
  .section-intro {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }
  .intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .intro-lead {
    font-size: 1.15rem;
    line-height: 1.78;
    color: var(--ink-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
  }
  .intro-text p {
    color: var(--ink-muted);
    line-height: 1.82;
    margin-bottom: 1rem;
    font-size: 0.975rem;
  }
  .intro-text .text-link { margin-top: 0.5rem; }

  .intro-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform-style: preserve-3d;
  }
  .intro-figure img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
  }
  .intro-figure:hover img { transform: scale(1.04); }
  .intro-figure figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-style: italic;
    background: var(--warm-white);
  }

  
  .gradient-bridge {
    height: 120px;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--forest) 100%);
    pointer-events: none;
  }
  .gradient-bridge--reverse {
    background: linear-gradient(to bottom, var(--forest) 0%, var(--cream) 100%);
  }

  
  .section-forest {
    padding: var(--space-3xl) 0;
    background: var(--forest);
  }

  .gallery--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .shelf-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.3s var(--ease-out);
    transform-style: preserve-3d;
  }
  .shelf-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(200,146,42,.28);
    box-shadow:
      0 8px 32px rgba(0,0,0,.22),
      0 0 0 1px rgba(200,146,42,.18);
    transform: translateY(-3px);
  }
  .shelf-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(200,146,42,.14);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--gold-light);
  }
  .shelf-card h3 {
    font-family: var(--font-head);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.75rem;
  }
  .shelf-card p {
    font-size: 0.875rem;
    color: rgba(250,247,242,.68);
    line-height: 1.72;
  }

  
  .section-sticky { background: var(--warm-white); }

  .sticky-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
  .sticky-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .sticky-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .sticky-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(44,62,45,.72) 0%,
      rgba(26,18,8,.42) 100%
    );
  }
  .sticky-quote {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
  }
  .sticky-quote blockquote {
    font-family: var(--font-head);
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1.42;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
  }
  .sticky-content {
    padding: var(--space-3xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
  }
  .sticky-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .sticky-step__num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-pale);
    line-height: 1;
    min-width: 2.5rem;
    letter-spacing: -0.05em;
    flex-shrink: 0;
  }
  .sticky-step h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .sticky-step p {
    color: var(--ink-muted);
    line-height: 1.78;
    font-size: 0.925rem;
  }

  
  .section-courses {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }
  .shelf--courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .course-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.35s var(--ease-out);
    transform-style: preserve-3d;
  }
  .course-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
  }
  .course-card__img {
    height: 220px;
    overflow: hidden;
  }
  .course-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
  }
  .course-card:hover .course-card__img img { transform: scale(1.06); }
  .course-card__body { padding: 1.5rem; }
  .course-card__level {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
  }
  .course-card__body h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .course-card__body p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.72;
    margin-bottom: 1rem;
  }

  
  .section-pullquote {
    padding: var(--space-2xl) 0;
    background: var(--warm-white-2);
  }
  .pullquote-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 2rem;
  }
  .pullquote-mark {
    display: block;
    font-family: var(--font-head);
    font-size: 8rem;
    color: var(--gold-pale);
    line-height: 0.55;
    margin-bottom: 1.25rem;
    font-weight: 800;
  }
  .pullquote-text {
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 3vw, 2.15rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ink);
    line-height: 1.38;
    margin-bottom: 1.5rem;
  }
  .pullquote-cite {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
  }

  
  .section-cta {
    padding: var(--space-3xl) 0;
    background: var(--forest);
  }
  .cta-block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-headline {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -0.022em;
  }
  .cta-block p {
    color: rgba(250,247,242,.72);
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 2rem;
  }
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .section-cta .btn-outline {
    color: var(--cream);
    border-color: rgba(250,247,242,.45);
  }
  .section-cta .btn-outline:hover {
    background: rgba(250,247,242,.1);
    border-color: var(--cream);
  }

  
  .footer {
    background: var(--ink);
    padding: var(--space-xl) 0;
    margin-top: auto;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.88;
  }
  .footer-tagline {
    font-family: var(--font-head);
    font-size: 0.78rem;
    color: rgba(250,247,242,.45);
    letter-spacing: 0.09em;
  }
  .footer-nav {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav a {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(250,247,242,.72);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer-nav a:hover { color: var(--gold-light); background: rgba(255,255,255,.05); }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    font-style: normal;
  }
  .footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(250,247,242,.62);
  }
  .footer-contact i { color: var(--gold); font-size: 0.78rem; }
  .footer-contact a {
    color: rgba(250,247,242,.62);
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--gold-light); }
  .footer-legal {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(250,247,242,.38);
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1.5rem;
    width: 100%;
  }
  .footer-legal a {
    color: rgba(250,247,242,.38);
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--gold-light); }

  
  .cursor-trail {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease-out), opacity 0.3s;
    box-shadow:
      0 0 10px rgba(200,146,42,.65),
      0 0 22px rgba(200,146,42,.28);
    mix-blend-mode: multiply;
    will-change: left, top;
  }
  @media (hover: hover) {
    .cursor-trail { opacity: 0.72; }
  }

  
  .page-hero {
    padding-top: calc(var(--nav-h) + 5rem);
    padding-bottom: 5rem;
    background: var(--forest);
  }
  .page-hero__headline {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }
  .page-hero__sub {
    font-size: 1.05rem;
    color: rgba(250,247,242,.68);
    max-width: 560px;
    line-height: 1.72;
  }

  
  .section-page {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }
  .section-page--narrow .container { max-width: 800px; }

  
  .craft-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .craft-split--reverse .craft-text { order: 2; }
  .craft-split--reverse .craft-visual { order: 1; }
  .craft-text .intro-lead { margin-bottom: 1rem; }
  .craft-text p {
    color: var(--ink-muted);
    line-height: 1.82;
    margin-bottom: 0.75rem;
    font-size: 0.965rem;
  }
  .craft-visual figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  .craft-visual figure img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
  }
  .craft-visual figure:hover img { transform: scale(1.04); }
  .craft-visual figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
    font-style: italic;
    background: var(--warm-white);
  }

  
  .gallery--2-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .method-item {
    padding: 2rem;
    border-left: 3px solid var(--gold);
  }
  .method-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(232,184,75,.28);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
  }
  .method-item h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }
  .method-item p {
    color: rgba(250,247,242,.68);
    font-size: 0.875rem;
    line-height: 1.75;
  }

  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .pricing-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.35s var(--ease-out);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
  }
  .pricing-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(200,146,42,.22);
    transform: translateY(-4px);
  }
  .pricing-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
  }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.28rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
  }
  .pricing-card__header { margin-bottom: 1.5rem; }
  .pricing-card__level {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .pricing-card__name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
  }
  .pricing-card__amount {
    font-family: var(--font-head);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--forest);
  }
  .pricing-card__per {
    font-size: 0.85rem;
    color: var(--ink-muted);
  }
  .pricing-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.52;
  }
  .pricing-card__features li i {
    color: var(--forest);
    font-size: 0.72rem;
    margin-top: 0.22rem;
    flex-shrink: 0;
  }
  .pricing-card__content {
    margin-bottom: 1.5rem;
    flex: 1;
  }
  .pricing-card__content p {
    font-size: 0.865rem;
    color: var(--ink-muted);
    line-height: 1.72;
  }

  .pricing-note {
    background: var(--forest-pale);
    border: 1px solid rgba(44,62,45,.14);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 2rem;
  }
  .pricing-note h3 {
    font-family: var(--font-head);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .pricing-note h3 i { color: var(--forest); }
  .pricing-note p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.72;
  }

  .pricing-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .pricing-extra-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--warm-white-2);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .pricing-extra-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .pricing-extra-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }
  .pricing-extra-card h3 {
    font-family: var(--font-head);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .pricing-extra-card p {
    font-size: 0.865rem;
    color: var(--ink-muted);
    line-height: 1.72;
    margin-bottom: 0.75rem;
  }

  
  .editorial-intro { max-width: 720px; }
  .editorial-intro .intro-lead { margin-bottom: 1rem; }
  .editorial-intro p {
    color: var(--ink-muted);
    line-height: 1.82;
    margin-bottom: 0.75rem;
    font-size: 0.975rem;
  }

  .compare-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--warm-white-2);
  }
  .compare-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .compare-block--reverse {
    grid-template-columns: 2fr 1fr;
  }
  .compare-block--reverse .compare-block__label { order: 2; }
  .compare-block--reverse .compare-images { order: 1; }
  .compare-block__label .section-label { margin-bottom: 0.5rem; }
  .compare-block__label h2 {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.22;
    margin-bottom: 0.75rem;
  }
  .compare-block__label p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.78;
  }
  .compare-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .compare-fig {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.25s;
  }
  .compare-fig:hover { box-shadow: var(--shadow-lg); }
  .compare-fig img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }
  .compare-fig figcaption {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-style: italic;
    background: var(--warm-white);
  }
  .compare-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
    z-index: 1;
  }
  .compare-tag--before { background: rgba(26,18,8,.72); color: #fff; }
  .compare-tag--after { background: var(--gold); color: #fff; }

  .gallery--masonry {
    columns: 4;
    column-gap: 1rem;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.42s var(--ease-out);
  }
  .gallery-item:hover img { transform: scale(1.05); }

  
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
    align-items: start;
  }
  .contact-info-block { margin-bottom: 2rem; }
  .contact-info-block p {
    color: var(--ink-muted);
    line-height: 1.82;
    margin-top: 0.75rem;
    font-size: 0.975rem;
  }
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .contact-detail-item i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 0.18rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }
  .contact-detail-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.22rem;
  }
  .contact-detail-item a,
  .contact-detail-item address {
    font-size: 0.925rem;
    color: var(--ink-light);
    font-style: normal;
    line-height: 1.55;
    transition: color 0.2s;
  }
  .contact-detail-item a:hover { color: var(--gold); }

  .contact-languages {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
  }
  .contact-languages h3 {
    font-family: var(--font-head);
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-languages h3 i { color: var(--gold); }
  .contact-languages p {
    font-size: 0.865rem;
    color: var(--ink-muted);
    line-height: 1.72;
    margin-bottom: 0.5rem;
  }
  .contact-languages p:last-child { margin-bottom: 0; }

  
  .chat-form {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .chat-bubble { max-width: 90%; }
  .chat-bubble--question {
    align-self: flex-start;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-sm);
    padding: 0.875rem 1.1rem;
  }
  .chat-bubble--question p {
    font-size: 0.9rem;
    line-height: 1.52;
  }
  .chat-bubble__from {
    display: block;
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.28rem;
  }
  .chat-bubble--answer {
    align-self: flex-end;
    width: 100%;
    max-width: 100%;
  }
  .chat-bubble--answer input,
  .chat-bubble--answer textarea {
    width: 100%;
    background: var(--cream);
    border: 2px solid var(--warm-white-2);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-lg);
    padding: 0.875rem 1.1rem;
    font-size: 0.925rem;
    color: var(--ink);
    transition: border-color 0.22s, box-shadow 0.22s;
    resize: vertical;
    outline: none;
    min-height: 44px;
  }
  .chat-bubble--answer input:focus,
  .chat-bubble--answer textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,146,42,.14);
  }
  .chat-bubble--privacy { max-width: 100%; }
  .privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.1rem;
    border: 2px solid var(--warm-white-2);
    transition: border-color 0.22s;
  }
  .privacy-check:hover { border-color: var(--gold-pale); }
  .privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--gold);
    margin-top: 0.12rem;
    cursor: pointer;
  }
  .privacy-check span {
    font-size: 0.84rem;
    color: var(--ink-muted);
    line-height: 1.55;
  }
  .privacy-check a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .chat-send-row { margin-top: 0.5rem; }
  .chat-send-btn { width: 100%; justify-content: center; }

  
  .section-map {
    padding: 0 0 var(--space-3xl);
    background: var(--cream);
  }
  .section-map .section-headline { margin-bottom: 1.5rem; }
  .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  
  .thanks-hero {
    padding-top: var(--nav-h);
    min-height: 62vh;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 38%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: 2rem;
    padding-bottom: 4rem;
  }
  .thanks-hero__inner { max-width: 600px; }
  .thanks-icon {
    font-size: 3.5rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 1.5rem;
  }
  .thanks-headline {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.022em;
  }
  .thanks-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    line-height: 1.62;
  }
  .thanks-next {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--cream);
  }
  .thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .thanks-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.25s, transform 0.25s;
  }
  .thanks-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }
  .thanks-step i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }
  .thanks-step h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .thanks-step p {
    font-size: 0.865rem;
    color: var(--ink-muted);
    line-height: 1.72;
  }
  .thanks-step a { color: var(--gold); }
  .thanks-home { text-align: center; }

  
  .legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .legal-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
  .legal-sidebar__title {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .legal-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
  }
  .legal-sidebar__list li a {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-muted);
    padding: 0.42rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: all 0.2s;
    line-height: 1.42;
  }
  .legal-sidebar__list li a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    background: var(--warm-white);
  }
  .legal-content { min-width: 0; }
  .legal-content section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--warm-white-2);
  }
  .legal-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .legal-content h2 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .legal-content p {
    font-size: 0.915rem;
    color: var(--ink-muted);
    line-height: 1.82;
    margin-bottom: 0.75rem;
  }
  .legal-content p:last-child { margin-bottom: 0; }
  .legal-content strong { color: var(--ink-light); }
  .legal-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  
  .reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.62s var(--ease-out), transform 0.62s var(--ease-out);
  }
  .reveal-item.revealed {
    opacity: 1;
    transform: none;
  }

  
  .gallery--4 .shelf-card:nth-child(1) { transition-delay: 0s; }
  .gallery--4 .shelf-card:nth-child(2) { transition-delay: 0.08s; }
  .gallery--4 .shelf-card:nth-child(3) { transition-delay: 0.16s; }
  .gallery--4 .shelf-card:nth-child(4) { transition-delay: 0.24s; }
  .shelf--courses .course-card:nth-child(1) { transition-delay: 0s; }
  .shelf--courses .course-card:nth-child(2) { transition-delay: 0.1s; }
  .shelf--courses .course-card:nth-child(3) { transition-delay: 0.2s; }
  .pricing-grid .pricing-card:nth-child(1) { transition-delay: 0s; }
  .pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
  .pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }
  .gallery--2-wide .method-item:nth-child(1) { transition-delay: 0s; }
  .gallery--2-wide .method-item:nth-child(2) { transition-delay: 0.1s; }
  .gallery--2-wide .method-item:nth-child(3) { transition-delay: 0.05s; }
  .gallery--2-wide .method-item:nth-child(4) { transition-delay: 0.15s; }
  .thanks-steps .thanks-step:nth-child(1) { transition-delay: 0s; }
  .thanks-steps .thanks-step:nth-child(2) { transition-delay: 0.1s; }
  .thanks-steps .thanks-step:nth-child(3) { transition-delay: 0.2s; }

  
  .spotlight { transform-style: preserve-3d; }

}

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



@media (max-width: 1100px) {
  .gallery--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .shelf--courses {
    grid-template-columns: repeat(2, 1fr);
  }
  .shelf--courses .course-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
  }
  .gallery--masonry { columns: 3; }
  .sticky-content { padding: var(--space-2xl) var(--space-lg); }
}

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

  .intro-split,
  .craft-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .craft-split--reverse .craft-text,
  .craft-split--reverse .craft-visual { order: unset; }

  .compare-block,
  .compare-block--reverse {
    grid-template-columns: 1fr;
  }
  .compare-block--reverse .compare-block__label,
  .compare-block--reverse .compare-images { order: unset; }

  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .sticky-wrapper { grid-template-columns: 1fr; }
  .sticky-visual {
    position: relative;
    height: 50vw;
    min-height: 280px;
  }
  .sticky-content {
    padding: var(--space-xl) var(--space-lg);
  }

  .gallery--2-wide { grid-template-columns: 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
  .thanks-steps { grid-template-columns: 1fr; }

  .intro-figure img { height: 320px; }
  .craft-visual figure img { height: 300px; }
}

@media (max-width: 640px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
  }

  .gallery--4 { grid-template-columns: 1fr; }

  .shelf--courses { grid-template-columns: 1fr; }
  .shelf--courses .course-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .gallery--masonry { columns: 2; }

  .compare-images { grid-template-columns: 1fr; }
  .compare-fig img { height: 200px; }

  .stage-cta {
    flex-direction: column;
    align-items: center;
  }
  .stage-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .chat-form { padding: 1.25rem; }

  .legal-sidebar__list { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-item {
    opacity: 1;
    transform: none;
  }
  .stage-content {
    opacity: 1;
    transform: none;
  }
}