@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 { line-height: 1.6; -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 { text-decoration: none; color: inherit; }
  address { font-style: normal; }
  button { cursor: pointer; border: none; background: none; }
}

@layer tokens {
  :root {
    --clr-navy: #1a1a2e;
    --clr-navy-mid: #16213e;
    --clr-navy-deep: #0f3460;
    --clr-green-primary: #2d6a4f;
    --clr-green-mid: #40916c;
    --clr-green-light: #74c69d;
    --clr-green-pale: #b7e4c7;
    --clr-green-ghost: #d8f3dc;
    --clr-surface: #f8f5f0;
    --clr-surface-alt: #f0ede6;
    --clr-text-primary: #1c1c2e;
    --clr-text-secondary: #4a4a6a;
    --clr-text-muted: #7a7a9a;
    --clr-text-light: #f0ede8;
    --clr-white: #ffffff;
    --clr-accent: #e8a838;
    --clr-accent-light: #fdf3dc;

    --shadow-xs: 0 1px 3px rgba(26,26,46,0.06), 0 1px 2px rgba(26,26,46,0.04);
    --shadow-sm: 0 2px 8px rgba(26,26,46,0.08), 0 1px 3px rgba(26,26,46,0.05);
    --shadow-md: 0 4px 16px rgba(26,26,46,0.10), 0 2px 6px rgba(26,26,46,0.06);
    --shadow-lg: 0 8px 32px rgba(26,26,46,0.12), 0 4px 12px rgba(26,26,46,0.07);
    --shadow-xl: 0 16px 48px rgba(26,26,46,0.15), 0 8px 20px rgba(26,26,46,0.09);
    --shadow-green: 0 4px 20px rgba(45,106,79,0.25), 0 2px 8px rgba(45,106,79,0.12);

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --font-heading: 'Newsreader', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    --transition-fast: 0.18s ease;
    --transition-base: 0.28s ease;
    --transition-slow: 0.42s ease;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --clr-surface: #111120;
      --clr-surface-alt: #1a1a2e;
      --clr-text-primary: #e8e6f0;
      --clr-text-secondary: #a8a8c8;
      --clr-text-muted: #6a6a8a;
      --clr-white: #1e1e30;
      --clr-green-ghost: #1a2e22;
      --clr-accent-light: #2a2010;
      --shadow-xs: 0 1px 3px rgba(0,0,0,0.3);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.45);
      --shadow-xl: 0 16px 48px rgba(0,0,0,0.5);
    }
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    background: var(--clr-surface);
    color: var(--clr-text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main { flex: 1; }

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

  @media (max-width: 768px) {
    .container { padding-inline: var(--space-5); }
  }

  .section {
    padding-block: var(--space-24);
  }

  @media (max-width: 768px) {
    .section { padding-block: var(--space-16); }
  }

  .section--light          { background: var(--clr-surface); }
  .section--alt            { background: var(--clr-surface-alt); }
  .section--dark           { background: var(--clr-navy); }
  .section--features       { background: var(--clr-surface-alt); }
  .section--bento-showcase { background: var(--clr-surface); }
  .section--workshops      { background: var(--clr-green-ghost); }
  .section--process        { background: var(--clr-surface-alt); }
  .section--cta            { background: var(--clr-surface); padding-block: var(--space-16); }
  .section--values         { background: var(--clr-surface-alt); }
  .section--philosophy     { background: var(--clr-surface); }
  .section--contact        { background: var(--clr-surface); }
  .section--map            { background: var(--clr-surface-alt); padding-block: 0; }
  .section--workshop-img   { background: var(--clr-navy); padding-block: var(--space-16); }
  .section--workshop-cta   { background: var(--clr-green-ghost); }
  .section--legal          { background: var(--clr-surface); }
  .section--change-process { background: var(--clr-surface-alt); }
  .section--motivation     { background: var(--clr-surface); }
}

@layer components {

  /* ========================================
     NAVIGATION
  ======================================== */

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--clr-navy);
    transition: background var(--transition-slow),
                backdrop-filter var(--transition-slow),
                border-color var(--transition-slow);
  }

  .nav--glass {
    background: rgba(26, 26, 46, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(240, 237, 232, 0.08);
  }

  .nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-8);
    height: 68px;
  }

  .nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
    text-decoration: none;
  }

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

  .nav__menu {
    display: flex;
    align-items: center;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }

  .nav__item { display: flex; }

  .nav__link {
    color: rgba(240, 237, 232, 0.72);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .nav__link:hover {
    color: var(--clr-green-pale);
    background: rgba(183, 228, 199, 0.08);
  }

  .nav__link--active {
    color: var(--clr-green-pale);
    background: rgba(183, 228, 199, 0.12);
  }

  .nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
  }

  .nav__toggle:hover {
    background: rgba(255,255,255,0.06);
  }

  .nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-light);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  
  .nav__mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    perspective: 1400px;
  }

  .nav__mobile.is-open {
    display: block;
  }

  .nav__flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    transform-style: preserve-3d;
    transition: transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__flip-card.is-flipped {
    transform: rotateX(-180deg);
  }

  .nav__flip-front,
  .nav__flip-back {
    position: absolute;
    top: 0; left: 0; right: 0;
    min-height: 100vh;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .nav__flip-front {
    background: var(--clr-navy);
    padding: var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__flip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: var(--space-3);
  }

  .nav__flip-brand {
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .nav__flip-close {
    color: var(--clr-text-light);
    font-size: 1.4rem;
    padding: var(--space-3);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .nav__flip-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--clr-green-pale);
  }

  .nav__flip-back {
    background: var(--clr-navy-deep);
    transform: rotateX(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__mobile-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
    padding: var(--space-8) var(--space-6);
    width: 100%;
    max-width: 380px;
  }

  .nav__mobile-link {
    color: rgba(240, 237, 232, 0.75);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    width: 100%;
  }

  .nav__mobile-link:hover,
  .nav__mobile-link--active {
    color: var(--clr-green-pale);
    background: rgba(183, 228, 199, 0.12);
  }

  @media (max-width: 900px) {
    .nav__menu { display: none; }
    .nav__toggle { display: flex; }
  }


  /* ========================================
     HERO SECTION
  ======================================== */

  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 40%, var(--clr-navy-deep) 100%);
    display: flex;
    align-items: center;
    padding: 100px var(--space-8) var(--space-16);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 65%;
    height: 130%;
    background: radial-gradient(ellipse at center,
      rgba(45,106,79,0.18) 0%,
      rgba(45,106,79,0.06) 50%,
      transparent 75%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center,
      rgba(15,52,96,0.4) 0%,
      transparent 70%);
    pointer-events: none;
  }

  .hero__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero__bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }

  .hero__cell {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  
  .hero__cell--main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(183, 228, 199, 0.12);
    padding: var(--space-12) var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    min-height: 480px;
  }

  .hero__cell--main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }

  
  .hero__cell--image {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    min-height: 480px;
    background: var(--clr-navy-mid);
  }

  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero__cell-overlay {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
  }

  .hero__tag {
    background: rgba(26,26,46,0.82);
    color: var(--clr-green-pale);
    font-size: 0.76rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    letter-spacing: 0.03em;
  }

  
  .hero__cell--stat {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: rgba(45, 106, 79, 0.22);
    border: 1px solid rgba(116, 198, 157, 0.2);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-3);
    backdrop-filter: blur(4px);
  }

  
  .hero__cell--accent {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: rgba(232, 168, 56, 0.12);
    border: 1px solid rgba(232, 168, 56, 0.18);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-3);
    backdrop-filter: blur(4px);
  }

  .hero__cell--stat:hover,
  .hero__cell--accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  .hero__cell-icon {
    font-size: 1.8rem;
    color: var(--clr-green-light);
  }

  .hero__cell--accent .hero__cell-icon {
    color: var(--clr-accent);
  }

  .hero__cell-label {
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .hero__cell-desc {
    color: rgba(240,237,232,0.58);
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hero__eyebrow {
    display: inline-block;
    color: var(--clr-green-light);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 700;
    color: var(--clr-text-light);
    line-height: 1.12;
  }

  .hero__title em {
    font-style: italic;
    color: var(--clr-green-pale);
  }

  .hero__subtitle {
    color: rgba(240,237,232,0.7);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.75;
    max-width: 48ch;
  }

  .hero__cta-group {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    align-items: center;
  }

  
  .hero__cell--wide {
    grid-column: 1 / 4;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(183, 228, 199, 0.07);
    padding: var(--space-5) var(--space-8);
    backdrop-filter: blur(4px);
  }

  .hero__wide-content {
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }

  .hero__wide-content i {
    color: var(--clr-green-light);
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .hero__wide-content div {
    color: rgba(240,237,232,0.72);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero__wide-content strong {
    color: var(--clr-green-pale);
  }

  @media (max-width: 1024px) {
    .hero__bento {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
    }
    .hero__cell--main  { grid-column: 1 / 3; grid-row: 1; min-height: auto; }
    .hero__cell--image { grid-column: 1 / 2; grid-row: 2; min-height: 280px; }
    .hero__cell--stat  { grid-column: 2 / 3; grid-row: 2; min-height: 140px; }
    .hero__cell--accent{ grid-column: 2 / 3; grid-row: 3; min-height: 140px; }
    .hero__cell--wide  { grid-column: 1 / 3; }
  }

  @media (max-width: 640px) {
    .hero {
      padding: 88px var(--space-5) var(--space-12);
    }
    .hero__bento {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .hero__cell--main   { grid-column: 1; grid-row: auto; padding: var(--space-8); min-height: auto; }
    .hero__cell--image  { grid-column: 1; grid-row: auto; min-height: 240px; }
    .hero__cell--stat   { grid-column: 1; grid-row: auto; }
    .hero__cell--accent { grid-column: 1; grid-row: auto; }
    .hero__cell--wide   { grid-column: 1; }
    .hero__cta-group    { flex-direction: column; align-items: flex-start; }
    .hero__cta-group .btn { width: 100%; justify-content: center; }
  }


  /* ========================================
     PAGE HERO (inner pages)
  ======================================== */

  .page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg,
      var(--clr-navy) 0%,
      var(--clr-navy-mid) 50%,
      var(--clr-navy-deep) 100%);
    display: flex;
    align-items: flex-end;
    padding: 130px var(--space-8) var(--space-16);
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 5%;
    width: 45%;
    height: 90%;
    background: radial-gradient(ellipse,
      rgba(45,106,79,0.14) 0%,
      transparent 70%);
    pointer-events: none;
  }

  .page-hero .container {
    position: relative;
    z-index: 1;
  }

  .page-hero__eyebrow {
    display: block;
    color: var(--clr-green-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
  }

  .page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--clr-text-light);
    line-height: 1.15;
    margin-bottom: var(--space-4);
  }

  .page-hero__subtitle {
    color: rgba(240,237,232,0.65);
    font-size: 1.05rem;
    max-width: 55ch;
    line-height: 1.7;
  }


  /* ========================================
     SECTION HEADER
  ======================================== */

  .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-16);
  }

  .section__eyebrow {
    display: inline-block;
    color: var(--clr-green-primary);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
  }

  .section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.2vw, 2.7rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .section__desc {
    color: var(--clr-text-secondary);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 58ch;
    margin: 0 auto;
  }


  /* ========================================
     BUTTONS
  ======================================== */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 600;
    transition: all var(--transition-base);
    min-height: 48px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
  }

  .btn--primary {
    background: linear-gradient(135deg, var(--clr-green-primary) 0%, var(--clr-green-mid) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-green);
  }

  .btn--primary:hover {
    background: linear-gradient(135deg, var(--clr-green-mid) 0%, var(--clr-green-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,106,79,0.38), 0 3px 10px rgba(45,106,79,0.18);
  }

  .btn--ghost {
    background: rgba(183, 228, 199, 0.1);
    color: var(--clr-green-pale);
    border-color: rgba(183, 228, 199, 0.22);
  }

  .btn--ghost:hover {
    background: rgba(183, 228, 199, 0.18);
    border-color: rgba(183, 228, 199, 0.4);
    transform: translateY(-2px);
  }

  .btn--outline {
    background: transparent;
    color: var(--clr-green-primary);
    border-color: var(--clr-green-primary);
  }

  .btn--outline:hover {
    background: var(--clr-green-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
  }

  .btn--white {
    background: #fff;
    color: var(--clr-green-primary);
    border-color: transparent;
    box-shadow: var(--shadow-md);
  }

  .btn--white:hover {
    background: var(--clr-green-ghost);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn--white-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.65);
  }

  .btn--white-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
  }

  .btn--full {
    width: 100%;
    justify-content: center;
  }


  /* ========================================
     INTRO SECTION
  ======================================== */

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

  .intro__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .intro__lead {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    color: var(--clr-text-primary);
    line-height: 1.65;
    font-weight: 400;
  }

  .intro__text p {
    color: var(--clr-text-secondary);
    line-height: 1.82;
    font-size: 0.96rem;
  }

  .intro__image-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    position: relative;
  }

  .intro__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
    display: block;
  }

  .intro__image-block:hover .intro__img {
    transform: scale(1.04);
  }

  @media (max-width: 768px) {
    .intro__grid {
      grid-template-columns: 1fr;
      gap: var(--space-10);
    }
    .intro__image-block {
      aspect-ratio: 16/9;
      order: -1;
    }
  }


  /* ========================================
     FEATURES (two-column icon-led)
  ======================================== */

  .features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(26,26,46,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .feature__item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8) var(--space-8);
    background: var(--clr-white);
    border-bottom: 1px solid rgba(26,26,46,0.07);
    transition: background var(--transition-base);
    position: relative;
  }

  .feature__item:nth-child(odd) {
    border-right: 1px solid rgba(26,26,46,0.07);
  }

  .feature__item:last-child,
  .feature__item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .feature__item:nth-last-child(1) {
    border-bottom: none;
  }

  .feature__item:hover {
    background: rgba(45,106,79,0.03);
  }

  .feature__icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--clr-green-ghost), var(--clr-green-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .feature__item:hover .feature__icon-wrap {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: var(--shadow-green);
  }

  .feature__icon {
    font-size: 1.15rem;
    color: var(--clr-green-primary);
  }

  .feature__body {
    flex: 1;
    min-width: 0;
  }

  .feature__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.3;
  }

  .feature__text {
    color: var(--clr-text-secondary);
    font-size: 0.9rem;
    line-height: 1.78;
  }

  @media (max-width: 768px) {
    .features__grid {
      grid-template-columns: 1fr;
    }
    .feature__item:nth-child(odd) {
      border-right: none;
    }
    .feature__item:last-child {
      border-bottom: none;
    }
  }


  /* ========================================
     BENTO SHOWCASE
  ======================================== */

  .bento__grid--showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 290px 230px;
    gap: 14px;
  }

  .bento__cell {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .bento__cell:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }

  .bento__cell--a {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .bento__cell--b {
    grid-column: 2;
    grid-row: 1;
    background: var(--clr-navy);
    padding: var(--space-8);
    display: flex;
    align-items: flex-end;
  }

  .bento__cell--c {
    grid-column: 3;
    grid-row: 1;
    background: linear-gradient(145deg, var(--clr-green-primary), var(--clr-green-mid));
    padding: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bento__cell--d {
    grid-column: 2;
    grid-row: 2;
  }

  .bento__cell--e {
    grid-column: 3;
    grid-row: 2;
    background: var(--clr-surface-alt);
    padding: var(--space-8);
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(26,26,46,0.07);
  }

  .bento__cell-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .bento__cell-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
  }

  .bento__cell-overlay--dark {
    background: linear-gradient(to top,
      rgba(26,26,46,0.88) 0%,
      rgba(26,26,46,0.25) 55%,
      transparent 100%);
  }

  .bento__cell-overlay--bottom {
    background: linear-gradient(to top,
      rgba(26,26,46,0.72) 0%,
      transparent 50%);
    align-items: flex-end;
  }

  .bento__cell-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
  }

  .bento__cell-content--centered {
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-5);
  }

  .bento__cell-icon {
    font-size: 1.7rem;
    color: var(--clr-green-pale);
  }

  .bento__cell-icon--large {
    font-size: 2.4rem;
    color: rgba(255,255,255,0.92);
  }

  .bento__cell--a .bento__cell-title {
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .bento__cell--b .bento__cell-title {
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .bento__cell--b .bento__cell-text {
    color: rgba(240,237,232,0.62);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-top: var(--space-2);
  }

  .bento__cell--c .bento__cell-quote {
    color: rgba(255,255,255,0.94);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.65;
    text-align: center;
  }

  .bento__cell--e .bento__cell-title {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    line-height: 1.35;
  }

  .bento__cell--e .bento__cell-icon {
    color: var(--clr-green-primary);
    font-size: 1.5rem;
  }

  .bento__cell--e .bento__cell-text {
    color: var(--clr-text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .bento__cell-tag {
    background: rgba(26,26,46,0.78);
    color: var(--clr-green-pale);
    font-size: 0.76rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: inline-block;
  }

  @media (max-width: 960px) {
    .bento__grid--showcase {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .bento__cell--a { grid-column: 1 / 3; grid-row: 1; min-height: 260px; }
    .bento__cell--b { grid-column: 1;     grid-row: 2; min-height: 200px; }
    .bento__cell--c { grid-column: 2;     grid-row: 2; min-height: 200px; }
    .bento__cell--d { grid-column: 1;     grid-row: 3; min-height: 200px; }
    .bento__cell--e { grid-column: 2;     grid-row: 3; min-height: 200px; }
  }

  @media (max-width: 580px) {
    .bento__grid--showcase {
      grid-template-columns: 1fr;
    }
    .bento__cell--a,
    .bento__cell--b,
    .bento__cell--c,
    .bento__cell--d,
    .bento__cell--e {
      grid-column: 1;
      grid-row: auto;
      min-height: 200px;
    }
  }


  /* ========================================
     WORKSHOPS PREVIEW CARDS
  ======================================== */

  .workshops__preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .workshop__card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,106,79,0.07);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base),
                border-color var(--transition-base);
  }

  .workshop__card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(45,106,79,0.18);
  }

  .workshop__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
  }

  .workshop__icon {
    font-size: 1.55rem;
    color: var(--clr-green-primary);
    flex-shrink: 0;
  }

  .workshop__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-green-primary);
    background: var(--clr-green-ghost);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .workshop__title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    line-height: 1.35;
  }

  .workshop__text {
    color: var(--clr-text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
  }

  .workshop__link {
    color: var(--clr-green-primary);
    font-weight: 600;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap var(--transition-fast), color var(--transition-fast);
    margin-top: auto;
    padding-top: var(--space-2);
  }

  .workshop__link:hover {
    color: var(--clr-green-mid);
    gap: var(--space-4);
  }

  @media (max-width: 900px) {
    .workshops__preview { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 580px) {
    .workshops__preview { grid-template-columns: 1fr; }
  }


  /* ========================================
     PROCESS STEPS
  ======================================== */

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

  .process__item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,26,46,0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    align-items: flex-start;
  }

  .process__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .process__number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--clr-green-pale);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    text-align: center;
  }

  .process__content { flex: 1; }

  .process__title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.3;
  }

  .process__text {
    color: var(--clr-text-secondary);
    font-size: 0.9rem;
    line-height: 1.78;
  }

  @media (max-width: 768px) {
    .process__grid { grid-template-columns: 1fr; }
  }


  /* ========================================
     CTA BLOCK
  ======================================== */

  .cta__block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
  }

  .cta__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cta__block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      rgba(26,26,46,0.85) 0%,
      rgba(15,52,96,0.78) 100%);
  }

  .cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-16) var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    max-width: 680px;
  }

  .cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    font-weight: 700;
    color: var(--clr-text-light);
    line-height: 1.2;
  }

  .cta__text {
    color: rgba(240,237,232,0.75);
    font-size: 1.02rem;
    max-width: 50ch;
    line-height: 1.72;
  }


  /* ========================================
     MOTIVATION PAGE
  ======================================== */

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

  .motivation__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.25;
  }

  .motivation__text p {
    color: var(--clr-text-secondary);
    line-height: 1.82;
    margin-bottom: var(--space-5);
    font-size: 0.96rem;
  }

  .motivation__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3/4;
    position: relative;
  }

  .motivation__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .motivation__grid {
      grid-template-columns: 1fr;
      gap: var(--space-10);
    }
    .motivation__image {
      aspect-ratio: 16/9;
      order: -1;
    }
  }


  /* ========================================
     VALUES BENTO (motivation page)
  ======================================== */

  .values__bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }

  .values__cell {
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .values__cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .values__cell--a {
    grid-column: 1;
    grid-row: 1;
    background: var(--clr-navy);
  }

  .values__cell--b {
    grid-column: 2;
    grid-row: 1;
    background: linear-gradient(140deg, var(--clr-green-primary), var(--clr-green-mid));
  }

  .values__cell--c {
    grid-column: 3;
    grid-row: 1 / 3;
    padding: 0;
    overflow: hidden;
    min-height: 380px;
  }

  .values__cell--d {
    grid-column: 1;
    grid-row: 2;
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,26,46,0.06);
  }

  .values__cell--e {
    grid-column: 2;
    grid-row: 2;
    background: var(--clr-accent-light);
    border: 1px solid rgba(232,168,56,0.14);
  }

  .values__cell-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .values__icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
    display: block;
  }

  .values__cell--a .values__icon { color: var(--clr-green-light); }
  .values__cell--b .values__icon { color: rgba(255,255,255,0.92); }
  .values__cell--d .values__icon { color: var(--clr-green-primary); }
  .values__cell--e .values__icon { color: var(--clr-accent); }

  .values__title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    line-height: 1.35;
  }

  .values__cell--a .values__title { color: var(--clr-text-light); }
  .values__cell--b .values__title { color: rgba(255,255,255,0.96); }
  .values__cell--d .values__title { color: var(--clr-text-primary); }
  .values__cell--e .values__title { color: var(--clr-text-primary); }

  .values__text {
    font-size: 0.87rem;
    line-height: 1.72;
  }

  .values__cell--a .values__text { color: rgba(240,237,232,0.65); }
  .values__cell--b .values__text { color: rgba(255,255,255,0.75); }
  .values__cell--d .values__text { color: var(--clr-text-secondary); }
  .values__cell--e .values__text { color: var(--clr-text-secondary); }

  @media (max-width: 900px) {
    .values__bento {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .values__cell--a { grid-column: 1; grid-row: 1; }
    .values__cell--b { grid-column: 2; grid-row: 1; }
    .values__cell--c { grid-column: 1 / 3; grid-row: 3; min-height: 240px; }
    .values__cell--d { grid-column: 1; grid-row: 2; }
    .values__cell--e { grid-column: 2; grid-row: 2; }
  }

  @media (max-width: 560px) {
    .values__bento { grid-template-columns: 1fr; }
    .values__cell--a,
    .values__cell--b,
    .values__cell--c,
    .values__cell--d,
    .values__cell--e {
      grid-column: 1;
      grid-row: auto;
    }
    .values__cell--c { min-height: 200px; }
  }


  /* ========================================
     PHILOSOPHY BLOCK
  ======================================== */

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

  .philosophy__quote {
    background: var(--clr-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-10);
    position: relative;
    overflow: hidden;
  }

  .philosophy__quote::before {
    content: '\201C';
    position: absolute;
    top: var(--space-2);
    left: var(--space-6);
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--clr-green-light);
    opacity: 0.22;
    line-height: 1;
    pointer-events: none;
  }

  .philosophy__blockquote {
    font-family: var(--font-heading);
    font-size: clamp(0.98rem, 1.4vw, 1.15rem);
    font-style: italic;
    color: rgba(240,237,232,0.88);
    line-height: 1.72;
    position: relative;
    z-index: 1;
  }

  .philosophy__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.25;
  }

  .philosophy__text p {
    color: var(--clr-text-secondary);
    line-height: 1.82;
    margin-bottom: var(--space-5);
    font-size: 0.96rem;
  }

  @media (max-width: 768px) {
    .philosophy__block {
      grid-template-columns: 1fr;
      gap: var(--space-10);
    }
  }


  /* ========================================
     WORKSHOP DETAIL CARDS (workshopy.html)
  ======================================== */

  .workshops__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .workshop__detail-card {
    display: flex;
    gap: var(--space-8);
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,26,46,0.06);
    transition: transform var(--transition-base),
                box-shadow var(--transition-base),
                border-color var(--transition-base);
    align-items: flex-start;
  }

  .workshop__detail-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,106,79,0.14);
  }

  .workshop__detail-icon-col {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--clr-green-ghost);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
  }

  .workshop__detail-card:hover .workshop__detail-icon-col {
    transform: scale(1.05);
  }

  .workshop__detail-icon {
    font-size: 1.55rem;
    color: var(--clr-green-primary);
  }

  .workshop__detail-body { flex: 1; min-width: 0; }

  .workshop__detail-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--clr-green-primary);
    background: var(--clr-green-ghost);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
  }

  .workshop__detail-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.35;
  }

  .workshop__detail-text {
    color: var(--clr-text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: var(--space-5);
  }

  .workshop__detail-meta {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
  }

  .workshop__detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 500;
  }

  @media (max-width: 600px) {
    .workshop__detail-card {
      flex-direction: column;
      gap: var(--space-5);
    }
    .workshop__detail-icon-col {
      width: 52px;
      height: 52px;
    }
  }


  /* ========================================
     WORKSHOP IMAGE BLOCK
  ======================================== */

  .workshop__img-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
  }

  .workshop__full-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
  }

  .workshop__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-10) var(--space-10) var(--space-8);
    background: linear-gradient(to top,
      rgba(26,26,46,0.92) 0%,
      rgba(26,26,46,0.4) 60%,
      transparent 100%);
  }

  .workshop__img-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-text-light);
    margin-bottom: var(--space-3);
  }

  .workshop__img-caption p {
    color: rgba(240,237,232,0.7);
    font-size: 0.9rem;
    max-width: 55ch;
    line-height: 1.65;
  }

  @media (max-width: 600px) {
    .workshop__full-img { height: 300px; }
    .workshop__img-caption { padding: var(--space-6); }
  }

  .workshop__cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
  }

  .workshop__cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    line-height: 1.25;
  }

  .workshop__cta-text {
    color: var(--clr-text-secondary);
    font-size: 1.02rem;
    line-height: 1.72;
    max-width: 50ch;
  }


  /* ========================================
     CHANGES BENTO (co-se-zmeni.html)
  ======================================== */

  .changes__bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 14px;
  }

  .changes__cell {
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .changes__cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .changes__cell--large {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--clr-navy);
    padding: var(--space-10);
    display: flex;
    align-items: center;
  }

  .changes__cell--img {
    grid-column: 2;
    grid-row: 1 / 3;
    overflow: hidden;
    min-height: 300px;
  }

  .changes__cell--medium {
    background: var(--clr-white);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,26,46,0.06);
  }

  .changes__cell:nth-child(3) { grid-column: 1; grid-row: 3; }
  .changes__cell:nth-child(4) { grid-column: 2; grid-row: 3; }
  .changes__cell:nth-child(5) { grid-column: 1; grid-row: 4; }
  .changes__cell:nth-child(6) { grid-column: 2; grid-row: 4; }

  .changes__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .changes__cell-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .changes__icon {
    font-size: 2rem;
    color: var(--clr-green-light);
    display: block;
    margin-bottom: var(--space-2);
  }

  .changes__icon--sm {
    font-size: 1.5rem;
    color: var(--clr-green-primary);
    display: block;
    margin-bottom: var(--space-3);
  }

  .changes__title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .changes__cell--large .changes__title { color: var(--clr-text-light); }
  .changes__cell--medium .changes__title { color: var(--clr-text-primary); }

  .changes__text {
    font-size: 0.9rem;
    line-height: 1.78;
  }

  .changes__cell--large .changes__text { color: rgba(240,237,232,0.68); }
  .changes__cell--medium .changes__text { color: var(--clr-text-secondary); }

  @media (max-width: 768px) {
    .changes__bento {
      grid-template-columns: 1fr;
    }
    .changes__cell--large,
    .changes__cell--img,
    .changes__cell--medium,
    .changes__cell:nth-child(3),
    .changes__cell:nth-child(4),
    .changes__cell:nth-child(5),
    .changes__cell:nth-child(6) {
      grid-column: 1 !important;
      grid-row: auto !important;
    }
    .changes__cell--img { min-height: 220px; }
  }


  /* ========================================
     CHANGE PROCESS (co-se-zmeni.html)
  ======================================== */

  .change-process__block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

  .change-process__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.1vw, 1.95rem);
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.25;
  }

  .change-process__text p {
    color: var(--clr-text-secondary);
    line-height: 1.82;
    margin-bottom: var(--space-5);
    font-size: 0.96rem;
  }

  .change-process__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
  }

  .change-process__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .change-process__block {
      grid-template-columns: 1fr;
      gap: var(--space-10);
    }
    .change-process__image {
      aspect-ratio: 16/9;
    }
  }


  /* ========================================
     CONTACT PAGE
  ======================================== */

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

  .contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-8);
    line-height: 1.25;
  }

  .contact__info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
  }

  .contact__info-item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
  }

  .contact__info-icon {
    font-size: 1.1rem;
    color: var(--clr-green-primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
  }

  .contact__info-item strong {
    display: block;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-1);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
  }

  .contact__info-item address,
  .contact__info-item a {
    color: var(--clr-text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
    transition: color var(--transition-fast);
  }

  .contact__info-item a:hover {
    color: var(--clr-green-primary);
  }

  .contact__office {
    background: var(--clr-surface-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border-left: 4px solid var(--clr-green-primary);
    box-shadow: var(--shadow-xs);
  }

  .contact__office-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-4);
  }

  .contact__office-text {
    color: var(--clr-text-secondary);
    font-size: 0.9rem;
    line-height: 1.78;
    margin-bottom: var(--space-4);
  }

  .contact__office-text:last-child {
    margin-bottom: 0;
  }

  .contact__form-wrap {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26,26,46,0.06);
  }

  .contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--clr-text-primary);
    margin-bottom: var(--space-8);
  }

  .contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .form__group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .form__label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    letter-spacing: 0.01em;
  }

  .form__input,
  .form__textarea {
    padding: var(--space-4) var(--space-5);
    border: 1.5px solid rgba(26,26,46,0.13);
    border-radius: var(--radius-md);
    background: var(--clr-surface);
    color: var(--clr-text-primary);
    font-size: 0.94rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    min-height: 48px;
    width: 100%;
  }

  .form__input:focus,
  .form__textarea:focus {
    outline: none;
    border-color: var(--clr-green-primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
    background: var(--clr-white);
  }

  .form__textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
  }

  .form__group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .form__checkbox-label {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    cursor: pointer;
  }

  .form__checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--clr-green-primary);
    cursor: pointer;
  }

  .form__checkbox-text {
    font-size: 0.86rem;
    color: var(--clr-text-secondary);
    line-height: 1.62;
  }

  .form__link {
    color: var(--clr-green-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
  }

  .form__link:hover {
    color: var(--clr-green-mid);
  }

  @media (max-width: 900px) {
    .contact__grid {
      grid-template-columns: 1fr;
      gap: var(--space-12);
    }
    .contact__form-wrap {
      padding: var(--space-8);
    }
  }

  @media (max-width: 480px) {
    .contact__form-wrap {
      padding: var(--space-6);
    }
  }


  /* ========================================
     MAP
  ======================================== */

  .map__wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-block: var(--space-16);
  }

  .map__iframe {
    display: block;
    width: 100%;
    border: 0;
  }


  /* ========================================
     THANKS PAGE
  ======================================== */

  .thanks-body {
    background: linear-gradient(140deg,
      var(--clr-green-primary) 0%,
      var(--clr-green-mid) 45%,
      var(--clr-navy-deep) 100%);
    min-height: 100vh;
  }

  .thanks-body .footer {
    background: rgba(0,0,0,0.25);
  }

  .thanks-body .footer__bottom {
    border-top-color: rgba(255,255,255,0.1);
  }

  .thanks__main {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px var(--space-8) var(--space-16);
  }

  .thanks__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    max-width: 560px;
  }

  .thanks__icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(255,255,255,0.08);
  }

  .thanks__icon {
    font-size: 3.2rem;
    color: #fff;
  }

  .thanks__title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .thanks__text {
    color: rgba(255,255,255,0.8);
    font-size: 1.08rem;
    line-height: 1.72;
  }


  /* ========================================
     LEGAL PAGES
  ======================================== */

  .legal__content {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
  }

  .legal__lead {
    font-size: 1.02rem;
    color: var(--clr-text-secondary);
    line-height: 1.82;
    border-left: 4px solid var(--clr-green-primary);
    padding-left: var(--space-6);
    padding-block: var(--space-2);
    background: rgba(45,106,79,0.03);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  .legal__heading {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--clr-text-primary);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(26,26,46,0.08);
    margin-top: var(--space-4);
    line-height: 1.3;
  }

  .legal__content p {
    color: var(--clr-text-secondary);
    line-height: 1.84;
    font-size: 0.95rem;
  }


  /* ========================================
     FOOTER
  ======================================== */

  .footer {
    background: var(--clr-navy);
    color: var(--clr-text-light);
    margin-top: auto;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: var(--space-12);
    padding-block: var(--space-16);
  }

  .footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-4);
    display: block;
  }

  .footer__tagline {
    color: rgba(240,237,232,0.55);
    font-size: 0.86rem;
    line-height: 1.72;
    margin-bottom: var(--space-6);
    max-width: 32ch;
  }

  .footer__address {
    color: rgba(240,237,232,0.48);
    font-size: 0.84rem;
    line-height: 1.82;
  }

  .footer__contact-link {
    color: rgba(240,237,232,0.55);
    transition: color var(--transition-fast);
    display: block;
  }

  .footer__contact-link:hover {
    color: var(--clr-green-pale);
  }

  .footer__nav-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,237,232,0.35);
    margin-bottom: var(--space-5);
  }

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

  .footer__nav-link {
    color: rgba(240,237,232,0.58);
    font-size: 0.9rem;
    transition: color var(--transition-fast), padding-left var(--transition-base);
    display: block;
    padding: var(--space-1) 0;
  }

  .footer__nav-link:hover {
    color: var(--clr-green-pale);
    padding-left: var(--space-2);
  }

  .footer__bottom {
    border-top: 1px solid rgba(240,237,232,0.07);
    padding-block: var(--space-5);
  }

  .footer__copy {
    color: rgba(240,237,232,0.3);
    font-size: 0.8rem;
  }

  @media (max-width: 768px) {
    .footer__inner {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-10);
    }
    .footer__brand {
      grid-column: 1 / 3;
    }
  }

  @media (max-width: 480px) {
    .footer__inner {
      grid-template-columns: 1fr;
    }
    .footer__brand {
      grid-column: 1;
    }
  }


  /* ========================================
     COOKIE CONSENT
  ======================================== */

  .cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 500px;
    display: none;
    pointer-events: none;
  }

  .cookie-consent.is-visible {
    display: block;
    pointer-events: auto;
  }

  .cookie-consent__card {
    background: var(--clr-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-7);
    box-shadow:
      var(--shadow-xl),
      0 0 0 1px rgba(183,228,199,0.1),
      inset 0 1px 0 rgba(255,255,255,0.04);
    transition: all 0.44s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cookie-consent__compact {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
  }

  .cookie-consent__text {
    flex: 1;
    color: rgba(240,237,232,0.78);
    font-size: 0.86rem;
    line-height: 1.62;
    min-width: 180px;
  }

  .cookie-consent__text a {
    color: var(--clr-green-pale);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
  }

  .cookie-consent__text a:hover {
    color: var(--clr-green-light);
  }

  .cookie-consent__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
  }

  .cookie-consent__btn {
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    min-height: 40px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    white-space: nowrap;
  }

  .cookie-consent__btn--accept {
    background: var(--clr-green-primary);
    color: #fff;
    border-color: transparent;
  }

  .cookie-consent__btn--accept:hover {
    background: var(--clr-green-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
  }

  .cookie-consent__btn--settings {
    background: rgba(255,255,255,0.07);
    color: rgba(240,237,232,0.78);
    border-color: rgba(255,255,255,0.1);
  }

  .cookie-consent__btn--settings:hover {
    background: rgba(255,255,255,0.13);
    color: var(--clr-text-light);
  }

  .cookie-consent__expanded {
    display: none;
    margin-top: var(--space-5);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: var(--space-5);
  }

  .cookie-consent__expanded.is-visible {
    display: block;
  }

  .cookie-consent__expanded-title {
    color: var(--clr-text-light);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
  }

  .cookie-consent__category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: var(--space-4);
  }

  .cookie-consent__category:last-of-type {
    border-bottom: none;
  }

  .cookie-consent__category-info {
    flex: 1;
  }

  .cookie-consent__category-info strong {
    display: block;
    color: var(--clr-text-light);
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .cookie-consent__category-info span {
    color: rgba(240,237,232,0.45);
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .cookie-consent__toggle {
    position: relative;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
  }

  .cookie-consent__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  .cookie-consent__toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.14);
    cursor: pointer;
    transition: background var(--transition-fast);
  }

  .cookie-consent__toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: transform var(--transition-fast);
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  .cookie-consent__toggle input:checked + .cookie-consent__toggle-slider {
    background: var(--clr-green-primary);
  }

  .cookie-consent__toggle input:checked + .cookie-consent__toggle-slider::before {
    transform: translateX(18px);
  }

  .cookie-consent__toggle input:disabled + .cookie-consent__toggle-slider {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .cookie-consent__expanded-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  @media (max-width: 520px) {
    .cookie-consent {
      width: calc(100% - 32px);
      bottom: 16px;
    }
    .cookie-consent__compact {
      flex-direction: column;
      align-items: flex-start;
    }
    .cookie-consent__actions {
      width: 100%;
    }
    .cookie-consent__btn {
      flex: 1;
      justify-content: center;
    }
  }

}

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

  .text-center { text-align: center; }
  .mt-auto { margin-top: auto; }

  @media (max-width: 768px) {
    .hide-mobile { display: none !important; }
  }

  @media (min-width: 769px) {
    .hide-desktop { display: none !important; }
  }
}