
/* ===== Hero — full-bleed pencil cinematic ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0a;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  will-change: transform;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease-out;
  filter: saturate(0.92) contrast(1.05);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.55) 38%, rgba(6, 6, 6, 0.12) 68%, rgba(6, 6, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.2) 0%, transparent 35%, rgba(6, 6, 6, 0.62) 100%);
}

.hero__container {
  width: min(92%, 1280px);
  margin: 0 auto;
  padding: 100px 0 110px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 620px;
}

.hero__brand,
.hero__rule,
.hero__title,
.hero__text,
.hero__actions {
  opacity: 0;
  transform: translateY(22px);
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__brand {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.2px;
  color: #c9a55c;
  animation-delay: 0.15s;
}

.hero__rule {
  display: block;
  width: 0;
  height: 1px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, #c9a55c, transparent);
  transform: none;
  animation: heroRule 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.hero__title {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.3px;
  color: #f2f2f2 !important;
  animation-delay: 0.35s;
}

.hero__text {
  max-width: 480px;
  margin: 0 0 34px;
  color: #bdbdbd;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  animation-delay: 0.5s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation-delay: 0.65s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn--primary {
  color: #111;
  background: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
  background: #c9a55c;
  color: #111;
  transform: translateY(-2px);
}

.btn--secondary {
  color: #e8e8e8;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn--secondary:hover {
  border-color: #c9a55c;
  color: #c9a55c;
  transform: translateY(-2px);
}

.hero__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  width: min(92%, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  animation: heroRise 0.8s ease 1s forwards;
}

.hero__progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__dot {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.hero__dot.is-active {
  width: 44px;
  background: #c9a55c;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero__scroll svg {
  width: 16px;
  height: 16px;
  animation: heroScrollNudge 1.8s ease-in-out infinite;
}

.hero__scroll:hover {
  color: #c9a55c;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRule {
  to {
    opacity: 1;
    width: 72px;
  }
}

@keyframes heroScrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(5px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand,
  .hero__rule,
  .hero__title,
  .hero__text,
  .hero__actions,
  .hero__footer,
  .hero__scroll svg {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__rule { width: 72px; }

  .hero__slide {
    transition: opacity 0.4s ease;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .hero__container {
    padding: 88px 0 96px;
  }

  .hero__brand {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero__title {
    font-size: 17px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 26px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero__footer {
    bottom: 18px;
  }

  .hero__scroll span {
    display: none;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.25) 0%, rgba(6, 6, 6, 0.45) 40%, rgba(6, 6, 6, 0.88) 100%);
  }
}


/* ===== Features / O nas — pencil editorial ===== */
.features-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #101010;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.features-section__container {
  width: min(92%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: 64px;
  align-items: start;
}

.features-section__intro {
  position: sticky;
  top: 110px;
  max-width: 420px;
}

.features-section--page .features-section__intro {
  position: static;
  top: auto;
}

.features-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.features-section__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.features-section__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.features-section__subtitle {
  margin: 0;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 8px;
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-card::before {
  display: none;
}

.feature-card__num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #c9a55c;
  letter-spacing: 0.5px;
  padding-top: 4px;
}

.feature-card__body {
  min-width: 0;
}

.feature-card__title {
  margin: 0 0 10px;
  color: #f0f0f0 !important;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.feature-card__text {
  margin: 0;
  color: #a0a0a0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  max-width: 460px;
}

@media (max-width: 1024px) {
  .features-section {
    padding: 80px 0;
  }

  .features-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-section__intro {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 64px 0;
  }

  .features-section__container {
    gap: 32px;
  }

  .feature-card {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .feature-card:hover {
    padding-left: 0;
  }

  .feature-card__num {
    font-size: 22px;
  }

  .feature-card__title {
    font-size: 20px;
  }

  .feature-card__text {
    font-size: 14px;
  }
}


/* ===== Top Usługi — pencil editorial ===== */
.top-services {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #0e0e0e;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.top-services__container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.top-services__intro {
  max-width: 560px;
  margin: 0 0 48px;
}

.top-services__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.top-services__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.top-services__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.top-services__subtitle {
  margin: 0;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.top-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 0.3s ease, transform 0.35s ease;
}

.service-card::before {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 165, 92, 0.35);
  box-shadow: none;
}

.service-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #161616;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: saturate(0.94) contrast(1.03);
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.service-card__time {
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.service-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.service-card__price-old {
  color: #6f6f6f;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
}

.service-card__price-new {
  color: #f0f0f0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.service-card__title {
  margin: 0 0 10px;
  color: #f0f0f0 !important;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.service-card__text {
  margin: 0 0 22px;
  color: #9a9a9a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  padding: 0 18px;
  border-radius: 2px;
  background: #f0f0f0;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: none;
}

.service-card__button:hover {
  background: #c9a55c;
  color: #111;
  transform: none;
  box-shadow: none;
}

.top-services__bottom {
  margin-top: 42px;
  text-align: left;
}

.top-services__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.top-services__more-btn:hover {
  border-color: #c9a55c;
  color: #c9a55c;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .top-services {
    padding: 80px 0;
  }

  .top-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .top-services {
    padding: 64px 0;
  }

  .top-services__intro {
    margin-bottom: 32px;
  }

  .top-services__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card__title {
    font-size: 22px;
  }

  .top-services__more-btn {
    width: 100%;
  }
}


/* ===== Twój barber — pencil split ===== */
.about-team {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #101010;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-team__container {
  width: min(92%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about-team__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-team__image {
  display: block;
  width: 100%;
  height: min(70vh, 640px);
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.94) contrast(1.03);
}

.about-team__media:hover .about-team__image {
  transform: scale(1.03);
}

.about-team__content {
  max-width: 520px;
}

.about-team__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.about-team__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.about-team__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.about-team__text {
  margin: 0 0 28px;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

.about-team__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 2px;
  background: #f0f0f0;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.about-team__button:hover {
  background: #c9a55c;
  color: #111;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .about-team {
    padding: 80px 0;
  }

  .about-team__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-team__image {
    height: min(52vh, 480px);
  }

  .about-team__content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-team {
    padding: 64px 0;
  }

  .about-team__image {
    height: 360px;
  }

  .about-team__text {
    font-size: 14px;
  }

  .about-team__button {
    width: 100%;
  }
}

/* ===== Galeria — pencil grid ===== */
.gallery-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #0e0e0e;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-section__container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.gallery-section__intro {
  max-width: 560px;
  margin: 0 0 42px;
}

.gallery-section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.gallery-section__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.gallery-section__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.gallery-section__subtitle {
  margin: 0;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.35s ease;
}

.gallery-card::after {
  display: none;
}

.gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.94) contrast(1.03);
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 165, 92, 0.35);
  box-shadow: none;
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.04);
}

.gallery-section__bottom {
  margin-top: 36px;
}

.gallery-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.gallery-section__button:hover {
  border-color: #c9a55c;
  color: #c9a55c;
  background: transparent;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .gallery-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 64px 0;
  }

  .gallery-section__intro {
    margin-bottom: 28px;
  }

  .gallery-section__button {
    width: 100%;
  }
}
