*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --white: #FFFFFF;
    --beige: #F7F0E3;
    --navy: #2C1810;
    --pink: #C4783B;
    --text: #1a1a1a;
    --muted: #888;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.5;
  }
  body:hover .cursor { opacity: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 60px;
    mix-blend-mode: multiply;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  }
  nav.scrolled {
    mix-blend-mode: normal;
    background: rgba(247, 240, 227, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 16px; padding-bottom: 16px;
    box-shadow: 0 1px 0 rgba(44,24,16,0.08);
  }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px;
    cursor: none;
    background: none; border: none; padding: 4px;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 1px;
    background: var(--navy);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* MOBILE MENU OVERLAY */
  .nav-mobile-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(247, 240, 227, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 150;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-mobile-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 8vw, 52px); font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--navy); text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(44,24,16,0.1);
    width: 70%; text-align: center;
    transition: color 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
  }
  .nav-mobile-overlay.open a {
    opacity: 1; transform: translateY(0);
  }
  .nav-mobile-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav-mobile-overlay.open a:nth-child(2) { transition-delay: 0.10s; }
  .nav-mobile-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav-mobile-overlay.open a:nth-child(4) { transition-delay: 0.20s; }
  .nav-mobile-overlay a:hover { color: var(--pink); }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--navy); text-decoration: none;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--navy); text-decoration: none; font-weight: 500;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px; background: var(--pink);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  /* HERO */
  #hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; object-position: center 15%; object-position: center 15%;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.0); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(44,24,16,0.12) 100%);
  }
  .hero-text {
    position: relative; z-index: 2;
    text-align: center; color: black;
    animation: fadeUp 1.4s ease 0.3s both;
  }
  .hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 10vw, 110px);
    font-weight: 300; letter-spacing: 0.08em;
    line-height: 1; text-shadow: 0 2px 40px rgba(44,24,16,0.3);
    color: black;
  }
  .hero-title {
    font-size: 11px; letter-spacing: 0.3em;
    text-transform: uppercase; font-weight: 400;
    margin-top: 18px; opacity: 0.9;
  }
  .hero-sub {
    font-size: 11px; letter-spacing: 0.18em;
    margin-top: 10px; opacity: 0.75;
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px;
  }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: black; opacity: 0.6;
    animation: fadeIn 2s ease 1.5s both;
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px; background: black;
    animation: scrollPulse 2s ease infinite;
  }
  @keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.5); opacity: 1; }
  }

  /* SECTIONS common */
  section { padding: 120px 60px; }
  .section-label {
    font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--pink); font-weight: 500; margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px); font-weight: 300;
    line-height: 1.1; color: var(--navy);
  }

  /* ABOUT */
  #about {
    background: #F0E9D6;
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .about-left {}
  .about-text {
    font-size: 15px; line-height: 1.9; color: #444;
    font-weight: 300; margin-top: 32px;
  }
  .about-text p + p { margin-top: 20px; }
  .about-right {
    display: flex; flex-direction: column; gap: 0;
  }
  .stat {
    border-top: 1px solid rgba(44,24,16,0.15);
    padding: 28px 0;
    display: flex; justify-content: space-between; align-items: baseline;
  }
  .stat:last-child { border-bottom: 1px solid rgba(44,24,16,0.15); }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300; color: var(--navy);
    line-height: 1;
  }
  .stat-label {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); max-width: 150px; text-align: right; line-height: 1.5;
  }

  /* SPECIALIZACE */
  #specializace { background: var(--white); }
  .spec-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(44,24,16,0.08); margin-top: 60px;
  }
  .spec-card {
    background: var(--white); padding: 52px 40px;
    transition: background 0.4s ease, transform 0.3s ease;
    position: relative; overflow: hidden;
  }
  .spec-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    height: 3px; width: 0; background: var(--pink);
    transition: width 0.4s ease;
  }
  .spec-card:hover { background: #F0E9D6; }
  .spec-card:hover::before { width: 100%; }
  .spec-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; color: var(--pink); margin-bottom: 28px;
    letter-spacing: 0.1em;
  }
  .spec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; color: var(--navy);
    margin-bottom: 20px; line-height: 1.2;
  }
  .spec-bullets { list-style: none; }
  .spec-bullets li {
    font-size: 12px; color: #666; letter-spacing: 0.05em;
    padding: 6px 0; border-bottom: 1px solid rgba(44,24,16,0.08);
    display: flex; align-items: center; gap: 10px;
  }
  .spec-bullets li::before { content: '—'; color: var(--pink); font-size: 10px; }

  /* ZKUŠENOSTI */
  #zkusenosti { background: var(--navy); color: var(--white); }
  #zkusenosti .section-title { color: var(--white); }
  .exp-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    margin-top: 60px;
  }
  .exp-card {
    background: rgba(255,255,255,0.04); padding: 52px 48px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
  }
  .exp-card:hover { background: rgba(255,255,255,0.08); }
  .exp-brand-x {font-family: 'Cormorant Garamond', serif;
    font-size: 38px; font-weight: 300; color: var(--white);
    margin-bottom: 8px;
  }
  .exp-type {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--pink); margin-bottom: 28px;
  }
  .exp-items { display: flex; flex-direction: column; gap: 12px; }
  .exp-item {
    font-size: 12px; color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em; display: flex; gap: 14px; align-items: center;
  }
  .exp-dot { width: 4px; height: 4px; background: var(--pink); border-radius: 50%; flex-shrink: 0; }

  /* NIKITA SLIDER */
  #nikita-slider {
    background: var(--white);
    padding-right: 0;
    overflow: hidden;
  }
  .nikita-slider-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; padding-right: 60px; margin-bottom: 52px;
  }
  .nikita-slider-controls {
    display: flex; gap: 8px; flex-shrink: 0;
  }
  .slider-btn {
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border: 1px solid rgba(44,24,16,0.25);
    background: transparent; color: var(--navy);
    cursor: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  }
  .slider-btn svg {
    width: 19px; height: 19px;
    fill: none; stroke: currentColor; stroke-width: 1.5;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .slider-btn:hover:not(:disabled) {
    color: var(--white); background: var(--navy); border-color: var(--navy);
  }
  .slider-btn:disabled { opacity: 0.25; }
  .nikita-slider-wrap { position: relative; }
  .nikita-slider-track {
    display: flex; gap: 12px;
    overflow-x: auto; overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding-right: 60px;
  }
  .nikita-slider-track::-webkit-scrollbar { display: none; }
  .nikita-slider-track:focus-visible {
    outline: 1px solid var(--pink); outline-offset: 8px;
  }
  .nikita-slide {
    flex: 0 0 clamp(260px, 27vw, 420px);
    aspect-ratio: 2 / 3;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden; background: #F0E9D6;
  }
  .nikita-slide-link {
    display: block; width: 100%; height: 100%;
    color: inherit; text-decoration: none; cursor: none;
  }
  .nikita-slide img {
    width: 100%; height: 100%; display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .nikita-slide:hover img { transform: scale(1.025); }
  .nikita-slide-label {
    position: absolute; top: auto; right: auto; bottom: 24px; left: 24px;
    max-width: calc(100% - 48px);
    padding: 8px 14px;
    color: var(--navy); background: rgba(247,240,227,0.92);
    font-size: 9px; font-weight: 500; line-height: 1.5;
    letter-spacing: 0.15em; text-transform: uppercase;
    box-shadow: 0 1px 0 rgba(44,24,16,0.08);
  }
  .nikita-slide-link .nikita-slide-label { padding-right: 32px; }
  .nikita-slide-link .nikita-slide-label::after {
    content: '↗';
    position: absolute; top: 50%; right: 12px;
    font-size: 13px; line-height: 1;
    transform: translateY(-50%);
  }

  /* PROJEKTY */
  #projekty { background: #F0E9D6; }
  .proj-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-top: 60px;
  }
  .proj-card {
    position: relative; overflow: hidden; aspect-ratio: 3/4;
    background: var(--white);
    cursor: none;
  }
  .proj-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #ede3d5 0%, #d4cbc4 100%);
    transition: transform 0.6s ease;
    font-family: 'Cormorant Garamond', serif;
  }
  .proj-card:hover .proj-placeholder { transform: scale(1.04); }
  .proj-icon {
    font-size: 48px; color: rgba(44,24,16,0.15); margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif; font-style: italic;
  }
  .proj-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 36px;
  }
  .proj-card:hover .proj-overlay { opacity: 1; }
  .proj-info { color: var(--white); }
  .proj-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 300;
  }
  .proj-tag {
    font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--pink); margin-top: 4px;
  }
  .proj-label {
    position: absolute; top: 24px; left: 24px;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); background: rgba(245,241,237,0.9);
    padding: 6px 14px;
  }

  /* STŘIHY */
  #strihy {
    background: var(--white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  }
  .strihy-visual {
    aspect-ratio: 1; background: #F0E9D6;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .strihy-svg {
    width: 70%; opacity: 0.4;
  }
  .strihy-text { }
  .strihy-points { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
  .strihy-point {
    padding: 22px 0; border-bottom: 1px solid rgba(44,24,16,0.1);
    display: grid; grid-template-columns: 32px 1fr; gap: 20px; align-items: start;
  }
  .point-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; color: var(--pink); padding-top: 2px;
  }
  .point-title {
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 6px;
  }
  .point-desc { font-size: 12px; color: #777; line-height: 1.7; font-weight: 300; }

  /* CTA */
  #cta {
    background: #F0E9D6;
    text-align: center; padding: 140px 60px;
  }
  .cta-eyebrow {
    font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--pink); margin-bottom: 24px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.5vw, 58px); font-weight: 300;
    color: var(--navy); line-height: 1.3; max-width: 700px; margin: 0 auto 48px;
  }
  .cta-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 36px;
    border: 1px solid var(--navy); color: var(--navy);
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    position: relative; overflow: hidden;
    transition: color 0.4s ease;
    cursor: none;
  }
  .cta-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--navy); transform: translateX(-101%);
    transition: transform 0.4s ease;
  }
  .cta-btn:hover { color: var(--white); }
  .cta-btn:hover::before { transform: translateX(0); }
  .cta-btn span { position: relative; z-index: 1; }
  .cta-btn svg { position: relative; z-index: 1; flex-shrink: 0; }
  .cta-btn--whatsapp { border-color: #3a6b4a; color: #3a6b4a; }
  .cta-btn--whatsapp::before { background: #3a6b4a; }
  @media (max-width: 600px) {
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 320px; justify-content: center; }
  }

  /* FOOTER */
  footer {
    background: var(--navy); padding: 40px 60px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-name {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white); font-size: 16px; letter-spacing: 0.15em;
    font-weight: 300;
  }
  .footer-link {
    color: rgba(255,255,255,0.5); font-size: 10px;
    letter-spacing: 0.15em; text-decoration: none;
    transition: color 0.3s;
  }
  .footer-link:hover { color: var(--pink); }
  .footer-copy {
    color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.1em;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Stagger delays */
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 20px 28px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile-overlay { display: flex; }
    section { padding: 80px 28px; }
    #about { grid-template-columns: 1fr; gap: 48px; }
    .spec-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    #nikita-slider { padding-right: 0; }
    .nikita-slider-head { padding-right: 28px; }
    .nikita-slider-track { padding-right: 28px; }
    .nikita-slide { flex-basis: clamp(240px, 55vw, 360px); }
    .proj-grid { grid-template-columns: 1fr 1fr; }
    #strihy { grid-template-columns: 1fr; gap: 48px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }
  @media (max-width: 500px) {
    .nikita-slider-head { align-items: center; margin-bottom: 36px; }
    .slider-btn { width: 42px; height: 42px; }
    .nikita-slide { flex-basis: calc(100vw - 72px); }
    .nikita-slide-label { top: auto; bottom: 18px; left: 18px; max-width: calc(100% - 36px); }
    .proj-grid { grid-template-columns: 1fr; }
    .hero-name { font-size: 42px; }
  }
 h3.exp-brand a{ color: var(--white); text-decoration: none; }
 .proj-card img{ width: 100%; object-fit: contain; }
