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

section{

    width: 100%;
    min-height: 100vh;
}



@font-face {
  font-family: "OldEnglish";
  src: url("fonts/VTC-BadTattooHandOne.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}



/*NAV*/

body {
  font-family: 'Roboto', sans-serif;
  background-color:#0e0e0e ;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 1.5%;
}

nav ul {
  background-color: #7a00007b;
  backdrop-filter: blur(3px);
  height: 60px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  border-radius: 25px;
  padding: 0 10px;
  transition: 0.3s;
}

/* Ikonok normál állapotban */
nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: 0.4s ease;
}



/* Hover effekt – Kiemelkedik, nő, kör alakú háttér */
nav ul li:hover a {
  background-color: #0e0e0e;
  border: solid 2px #7A0000;
  transform: translateY(-20px) scale(1.25);
  border-radius: 50%;
}



@media (max-width: 768px) {
  nav ul {
    width: 70%;
    height: 55px;
  }

  nav ul li a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  nav ul {
    width: 90%;
    height: 55px;
  }

  nav ul li a {
    width: 38px;
    height: 38px;
  }
}


/* --- NAVBAR ANIMÁCIÓK --- */

/* UL belépő animáció */
@keyframes navEnter {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* LI elemek sorban érkeznek */
@keyframes navItemEnter {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Alkalmazás */
nav ul {
  animation: navEnter 0.8s ease forwards;
}

nav ul li {
  opacity: 0; /* induláskor rejtett */
  animation: navItemEnter 0.6s ease forwards;
}

/* Soronkénti késleltetés */
nav ul li:nth-child(1) { animation-delay: 0.2s; }
nav ul li:nth-child(2) { animation-delay: 0.35s; }
nav ul li:nth-child(3) { animation-delay: 0.5s; }
nav ul li:nth-child(4) { animation-delay: 0.65s; }
nav ul li:nth-child(5) { animation-delay: 0.8s; }
nav ul li:nth-child(6) { animation-delay: 0.85s; }




/*NAV*/


/*Home*/

/* HOME HERO REDESIGN */

.site-header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 0 26px;
}

.hero-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-nav .nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.hero-nav .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: rgba(255,255,255,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-nav .nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero-nav .nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.hero-nav .nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  animation: navEnter 0.8s ease forwards;
}

.hero-nav .nav-list li {
  position: relative;
  opacity: 0;
  animation: navItemEnter 0.6s ease forwards;
}

.hero-nav .nav-list li:nth-child(1) { animation-delay: 0.2s; }
.hero-nav .nav-list li:nth-child(2) { animation-delay: 0.35s; }
.hero-nav .nav-list li:nth-child(3) { animation-delay: 0.5s; }
.hero-nav .nav-list li:nth-child(4) { animation-delay: 0.65s; }
.hero-nav .nav-list li:nth-child(5) { animation-delay: 0.8s; }
.hero-nav .nav-list li:nth-child(6) { animation-delay: 0.95s; }

.hero-nav .nav-list li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #7A0000;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.hero-nav .nav-list li:hover::after,
.hero-nav .nav-list li:focus-within::after {
  width: 70%;
}

.hero-nav .nav-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,0.5) !important;
  font-size: 18px;
  border: none !important;
  background: transparent !important;
  transform: none !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-nav .nav-list li:hover a,
.hero-nav .nav-list li a:focus-visible {
  color: rgba(255,255,255,0.82) !important;
  transform: translateY(-2px) !important;
}

.hero-nav .nav-list li a svg {
  width: 24px;
  height: 24px;
}

.home {
  background-image:
    linear-gradient(rgba(14, 14, 14, 0.35), rgba(14, 14, 14, 0.62)),
    url("pic/bckg (1).png");
  padding: 120px 36px 48px;
  overflow: hidden;
}

.home .title {
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: rgba(255,255,255,0.5);
}

.home .title img {
  position: absolute;
  top: 0;
  left: 56px;
  width: 104px;
  padding: 18px 14px 22px;
  background: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}

.home .title .hero-title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(88px, 14vw, 170px);
  line-height: 0.82;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home .hero-title span {
  display: block;
  width: 100%;
  text-align: right;
}

.home .hero-title-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
}

.home .hero-location {
  position: static;
  width: 100%;
  margin-top: 0.14em;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(17px, 1.9vw, 28px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: right;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  text-transform: none;
}

.home .home-tags {
  position: absolute;
  left: 56px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  align-items: flex-start;
  text-align: left;
}

.home .title a {
  position: absolute;
  left: 56px;
  bottom: 46px;
}

.home .home-follow {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: clamp(280px, 42vh, 360px);
  z-index: 10;
}

.home .home-follow p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "OldEnglish", serif;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.home .home-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home .home-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.home .home-socials a:hover {
  color: rgba(255,255,255,0.82);
  transform: translateX(-3px);
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: 14px;
    left: 0;
    padding: 0 14px;
  }

  .hero-nav .nav-toggle {
    display: block;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 40;
  }

  .hero-nav .nav-list {
    position: fixed;
    top: 78px;
    right: 14px;
    width: min(260px, calc(100vw - 28px));
    padding: 18px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .hero-nav .nav-list li {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
    animation: none;
    transition: opacity 0.28s ease, transform 0.36s ease;
  }

  .hero-nav .nav-list li:nth-child(1) { transition-delay: 0s; }
  .hero-nav .nav-list li:nth-child(2) { transition-delay: 0.03s; }
  .hero-nav .nav-list li:nth-child(3) { transition-delay: 0.06s; }
  .hero-nav .nav-list li:nth-child(4) { transition-delay: 0.09s; }
  .hero-nav .nav-list li:nth-child(5) { transition-delay: 0.12s; }
  .hero-nav .nav-list li:nth-child(6) { transition-delay: 0.15s; }

  .hero-nav .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-nav .nav-list.is-open li {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .home {
    background-image:
      linear-gradient(rgba(14, 14, 14, 0.42), rgba(14, 14, 14, 0.72)),
      url("pic/bckg (2).png");
    padding: 110px 16px 36px;
  }

  .home .title {
    padding: 0 14px;
  }

  .home .title .hero-title {
    font-size: clamp(64px, 22vw, 96px);
  }

  .home .hero-location {
    margin-top: 0.14em;
    font-size: clamp(14px, 2.8vw, 21px);
    letter-spacing: 0.06em;
  }

  .home .title img {
    left: 18px;
    width: 88px;
    padding: 14px 10px 16px;
  }

  .home .home-tags {
    left: 18px;
    right: 18px;
    bottom: 98px;
    max-width: 220px;
    font-size: 11px;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
  }

  .home .title a {
    left: 18px;
    bottom: 28px;
    width: 185px;
  }

  .home .home-follow {
    right: 16px;
    gap: 12px;
  }

  .home .home-follow p {
    font-size: 28px;
  }

  .home .home-socials a {
    font-size: 16px;
  }
}

.home{

    background-color: #0e0e0e;
    background-image:
      linear-gradient(rgba(14, 14, 14, 0.45), rgba(14, 14, 14, 0.55)),
      url("pic/bckg (1).png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.title{

    font-family: "OldEnglish", serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    height: auto;
    color: rgba(255,255,255,0.5);
    z-index: 10;
}

.title img{

    width: 250px;
    animation: navEnter 0.8s ease forwards;
}

.title h1{

    font-size: 120px;
    animation: navEnter 0.8s ease forwards;

}

.title a{

    width: 200px;
    height: 45px;
    background-color: #7A0000;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    font-family:'Roboto', sans-serif;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: ease 0.4s;
    animation: navEnter 0.8s ease forwards;
}



.title a:hover{

    background-color: #0e0e0e;
    color: #7A0000;
    border: solid 2px #7A0000;
    transform: scale(1.1);
    
}

.homepic{

    width: 50%;
    height: auto;
    display:flex ;
    justify-content: center;
    align-items: center;
    animation: navEnter 0.8s ease forwards;
}



.homepic img{

    width: 900px;
}


@media (max-width: 700px) {
  .home {
    background-image:
      linear-gradient(rgba(14, 14, 14, 0.45), rgba(14, 14, 14, 0.6)),
      url("pic/bckg (2).png");
    background-position: center center;
    padding: 0 16px;
  }

  .title {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .homepic{

    width: 100%;

  }

  .homepic img{

    width: 100%;
  }

  .title h1 {
    font-size: 72px;
  }


}

/*Home*/

.home {
  background-image:
    linear-gradient(rgba(14, 14, 14, 0.35), rgba(14, 14, 14, 0.62)),
    url("pic/bckg (1).png");
  padding: 120px 36px 48px;
  overflow: hidden;
}

.home .title {
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: rgba(255,255,255,0.5);
}

.home .title img {
  position: absolute;
  top: 0;
  left: 56px;
  width: 104px;
  padding: 18px 14px 22px;
  background: #fff;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}

.home .title .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(88px, 14vw, 170px);
  line-height: 0.82;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home .hero-title span {
  display: block;
}

.home .home-tags {
  position: absolute;
  left: 56px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  max-width: 200px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  align-items: flex-start;
  text-align: left;
}

.home .title a {
  position: absolute;
  left: 56px;
  bottom: 46px;
}

.home .home-follow {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: clamp(280px, 42vh, 360px);
  z-index: 10;
}

.home .home-follow p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "OldEnglish", serif;
  font-size: 40px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.home .home-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home .home-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.home .home-socials a:hover {
  color: rgba(255,255,255,0.82);
  transform: translateX(-3px);
}

@media (max-width: 900px) {
  .home {
    background-image:
      linear-gradient(rgba(14, 14, 14, 0.42), rgba(14, 14, 14, 0.72)),
      url("pic/bckg (2).png");
    padding: 120px 16px 150px;
  }

  .home .title {
    padding: 0 14px;
  }

  .home .title .hero-title {
    font-size: clamp(64px, 22vw, 96px);
  }

  .home .title img {
    left: 18px;
    width: 88px;
    padding: 14px 10px 16px;
  }

  .home .home-tags {
    left: 18px;
    bottom: 98px;
    width: 185px;
    max-width: 185px;
    font-size: 14px;
    gap: 6px;
    line-height: 1.15;
    align-items: flex-start;
    text-align: left;
  }

  .home .title a {
    left: 18px;
    bottom: 28px;
    width: 185px;
  }

  .home .home-follow {
    right: 12px;
    top: 58%;
    bottom: auto;
    transform: translateY(-50%);
    height: clamp(360px, 70vh, 560px);
    justify-content: space-between;
    gap: 0;
  }

  .home .home-follow p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: calc(100% - 72px);
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  .home .home-socials {
    flex-direction: column;
    gap: 12px;
  }

  .home .home-socials a {
    font-size: 16px;
  }
}

@media (min-width: 901px) {
  .site-header {
    padding-top: 5px;
  }

  .hero-nav {
    align-items: center;
  }

  .hero-nav .nav-list {
    padding: 0;
    margin-right: 10px;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .home .home-tags {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .home {
    padding: 112px 14px 168px;
  }

  .home .title .hero-title {
    font-size: clamp(56px, 20vw, 82px);
    line-height: 0.88;
  }

  .home .hero-location {
    margin-top: 0.16em;
    font-size: clamp(13px, 3.6vw, 18px);
    letter-spacing: 0.06em;
  }

  .home .home-tags {
    width: 170px;
    max-width: 170px;
    font-size: 12px;
    bottom: 102px;
  }

  .home .title a {
    width: 170px;
    font-size: 16px;
  }

  .home .home-follow {
    right: 10px;
    top: 60%;
    bottom: auto;
    height: clamp(340px, 66vh, 500px);
    transform: translateY(-50%);
  }

  .home .home-follow p {
    text-orientation: upright;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: calc(100% - 68px);
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1;
  }
}


/*About*/

.studio-story {
  position: relative;
  background: #0e0e0e;
  min-height: 100vh;
  padding: 28px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.studio-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(122, 0, 0, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.studio-story-shell {
  position: relative;
  z-index: 1;
  width: min(90vw, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(20px, 2.8vw, 40px);
  align-items: center;
  min-height: min(84vh, 820px);
  padding: clamp(18px, 2vw, 28px);
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.studio-story-copy {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: clamp(8px, 0.8vw, 14px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-story-copy::before {
  content: "";
  position: absolute;
  inset: -12% 12% -12% -18%;
  background:
    radial-gradient(circle at 0% 50%, rgba(122, 0, 0, 0.48) 0, rgba(122, 0, 0, 0.24) 26%, rgba(122, 0, 0, 0.08) 52%, rgba(122, 0, 0, 0) 74%);
  filter: blur(30px);
  pointer-events: none;
}

.studio-story-copy > * {
  position: relative;
  z-index: 1;
}

.studio-story-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.studio-story-copy h2 {
  margin: 0 0 20px;
  color: #7A0000;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.studio-story-copy p {
  margin: 0 0 14px;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
}

.studio-story-copy p:last-of-type {
  margin-bottom: 0;
}

.studio-story-visuals {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 6px;
}

.studio-story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.studio-story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.studio-story-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9);
}

.studio-story-photo-main {
  height: 100%;
  min-height: 0;
}

.studio-story-photo-accent {
  width: min(54%, 320px);
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin-top: -14%;
  margin-right: -3%;
}

@media (max-width: 1100px) {
  .studio-story-shell {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 24px;
  }

  .studio-story-copy::before {
    inset: -10% 0 -12% -8%;
  }

  .studio-story-visuals {
    height: auto;
    padding: 0;
  }

  .studio-story-photo-accent {
    width: min(46%, 260px);
    margin-top: -20%;
    margin-right: 12px;
  }
}

@media (max-width: 700px) {
  .studio-story {
    min-height: auto;
    padding: 52px 0;
    display: block;
  }

  .studio-story-shell {
    width: calc(100% - 24px);
    padding: 18px;
    gap: 20px;
  }

  .studio-story-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .studio-story-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  .studio-story-photo-main {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .studio-story-photo-accent {
    width: min(58%, 210px);
    margin-top: -10%;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .studio-story-shell {
    width: calc(100% - 20px);
    padding: 16px;
  }

  .studio-story-eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.22em;
  }

  .studio-story-photo-accent {
    width: min(64%, 180px);
    margin-top: -8%;
    margin-right: 6px;
  }
}

/*About*/

.about {
  position: relative;
  background: #0e0e0e;
  padding: 5vh 0;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.about-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 5vw;
  box-sizing: border-box;
}

.laci {
  width: 90vw;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1fr);
  align-items: stretch;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.artist-works {
  grid-column: 1 / -1;
  padding: 0 clamp(18px, 3vw, 40px) clamp(28px, 4vw, 42px);
}

.artist-works h3 {
  margin: 0 0 22px;
  color: #7A0000;
  font-size: clamp(24px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.artist-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.artist-works-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #080808;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.artist-works-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.artist-works-copy {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.artist-works-copy h4 {
  margin: 0;
  color: #7A0000;
  font-size: 1.2rem;
}

.artist-works-copy p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.68);
}

.laciimg {
  position: relative;
  z-index: 2;
  min-height: 100%;
  overflow: hidden;
  min-width: 0;
  background: #0e0e0e;
}

.laciimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.laci2img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.8);
}

.lacitext {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: clamp(36px, 5vw, 72px);
  background: #0e0e0e;
}

.lacitext::before {
  content: "";
  position: absolute;
  inset: -10% -6% -10% -26%;
  background:
    radial-gradient(circle at 0% 50%, rgba(122, 0, 0, 0.52) 0, rgba(122, 0, 0, 0.34) 16%, rgba(122, 0, 0, 0.18) 34%, rgba(122, 0, 0, 0.08) 50%, rgba(122, 0, 0, 0) 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.lacitextin {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
}

.mobile-inline-portrait {
  display: none;
}

.lacitextin h2 {
  margin: 0 0 18px;
  color: #7A0000;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lacitextin p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.lacitextin a {
  width: 200px;
  height: 45px;
  background-color: #7A0000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: none;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: ease 0.4s;
}

.lacitextin a:hover {
  background-color: #0e0e0e;
  color: #7A0000;
  border: solid 2px #7A0000;
  transform: scale(1.05);
}

.muvpic,
.lacititle {
  display: none;
}

@media (max-width: 1000px) {
  .about {
    padding: 64px 0;
  }

  .laci {
    width: 100%;
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .artist-works {
    padding: 0 24px 32px;
  }

  .artist-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .laciimg {
    min-height: 360px;
  }

  .lacitext {
    min-height: auto;
    padding: 34px 24px 40px;
  }

  .lacitext::before {
    inset: -6% -2% -10% -12%;
  }

  .lacitextin {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 52px 0;
  }

  .about-stack {
    gap: 24px;
    padding: 0 12px;
  }

  .laci {
    width: 100%;
  }

  .laciimg {
    display: none;
  }

  .lacitext {
    display: block;
    min-width: 0;
    padding: 24px 16px 28px;
    overflow: hidden;
  }

  .lacitextin {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .mobile-inline-portrait {
    display: block !important;
    width: min(100%, 210px);
    height: 210px;
    margin: 0 auto 18px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #080808;
    filter: grayscale(1) brightness(0.88);
  }

  .mobile-inline-portrait.laci-profile-img {
    object-position: 56% 42%;
  }

  .mobile-inline-portrait.pong-profile-img {
    object-position: 30% 26%;
  }

  .lacitextin h2,
  .lacitextin p,
  .about-actions {
    width: 100%;
  }

  .lacitextin p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .artist-works {
    padding: 0 16px 24px;
  }

  .artist-works-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 4px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
  }

  .artist-works-grid::-webkit-scrollbar {
    display: none;
  }

  .artist-works-grid img {
    flex: 0 0 68vw;
    width: 68vw;
    max-width: 240px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    user-select: none;
  }

  .lacitextin h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .lacitextin p {
    font-size: 14px;
    line-height: 1.7;
  }

  .lacitextin a {
    width: 100%;
    max-width: none;
  }
}


/*About*/




/* ================= GALLERY ================= */

.gallery {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #0e0e0e;
  padding: 80px 0;
  color: rgba(255,255,255,0.5);
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 30% -16% -24% 42%;
  background:
    radial-gradient(circle at 100% 100%, rgba(122, 0, 0, 0.52) 0, rgba(122, 0, 0, 0.34) 18%, rgba(122, 0, 0, 0.18) 38%, rgba(122, 0, 0, 0.08) 56%, rgba(122, 0, 0, 0) 76%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
}

.gallery::after {
  content: "";
  position: absolute;
  inset: -34% 50% 16% -22%;
  background:
    linear-gradient(90deg, rgba(122, 0, 0, 0.16) 0%, rgba(122, 0, 0, 0.13) 14%, rgba(122, 0, 0, 0.1) 28%, rgba(122, 0, 0, 0.06) 42%, rgba(122, 0, 0, 0) 62%),
    radial-gradient(circle at 0% 0%, rgba(122, 0, 0, 0.42) 0, rgba(122, 0, 0, 0.26) 18%, rgba(122, 0, 0, 0.14) 38%, rgba(122, 0, 0, 0.06) 56%, rgba(122, 0, 0, 0) 76%),
    linear-gradient(180deg, rgba(122, 0, 0, 0.18) 0%, rgba(122, 0, 0, 0.14) 38%, rgba(122, 0, 0, 0.1) 68%, rgba(122, 0, 0, 0.08) 100%);
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

/* Shared left-side glow pair for gallery and products */
.products::before {
  content: "";
  position: absolute;
  inset: 16% 50% -34% -22%;
  background:
    linear-gradient(90deg, rgba(122, 0, 0, 0.16) 0%, rgba(122, 0, 0, 0.13) 14%, rgba(122, 0, 0, 0.1) 28%, rgba(122, 0, 0, 0.06) 42%, rgba(122, 0, 0, 0) 62%),
    radial-gradient(circle at 0% 100%, rgba(122, 0, 0, 0.42) 0, rgba(122, 0, 0, 0.26) 18%, rgba(122, 0, 0, 0.14) 38%, rgba(122, 0, 0, 0.06) 56%, rgba(122, 0, 0, 0) 76%),
    linear-gradient(0deg, rgba(122, 0, 0, 0.18) 0%, rgba(122, 0, 0, 0.14) 38%, rgba(122, 0, 0, 0.1) 68%, rgba(122, 0, 0, 0.08) 100%);
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.gallery h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 38px;
  color: #7A0000;
  margin-bottom: 25px;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}



/* ===== DESKTOP TRACK ===== */
.gallery-track {
  display: flex;
  gap: 20px;
  padding: 20px 40px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* IMAGES */
.gallery-track img {
  width: 250px;
  height: 360px;
  flex-shrink: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  pointer-events: none;
}

.gallery-track img:hover {
  transform: scale(1.07);
  filter: brightness(1.2);
}

/* ===== NAV BUTTONS (DESKTOP) ===== */
.nav-btn {
  display: none;
}

.nav-btn:hover {
  background: #0e0e0e;
  border: 2px solid #7A0000;
  transform: translateY(-50%) scale(1.15);
}

.left { left: 10px; }
.right { right: 10px; }

/* ===== SOCIAL ===== */
.media1 {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.gallery-follow {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.gallery-follow p {
  margin: 0;
  font-family: "OldEnglish", serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #7A0000;
}

.media1 svg {
  color: #7A0000;
  width: 34px;
  height: 34px;
  transition: ease 0.3s;
}

.media1 svg:hover {
  transform: scale(1.1);
}

/* ===== DRAG JELZÉS DESKTOP ===== */
@media (min-width: 1071px) {
  .gallery-wrapper::after {
    content: "← húzd →";
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
  }

  .gallery-track {
    cursor: grab;
  }

  .gallery-track:active {
    cursor: grabbing;
  }
}


/* ===== MOBIL VISSELKEDÉS ===== */
@media (max-width: 1070px){

  .gallery {
    min-height: 50vh;
  }

  .gallery-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 50vw;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-track img {
    width: 72vw;
    height: min(112vw, 420px);
    max-width: 280px;
    max-height: 420px;
    scroll-snap-align: center;
  }

  /* GOMBOK ELTŰNNEK */
  .nav-btn {
    display: none;
  }

  /* HÚZHATÓ JELZÉS */
  .gallery-wrapper::after {
    content: "← húzd →";
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
  }
}

/* ===== MÁSOLÁS / DRAG TILTÁS ===== */
.gallery-track,
.gallery-track img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.more{

  font-size: 1.2rem !important;
}


.morebtn{

    width: 200px;
    height: 45px;
    background-color: #7A0000;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    font-family:'Roboto', sans-serif;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: ease 0.4s;
    
}


.morebtn:hover{

    background-color: #0e0e0e;
    color: #7A0000;
    border: solid 2px #7A0000;
    transform: scale(1.1);
    text-decoration: none;
    
}

.morediv{

  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 0px 5px;
  text-align: center
}

.morediv p{

  font-size: 15px;
}

@media (max-width: 700px) {
  .gallery-follow {
    margin-top: 34px;
  }

  .gallery-follow p {
    font-size: 26px;
  }

  .media1 {
    gap: 14px;
  }

  .media1 svg {
    width: 28px;
    height: 28px;
  }
}


/* ================= /GALLERY ================= */



/* CONTACT */

.contact {
  background-color: #0e0e0e;
  min-height: 70vh;
  padding: 80px 5%;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.contact h2 {
  font-size: 48px;
  color: #7A0000;
  margin-bottom: 40px;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 88px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-info {
  width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.contact-info a{

  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 20px;
  transition: ease 0.3s;
}

.contact-info .contact-address {
  white-space: nowrap;
}

.contact-info a:hover{

  transform: scale(1.1);
}

.media{

  margin-top: 5%;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  color: #7A0000;
}

.media svg{

  color: #7A0000;
  margin-right: 20px;
}

.contact-info h3 {
  color: #7A0000;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 18px;
}

.contact-info i {
  margin-right: 10px;
  color: #7A0000;
}

.contact-form {
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background-color: #161616;
  border: 1px solid #7A0000;
  border-radius: 8px;
  color: white;
  resize: none;
  transition: ease 0.3s;
}


.contact-form textarea:hover{

  transform: scale(1.1);
}

.contact-form input:hover{

  transform: scale(1.1);
}

.contact-form button {
  background-color: #7A0000;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #0e0e0e;
  border: 1px solid #7A0000;
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .contact-wrapper {
    gap: 42px;
  }

  .contact-info {
    width: 100%;
    max-width: 400px;
  }

  .contact-info .contact-address {
    white-space: normal;
  }

  .contact-form {
    width: 100%;
    max-width: 390px;
  }
}


/*CONTACT*/


/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background-color: #0e0e0e;
  border: 2px solid #7A0000;
  padding: 20px;
  border-radius: 12px;
  z-index: 99999;
  display: none;
  color: rgba(255,255,255,0.85);
}

.cookie-banner p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  flex: 1;
  padding: 10px;
  background-color: #7A0000;
  color: rgba(255,255,255,0.5);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-banner button:hover {
  background-color: #0e0e0e;
  border: 1px solid #7A0000;
}

.cookie-link {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.cookie-link:hover {
  color: #7A0000;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}


/* COOKIE BANNER */

/*services*/

.services {
  position: relative;
  padding: 80px 0;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: -16% 34% 22% -18%;
  background:
    radial-gradient(circle at 0% 0%, rgba(122, 0, 0, 0.52) 0, rgba(122, 0, 0, 0.34) 18%, rgba(122, 0, 0, 0.18) 38%, rgba(122, 0, 0, 0.08) 56%, rgba(122, 0, 0, 0) 76%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 0;
}

h2{

  color: #7A0000;
}

.services-title {
  position: relative;
  z-index: 1;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  font-family: 'Science Gothic', sans-serif;
}

.services-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

.service-box {
  background: #111;
  border: 1px solid #262626;
  padding: 34px 32px 30px;
  width: min(430px, calc(50vw - 72px));
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: #7A0000;
}

.service-box .icon {
  color: #7A0000;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-family: 'Science Gothic', sans-serif;
}

.service-box p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.5;
}

.service-copy {
  width: 100%;
  max-width: 310px;
  text-align: left;
}

.service-box-tattoo {
  width: min(460px, calc(50vw - 72px));
}

.service-box-tattoo .service-copy {
  max-width: 340px;
}

.service-box-piercing .service-copy {
  max-width: 300px;
}

.service-intro,
.service-note {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin: 14px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  line-height: 1.45;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7A0000;
  box-shadow: 0 0 0 4px rgba(122, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .services-wrapper {
    gap: 22px;
  }

  .service-box,
  .service-box-tattoo {
    width: min(100%, 540px);
    padding: 32px 26px 28px;
  }

  .service-copy,
  .service-box-tattoo .service-copy,
  .service-box-piercing .service-copy {
    max-width: 100%;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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


/*services*/

.footer {
  width: 100%;
  padding: 40px 0;
  background: #0d0d0d;
  text-align: center;

}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer p,
.footer a {
  color: #a0a0a0;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Science Gothic', sans-serif;
  text-decoration: none;
}

.footer .brand {
  color:#7A0000;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer a:hover {
  color: #fff;
  transition: 0.3s;
}






/*products*/



.products{
  position: relative;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
}

.products-coming {
  position: relative;
  z-index: 1;
  width: min(90vw, 920px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(122, 0, 0, 0.12), rgba(122, 0, 0, 0.03) 34%, rgba(14, 14, 14, 0.98) 70%),
    #111;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.products-coming::before {
  content: "";
  position: absolute;
  inset: -12% auto -12% -8%;
  width: 42%;
  background:
    radial-gradient(circle at 0% 50%, rgba(122, 0, 0, 0.42) 0, rgba(122, 0, 0, 0.22) 24%, rgba(122, 0, 0, 0.08) 48%, rgba(122, 0, 0, 0) 72%);
  filter: blur(28px);
  pointer-events: none;
}

.products-coming > * {
  position: relative;
  z-index: 1;
}

.products-coming-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.products-coming h2 {
  margin: 0 0 20px;
  color: #7A0000;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.products-coming p {
  margin: 0 0 14px;
  max-width: 680px;
  color: rgba(255,255,255,0.66);
  font-family:'Roboto', sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.8;
}

.products-coming p:last-child {
  margin-bottom: 0;
}

.container{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;              /* törés engedélyezése */
  justify-content: center;      /* mindig középre */
  gap: 20px;
  width: 100%;
  max-width: 1400px;            /* 4×320 + gap */
  margin: 0 auto;               /* középre az egész blokk */
}




.container .pcard .contentBx .size span{

  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: 0.5s;
}



.container .pcard{
  position: relative;
  width: 320px;
  height: 450px;
  background: #232323;
  border-radius: 0;
  overflow: hidden;
  transition: 0.5s ease;
  margin-bottom: 20px;
}

.container .pcard:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#7A0000;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease;
}

.container .pcard:hover:before{
  clip-path: circle(300px at 80% -20%);
  
}

.container .pcard:after{
  content: 'PINKER';
  position: absolute;
  top: 50%;
  left: 5%;
  font-size: 4rem;
  font-style: italic;
  font-family: "OldEnglish", serif;
  color: #7a000056;
}

.container .pcard .imgBx{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 100%;
  height: 220px;
  transition: 0.5s;
}

.pcard:hover{

  border: 1px solid #7A0000;
}

.container .pcard:hover .imgBx{
  top: 0%;
  transform: translateY(0%);
  
    
}

.container .pcard .imgBx img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 270px;
}

.container .pcard .contentBx{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 10;
}

.container .pcard:hover .contentBx{
  height: 210px;
}

.container .pcard .contentBx h2{
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  margin-top: -30px;
  margin-bottom: 10px;
}

.container .pcard .contentBx .size, .container .pcard .contentBx .color {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 20px;
  transition: 0.5s;opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
  color: rgba(255,255,255,0.5);
}

.container .pcard:hover .contentBx .size{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5s;
}

.container .pcard:hover .contentBx .color{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.6s;
}

.container .pcard .contentBx .size h3, .container .pcard .contentBx .color h3{
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}



.kopp{

  font-size: 14px;
  color: #fff;
  display: none;
}



.products a{

    width: 200px;
    height: 45px;
    background-color: #7A0000;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: none;
    font-family:'Roboto', sans-serif;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: ease 0.4s;
}


.products a:hover{

    background-color: #0e0e0e;
    color: #7A0000;
    border: solid 2px #7A0000;
    transform: scale(1.1);
    
}

@media (max-width: 1200px){
  .container{
    max-width: 1000px;
  }

  .kopp{

    display: block;
  }

    .products{

    padding-top: 90px;
  }
}

@media (max-width: 768px){
  .container{
    max-width: 100%;
  }

  .container .pcard{
    width: 90%;
    max-width: 320px;
  }


  .products{

    padding-top: 90px;
  }

  .kopp{

    display: block;
  }
}

@media (max-width: 700px) {
  .products-coming {
    width: calc(100% - 24px);
    padding: 28px 20px;
  }

  .products-coming-eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.22em;
  }

  .products-coming h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .products-coming p {
    font-size: 14px;
    line-height: 1.72;
  }
}


/* IMPRESSZUM PAGE */

.impresszum-page {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top left, rgba(122, 0, 0, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(122, 0, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 35%, #111111 100%);
}

.impresszum-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255, 255, 255, 0.02) 49px);
  opacity: 0.35;
}

.impresszum-page .page {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.impresszum-page .back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.impresszum-page .back-link:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 0, 0, 0.9);
  background: rgba(122, 0, 0, 0.18);
}

.impresszum-page .hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.impresszum-page .hero-card,
.impresszum-page .info-card,
.impresszum-page .section-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.94));
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.impresszum-page .hero-card {
  padding: 42px;
  overflow: hidden;
  position: relative;
}

.impresszum-page .hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 0, 0, 0.42), transparent 68%);
}

.impresszum-page .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #d0b0b0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.impresszum-page h1 {
  font-family: "OldEnglish", serif;
  color: #fff;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.impresszum-page .hero-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.03rem;
  line-height: 1.8;
}

.impresszum-page .hero-meta {
  display: grid;
  gap: 16px;
  padding: 34px 28px;
}

.impresszum-page .meta-label {
  color: #c7a8a8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.impresszum-page .meta-value {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.impresszum-page .meta-value a,
.impresszum-page dd a {
  color: #fff;
  text-decoration: none;
}

.impresszum-page .meta-value a:hover,
.impresszum-page dd a:hover {
  color: #d6a3a3;
}

.impresszum-page .content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.impresszum-page .section-card {
  padding: 28px;
}

.impresszum-page h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.impresszum-page .section-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.impresszum-page .section-card p:last-child {
  margin-bottom: 0;
}

.impresszum-page .section-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.impresszum-page .section-card li strong {
  color: #fff;
}

.impresszum-page dl {
  display: grid;
  gap: 16px;
}

.impresszum-page .row {
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.impresszum-page .row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.impresszum-page dt {
  color: #cfb3b3;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impresszum-page dd {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.impresszum-page .placeholder {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122, 0, 0, 0.22);
  color: #ffd6d6;
  font-size: 0.92rem;
}

.impresszum-page .footer-note {
  margin-top: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .impresszum-page .hero,
  .impresszum-page .content-grid {
    grid-template-columns: 1fr;
  }

  .impresszum-page .hero-card,
  .impresszum-page .hero-meta,
  .impresszum-page .section-card {
    border-radius: 24px;
  }

  .impresszum-page .hero-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .impresszum-page .page {
    width: min(100% - 20px, 1120px);
    padding: 18px 0 36px;
  }

  .impresszum-page .back-link {
    width: 100%;
  }

  .impresszum-page .hero {
    margin-top: 18px;
    gap: 18px;
  }

  .impresszum-page .hero-card,
  .impresszum-page .hero-meta,
  .impresszum-page .section-card {
    border-radius: 20px;
  }

  .impresszum-page .hero-card,
  .impresszum-page .section-card,
  .impresszum-page .hero-meta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .impresszum-page .hero-card {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .impresszum-page .hero-meta {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .impresszum-page .section-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .impresszum-page .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .impresszum-page .footer-note {
    font-size: 0.76rem;
    line-height: 1.6;
  }
}


@media (max-width: 600px) {
  .about .laci {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .about .laci .laciimg {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 220px !important;
    height: 220px !important;
    padding: 16px !important;
    background: #0b0b0b !important;
    overflow: hidden !important;
  }

  .about .laci .laciimg::after {
    display: none !important;
  }

  .about .laci .laci2img {
    width: 100% !important;
    height: 100% !important;
    max-width: 220px !important;
    max-height: 188px !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 14px !important;
    background: #0b0b0b !important;
    filter: grayscale(1) brightness(0.92) !important;
  }

  .about .laci .mobile-inline-portrait {
    display: none !important;
  }

  .about .laci .lacitext {
    display: block !important;
    padding: 22px 16px 24px !important;
    overflow: hidden !important;
  }

  .about .laci .lacitext::before {
    inset: -8% -6% -8% -12% !important;
    filter: blur(22px) !important;
  }

  .about .laci .lacitextin {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .about .laci .lacitextin h2 {
    width: 100% !important;
    margin: 0 0 14px !important;
    font-size: 28px !important;
    line-height: 1 !important;
  }

  .about .laci .lacitextin p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .about .laci .about-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .about .laci .about-actions a,
  .about .laci .lacitextin a {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    padding: 12px 10px !important;
    box-sizing: border-box !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .about .laci .artist-works {
    padding: 0 16px 24px !important;
  }

  .about .laci .artist-works-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 0 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-x: contain !important;
    touch-action: pan-x !important;
  }

  .about .laci .artist-works-grid img {
    flex: 0 0 70% !important;
    width: 70% !important;
    max-width: 230px !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }
}




