@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* 
 * LK DETAILING – FASHION EDITORIAL / LV AESTHETIC
 * Absolute minimalism, huge photography, micro-typography.
 */

:root {
  --color-sand: #F9F8F6;
  --color-text-dark: #222222;
  --color-text-light: #FFFFFF;
  --font-base: 'Inter', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-text-dark);
  background-color: var(--color-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-text-dark);
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/* ==========================================================================
   NAVIGATION (LV STYLE)
   ========================================================================== */
.nav {
  position: fixed;
  /* Místo absolute, drží na místě hned od 0px */
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: transparent;
  color: var(--color-text-light);
  /* Bílý text nahoře nad fotkou */
  transition: background-color 0.5s ease, color 0.5s ease, padding 0.5s ease, transform 0.5s ease;
}

/* 
  Když někdo najede jen na *jakýkoliv* text v Navbaru, chceme původní opacity chování klesnutí na obvyklou šedou.
*/
@media (hover: hover) {
  .nav:hover {
    background-color: rgba(249, 248, 246, 0.98);
    color: var(--color-text-dark);
  }

  .nav a:hover,
  .nav .hamburger-btn:hover {
    opacity: 0.5;
  }
}

/* Fallback opacita pro touch zairzeni na linky bez hoveru pozadi: */
@media (hover: none) {
  .nav a:active,
  .nav .hamburger-btn:active {
    opacity: 0.5;
  }
}

.nav.sticky {
  position: fixed;
  background-color: rgba(249, 248, 246, 0.95);
  color: var(--color-text-dark);
  backdrop-filter: blur(10px);
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

/* Left side: Menu / Search */
.nav__left {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-icon span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: currentColor;
}

/* Center: Logo */
.nav__brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Right side: Tools */
.nav__right {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 0.05em;
}

.nav__right-links {
  display: none;
  gap: 2.4rem;
}

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

.nav__icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}

/* ==========================================================================
   FULLSCREEN MENU
   ========================================================================== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-sand);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-menu__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
}

.fullscreen-menu__nav {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fullscreen-menu__nav a {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.fullscreen-menu__nav a:hover {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .fullscreen-menu {
    width: 400px;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    background-color: var(--color-sand);
    backdrop-filter: none;
    border: none;
    padding: 12rem 4rem 4rem 4rem;
    /* top padding to make room for close btn */
    box-shadow: none;
    border-radius: 0;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(-100%);
    opacity: 1;
    /* override mobile opacity hidden */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  }

  .fullscreen-menu.active {
    transform: translateX(0);
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.6);
    /* Tmavý filtr na zbytek stránky */
  }

  .nav.sticky~.fullscreen-menu {
    top: 0;
  }

  .fullscreen-menu__close {
    display: flex;
    align-items: center;
    left: 4rem;
    right: auto;
    top: 4rem;
    text-transform: none;
    font-size: 1.4rem;
    font-weight: 300;
  }

  .fullscreen-menu__close::before {
    content: '✕';
    margin-right: 1.2rem;
    font-size: 1.8rem;
    padding-bottom: 2px;
  }

  .fullscreen-menu__nav {
    gap: 3.2rem;
    /* Velký rozevřený rozestup odkazů jako na LV */
    padding: 0;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .fullscreen-menu__nav a {
    font-size: 1.7rem;
    font-weight: 400;
    text-transform: none;
    /* Normální velikost písmen */
    letter-spacing: 0;
    color: #000;
  }
}

/* ==========================================================================
   HERO FULLSCREEN
   ========================================================================== */
.hero {
  position: relative;
  width: 100vw;
  height: 95vh;
  height: calc(var(--vh, 1vh) * 95);
  /* Reduced from 100vh to show content below */
  overflow: hidden;
  background-color: #000;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  /* Zasahuje do poloviny výšky fotky */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.9;
}

.hero__content {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--color-text-light);
  width: 100%;
  padding: 0 2rem;
  z-index: 2;
  /* Ujištění, že je text nad gradientem */
}

.hero__content h1 {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.hero__content h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.link-underline {
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-transform: capitalize;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.link-underline:hover {
  opacity: 0.6;
}

/* ==========================================================================
   EDITORIAL SECTION
   ========================================================================== */
.editorial {
  padding: 16rem 4rem;
  /* Větší top a bottom white space */
  max-width: 1400px;
  /* Užší celkové plátno prázdnoty */
  margin: 0 auto;
}

.editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12rem;
  /* Velký meziprostor na mobilech */
}

@media (min-width: 768px) {
  .editorial__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16rem;
    /* Extrémní rozestup mezi fotkou a textem na PC */
  }

  .editorial__grid--reverse .editorial__img-wrapper {
    order: 2;
  }
}

.editorial__img-wrapper {
  width: 100%;
  max-width: 480px;
  /* Fotky jsou nyní malé, kompaktní boxy floating in white space */
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  /* Vysoký módní úzký obdelník */
  height: auto;
  position: relative;
  overflow: hidden;
}

.editorial__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial__text {
  max-width: 420px;
  /* Skrytí textu blíž k okraji */
  margin: 0 auto;
  text-align: center;
  padding: 0 5vw;
}

.editorial__eyebrow {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.5);
}

.editorial__title {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.editorial__body {
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* ==========================================================================
   CREATIONS SELECTION (LV PRODUCT GRID)
   ========================================================================== */
.creations {
  padding: 8rem 5vw 6rem 5vw;
  max-width: 1600px;
  /* Výrazně zvětšeno po vzoru LV pro gigantické portrétní zobrazení */
  margin: 0 auto;
}

.creations__header {
  text-align: center;
  margin-bottom: 4rem;
  /* Zmenšeno z 8rem pro těsnější provázání nadpisu s produkty */
}

.creations__header h2 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 400;
  /* Zvýšeno z 300 pro lehce tučnější a čitelnější nadpis jako LV */
  letter-spacing: 0.02em;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

.creations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2vw;
  /* Dynamická flexibilní mezera (podobná LV paddingu) */
}

/* Base Mobile (2 columns like LV) */
.creations__item {
  width: calc(50% - 1.5vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  margin-bottom: 3rem;
}

/* Tablet (2 columns) */
@media (min-width: 768px) {
  .creations__item {
    width: calc(50% - 1vw);
    margin-bottom: 4rem;
  }
}

/* Desktop (4 columns) */
@media (min-width: 1024px) {
  .creations__grid {
    gap: 1.5vw;
  }

  .creations__item {
    width: calc(25% - 1.125vw);
    /* 4 položky do řady přesně jako LV 204px na 4 sloupce */
    margin-bottom: 0;
  }
}



.creations__item-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  /* Mírně na výšku, ale ne tak úzká nudle. Fotky u kabelek LV jsou 1:1 nebo lehce natažené (4:5). */
  background-color: transparent;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creations__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.creations__item:hover .creations__item-img img {
  transform: scale(1.05);
  /* Jemný plynulý zoom při najetí */
}

.creations__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
  /* Odstraněno text-transform: uppercase aby to odpovídalo 'Women's Handbags' z LV */
  margin-bottom: 0.5rem;
  margin-top: 0.4rem;
  /* Přitáhnutí textu ještě blíž k fotografii podle žádosti */
}

/* ==========================================================================
   CINEMATIC BANNER
   ========================================================================== */
.cinematic-banner {
  width: 100%;
  height: 80vh;
  /* Velkolepý formát na výšku viewportu (cinematic na šířku) */
  position: relative;
  overflow: hidden;
  display: block;
}

.cinematic-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================================
   FORM
   ========================================================================== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 8rem 0;
}

.form-group {
  margin-bottom: 4rem;
  position: relative;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1.6rem;
  color: var(--color-text-dark);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-text-dark);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

button[type="submit"] {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-text-dark);
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 2rem;
}

button[type="submit"]:hover {
  opacity: 0.6;
}

/* ==========================================================================
   EXPANDED FOOTER
   ========================================================================== */
.footer {
  padding: 8rem 4rem 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--color-sand);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__brand {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.footer__desc {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__links li,
.footer__links a {
  font-size: 1.2rem;
  color: var(--color-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__links a:hover {
  opacity: 0.5;
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal,
.footer__legal-links a {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.footer__legal-links {
  display: flex;
  gap: 2rem;
}

.footer__legal-links a:hover {
  color: var(--color-dark);
}

/* ==========================================================================
   LK CARE SYSTEM
   ========================================================================== */
.lk-care-system {
  background-color: var(--color-sand);
  color: var(--color-text-dark);
  padding: 8rem 5vw 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lk-care-system__container {
  max-width: 600px;
  margin: 0 auto;
}

.lk-care-system__desc {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
}

.lk-care-system__cta {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.4);
  display: inline-block;
}

@media (min-width: 768px) {
  .lk-care-system {
    padding: 10rem 5vw 6rem;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll reveal classes */
.fade-up,
.fade-in-scroll {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up {
  transform: translateY(30px);
}

.fade-in-scroll {
  transform: translateY(0);
}

.fade-up.visible,
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation 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;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   FAQ ACCORDION (LV STYLE)
   ========================================================================== */
.faq-accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text-dark);
  text-align: left;
  transition: opacity 0.3s ease;
}

.faq-btn:hover {
  opacity: 0.6;
}

.faq-icon {
  font-size: 2.4rem;
  font-weight: 300;
  transition: transform 0.4s ease;
}

.faq-btn.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.faq-content p {
  padding-bottom: 3rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.faq-btn.active+.faq-content {
  opacity: 1;
}

/* ==========================================================================
   LV REPAIRS COMPONENTS
   ========================================================================== */
.btn-pill {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 1.6rem 3.6rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-pill:hover {
  opacity: 0.7;
  color: #fff;
}

.lv-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10rem;
  align-items: stretch;
}

.lv-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.btn-pill-outline {
  display: inline-block;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 1.4rem 3.6rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pill-outline:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 900px) {
  .lv-split {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .lv-duo {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

/* ==========================================================================
   PROCESS PAGE EXTENSIONS
   ========================================================================== */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  /* Removed parallax override to allow background scrolling on mobile */
}

.btn {
  display: inline-block;
  padding: 1.5rem 4rem;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  opacity: 0.8;
}

/* ==========================================================================
   SEARCH MODAL
   ========================================================================== */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal__close {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 3rem;
  font-weight: 300;
  color: #222;
  cursor: pointer;
  transition: opacity 0.3s;
}

.search-modal__close:hover {
  opacity: 0.6;
}

.search-modal__content {
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.search-modal__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b09868;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 0;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: #222;
}

.search-modal__input::placeholder {
  color: #ccc;
}

.search-modal__results {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 1rem;
}

.search-result-item {
  display: block;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
  transition: opacity 0.3s;
}

.search-result-item:hover {
  opacity: 0.6;
}

.search-result-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #b09868;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-result-snippet {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* ================= DESKTOP HYGIENE ================= */
.mobile-only-ig {
  display: none !important;
}
.mobile-only-br {
  display: none !important;
}

@media (max-width: 768px) {
  /* ================= MOBILE EXCLUSIVE ================= */
  .hide-on-mobile {
    display: none !important;
  }
  .mobile-only-br {
    display: block !important;
  }
  .mobile-only-ig {
    display: flex !important;
  }
  .proces-mobile-pad, .mobile-pad-5vw {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .proces-subnav-container {
    gap: 1.5rem !important;
  }
  .proces-subnav-link {
    font-size: 1.15rem !important; /* Zvětšeno z 0.95rem, aby lépe vyplnil prostor */
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
  }

  /* ================= NAV & HEADER (LV STYLE) ================= */
  .nav {
    padding: 2rem 2rem; /* Tighter padding */
  }
  .nav.sticky {
    padding: 1.5rem 2rem;
  }
  
  .nav__left, .nav__right {
    gap: 1.5rem; /* Closer icons */
  }

  .hamburger-btn > span,
  .search-trigger > span {
    display: none; /* Hide 'Menu' and 'Hledat' text */
  }

  /* Thin hamburger lines to match LV */
  .hamburger-icon {
    gap: 5px;
  }
  .hamburger-icon span {
    width: 24px;
    height: 1px;
    margin-bottom: 0;
    display: block;
  }
  .hamburger-icon::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: currentColor;
  }

  .nav__brand {
    font-size: 1.8rem; /* Smaller logo */
    letter-spacing: 0.1em;
  }

  .nav__icon {
    width: 22px;
    height: 22px;
    stroke-width: 1;
  }

  /* ================= SEARCH DROPDOWN FORM ================= */
  .search-modal {
    padding-top: 10vh;
    background: #fff;
  }

  .search-modal__close {
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
  }

  .search-modal__input {
    font-size: 1.2rem;
    border: 1px solid #777;
    border-radius: 50px;
    padding: 1.2rem 2rem; /* Pill shape */
    background: #fff;
    margin-top: 1rem;
  }

  .search-modal__input::placeholder {
    color: #888;
    font-weight: 300;
  }

  .search-modal__content {
    width: 95%;
  }

  /* ================= SCALE DOWN PADDINGS & HERO ================= */
  .hero {
    height: 98vh; 
    height: calc(var(--vh, 1vh) * 98); /* Mírnější zvětšení proti původním 80 */
  }

  /* Focus na ženu na mobilu (posune fotku doleva) */
  .hero__img {
    object-position: 60% 50%;
  }

  .cinematic-banner {
    height: 85vh; 
    height: calc(var(--vh, 1vh) * 85); /* Zvětšeno k zachování poměru o 30 % */
  }

  .cinematic-banner img {
    object-position: center 30%;
  }

  .editorial {
    padding: 8rem 0; /* Huge padding removed */
  }

  .editorial__grid {
    gap: 5rem;
  }

  .editorial__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .creations {
    padding: 5rem 5vw;
  }

  .creations__header {
    margin-bottom: 3rem;
  }

  .creations__header h2 {
    font-size: 2rem;
  }

  .creations__item-title {
    font-size: 1.15rem;
  }

  .premium-form-container {
    padding: 3rem 5vw;
  }

  .footer {
    padding: 5rem 5vw 3rem;
  }
  
  .footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer__column:nth-child(1) { grid-column: 1 / -1; margin-bottom: 1rem; } /* Brand */
  .footer__column:nth-child(2) { grid-column: 1 / 2; } /* Navigace */
  .footer__column:nth-child(3) { grid-column: 2 / 3; } /* Kontakt */
  .footer__column:nth-child(4) { grid-column: 1 / -1; margin-top: 1rem; } /* Sledujte nas */

  /* ================= NAV FULLSCREEN MENU (LV STYLE) ================= */
  .fullscreen-menu {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8rem;
    background-color: var(--color-sand);
  }

  .fullscreen-menu__close {
    top: 2rem;
    right: auto;
    left: 2rem;
    font-size: 2.4rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
  }
  .fullscreen-menu__close::before {
    content: "✕";
  }
  /* Skryt text Zavřít, nechat jen křížek */
  .fullscreen-menu__close {
    font-size: 0; 
  }
  .fullscreen-menu__close::before {
    font-size: 2.4rem;
  }

  .fullscreen-menu__nav {
    width: 100%;
    align-items: stretch;
    gap: 0;
    text-align: left;
    box-sizing: border-box; /* Zamezí přetékání a oseknutí */
  }

  .fullscreen-menu__nav li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
  }

  .fullscreen-menu__nav a {
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
  }

  /* Čistá CSS šipka pro mobilní menu (nikdy se neusekne) */
  .fullscreen-menu__nav a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #222;
    border-right: 1.5px solid #222;
    transform: rotate(45deg);
    margin-right: 1.5rem;
    opacity: 0.8;
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--color-text-dark);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #ddd;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 999;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__text a {
  color: #b09868;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 0.7rem 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-base);
}

.cookie-banner__btn:hover {
  background: #b09868;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1.5rem 2rem;
    text-align: center;
    gap: 1rem;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}