/* =============================================================
   trenerbratislava.sk — zdieľané štýly (SK homepage + EN verzia)
   Pri zmene bump verzie v ?v= parametri v <link> na oboch stránkach.
   ============================================================= */

/* ========================================
       CSS RESET & CUSTOM PROPERTIES
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Primárne */
      --color-deep:        #111a11;
      --color-dark:        #1a2619;
      --color-dark-mid:    #1f2e1d;

      /* Svetlé */
      --color-cream:       #f3ede2;
      --color-cream-soft:  #ebe4d6;
      --color-warm:        #f8f4ed;

      /* Akcent */
      --color-accent:      #c19a5b;
      --color-accent-light:#d4b07a;
      --color-accent-glow: rgba(193, 154, 91, 0.15);

      /* Text */
      --color-text-dark:   #0d0d0d;
      --color-text-light:  #f3ede2;
      --color-text-muted:  #6b6b6b;

      /* Typografia */
      --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --font-sans:    'DM Sans', 'Segoe UI', system-ui, sans-serif;

      /* Easing */
      --ease-luxury:  cubic-bezier(0.16, 1, 0.3, 1);

      /* Rozmery */
      --container-max: 1200px;
      --section-pad-y: clamp(3.5rem, 8vh, 6.5rem);
      --section-pad-x: clamp(1.25rem, 5vw, 3rem);

      /* Navigácia */
      --nav-height: 72px;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-sans);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--color-text-dark);
      background-color: var(--color-cream);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ========================================
       UTILITY
       ======================================== */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding-left: var(--section-pad-x);
      padding-right: var(--section-pad-x);
    }

    .section-label {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .section-label--light {
      color: var(--color-accent);
    }

    .section-label--dark {
      color: var(--color-text-muted);
    }

    .section-headline {
      font-family: var(--font-serif);
      font-weight: 600;
      line-height: 1.15;
      font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .section-headline--light {
      color: var(--color-text-light);
    }

    .section-headline--dark {
      color: var(--color-text-dark);
    }

    /* Scroll-driven reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Screen-reader only — visually hidden but accessible */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Skip-to-content — pre keyboard navigáciu */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      z-index: 9999;
      padding: 0.75rem 1.5rem;
      background: var(--color-accent);
      color: var(--color-deep);
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 2px;
      transition: top 0.2s;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      html { scroll-behavior: auto; }
      .hero__scroll-indicator { animation: none; }
      .intro-curtain { display: none; }
      .hero__ring,
      .hero::before,
      .hero .hero__glow,
      .hero__tagline,
      .hero__pretitle,
      .hero__title,
      .hero__subtitle,
      .hero__ctas,
      .hero__stats {
        opacity: 1;
        transform: none;
        animation: none;
      }
      .hero__ring { transform: translate(-50%, -50%); }
    }

    /* ========================================
       NOISE TEXTURE OVERLAY (reusable)
       ======================================== */
    .noise-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.035;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 180px 180px;
      z-index: 1;
    }

    /* ========================================
       NAVIGÁCIA
       ======================================== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      transition: background-color 0.5s var(--ease-luxury),
                  backdrop-filter 0.5s var(--ease-luxury),
                  box-shadow 0.5s var(--ease-luxury);
    }

    .nav--scrolled {
      background-color: rgba(17, 26, 17, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(193, 154, 91, 0.08);
    }

    .nav__inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--section-pad-x);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    .nav__logo {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      text-decoration: none;
      position: relative;
      z-index: 1001;
    }

    .nav__logo-name {
      font-family: var(--font-serif);
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--color-text-light);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      line-height: 1;
    }

    .nav__logo-sub {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--color-accent);
      opacity: 0.75;
      line-height: 1;
    }

    .nav__cta {
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-accent);
      text-decoration: none;
      padding: 0.6rem 1.4rem;
      border: 1px solid rgba(193, 154, 91, 0.4);
      border-radius: 2px;
      transition: all 0.35s var(--ease-luxury);
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
      background-color: var(--color-accent);
      color: var(--color-deep);
      border-color: var(--color-accent);
    }

    /* Desktop nav links */
    .nav__links {
      display: flex;
      align-items: center;
      /* Medzera sa zmenšuje s oknom — nav nesie 4 odkazy + prepínač jazyka + CTA */
      gap: clamp(1.1rem, 2.2vw, 2.5rem);
      list-style: none;
    }

    /* Prepínač jazyka SK ⇄ EN */
    .nav__lang {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(243, 237, 226, 0.6);
      text-decoration: none;
      padding: 0.3rem 0.55rem;
      border: 1px solid rgba(193, 154, 91, 0.28);
      border-radius: 2px;
      transition: color 0.3s var(--ease-luxury), border-color 0.3s var(--ease-luxury);
    }

    .nav__lang:hover,
    .nav__lang:focus-visible {
      color: var(--color-accent);
      border-color: var(--color-accent);
    }

    .nav__link {
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: rgba(243, 237, 226, 0.6);
      text-decoration: none;
      transition: color 0.3s var(--ease-luxury);
    }

    .nav__link:hover,
    .nav__link:focus-visible {
      color: var(--color-text-light);
    }

    /* Hamburger */
    .nav__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 1001;
    }

    .nav__hamburger-line {
      display: block;
      width: 22px;
      height: 1.5px;
      background-color: var(--color-text-light);
      transition: all 0.4s var(--ease-luxury);
    }

    .nav__hamburger-line:nth-child(1) {
      margin-bottom: 6px;
    }

    .nav__hamburger.active .nav__hamburger-line:nth-child(1) {
      transform: rotate(45deg) translate(2.5px, 2.5px);
    }

    .nav__hamburger.active .nav__hamburger-line:nth-child(2) {
      transform: rotate(-45deg) translate(2.5px, -2.5px);
    }

    /* Mobile overlay */
    .nav__overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(17, 26, 17, 0.97);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s var(--ease-luxury);
    }

    .nav__overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .nav__overlay-link {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      font-weight: 300;
      color: var(--color-text-light);
      text-decoration: none;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury), color 0.3s;
    }

    .nav__overlay.open .nav__overlay-link {
      opacity: 1;
      transform: translateY(0);
    }

    .nav__overlay.open .nav__overlay-link:nth-child(1) { transition-delay: 0.1s; }
    .nav__overlay.open .nav__overlay-link:nth-child(2) { transition-delay: 0.15s; }
    .nav__overlay.open .nav__overlay-link:nth-child(3) { transition-delay: 0.2s; }
    .nav__overlay.open .nav__overlay-link:nth-child(4) { transition-delay: 0.25s; }
    .nav__overlay.open .nav__overlay-link:nth-child(5) { transition-delay: 0.3s; }
    .nav__overlay.open .nav__overlay-link:nth-child(6) { transition-delay: 0.35s; }

    .nav__overlay-link:hover {
      color: var(--color-accent);
    }

    @media (max-width: 767px) {
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }

      .nav__logo-name { font-size: 0.75rem; letter-spacing: 0.1em; }
      .nav__logo-sub { font-size: 0.55rem; letter-spacing: 0.18em; }
    }

    /* ========================================
       INTRO CURTAIN — cinematic reveal
       ======================================== */
    .intro-curtain {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: var(--color-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: all;
    }

    .intro-curtain__title {
      font-family: var(--font-serif);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 600;
      color: var(--color-accent);
      letter-spacing: 0.05em;
      opacity: 0;
      transform: scale(0.95);
      animation: introLogoIn 0.8s var(--ease-luxury) 0.2s forwards;
    }

    .intro-curtain__line {
      display: block;
      width: 0;
      height: 1px;
      background: var(--color-accent);
      margin: 0.6rem auto;
      animation: introLineExpand 0.6s var(--ease-luxury) 0.6s forwards;
    }

    .intro-curtain__name {
      font-family: var(--font-sans);
      font-size: clamp(0.7rem, 1.5vw, 0.85rem);
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(243, 237, 226, 0.4);
      opacity: 0;
      transform: translateY(8px);
      animation: introLogoIn 0.7s var(--ease-luxury) 0.5s forwards;
    }

    @keyframes introLogoIn {
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes introLineExpand {
      to { width: 60px; }
    }

    .intro-curtain.exit {
      animation: curtainExit 0.7s var(--ease-luxury) forwards;
    }

    @keyframes curtainExit {
      0% { opacity: 1; }
      100% { opacity: 0; pointer-events: none; }
    }

    .intro-curtain.done {
      display: none;
    }

    /* ========================================
       HERO SEKCIA
       ======================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: var(--nav-height);
      background: radial-gradient(ellipse 80% 60% at 50% 40%, var(--color-dark) 0%, var(--color-deep) 100%);
      overflow: hidden;
    }

    /* Accent glow — top, animated burst */
    .hero::before {
      content: '';
      position: absolute;
      top: -15%;
      left: 50%;
      transform: translateX(-50%) scale(0.6);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 65%);
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      animation: glowBurst 2.5s var(--ease-luxury) 1.4s forwards;
    }

    @keyframes glowBurst {
      0% { opacity: 0; transform: translateX(-50%) scale(0.4); }
      60% { opacity: 1; transform: translateX(-50%) scale(1.1); }
      100% { opacity: 1; transform: translateX(-50%) scale(1); }
    }

    /* Secondary glow — bottom left */
    .hero .hero__glow {
      position: absolute;
      bottom: -10%;
      left: -5%;
      width: 500px;
      height: 400px;
      background: radial-gradient(circle, rgba(193, 154, 91, 0.06) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      opacity: 0;
      animation: heroFadeIn 2s var(--ease-luxury) 2s forwards;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding: 0 var(--section-pad-x);
      max-width: 800px;
    }

    .hero__pretitle {
      font-family: var(--font-serif);
      font-size: clamp(1.05rem, 2.5vw, 1.45rem);
      font-weight: 300;
      font-style: italic;
      color: var(--color-accent);
      margin-bottom: 1.6rem;
      letter-spacing: 0.01em;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 1.8s forwards;
    }

    .hero__title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 8vw, 5.8rem);
      font-weight: 300;
      color: var(--color-text-light);
      line-height: 1.08;
      margin-bottom: 2.2rem;
      letter-spacing: -0.025em;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 2.1s forwards;
    }

    .hero__title em {
      font-style: italic;
      font-weight: 400;
      color: var(--color-accent);
      position: relative;
      display: inline-block;
    }

    .hero__title em::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0.05em;
      width: 100%;
      height: 1px;
      background: var(--color-accent);
      opacity: 0.4;
      transform: scaleX(0);
      transform-origin: left;
      animation: underlineReveal 1s var(--ease-luxury) 3s forwards;
    }

    .hero__title-accent {
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    @keyframes underlineReveal {
      to { transform: scaleX(1); }
    }

    .hero__subtitle {
      font-family: var(--font-sans);
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(243, 237, 226, 0.72);
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.75;
      letter-spacing: 0.01em;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 2.5s forwards;
    }

    .hero__ctas {
      display: flex;
      gap: 1.25rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 2.9s forwards;
    }

    @keyframes heroFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* CTA buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1rem 2.2rem;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.4s var(--ease-luxury);
      border: none;
    }

    .btn--primary {
      background-color: var(--color-accent);
      color: var(--color-deep);
      box-shadow: 0 0 0 0 var(--color-accent-glow);
    }

    .btn--primary:hover,
    .btn--primary:focus-visible {
      background-color: var(--color-accent-light);
      box-shadow: 0 0 40px 8px var(--color-accent-glow);
      transform: translateY(-2px);
    }

    .btn--ghost {
      background: transparent;
      color: var(--color-text-light);
      border: 1px solid rgba(243, 237, 226, 0.25);
    }

    .btn--ghost:hover,
    .btn--ghost:focus-visible {
      border-color: var(--color-text-light);
      background: rgba(243, 237, 226, 0.05);
    }

    /* Hero stats bar */
    .hero__stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: start;
      justify-items: center;
      gap: clamp(1.5rem, 4vw, 3.5rem);
      max-width: 640px;
      margin: 3.5rem auto 0;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(193, 154, 91, 0.15);
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 3.3s forwards;
    }

    .hero__stat {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 11rem;
    }

    .hero__stat-number {
      font-family: var(--font-serif);
      font-size: clamp(1.85rem, 4vw, 2.4rem);
      font-weight: 300;
      color: var(--color-accent);
      line-height: 1;
      letter-spacing: -0.005em;
      font-variant-numeric: tabular-nums lining-nums;
      white-space: nowrap;
      padding-bottom: 0.8rem;
      position: relative;
    }

    .hero__stat-number::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 22px;
      height: 1px;
      background: rgba(193, 154, 91, 0.45);
    }

    .hero__stat-star {
      font-family: var(--font-sans);
      font-size: 0.74em;
      vertical-align: 0.14em;
      letter-spacing: 0;
      margin-left: 0.05em;
    }

    .hero__stat-field {
      display: block;
      font-family: var(--font-serif);
      font-size: clamp(0.92rem, 1.6vw, 1.05rem);
      font-style: italic;
      font-weight: 400;
      color: rgba(243, 237, 226, 0.85);
      line-height: 1.25;
      margin-top: 0.9rem;
      letter-spacing: 0;
    }

    .hero__stat-label {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(243, 237, 226, 0.45);
      line-height: 1;
      margin-top: 0.45rem;
      white-space: nowrap;
    }

    /* Hero decorative ring — animated expand */
    .hero__ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(193, 154, 91, 0.06);
      pointer-events: none;
      z-index: 0;
      top: 50%;
      left: 50%;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.3);
    }

    .hero__ring--1 {
      width: 600px;
      height: 600px;
      animation: ringExpand 2s var(--ease-luxury) 1.5s forwards;
    }

    .hero__ring--2 {
      width: 900px;
      height: 900px;
      animation: ringExpand 2.2s var(--ease-luxury) 1.8s forwards;
    }

    .hero__ring--3 {
      width: 1200px;
      height: 1200px;
      border-color: rgba(193, 154, 91, 0.03);
      animation: ringExpand 2.4s var(--ease-luxury) 2.1s forwards;
    }

    @keyframes ringExpand {
      0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
      100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    }

    /* Hero tagline */
    .hero__tagline {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(243, 237, 226, 0.22);
      margin-bottom: 2.8rem;
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1.4s var(--ease-luxury) 1.5s forwards;
    }

    .hero__tagline span {
      display: inline-block;
      width: 32px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
      vertical-align: middle;
      margin: 0 0.75rem;
      opacity: 0.5;
    }

    @media (max-width: 500px) {
      .hero__stats {
        gap: 1rem;
        padding-top: 2rem;
        margin-top: 2.5rem;
      }
      .hero__stat-number {
        font-size: 1.55rem;
        padding-bottom: 0.65rem;
      }
      .hero__stat-number::after {
        width: 18px;
      }
      .hero__stat-field {
        font-size: 0.82rem;
        margin-top: 0.7rem;
      }
      .hero__stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.18em;
        margin-top: 0.35rem;
      }
    }

    /* Scroll indicator */
    .hero__scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: heroFadeIn 1.4s var(--ease-luxury) 3.7s forwards;
    }

    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--color-accent), transparent);
      animation: scrollBounce 2s var(--ease-luxury) infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50% { transform: translateY(10px); opacity: 1; }
    }

    /* ========================================
       IDENTIFIKÁCIA — light card style
       ======================================== */
    .identify {
      background-color: var(--color-cream);
      padding: clamp(2.5rem, 5vh, 4rem) 0;
    }

    .identify__inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .identify__heading {
      text-align: center;
      margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    }

    /* Menší headline než .section-headline — sekcia je zámerne kompaktná */
    .identify__headline {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 3.2vw, 2.15rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--color-text-dark);
      max-width: 20ch;
      margin: 0 auto;
    }

    .identify__groups {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: relative;
    }

    .identify__groups::before {
      content: '';
      position: absolute;
      top: 10%;
      bottom: 10%;
      left: 50%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(193, 154, 91, 0.25) 20%, rgba(193, 154, 91, 0.25) 80%, transparent);
    }

    .identify__card {
      position: relative;
      padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.5rem, 4vw, 3.5rem);
      transition: background-color 0.5s var(--ease-luxury);
    }

    .identify__card:hover {
      background: rgba(193, 154, 91, 0.03);
    }

    .identify__card-num {
      font-family: var(--font-serif);
      font-size: clamp(3.5rem, 7vw, 5rem);
      font-weight: 600;
      line-height: 1;
      color: rgba(193, 154, 91, 0.06);
      position: absolute;
      top: clamp(1rem, 2vw, 1.5rem);
      right: clamp(1.2rem, 3vw, 2.5rem);
      user-select: none;
      pointer-events: none;
    }

    .identify__group-label {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 0.6rem;
    }

    .identify__group-label::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 2px;
      background: var(--color-accent);
      border-radius: 1px;
    }

    .identify__group-quote {
      font-family: var(--font-serif);
      font-size: clamp(1.45rem, 2.8vw, 1.85rem);
      font-style: italic;
      font-weight: 400;
      color: var(--color-deep);
      line-height: 1.18;
      margin-bottom: 1.1rem;
      letter-spacing: -0.015em;
    }

    .identify__group-detail {
      font-family: var(--font-sans);
      font-size: 0.88rem;
      color: var(--color-text-muted);
      line-height: 1.75;
      margin-bottom: 1.4rem;
    }

    .identify__group-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .identify__group-item {
      display: flex;
      align-items: baseline;
      gap: 0.85rem;
      font-family: var(--font-sans);
      font-size: 0.86rem;
      color: var(--color-text-muted);
      line-height: 1.6;
    }

    .identify__group-item::before {
      content: '';
      flex-shrink: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--color-accent);
      opacity: 0.5;
      transform: translateY(0.1em);
    }

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

      .identify__groups::before {
        top: auto;
        bottom: auto;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
        top: 50%;
        background: linear-gradient(to right, transparent, rgba(193, 154, 91, 0.25) 20%, rgba(193, 154, 91, 0.25) 80%, transparent);
      }

      .identify__card {
        padding: 2rem 0.5rem;
      }

      .identify__card-num {
        font-size: 3rem;
        right: 0.5rem;
        top: 1.5rem;
      }
    }

    /* ========================================
       FILOZOFIA / PRÍSTUP
       ======================================== */
    .approach {
      background: radial-gradient(ellipse 100% 70% at 50% 100%, var(--color-dark) 0%, var(--color-deep) 100%);
      position: relative;
      padding: var(--section-pad-y) 0;
      overflow: hidden;
    }

    .approach__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .approach__subtitle {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(243, 237, 226, 0.5);
      margin-top: 1rem;
    }

    .approach__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      align-items: stretch;
    }

    .approach-col {
      display: flex;
      flex-direction: column;
      text-align: left;
      background: rgba(243, 237, 226, 0.03);
      border: 1px solid rgba(243, 237, 226, 0.06);
      border-radius: 12px;
      padding: 2rem 1.5rem 2rem;
      transition: background 0.4s var(--ease-luxury), border-color 0.4s var(--ease-luxury);
    }

    .approach-col:hover {
      background: rgba(243, 237, 226, 0.05);
      border-color: rgba(200, 170, 110, 0.15);
    }

    .approach-col__icon {
      width: 44px;
      height: 44px;
      margin: 0 0 1.25rem;
      color: var(--color-accent);
      flex-shrink: 0;
    }

    .approach-col__icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .approach-col__title {
      font-family: var(--font-serif);
      font-size: clamp(1.15rem, 2vw, 1.35rem);
      font-weight: 600;
      color: var(--color-text-light);
      margin-bottom: 0.85rem;
      min-height: 2.7em;
      display: flex;
      align-items: flex-end;
    }

    .approach-col__text {
      font-size: 0.9rem;
      color: rgba(243, 237, 226, 0.55);
      line-height: 1.8;
      flex-grow: 1;
    }

    @media (max-width: 1000px) {
      .approach__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }

      .approach-col__title {
        min-height: auto;
      }
    }

    /* Carousel UI — skryté na desktope, viditeľné na mobile */
    .approach__carousel-ui {
      display: none;
    }

    @media (max-width: 767px) {
      .approach__carousel-ui {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
      }

      /* Dots */
      .approach__dots {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .approach__dot {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: rgba(193, 154, 91, 0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        /* Rozšírenie klikateľnej plochy na 44×44px bez zmeny vizuálu */
        -webkit-tap-highlight-color: transparent;
      }

      .approach__dot::before {
        content: '';
        position: absolute;
        inset: -19px;
      }

      .approach__dot--active {
        background: var(--color-accent);
        width: 22px;
      }

      /* Progress track */
      .approach__progress-track {
        width: 80px;
        height: 1px;
        background: rgba(193, 154, 91, 0.12);
        border-radius: 1px;
        overflow: hidden;
        display: none; /* nahradené dots */
      }

      .approach__progress-fill {
        height: 100%;
        background: var(--color-accent);
        border-radius: 1px;
        transition: width 0.3s ease;
        width: 25%;
      }

      /* Swipe hint — objaví sa, po 2.5s zmizne */
      .approach__swipe-hint {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-sans);
        font-size: 0.62rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(193, 154, 91, 0.35);
        animation: swipeHintFade 3.5s var(--ease-luxury) 0.8s both;
      }

      .approach__swipe-hint svg {
        width: 16px;
        height: 16px;
        stroke: rgba(193, 154, 91, 0.35);
        fill: none;
        stroke-width: 1.5;
        animation: swipeArrow 1.5s var(--ease-luxury) 0.8s 2;
      }

      @keyframes swipeHintFade {
        0%   { opacity: 0; transform: translateY(4px); }
        15%  { opacity: 1; transform: translateY(0); }
        75%  { opacity: 1; }
        100% { opacity: 0; }
      }

      @keyframes swipeArrow {
        0%   { transform: translateX(0); }
        50%  { transform: translateX(4px); }
        100% { transform: translateX(0); }
      }
    }

    @media (max-width: 600px) {
      .approach-col {
        flex: 0 0 86vw;
      }
    }

    @media (max-width: 380px) {
      .approach-col {
        flex: 0 0 90vw;
        padding: 1.5rem 1.25rem;
      }
    }

    /* ========================================
       /* audience CSS odstránené — sekcia zlúčená do .identify */

    /* ========================================
       PROCES
       ======================================== */
    .process {
      background: radial-gradient(ellipse 80% 50% at 50% 50%, var(--color-dark) 0%, var(--color-deep) 100%);
      position: relative;
      padding: var(--section-pad-y) 0;
      overflow: hidden;
    }

    .process__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .process__subtext {
      text-align: center;
      font-size: 1rem;
      color: rgba(243, 237, 226, 0.5);
      margin-bottom: 4rem;
    }

    .process__timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    /* Connecting line */
    .process__timeline::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--color-accent), var(--color-accent), transparent);
      opacity: 0.3;
    }

    .process-step {
      text-align: center;
      padding: 0 1rem;
      position: relative;
    }

    .process-step__number {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 300;
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 2;
    }

    .process-step__title {
      font-family: var(--font-serif);
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      font-weight: 600;
      color: var(--color-text-light);
      margin-bottom: 0.8rem;
    }

    .process-step__text {
      font-size: 0.88rem;
      color: rgba(243, 237, 226, 0.5);
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .process__timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
        margin: 0 auto;
        padding-left: 3rem;
      }

      .process__timeline::before {
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: 1px;
        height: 100%;
      }

      .process-step {
        text-align: left;
        padding: 0;
      }

      .process-step__number {
        position: absolute;
        left: -3rem;
        top: -0.2rem;
        font-size: 1.5rem;
      }
    }

    /* ========================================
       ŠPECIALITY / SLUŽBY
       ======================================== */
    .services {
      background-color: var(--color-cream);
      padding: var(--section-pad-y) 0;
    }

    .services__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .services__intro {
      font-family: var(--font-sans);
      font-size: clamp(0.9rem, 1.8vw, 1rem);
      color: var(--color-text-muted);
      max-width: 500px;
      margin: 0.75rem auto 0;
      line-height: 1.7;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 2px;
      overflow: hidden;
    }

    .services__item {
      background: var(--color-warm);
      padding: 2rem 1.75rem;
      position: relative;
      transition: background 0.35s var(--ease-luxury);
    }

    .services__item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--color-accent);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.4s var(--ease-luxury);
    }

    .services__item:hover {
      background: #f0ece3;
    }

    .services__item:hover::before {
      transform: scaleY(1);
    }

    .services__number {
      font-family: var(--font-sans);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--color-accent);
      opacity: 0.6;
      display: block;
      margin-bottom: 0.85rem;
    }

    .services__name {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      font-weight: 600;
      color: var(--color-text-dark);
      line-height: 1.3;
      margin-bottom: 0.6rem;
    }

    .services__desc {
      font-family: var(--font-sans);
      font-size: 0.83rem;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    @media (max-width: 900px) {
      .services__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      .services__item {
        padding: 1.5rem 1.25rem;
      }
    }

    /* ========================================
       GALÉRIA
       ======================================== */
    .gallery {
      background-color: var(--color-deep);
      padding: var(--section-pad-y) 0;
      overflow: hidden;
    }

    .gallery__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .gallery__intro {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(243, 237, 226, 0.45);
      margin-top: 0.6rem;
      letter-spacing: 0.02em;
    }

    /* Grid: triptych — tri portrétové panely vedľa seba.
       Pomer 3:4 zodpovedá fotkám, takže sa na žiadnej šírke neorezávajú. */
    .gallery__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .gallery__item {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 3 / 4;
    }

    /* The actual photo */
    .gallery__photo {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .gallery__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* --pos nastavuje výrez pri orezaní (per-foto, inline na <img>) */
      object-position: var(--pos, center);
      display: block;
      transition: transform 0.7s var(--ease-luxury);
      filter: brightness(0.88) saturate(0.85);
    }

    .gallery__item:hover .gallery__photo img {
      transform: scale(1.05);
      filter: brightness(0.95) saturate(0.9);
    }

    /* Caption overlay — slide up on hover */
    .gallery__caption-wrap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.2rem 1.25rem;
      background: linear-gradient(to top, rgba(10, 16, 10, 0.75) 0%, transparent 100%);
      transform: translateY(8px);
      opacity: 0;
      transition: all 0.45s var(--ease-luxury);
      pointer-events: none;
    }

    .gallery__item:hover .gallery__caption-wrap {
      transform: translateY(0);
      opacity: 1;
    }

    /* Dotykové zariadenia nemajú hover — popisky zobrazíme natrvalo */
    @media (hover: none) {
      .gallery__caption-wrap {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .gallery__caption {
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-accent);
      display: block;
    }

    .gallery__caption-sub {
      font-family: var(--font-serif);
      font-size: 0.9rem;
      font-style: italic;
      color: rgba(243, 237, 226, 0.7);
      display: block;
      margin-top: 0.15rem;
    }

    /* Gold border accent on hover — thin frame */
    .gallery__item::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      border-radius: 2px;
      transition: border-color 0.4s var(--ease-luxury);
      pointer-events: none;
      z-index: 2;
    }

    .gallery__item:hover::after {
      border-color: rgba(193, 154, 91, 0.3);
    }

    /* Responsive — pod ~680 px sú 3 stĺpce príliš úzke, prepneme na vodorovný swipe */
    @media (max-width: 680px) {
      .gallery__grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .gallery__grid::-webkit-scrollbar {
        display: none;
      }

      .gallery__item {
        flex: 0 0 76%;
        scroll-snap-align: center;
      }
    }

    /* ========================================
       SOCIAL PROOF
       ======================================== */
    .testimonials {
      background-color: var(--color-cream);
      padding: var(--section-pad-y) 0;
    }

    .testimonials__header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .testimonial-card {
      background-color: var(--color-warm);
      border: 1px solid rgba(13, 13, 13, 0.06);
      border-radius: 4px;
      padding: clamp(1.8rem, 3vw, 2.5rem);
      position: relative;
      transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(13, 13, 13, 0.06);
    }

    /* Big decorative quote */
    .testimonial-card__quote-mark {
      font-family: var(--font-serif);
      font-size: 6rem;
      font-weight: 700;
      color: var(--color-accent);
      opacity: 0.12;
      position: absolute;
      top: 0.5rem;
      left: 1.2rem;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .testimonial-card__stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1.2rem;
      color: var(--color-accent);
    }

    .testimonial-card__stars svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .testimonial-card__text {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-card__avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--color-cream-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--color-accent);
      flex-shrink: 0;
    }

    .testimonial-card__name {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--color-text-dark);
    }

    .testimonial-card__meta {
      font-size: 0.78rem;
      color: var(--color-text-muted);
    }

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

    /* ========================================
       FAQ — časté otázky
       ======================================== */
    .faq {
      background-color: var(--color-cream-soft);
      padding: var(--section-pad-y) 0;
    }

    .faq__header {
      text-align: center;
      margin-bottom: 2.75rem;
    }

    .faq__list {
      max-width: 840px;
      margin: 0 auto;
      border-top: 1px solid rgba(13, 13, 13, 0.09);
    }

    .faq__item {
      border-bottom: 1px solid rgba(13, 13, 13, 0.09);
    }

    /* Otázka — serif, rovnaká rodina ako ostatné nadpisy sekcií */
    .faq__q {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.15rem 0;
      cursor: pointer;
      list-style: none;
      font-family: var(--font-serif);
      font-size: clamp(1.02rem, 1.7vw, 1.18rem);
      font-weight: 600;
      line-height: 1.35;
      color: var(--color-text-dark);
      transition: color 0.3s var(--ease-luxury);
    }

    .faq__q::-webkit-details-marker {
      display: none;
    }

    .faq__q:hover,
    .faq__item[open] .faq__q {
      color: var(--color-accent);
    }

    .faq__q:focus-visible {
      outline: 1px solid var(--color-accent);
      outline-offset: 4px;
    }

    /* Marker — vlasový zlatý plus, rovnaký jazyk ako .section-divider */
    .faq__marker {
      position: relative;
      flex: 0 0 12px;
      width: 12px;
      height: 12px;
      align-self: center;
      transition: transform 0.4s var(--ease-luxury);
    }

    .faq__marker::before,
    .faq__marker::after {
      content: '';
      position: absolute;
      inset: 50% 0 auto 0;
      height: 1px;
      background: var(--color-accent);
    }

    .faq__marker::after {
      transform: rotate(90deg);
    }

    .faq__item[open] .faq__marker {
      transform: rotate(135deg);
    }

    .faq__a {
      padding: 0 0 1.4rem;
      max-width: 68ch;
    }

    .faq__a p {
      font-family: var(--font-sans);
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--color-text-muted);
    }

    .faq__item[open] .faq__a {
      animation: faqReveal 0.45s var(--ease-luxury);
    }

    @keyframes faqReveal {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .faq__item[open] .faq__a { animation: none; }
      .faq__marker { transition: none; }
    }

    .faq__footnote {
      max-width: 840px;
      margin: 2.25rem auto 0;
      text-align: center;
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1rem;
      color: var(--color-text-muted);
    }

    .faq__footnote a {
      color: var(--color-text-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--color-accent);
      padding-bottom: 1px;
      transition: color 0.3s var(--ease-luxury);
    }

    .faq__footnote a:hover,
    .faq__footnote a:focus-visible {
      color: var(--color-accent);
    }

    /* ========================================
       CTA / KONTAKT
       ======================================== */
    .cta-section {
      background: radial-gradient(ellipse 90% 60% at 50% 30%, var(--color-dark) 0%, var(--color-deep) 100%);
      position: relative;
      padding: var(--section-pad-y) 0;
      overflow: hidden;
    }

    /* Accent glow top */
    .cta-section::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 400px;
      background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .cta-section__inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-section__headline {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--color-text-light);
      margin-bottom: 1rem;
    }

.cta-section__subtext {
      font-size: 1rem;
      color: rgba(243, 237, 226, 0.55);
      max-width: 520px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    /* Form card */
    .form-card {
      background-color: var(--color-cream);
      border-radius: 6px;
      padding: clamp(2rem, 4vw, 3rem);
      max-width: 560px;
      margin: 0 auto;
      text-align: left;
    }

    .form-card__title {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text-dark);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      color: var(--color-text-dark);
      background-color: var(--color-warm);
      border: 1px solid rgba(13, 13, 13, 0.1);
      border-radius: 3px;
      padding: 0.85rem 1rem;
      transition: border-color 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px var(--color-accent-glow);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(107, 107, 107, 0.5);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-group--optional label::after {
      content: ' (voliteľné)';
      text-transform: none;
      letter-spacing: 0;
      font-weight: 400;
      opacity: 0.6;
    }

    .form-card .btn--primary {
      width: 100%;
      padding: 1.1rem 2rem;
      font-size: 0.88rem;
      margin-top: 0.5rem;
    }

    .form-card__note {
      text-align: center;
      font-size: 0.82rem;
      color: var(--color-text-muted);
      margin-top: 1.2rem;
    }

    /* Form validation */
    .form-group input.error,
    .form-group select.error {
      border-color: #c25550;
      box-shadow: 0 0 0 3px rgba(194, 85, 80, 0.12);
    }

    .form-group .error-msg {
      font-size: 0.78rem;
      color: #c25550;
      margin-top: 0.3rem;
      display: none;
    }

    .form-group .error-msg.visible {
      display: block;
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem 0;
    }

    .form-success.visible {
      display: block;
    }

    .form-success__icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      color: var(--color-accent);
    }

    .form-success__icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.5;
    }

    .form-success__title {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text-dark);
      margin-bottom: 0.6rem;
    }

    .form-success__text {
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background-color: var(--color-deep);
      padding: 1.75rem 0;
      border-top: 1px solid rgba(193, 154, 91, 0.08);
    }

    .footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
    }

    .footer__brand {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .footer__name {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text-light);
      line-height: 1.2;
    }

    .footer__tagline {
      font-size: 0.8rem;
      color: rgba(243, 237, 226, 0.55);
      line-height: 1.3;
    }

    .footer__nap {
      font-style: normal;
      font-size: 0.76rem;
      color: rgba(243, 237, 226, 0.4);
      line-height: 1.3;
    }

    .footer__nap a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s var(--ease-luxury);
    }

    .footer__nap a:hover {
      color: var(--color-accent);
    }

    .footer__right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .footer__socials {
      display: flex;
      gap: 0.75rem;
    }

    .footer__social-link {
      color: rgba(243, 237, 226, 0.4);
      transition: color 0.3s var(--ease-luxury);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
    }

    .footer__social-link:hover {
      color: var(--color-accent);
    }

    .footer__social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer__meta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.76rem;
      color: rgba(243, 237, 226, 0.3);
      line-height: 1;
    }

    .footer__copy {
      color: inherit;
    }

    .footer__sep {
      color: rgba(243, 237, 226, 0.2);
    }

    .footer__cookie-btn,
    .footer__link {
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      color: rgba(243, 237, 226, 0.5);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s var(--ease-luxury);
    }

    .footer__cookie-btn:hover,
    .footer__cookie-btn:focus-visible,
    .footer__link:hover,
    .footer__link:focus-visible {
      color: var(--color-accent);
      outline: none;
    }

    @media (max-width: 600px) {
      .footer {
        padding: 1.5rem 0;
      }
      .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 0.9rem;
      }
      .footer__right {
        flex-direction: column;
        gap: 0.75rem;
      }
    }

    /* ========================================
       GLASSMORPHISM DECORATIVE ELEMENT
       ======================================== */
    .glass-orb {
      position: absolute;
      border-radius: 50%;
      background: rgba(193, 154, 91, 0.04);
      border: 1px solid rgba(193, 154, 91, 0.06);
      backdrop-filter: blur(40px);
      pointer-events: none;
    }

    .approach .glass-orb--1 {
      width: 300px;
      height: 300px;
      top: -100px;
      right: -80px;
    }

    .approach .glass-orb--2 {
      width: 200px;
      height: 200px;
      bottom: -60px;
      left: -60px;
    }

    .process .glass-orb--1 {
      width: 250px;
      height: 250px;
      top: 40%;
      left: -100px;
    }

    /* ========================================
       FOCUS STYLES
       ======================================== */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 3px;
    }

    /* ========================================
       SELECTION
       ======================================== */
    ::selection {
      background-color: var(--color-accent);
      color: var(--color-deep);
    }

    /* ========================================
       SCROLL PROGRESS BAR
       ======================================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
      z-index: 9999;
      transition: width 0.05s linear;
      box-shadow: 0 0 8px var(--color-accent-glow);
    }

    /* ========================================
       FLOATING WHATSAPP CTA
       ======================================== */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 900;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      transition: opacity 0.6s var(--ease-luxury), transform 0.6s var(--ease-luxury);
      pointer-events: none;
    }

    .whatsapp-float.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }

    .whatsapp-float__tooltip {
      background: var(--color-deep);
      color: var(--color-text-light);
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.4s var(--ease-luxury);
      pointer-events: none;
    }

    .whatsapp-float:hover .whatsapp-float__tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    .whatsapp-float__btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background-color: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
      transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
      text-decoration: none;
      position: relative;
    }

    .whatsapp-float__btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float__btn svg {
      width: 28px;
      height: 28px;
      fill: #fff;
      position: relative;
      z-index: 2;
    }

    /* Pulse ring */
    .whatsapp-float__btn::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.25);
      animation: whatsappPulse 2.5s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes whatsappPulse {
      0%, 100% { transform: scale(1); opacity: 0.4; }
      50% { transform: scale(1.2); opacity: 0; }
    }

    @media (max-width: 500px) {
      .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
      }
      .whatsapp-float__tooltip { display: none; }
      .whatsapp-float__btn {
        width: 50px;
        height: 50px;
      }
      .whatsapp-float__btn svg {
        width: 24px;
        height: 24px;
      }
    }

    /* ========================================
       CTA WHATSAPP ALTERNATIVE
       ======================================== */
    .cta-section__divider {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      max-width: 560px;
      margin: 2rem auto;
    }

    .cta-section__divider::before,
    .cta-section__divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(243, 237, 226, 0.12);
    }

    .cta-section__divider span {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(243, 237, 226, 0.5);
      white-space: nowrap;
    }

    .cta-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      max-width: 560px;
      margin: 0 auto;
      padding: 1.2rem 2rem;
      background: rgba(37, 211, 102, 0.08);
      border: 1px solid rgba(37, 211, 102, 0.2);
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.4s var(--ease-luxury);
    }

    .cta-whatsapp:hover {
      background: rgba(37, 211, 102, 0.14);
      border-color: rgba(37, 211, 102, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(37, 211, 102, 0.15);
    }

    .cta-whatsapp__icon {
      width: 24px;
      height: 24px;
      fill: #25D366;
      flex-shrink: 0;
    }

    .cta-whatsapp__text {
      font-family: var(--font-sans);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text-light);
    }

    .cta-whatsapp__number {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      color: rgba(243, 237, 226, 0.45);
      letter-spacing: 0.05em;
    }

    /* ========================================
       CUSTOM SCROLLBAR
       ======================================== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--color-deep);
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(193, 154, 91, 0.3);
      border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(193, 154, 91, 0.5);
    }

    html {
      scrollbar-width: thin;
      scrollbar-color: rgba(193, 154, 91, 0.3) var(--color-deep);
    }

    /* ========================================
       ENHANCED CARD HOVER — GOLD BORDER GLOW
       ======================================== */
    .testimonial-card {
      position: relative;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid transparent;
      transition: border-color 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
      pointer-events: none;
    }

    .testimonial-card:hover::before {
      border-color: rgba(193, 154, 91, 0.2);
      box-shadow: inset 0 0 20px rgba(193, 154, 91, 0.04);
    }

    /* ========================================
       ACTIVE NAV LINK
       ======================================== */
    .nav__link--active {
      color: var(--color-text-light) !important;
    }

    .nav__link--active::after {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: var(--color-accent);
      margin-top: 2px;
      animation: navUnderline 0.3s var(--ease-luxury) forwards;
    }

    @keyframes navUnderline {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    /* ========================================
       SECTION DIVIDER — ELEGANT LINE
       ======================================== */
    .section-divider {
      display: block;
      width: 60px;
      height: 1px;
      background: var(--color-accent);
      margin: 0 auto 2rem;
      opacity: 0.3;
    }

    /* ========================================
       APPROACH COLUMN — ICON HOVER
       ======================================== */
    .approach-col__icon {
      transition: transform 0.5s var(--ease-luxury);
    }

    .approach-col:hover .approach-col__icon {
      transform: scale(1.1) rotate(-3deg);
    }

    /* ========================================
       PROCESS STEP — HOVER ACCENT
       ======================================== */
    .process-step {
      transition: transform 0.4s var(--ease-luxury);
    }

    .process-step:hover .process-step__number {
      text-shadow: 0 0 30px var(--color-accent-glow);
    }

    .process-step__number {
      transition: text-shadow 0.4s var(--ease-luxury);
    }

    /* ========================================
       HERO STAT — COUNTER ANIMATION
       ======================================== */
    .hero__stat-number {
      font-variant-numeric: tabular-nums;
    }

    /* ========================================
       BTN ICON ALIGNMENT
       ======================================== */
    .btn svg {
      width: 18px;
      height: 18px;
      margin-right: 0.5rem;
      flex-shrink: 0;
    }

    /* ========================================
       MOBILE OPTIMIZATIONS
       ======================================== */
    @media (max-width: 767px) {
      /* Hero — tighter spacing */
      .hero {
        min-height: 100svh;
        padding-top: calc(var(--nav-height) + 1rem);
      }

      .hero__content {
        padding: 0 1.25rem;
      }

      .hero__tagline {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        margin-bottom: 1.2rem;
      }

      .hero__tagline span {
        width: 16px;
        margin: 0 0.5rem;
      }

      .hero__pretitle {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        /* Mobile: skrátená animačná oneskorenie pre rýchlejší FCP */
        animation-delay: 0.05s;
      }

      .hero__title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
        margin-bottom: 1rem;
        animation-delay: 0.15s;
      }

      .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        line-height: 1.65;
        animation-delay: 0.3s;
      }

      /* CTA buttons — full width stack */
      .hero__ctas {
        flex-direction: column;
        align-items: center;
        animation-delay: 0.45s;
      }

      .hero__ctas .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 0.82rem;
      }

      /* Stats — compact */
      .hero__stats {
        margin-top: 2.5rem;
        padding-top: 1.8rem;
        animation-delay: 0.65s;
      }

      .hero__scroll-indicator {
        bottom: 1.5rem;
      }

      /* Section headings */
      .section-headline {
        font-size: clamp(1.7rem, 6vw, 2.5rem);
      }

      .section-label {
        font-size: 0.7rem;
      }

      /* Approach — carousel override (všetky desktop/tablet pravidlá zrušené) */
      .approach__grid {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.875rem;
        padding: 0.25rem 1.25rem 1rem;
        margin: 0 calc(-1 * var(--section-pad-x));
        align-items: stretch;
        counter-reset: approach-card;
      }

      .approach__grid::-webkit-scrollbar {
        display: none;
      }

      .approach-col {
        flex: 0 0 82vw;
        max-width: 340px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        padding: 1.75rem 1.5rem 1.5rem;
        counter-increment: approach-card;
        position: relative;
      }

      /* Číslo karty — CSS counter, zlaté, editorial */
      .approach-col::before {
        content: '0' counter(approach-card);
        display: block;
        font-family: var(--font-sans);
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 0.3em;
        color: rgba(193, 154, 91, 0.35);
        margin-bottom: 1.25rem;
      }

      .approach-col__text {
        font-size: 0.88rem;
      }

      /* Posledná karta — padding vpravo aby bolo vidno koniec */
      .approach-col:last-child {
        margin-right: var(--section-pad-x);
      }

      /* Audience cards */
      .audience-card__header {
        padding: 1.5rem 1.5rem 0;
      }

      .audience-card__divider {
        margin: 1.2rem 1.5rem;
      }

      .audience-card__list {
        padding: 0 1.5rem 1.5rem;
      }

      .audience-card__item {
        font-size: 0.88rem;
      }

      /* Process — mobile compact */
      .process__subtext {
        font-size: 0.9rem;
      }

      .process-step__text {
        font-size: 0.85rem;
      }

      /* Testimonials */
      .testimonial-card {
        padding: 1.8rem 1.5rem;
      }

      .testimonial-card__text {
        font-size: 0.88rem;
      }

      /* CTA section */
      .cta-section__headline {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
      }

      .cta-section__subtext {
        font-size: 0.9rem;
      }

      /* Form — touch-friendly */
      .form-card {
        padding: 1.5rem 1.25rem;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
        font-size: 16px; /* prevents iOS zoom */
        padding: 0.9rem 1rem;
      }

      .form-card .btn--primary {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
      }

      /* WhatsApp CTA */
      .cta-whatsapp {
        padding: 1rem 1.25rem;
      }

      /* Intro curtain — simpler on mobile */
      .intro-curtain__name {
        font-size: 1.3rem;
      }

      /* Hide decorative rings on small screens */
      .hero__ring--3 {
        display: none;
      }
    }

    @media (max-width: 380px) {
      .hero__title {
        font-size: 2rem;
      }

      .hero__stats {
        gap: 0.75rem;
      }

      .hero__stat {
        max-width: 6.5rem;
      }

      .hero__stat-number {
        font-size: 1.4rem;
        padding-bottom: 0.55rem;
      }

      .hero__stat-field {
        font-size: 0.75rem;
        margin-top: 0.55rem;
      }

      .hero__stat-label {
        font-size: 0.56rem;
        letter-spacing: 0.16em;
      }
    }

    /* Touch device — larger tap targets */
    @media (hover: none) and (pointer: coarse) {
      .nav__cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }

      .footer__social-link {
        min-width: 44px;
        min-height: 44px;
      }

      .audience-card__item {
        padding: 0.85rem 0;
      }
    }
