/* Globální reset */
/* Globální reset */
/* Globální reset */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    overflow-x: hidden;
    font-family: 'Mona Sans', sans-serif;
    background-color: #f9f7ef;
  }

.background-slideshow {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
  }
  
  .background-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .background-slideshow img.active {
    opacity: 1;
  }


  
  /* NAVIGACE */
  /* NAVIGACE */
  /* NAVIGACE */


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* sníženo pro nalepení */
    z-index: 9999;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: transform 0.4s ease, background-color 0.3s ease;
  }
  
  
  .nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
 
  .logo-img {
    position: absolute;
    top: 2vw;
    left: 2.5vw;
    height: 3.5vw;
    width: auto;
    transform: translateY(-4px);
    transition: opacity 0.3s ease;
  }

  .text-logo {
    opacity: 0;
    transform: translateY(-4px) scale(1.2); /* zvětšení o 20 % */
    transform-origin: left center;
  }
  
  .nav-colored .text-logo {
    opacity: 1;
  }
  
  .nav-colored .full-logo {
    opacity: 0;
  }

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

  /* Když je nav viditelná a barevná */
  .nav-colored {
    background-color: #2d2621b2;
    transition: background-color 0.3s ease;
  }
  
  /* Pravá strana navigace */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
  }
  
  /* CTA */
  .cta-button {
    background-color: #ff0068;
    color: #f9f7ef;
    padding: 12px 24px;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 1vw;
  }
  
  .cta-button:hover {
    background-color: #d80056;
  }

  .client-zone-btn {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(249,247,239,0.35);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }

  .client-zone-btn:hover {
    background: #2d2621;
    border-color: #2d2621;
  }

  .client-zone-logo {
    height: 32px;
    width: auto;
    display: block;
  }

  /* MENU tlačítko */
  .menu-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    margin-top: 0;
    top:-10px;
  }

  .menu-wrapper:hover .menu-line {
    background-color: #fad1d4;

  }

  .menu-wrapper:hover .menu-line-group {
    transform: translateY(4px);
  }
  
  
  
  /* skupina = čára + písmeno */
  .menu-line-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    margin-top: 0;
    transition: transform 0.3s ease;
  }
  
  /* samotná čára */
  .menu-line {
    width: 6px;
    height: var(--height);
    background-color: #ff0068;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: background-color 0.4s ease-in-out;
    
  }
  
  /* písmena pod čárou */
  .menu-letter {
    font-size: 10px;
    font-weight: 600;
    font-family: 'Mona Sans', sans-serif;
    color: white;
    margin-top: 6px;
  }
  
  @keyframes fadeIn {
    from {
      transform: translateY(-40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  
  
/* JAZYKOVÝ PŘEPÍNAČ */
.language-switcher {
    display: flex;
    gap: 6px;
    font-weight: 600;
    color: #f9f7ef;
    margin-top: 25px;
  }
  
  .language-switcher a {
    color: #f9f7ef;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  
  .language-switcher a:hover {
    opacity: 0.7;
  }


/* FULLSCREEN MENU */
/* FULLSCREEN MENU */
/* FULLSCREEN MENU */


  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(45,38,33,0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  
  .fullscreen-menu ul {
    list-style: none;
    text-align: center;
  }
  
  .fullscreen-menu li {
    margin: 20px 0;
  }
  
  .fullscreen-menu a {
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fad1d4;
    transition: opacity 0.3s ease;
  }
  
  .fullscreen-menu a:hover {
    opacity: 0.6;
  }

  .menu-ahstudio-link,
  .fullscreen-menu a.menu-ahstudio-link {
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 1 !important;
  }

  .fullscreen-menu a.menu-ahstudio-link:hover {
    opacity: 1 !important;
    transform: scale(1.15);
  }

  .menu-ahstudio-logo {
    height: 36px;
    width: auto;
    display: block;
  }
  
  /* Když je menu aktivní */
  .fullscreen-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 48px;
    color: #ff0068;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .menu-close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
  }

  
  /* HOMEPAGE */
  /* HOMEPAGE */
  /* HOMEPAGE */


  .hero {
    position: relative;
    height: 100vh;
    overflow: visible;
    display: flex;
    align-items: center;
    padding-left: 10vw;
    color: #f9f7ef;
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 4rem 1rem;
    max-width: 900px;
    margin-top: 12vw;
  }

  .brand {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
  }
  
  .hero-text h1 .brand {
    font-size: 12vw;
    color: #f9f7ef8d;
    -webkit-text-stroke: 0.3vw #ff0068; /* růžový obrys */
    letter-spacing: -1px;
    line-height: 0;
  }
  
  .hero-text h2 {
    font-size: 7vw;
    font-weight: 700;
    color: #f9f7ef;
    margin-top: -10px;
    text-shadow: 2px 2px 10px rgba(30, 7, 6, 0.271);
  }
  
  .hero-text h3 {
    font-size: 4vw;
    font-weight: 400;
    font-style: italic;
    color: #f9f7ef;
    margin-top: -1vw;
    text-shadow: 2px 2px 10px rgba(30, 7, 6, 0.271);
  }
  
  /* Animace fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease forwards;
  }
  
  .delay-1 {
    animation-delay: 0.7s;
  }
  .delay-2 {
    animation-delay: 0.9s;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .brand-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* SEKCE: PROČ / PROTO */
  /* SEKCE: PROČ / PROTO */
  /* SEKCE: PROČ / PROTO */


  .reason-section {
    background-color: #f9f7ef;
    padding: 8vh 10vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 3;
  }
  
  .reason-wrapper {
    display: flex;
    gap: 6vw;
    max-width: 1400px;
    width: 100%;
    align-items: flex-start;
    position: relative;
    z-index: 4;
  }
  
  /* Levý sloupec */
  .reason-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3vw;
  }
  
  
  .line-2-global {
    width: 6vw;
    height: 0; /* tady byla chyba – bylo 100vh */
    background-color: #ff0068;
    border-radius: 100px;
    position: absolute;
    top: 120vh; /* klidně si doladíš pozici */
    left: 25vw;
    transition: height 0.8s ease-out;
    z-index: 5; /* přidáno – ať není pod obsahem */
  }

  .line-1-global {
    position: absolute;
    top: 80vh;
    left: 5vw;
    width: 6vw;
    height: 0;
    background-color: #ff0068;
    border-radius: 100px;
    z-index: 5;
    transition: height 0.8s ease-out;
  }
  .line-1-global.locked {
    height: 100vh !important;
  }

  
  .reason-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10.2vw;
    font-weight: 600;
    color: transparent;
    letter-spacing: 0.1em;
    position: relative;
    -webkit-text-stroke: 0.4vw #fad1d4; /* růžový obrys */
    font-family: 'Prompt', sans-serif;
    align-self: flex-start;
    transform: translateY(-0vh);
    
  }
  
  .reason-vertical-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .reason-vertical-text.visible span {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
  /* Pravý sloupec */
  .reason-right {
    flex: 1;
    position: relative;
    padding-right: 100px;
    margin-left: 5vw;
    margin-top: 7vw;
  }

  .sm_heading{
    font-size: 1.4vw;
    color: #2d262157;
    font-weight: 100;
  }
  
  .reason-heading {
    font-size: 7vw;
    color: #2d2621;
    font-weight: 700;
    margin-bottom: 4vh;
    z-index: 2;
    position: relative;
    line-height: 1.1;
  }
  
  .reason-list {
    font-size: 1vw;
    color: #2d2621;
    line-height: 3;
    max-width: 600px;
    list-style: none; /* odstraní odrážky */
    padding-left: 0; /* odstraní odsazení */
    margin: 0;
  }
  
  .reason-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1vh;
  }

  /* Fade-in pro nadpisy */
.fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Slide-in z prava pro <li> */
.reason-list li {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reason-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

  
  /* Ikona tabletu */
  .reason-icon {
    position: absolute;
    right: 5vw;
    transform: rotate(-15deg);
    width: 18%;
    z-index: 0;
  }
  
  .reason-icon img {
    width: 100%;
    height: auto;
  }
  

/* SEKCE 3 */
/* SEKCE 3 */
/* SEKCE 3 */


  .simple-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .image-block {
    will-change: transform;
    z-index: 20;
  }
  
  
  .image-block img {
    width: 90%;
    max-width: 500px;
    display: block;
    border-radius: 12px;
  }
  
  .text-block {
    max-width: 400px;
    margin-left: 5vw;
    overflow: visible;
  }
  
  .text-block h2 {
    font-size: 2vw;
    margin-bottom: 10px;
  }
  
  .text-block h3 {
    font-size: 0.9vw;
    margin-bottom: 15px;
    color: #2d262157;
  }
  
  .text-block p {
    font-size: 1vw;
    line-height: 1.6;
  }
  
  /* Výchozí stav: obrazek je mimo viewport */
  .slide-in {
    transform: none;
    opacity: 1;
    transition: none;
  }
  
  .slide-in.visible {
    transform: translateX(0);
    opacity: 1;
  }

    /* CTA */

 .cta2-wrapper{
      margin-top: 2vw;
    }
    
    .text-block .cta-button2 {
      background-color: transparent ;            /* průhledné pozadí */
      color: #a58b74;                           /* hnědý text */
      border: 2px solid #a58b74;                /* hnědý stroke (border) */
      padding: 12px 24px;
      border-radius: 100px;
      text-transform: uppercase;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      font-size: 1vw;
    }
    
    .cta-button2:hover {
      background-color: #fad1d4;
      border: 2px solid #fad1d4;
      color:#f9f7ef;
    }


  /* KKDY SEKCE*/
  /* KKDY SEKCE*/
  /* KKDY SEKCE*/

  
  .kdy-section {
    position: relative;
    z-index: 1;
    padding-top: 2vw; /* prostor pro nadpis a hodinky */

  }
  
  .kdy-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  /* Nadpis KDY */
  .kdy-title {
    font-size: 10vw;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 0.4vw #fad1d4;
    font-family: 'Prompt', sans-serif;
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 1vw;
  }

  .pink-line {
    position: absolute;
    top: -12vw;
    right: 20vw;
    width: 5vw;
    height: 0;
    background-color: #ff0068;
    border-radius: 50px;
    z-index: 0;
  }


  
  

    
  
  /* Hodinky */
  .clock-hover-wrapper {
    position: absolute;
    top: 2vw;
    left: 45vw;
    width: 18%;
    height: auto;
    z-index: 2;
    cursor: pointer;
  }
  
  .clock-icon {
    width: 100%;
    height: auto;
    transform-origin: center top;
    transition: transform 0.1s ease-out;
    will-change: transform;
  }
  
  /* Použijeme hover na wrapper */
  .clock-hover-wrapper:hover .clock-icon {
    animation: ringBell 0.8s ease-in-out forwards;
  }
  
  @keyframes ringBell {
    0%   { transform: rotate(0deg); }
    15%  { transform: rotate(15deg); }
    30%  { transform: rotate(-12deg); }
    45%  { transform: rotate(8deg); }
    60%  { transform: rotate(-6deg); }
    75%  { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
  }
  
  
  
  /* Textový blok */
  .kdy-text-block {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 2vw;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2621;
  }
  
  /* Animace */
  .kdy_question {
    font-size: 1.4vw;
    color: #2d262157;
    font-weight: 100;
  }
  
  .kdy_heading {
    font-size: 7vw;
    color: #2d2621;
    font-weight: 700;
    margin-bottom: 4vh;
    z-index: 2;
    position: relative;
    line-height: 1.1;
  }
  
  .kdy-list {
    list-style: none;
  }
  
  .kdy-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .kdy-fade.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .kdy-delay-1 {
    transition-delay: 0.2s;
  }
  .kdy-delay-2 {
    transition-delay: 0.5s;
  }
  
  .kdy-content-slide {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.5s;
  }
  
  .kdy-content-slide.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* JAK SEKCE*/
  /* JAK SEKCE*/
  /* SEKCE JAK */
.jak-section {
  padding: 10vh 0;
  overflow: hidden;
}

.jak-wrapper {
  display: flex;
  align-items: stretch;
  gap: 3vw;
  flex-wrap: wrap;
}

.jak-left {
  width: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.jak-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.4vw #fad1d4;
  font-family: 'Prompt', sans-serif;
  letter-spacing: 0.2em;
  margin: 0;
  padding: 0;
}

.jak-images {
  display: flex;
  flex: 1;
  gap: 0.5vw;
  align-items: stretch;
  justify-content: space-between;
}

.jak-image-card {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;

  
}

.jak-image-card.visible {
  transform: scale(1);
  opacity: 1;
}

.jak-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
  border-radius: 12px;
}

/* KARTA */
.jak-image-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

/* Overlay */
.jak-image-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3d2f249e;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.jak-image-card .overlay-content {
  width: 80%;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.jak-image-card .overlay-content h4 {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: bold;
  margin: 0;
}

.jak-image-card .overlay-content p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  margin: 0;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Fake tlačítko */
.fake-button {
  display: inline-block;
  background-color: #ff0068;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
  transition: transform 0.2s ease, background-color 0.3s ease;
  pointer-events: none;
  font-family: 'Prompt', sans-serif;
}

.jak-image-card:hover .fake-button {
  background-color: #e6005e;
  transform: translateY(-2px);
}

/* Hover efekty */
.jak-image-card:hover img {
  filter: blur(8px);
}

.jak-image-card:hover .overlay {
  opacity: 1;
  backdrop-filter: blur(3px);
}

.jak-image-card:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}


/* SEKCE: SOCIALS */
/* SEKCE: SOCIALS */
/* SEKCE: SOCIALS */

.socials-section {
  position: relative;
  background-color: #f9f7ef;
  padding: 0 10vw;
  text-align: left;
  z-index: 3;
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.socials-hashtag {
  position: absolute;
  left: -1vw;
  height: 85vh;
  z-index: 1;
}

.socials-heart {
  position: absolute;
  top: -6vw;
  left: 15vw;
  width: 8%;
  z-index: 999;
}

.socials-title {
  position: relative;
  font-size: 10vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.3vw #fad1d4;
  font-family: 'Prompt', sans-serif;
  margin-left: 10vw;
  margin-top: 3vw;
  z-index: 3;
}

.social-icons {
  flex-direction: column;
  position: absolute;
  top: 5vh;
  right: 10vw;
  display: flex;
  gap: 3.5vw;
  z-index: 999;
}

.social-icons img {
  width: 4.5vw;
  height: auto;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease; /* přesunuto sem */
  
}

.social-icons a:hover {
  transform: rotate(-20deg); /* rotuje celý <a> blok včetně obrázku */
}

.socials-description {
  margin: 9vh 15vw;
  max-width: 500px;
  font-size: 1vw;
  color: #2d2621;
  z-index: 3;
  position: relative;
}

.socials-videos {
  display: flex;
  gap: 3vw;
  justify-content: center;
  margin-top: 5vh;
  z-index: 3;
  position: relative;
}

.video-placeholder {
  width: 300px;
  height: 450px;
  background-color: #888;
  border-radius: 12px;
}

.video-wrapper iframe {
  border-radius: 12px;
}



/* SEKCE: SLUŽBY BTNs */
/* SEKCE: SLUŽBY BTNs */
/* SEKCE: SLUŽBY BTNs */

.cta3-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7vw;
}

.cta3-container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 5vw;
}

.cta-button3 {
  background-color: transparent;
  color: #a58b74;
  border: 2px solid #a58b74;
  padding: 12px 24px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-size: 1vw;
  text-align: center;
  white-space: nowrap;
}

/* Hover efekt */
.cta-button3:hover {
  background-color: #fad1d4;
  border: 2px solid #fad1d4;
  color: #f9f7ef;
}

.cta-button3 {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Když se objeví */
.cta-button3.visible {
  opacity: 1;
  transform: scale(1);
}



/* SEKCE: REVIEWS */
/* SEKCE: REVIEWS */
/* SEKCE: REVIEWS */

.reviews-section {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  position: relative;
}

.reviews-slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out; /* ⬅️ Přechod pro JS */
}

.review-slide {
  flex: 0 0 65vw; /* vidíš 1 celý + kousek dalšího */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 4rem;
  box-sizing: border-box;
}

.review-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.review-text {
  position: relative;
  z-index: 1;
  color: white;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  font-family: 'Mona Sans', sans-serif;
  max-width: 50%;
}

.quote {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.author {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
}

@keyframes smoothSlider {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(0); }

  20%  { transform: translateX(-87vw); }
  35%  { transform: translateX(-87vw); }

  40%  { transform: translateX(-174vw); }
  55%  { transform: translateX(-174vw); }

  60%  { transform: translateX(-261vw); }
  75%  { transform: translateX(-261vw); }

  80%  { transform: translateX(0); } /* loop reset */
  100% { transform: translateX(0); }
}


/* RůŽOVÁ LIŠTA */
/* RůŽOVÁ LIŠTA */
/* RůŽOVÁ LIŠTA */


.portfolio-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #ff0068;
  padding: 1rem 0;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 3vw;
  animation: tickerMove 25s linear infinite;
  white-space: nowrap;
}

.ticker-track .text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2vw;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
}

.ticker-track .filled {
  color: #fad1d4;
}

.ticker-track .stroked {
  color: transparent;
  -webkit-text-stroke: 1.5px #fad1d4;
  text-stroke: 1.5px #fad1d4;
}

.ticker-track img {
  height: 2.2vw;
  width: auto;
  display: inline-block;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* PORTFOLIO */
/* PORTFOLIO */
/* PORTFOLIO */

.portfolio-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 3vw;
  padding: 5vw 5vw 0vw 5vw;
}

.portfolio-grid-free {
  position: relative;
  width: 60%;
  min-width: 600px;
  min-height: 600px;
  aspect-ratio: 4 / 3;
}

.portfolio-img {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-img:hover img {
  transform: scale(1.05);
}

.portfolio-content {
  width: 30%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto; /* volitelně */
}

.portfolio-heading {
  font-size: 2.5vw;
  margin-bottom: 1rem;
  font-family: 'Mona Sans', sans-serif;
  color: #120433;
}

.portfolio-text {
  font-size: 1.1vw;
  margin-bottom: 2rem;
  max-width: 30ch;
  color: #333;
}

.cta-button4 {
  width: 50%;
  background-color: transparent;
  color: #a58b74;
  border: 2px solid #a58b74;
  padding: 12px 24px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-size: 1vw;
  text-align: center;
  white-space: nowrap;
}

.cta-button4:hover {
  background-color: #fad1d4;
  border: 2px solid #fad1d4;
  color: #f9f7ef;
}



/* ---- Alerts (flash messages) ---- */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Varianty podle message.tags */
.alert--success {
  background-color: #e8f9f0;
  color: #1c6b44;
  border: 1px solid #b6e3cc;
}

.alert--danger,
.alert--error {
  background-color: #fdecea;
  color: #a12622;
  border: 1px solid #f5c2c0;
}

.alert--warning {
  background-color: #fff4e5;
  color: #8a5b1d;
  border: 1px solid #fcd6a4;
}

.alert--info {
  background-color: #eef6fd;
  color: #205493;
  border: 1px solid #c6e0f9;
}



/* ── AH STUDIO BANNER (homepage) ──────────────────── */
.ahstudio-banner {
  background: #2d2621;
  padding: 80px 40px;
}

.ahstudio-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ahstudio-banner-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.ahstudio-banner-logo {
  height: 36px;
  width: auto;
}

.ahstudio-banner-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff0068;
  margin: 0;
}

.ahstudio-banner-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #f9f7ef;
  line-height: 1.2;
  margin: 0;
}

.ahstudio-banner-text {
  font-size: 15px;
  color: #a58b74;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

.ahstudio-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ahstudio-btn-primary {
  display: inline-block;
  background: #ff0068;
  color: #f9f7ef;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}

.ahstudio-btn-primary:hover {
  background: #cc0054;
}

.ahstudio-btn-outline {
  display: inline-block;
  color: #f9f7ef;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(249,247,239,0.3);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.3s;
}

.ahstudio-btn-outline:hover {
  border-color: #f9f7ef;
}

.ahstudio-banner-right {
  flex-shrink: 0;
  width: 280px;
}

.ahstudio-banner-card {
  background: rgba(249,247,239,0.06);
  border: 1px solid rgba(249,247,239,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ahstudio-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #f9f7ef;
  font-weight: 500;
}

.ahstudio-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0068;
  flex-shrink: 0;
}

/* ── AH STUDIO menu sub-link ────────────────────── */
.menu-ahstudio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.menu-ahstudio-sub {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: #a58b74 !important;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.menu-ahstudio-sub:hover {
  color: #f9f7ef !important;
  opacity: 1 !important;
}

/* ── AH STUDIO stránka ──────────────────────────── */
.ahstudio-page-hero {
  background: #2d2621;
  padding: 120px 40px 100px;
  text-align: center;
}

.ahstudio-page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ahstudio-page-logo {
  height: 44px;
  width: auto;
}

.ahstudio-page-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff0068;
  margin: 0;
}

.ahstudio-page-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #f9f7ef;
  line-height: 1.15;
  margin: 0;
}

.ahstudio-page-sub {
  font-size: 16px;
  color: #a58b74;
  line-height: 1.7;
  margin: 0;
}

.ahstudio-page-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.ahstudio-page-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #2d2621;
  margin-bottom: 48px;
}

.ahstudio-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ahstudio-how-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ahstudio-how-num {
  font-size: 2rem;
  font-weight: 700;
  color: #ff0068;
  line-height: 1;
}

.ahstudio-how-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2d2621;
  margin: 0;
}

.ahstudio-how-item p {
  font-size: 14px;
  color: #a58b74;
  line-height: 1.6;
  margin: 0;
}

.ahstudio-page-perks {
  background: #f9f7ef;
}

.ahstudio-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ahstudio-perk-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ahstudio-perk-icon {
  font-size: 1.2rem;
  color: #ff0068;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.ahstudio-perk-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2d2621;
  margin: 0 0 6px;
}

.ahstudio-perk-item p {
  font-size: 14px;
  color: #a58b74;
  line-height: 1.6;
  margin: 0;
}

.ahstudio-page-cta {
  background: #2d2621;
}

.ahstudio-page-cta-inner {
  text-align: center;
}

.ahstudio-page-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #f9f7ef;
  margin-bottom: 12px;
}

.ahstudio-page-cta p {
  font-size: 15px;
  color: #a58b74;
  margin-bottom: 32px;
}

/* ── Pricing section ── */
.ahstudio-page-pricing {
  background: #2d2621;
}

.ahstudio-pricing-note {
  font-size: 13px;
  color: #a58b74;
  margin: 10px 0 40px;
}

.ahstudio-pricing-tagline {
  font-size: 12px;
  color: rgba(249,247,239,0.55);
  line-height: 1.5;
  margin: -4px 0 16px;
  font-style: italic;
}

.ahstudio-pricing-featured .ahstudio-pricing-tagline {
  color: #8a6b54;
}

.ahstudio-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.ahstudio-pricing-card {
  background: rgba(249,247,239,0.05);
  border: 1px solid rgba(249,247,239,0.12);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.ahstudio-pricing-featured {
  background: #f9f7ef;
  border-color: #f9f7ef;
  transform: translateY(-12px);
}

.ahstudio-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff0068;
  color: #f9f7ef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.ahstudio-pricing-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff0068;
}

.ahstudio-pricing-featured .ahstudio-pricing-name {
  color: #ff0068;
}

.ahstudio-pricing-price {
  font-size: 15px;
  color: #a58b74;
  margin: 0;
}

.ahstudio-pricing-price strong {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #f9f7ef;
}

.ahstudio-pricing-featured .ahstudio-pricing-price {
  color: #a58b74;
}

.ahstudio-pricing-featured .ahstudio-pricing-price strong {
  color: #2d2621;
}

.ahstudio-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ahstudio-pricing-list li {
  font-size: 14px;
  color: rgba(249,247,239,0.75);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.ahstudio-pricing-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff0068;
  font-size: 12px;
}

.ahstudio-pricing-featured .ahstudio-pricing-list li {
  color: #2d2621;
}

.ahstudio-btn-dark {
  background: transparent;
  border-color: rgba(249,247,239,0.3);
  color: #f9f7ef;
}

.ahstudio-btn-dark:hover {
  border-color: #f9f7ef;
  background: transparent;
  color: #f9f7ef;
}

@media (max-width: 900px) {
  .ahstudio-banner-inner { flex-direction: column; }
  .ahstudio-banner-right { width: 100%; }
  .ahstudio-how-grid { grid-template-columns: 1fr 1fr; }
  .ahstudio-perks-grid { grid-template-columns: 1fr; }
  .ahstudio-pricing-grid { grid-template-columns: 1fr; }
  .ahstudio-pricing-featured { transform: none; }
}

@media (max-width: 600px) {
  .ahstudio-banner { padding: 60px 24px; }
  .ahstudio-how-grid { grid-template-columns: 1fr; }
  .ahstudio-page-section-inner { padding: 60px 24px; }
}

/* ══════════════════════════════════════════════════════════
   ALEX.HATAL – O mně stránka
══════════════════════════════════════════════════════════ */

/* ── Shared ── */
.alex-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}

.alex-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff0068;
  margin: 0 0 56px;
}

/* ── Hero ── */
.alex-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.alex-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.alex-hero:hover .alex-hero-img {
  transform: scale(1);
}

.alex-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,38,33,0.85) 0%, rgba(45,38,33,0.2) 60%, transparent 100%);
}

.alex-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.alex-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff0068;
  margin: 0 0 16px;
}

.alex-hero-name {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 800;
  color: #f9f7ef;
  line-height: 0.92;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}

.alex-hero-location {
  font-size: 14px;
  color: rgba(249,247,239,0.5);
  margin: 0;
  letter-spacing: 1px;
}

.alex-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-size: 1.4rem;
  color: rgba(249,247,239,0.4);
  animation: alexBounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes alexBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Intro ── */
.alex-intro {
  background: #f9f7ef;
}

.alex-intro-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 60px;
  align-items: start;
}

.alex-intro-label {
  padding-top: 6px;
}

.alex-intro-label span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #a58b74;
}

.alex-intro-big {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #2d2621;
  line-height: 1.4;
  margin: 0 0 28px;
}

.alex-intro-body {
  font-size: 15px;
  color: #a58b74;
  line-height: 1.8;
  margin: 0 0 16px;
  max-width: 620px;
}

.alex-intro-body:last-child { margin-bottom: 0; }

/* ── Timeline (wave / JS-rendered) ── */
.alex-timeline-section {
  background: transparent;
}

.alex-tl-outer {
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 0 48px;
  scrollbar-width: thin;
  scrollbar-color: #ff0068 transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* prevent vertical clipping of overflowing labels */
  -webkit-overflow-scrolling: touch;
}

.alex-tl-outer::-webkit-scrollbar { height: 3px; }
.alex-tl-outer::-webkit-scrollbar-track { background: transparent; }
.alex-tl-outer::-webkit-scrollbar-thumb { background: #ff0068; border-radius: 2px; }

.alex-tl-img-wrap {
  position: relative;
}

.alex-tl-img {
  display: block;
  width: 100%;
  height: auto;
}

.alex-tl-title {
  position: absolute;
  top: 100px;
  left: calc((100% - 1100px) / 2 + 48px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff0068;
  margin: 0;
  pointer-events: none;
}

.alex-tl-canvas {
  /* width + height set by JS */
}

.alex-tl-hint {
  font-size: 10px;
  color: rgba(249,247,239,0.2);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 48px;
  margin: 0;
}

/* milestone dots */
.alex-tl-dot-el {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(249,247,239,0.07);
  border: 1.5px solid rgba(249,247,239,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alex-tl-dot-el.is-active {
  background: rgba(255,0,104,0.15);
  border-color: #ff0068;
  box-shadow: 0 0 14px rgba(255,0,104,0.35);
}

.alex-tl-dot-icon {
  font-size: 13px;
  line-height: 1;
}

/* labels */
.alex-tl-lbl {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  width: 120px;
}

.alex-tl-lbl--above {
  bottom: auto;
  transform: translate(-50%, calc(-100% - 20px));
}

.alex-tl-lbl--below {
  transform: translate(-50%, 20px);
}

.alex-tl-lbl-year {
  font-size: 10px;
  font-weight: 700;
  color: rgba(249,247,239,0.45);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1;
}

.alex-tl-lbl-year.is-active {
  color: #ff0068;
}

.alex-tl-lbl-title {
  font-size: 11px;
  font-weight: 600;
  color: #f9f7ef;
  text-align: center;
  line-height: 1.3;
  display: block;
  margin-top: 1px;
}

.alex-tl-lbl-sub {
  font-size: 9px;
  color: rgba(249,247,239,0.3);
  text-align: center;
  line-height: 1.3;
  display: block;
}

/* ── Role / Flip Cards ── */
.alex-roles-section {
  background: #2d2621;
}

.alex-roles-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  color: rgba(249,247,239,0.4);
  text-align: left;
  margin: -28px 0 48px;
}

.alex-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.alex-role-card {
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  perspective: 800px;
}

/* hide flip button on desktop */
.alex-role-flip-btn {
  display: none;
}

.alex-role-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

/* desktop flip on hover */
@media (hover: hover) {
  .alex-role-card:hover .alex-role-inner {
    transform: rotateY(180deg);
  }
}

/* mobile/tap flip */
.alex-role-card.is-flipped .alex-role-inner {
  transform: rotateY(180deg);
}

.alex-role-front,
.alex-role-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.alex-role-front {
  background: rgba(249,247,239,0.06);
  border: 1px solid rgba(249,247,239,0.1);
  gap: 12px;
}

.alex-role-icon {
  font-size: 2rem;
  line-height: 1;
}

.alex-role-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f7ef;
  text-align: center;
}

/* photo tile front face */
.alex-role-front--photo {
  background-image: var(--role-photo);
  background-size: cover;
  background-position: center top;
  border: none;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.alex-role-front--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(28,23,19,0.72) 0%, transparent 55%);
  pointer-events: none;
}

.alex-role-front--photo .alex-role-name {
  position: relative;
  z-index: 1;
}

.alex-role-back {
  background: #ff0068;
  transform: rotateY(180deg);
}

.alex-role-back p {
  font-size: 12px;
  color: #f9f7ef;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* mobile flip button */
@media (max-width: 768px) {
  .alex-roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .alex-role-card {
    aspect-ratio: unset;
    overflow: hidden;
    border-radius: 12px;
    height: 180px;
  }

  .alex-role-inner {
    transition: none;
  }

  .alex-role-front,
  .alex-role-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    transform: none;
  }

  .alex-role-inner { transform: none !important; transform-style: flat; }

  .alex-role-front {
    transform: translateX(0);
  }

  .alex-role-back {
    transform: translateX(100%);
    justify-content: center;
  }

  .alex-role-card.is-flipped .alex-role-front {
    transform: translateX(-100%);
  }

  .alex-role-card.is-flipped .alex-role-back {
    transform: translateX(0);
  }

  .alex-role-flip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(249,247,239,0.4);
    background: transparent;
    color: #f9f7ef;
    font-size: 14px;
    cursor: pointer;
  }

  .alex-role-card.is-flipped .alex-role-flip-btn {
    color: #f9f7ef;
    border-color: rgba(249,247,239,0.6);
  }
}

.alex-roles-ai-note {
  font-size: 0.7rem;
  color: rgba(249,247,239,0.3);
  text-align: right;
  margin: -44px 0 16px;
  letter-spacing: 0.5px;
}

.alex-roles-coda {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: #f9f7ef;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid rgba(249,247,239,0.1);
  padding-top: 48px;
}

/* ── Certifications ── */
.alex-certs-section {
  background: #2d2621;
}

.alex-certs-section .alex-section-title {
  color: rgba(249,247,239,0.4);
}

.alex-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.alex-cert-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(249,247,239,0.07);
}

.alex-cert-item:nth-child(odd) { padding-right: 40px; }
.alex-cert-item:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid rgba(249,247,239,0.07);
}

.alex-cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff0068;
  flex-shrink: 0;
  margin-top: 6px;
}

.alex-cert-name {
  font-size: 14px;
  font-weight: 600;
  color: #f9f7ef;
  margin-bottom: 3px;
}

.alex-cert-sub {
  font-size: 12px;
  color: #a58b74;
}

/* ── Skills ── */
.alex-skills-section {
  background: #f9f7ef;
  overflow: hidden;
}

.alex-skills-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.alex-skills-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a58b74;
  margin-bottom: 24px;
}

.alex-skills-orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes alexFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.alex-skill-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #2d2621;
  color: #f9f7ef;
  animation: alexFloat 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  letter-spacing: 0.5px;
}

.alex-skill-tag--dev {
  background: transparent;
  border: 1.5px solid #2d2621;
  color: #2d2621;
}

.alex-skill-tag--ai {
  background: #ff0068;
  color: #f9f7ef;
}

.alex-skills-more {
  font-size: 13px;
  color: #a58b74;
  margin: 40px 0 6px;
  letter-spacing: 1px;
  text-align: center;
}

.alex-skills-superpower {
  font-size: 12px;
  color: #a58b74;
  margin: 0;
  text-align: center;
}

.alex-skills-superpower span {
  color: #ff0068;
  font-weight: 700;
}

/* ── Social ── */
.alex-social-section {
  background: #2d2621;
}

.alex-social-section .alex-section-inner {
  text-align: center;
}

.alex-social-section .alex-section-title {
  color: rgba(249,247,239,0.4);
}

.alex-social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.alex-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 40px;
  border: 1px solid rgba(249,247,239,0.15);
  background: rgba(249,247,239,0.05);
  text-decoration: none;
  color: #f9f7ef;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.alex-social-pill:hover {
  border-color: #ff0068;
  background: rgba(255,0,104,0.08);
  color: #f9f7ef;
}

.alex-social-pill-icon {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .alex-hero-content { padding: 0 32px 60px; }
  .alex-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .alex-intro-label { display: none; }
  .alex-tl-outer { padding: 16px 0 40px; }
  .alex-skills-cols { grid-template-columns: 1fr; gap: 40px; }
  .alex-certs-grid { grid-template-columns: 1fr; }
  .alex-cert-item:nth-child(even) { padding-left: 0; border-left: none; }
  .alex-cert-item:nth-child(odd) { padding-right: 0; }
  .alex-section-inner { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .alex-hero-name { letter-spacing: -1px; }
  .alex-hero-scroll-hint { display: none; }
  .alex-tl-hint { padding: 0 16px; }
  .alex-social-inline { gap: 10px; }
  .alex-social-pill { padding: 10px 16px; font-size: 13px; }
}
