/* ═══════════════════════════════════════════════════════════
   SALONY RESTO-BAR — GLOBAL CSS
   FINAL CLEAN VERSION
   ═══════════════════════════════════════════════════════════ */

/* ── FONTY ORIGIN SUPER CONDENSED ── */
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Ultra_Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Ultra_Light_Italic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Bold_Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Origin Super Condensed';
  src: url('/wp-content/themes/salony-child/fonts/fonnts_com-Origin_Sup_Cond_Black_Italic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ── ZMIENNE ── */
:root {
  --beige: #EFEEEA;
  --red:   #AC0202;
  --black: #151515;
  --blue:  #B5C9DA;
  --brown: #3E1A02;
  --white: #FFFFFF;
  --wp--style--block-gap: 0px;
}

/* ══════════════════════════════════════
   GUTENBERG / ASTRA RESET
   ══════════════════════════════════════ */
.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-column,
.wp-block-html {
  padding: 0 !important;
  margin: 0 !important;
}

.wp-block-html,
.alignfull,
.alignwide {
  max-width: none !important;
  width: 100% !important;
}

.entry-content > * + * {
  margin-top: 0 !important;
}

#content .site-content,
.ast-container {
  padding: 0 !important;
}

.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-inner-content {
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.page .entry-header {
  display: none;
}

/* ── BAZOWY RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--beige) !important;
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* offset scrolla pod fixed nav */
#o-salonach,
#menu,
#kontakt,
#rezerwacje {
  scroll-margin-top: 110px;
}

/* ── TEXT-STROKE ── */
.salony-hero-word,
.salony-section-h,
.salony-stat-n,
.salony-dd-word,
.salony-marquee-item,
.salony-ev-date-num,
.salony-contact-address,
.salony-contact-phone {
  -webkit-text-stroke: 0.4px currentColor;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── LOGO FILTERS ── */
.logo-white {}
.logo-dark {
  filter: brightness(0);
}
.logo-red {
  filter: brightness(0) saturate(100%)
          invert(7%) sepia(96%) saturate(6000%)
          hue-rotate(0deg) brightness(90%) contrast(120%);
}

/* ── SCROLL ANIMATIONS ── */
.fu {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1);
}
.fu.in {
  opacity: 1;
  transform: translateY(0);
}
.fu-delay-1 { transition-delay: .12s; }
.fu-delay-2 { transition-delay: .24s; }
.fu-delay-3 { transition-delay: .36s; }
.fu-delay-4 { transition-delay: .48s; }

/* ── UTILITY ── */
.section-day {
  background: var(--beige);
  color: var(--black);
}
.section-night {
  background: var(--black);
  color: var(--white);
}
.salony-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-night .section-label {
  color: var(--blue);
}

.salony-section-h {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  color: var(--black);
}

.section-night .salony-section-h {
  color: var(--white);
}

.salony-section-h .accent {
  color: var(--red);
}

.section-night .salony-section-h .accent {
  color: var(--blue);
}

.section-p {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(21,21,21,.55);
  max-width: 460px;
}

.section-night .section-p {
  color: rgba(255,255,255,.35);
}

/* ── HERO SPLIT-SCREEN ── */
.salony-hero {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.salony-hero-half {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.salony-hero-day {
  background: var(--beige);
}

.salony-hero-night {
  background: var(--black);
}

.salony-hero-day-overlay {
  position: absolute;
  inset: 0;
  background: rgba(239,238,234,.82);
}

.salony-hero-night-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,21,21,.78);
}

.salony-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 10%;
}

.salony-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.salony-hero-day .salony-hero-eyebrow {
  color: var(--red);
}

.salony-hero-night .salony-hero-eyebrow {
  color: var(--blue);
}

.salony-hero-word {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .85;
}

.salony-hero-day .salony-hero-word {
  color: var(--black);
}

.salony-hero-night .salony-hero-word {
  color: var(--white);
}

.salony-hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  line-height: .9;
  margin-top: 6px;
}

.salony-hero-day .salony-hero-sub {
  color: rgba(21,21,21,.25);
}

.salony-hero-night .salony-hero-sub {
  color: rgba(255,255,255,.15);
}

.salony-hero-tagline {
  font-size: .8rem;
  line-height: 1.75;
  margin-top: 32px;
  max-width: 260px;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.salony-hero-day .salony-hero-tagline {
  color: rgba(21,21,21,.5);
}

.salony-hero-night .salony-hero-tagline {
  color: rgba(255,255,255,.3);
  border-left-color: var(--blue);
}

.salony-hero-cta {
  margin-top: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  display: inline-block;
  transition: all .3s;
}

.salony-hero-day .salony-hero-cta {
  background: var(--red);
  color: var(--white);
}

.salony-hero-day .salony-hero-cta:hover {
  background: var(--black);
}

.salony-hero-night .salony-hero-cta {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.salony-hero-night .salony-hero-cta:hover {
  background: var(--blue);
  color: var(--black);
}

.salony-hero-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.12);
  z-index: 5;
}

.salony-hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.salony-hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
    transform-origin: bottom;
  }
}

.salony-hero-scroll-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

.salony-hero-location {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 10;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

/* ── O NAS ── */
.salony-about {
  padding: 120px 0;
}

.salony-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.salony-about-img-main {
  height: 560px;
  background: #D8D6D0;
  overflow: hidden;
}

.salony-about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salony-about-img-accent {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 200px;
  background: #D8D6D0;
  border: 6px solid var(--beige);
  overflow: hidden;
}

.salony-about-img-wrap {
  position: relative;
}

.salony-about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(21,21,21,.08);
}

.salony-stat-n {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
}

.salony-stat-l {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(21,21,21,.35);
  margin-top: 6px;
}

/* ── DZIEŃ / NOC DIVIDER ── */
.salony-divider-duality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 60vh;
  min-height: 480px;
}

.salony-dd-half {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  cursor: pointer;
  text-decoration: none;
}

.salony-dd-half::after {
  content: '';
  position: absolute;
  inset: -50%;
  border-radius: 50%;
  opacity: .06;
}

.salony-dd-day {
  background: var(--red);
  color: var(--white);
}

.salony-dd-day::after {
  background: var(--white);
}

.salony-dd-night {
  background: var(--brown);
  color: var(--white);
}

.salony-dd-night::after {
  background: var(--blue);
}

.salony-dd-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
}

.salony-dd-day .salony-dd-sub {
  color: rgba(255,255,255,.45);
}

.salony-dd-night .salony-dd-sub {
  color: rgba(181,201,218,.35);
}

.salony-dd-word {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .9;
  position: relative;
  margin: 8px 0 16px;
}

.salony-dd-day .salony-dd-word {
  color: var(--white);
}

.salony-dd-night .salony-dd-word {
  color: var(--blue);
}

.salony-dd-desc {
  font-size: .82rem;
  line-height: 1.75;
  max-width: 380px;
  position: relative;
}

.salony-dd-day .salony-dd-desc {
  color: rgba(255,255,255,.65);
}

.salony-dd-night .salony-dd-desc {
  color: rgba(255,255,255,.35);
}

.salony-dd-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
  position: relative;
  transition: opacity .3s, transform .3s;
  transform: translateY(-4px);
}

.salony-dd-day .salony-dd-arrow {
  color: rgba(255,255,255,.4);
}

.salony-dd-night .salony-dd-arrow {
  color: rgba(181,201,218,.3);
}

.salony-dd-half:hover .salony-dd-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── MENU ── */
.salony-menu {
  padding: 120px 0;
}

.salony-menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(21,21,21,.08);
}

.section-night .salony-menu-header {
  border-bottom-color: rgba(255,255,255,.06);
}

.salony-menu-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  transition: all .2s;
}

.salony-menu-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}

.salony-menu-col {
  padding: 44px 40px;
}

.section-day .salony-menu-col {
  background: rgba(0,0,0,.025);
}

.section-night .salony-menu-col {
  background: rgba(255,255,255,.025);
}

.salony-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

.salony-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
}

.section-day .salony-col-title {
  color: var(--red);
}

.section-day .salony-col-title::after {
  background: var(--red);
}

.section-night .salony-col-title {
  color: var(--blue);
}

.section-night .salony-col-title::after {
  background: var(--blue);
}

.salony-dish {
  padding: 18px 0;
}

.salony-dish + .salony-dish {
  border-top: 1px solid;
}

.section-day .salony-dish + .salony-dish {
  border-color: rgba(21,21,21,.06);
}

.section-night .salony-dish + .salony-dish {
  border-color: rgba(255,255,255,.05);
}

.salony-dish-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.salony-dish-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}

.section-day .salony-dish-name {
  color: var(--black);
}

.section-night .salony-dish-name {
  color: var(--white);
}

.salony-dish:hover .salony-dish-name {
  color: var(--red);
}

.section-night .salony-dish:hover .salony-dish-name {
  color: var(--blue);
}

.salony-dish-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.section-day .salony-dish-price {
  color: var(--red);
}

.section-night .salony-dish-price {
  color: var(--blue);
}

.salony-dish-desc {
  font-size: .76rem;
  line-height: 1.65;
}

.section-day .salony-dish-desc {
  color: rgba(21,21,21,.4);
}

.section-night .salony-dish-desc {
  color: rgba(255,255,255,.25);
}

/* ── MARQUEE ── */
.salony-marquee {
  background: var(--red);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}

.salony-marquee::before,
.salony-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.salony-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--red), transparent);
}

.salony-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}

.salony-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: salonyMarquee 20s linear infinite;
}

.salony-marquee-item {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.salony-marquee-item.solid {
  color: var(--white);
}

.salony-marquee-item.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.3);
}

@keyframes salonyMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* ── WYDARZENIA ── */
.salony-events {
  padding: 120px 0;
}

.salony-events-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.salony-events-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.salony-event-row {
  display: grid;
  grid-template-columns: 90px 1fr 110px;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(21,21,21,.06);
  transition: all .25s;
}

.salony-event-row:last-child {
  border-bottom: 1px solid rgba(21,21,21,.06);
}

.salony-event-row:hover {
  padding-left: 12px;
  background: rgba(172,2,2,.03);
}

.salony-ev-date-num {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.salony-ev-date-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(21,21,21,.3);
  margin-top: 3px;
}

.salony-ev-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
}

.salony-ev-dj {
  font-size: .73rem;
  color: rgba(21,21,21,.38);
  margin-top: 4px;
}

.salony-ev-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--white);
  background: var(--black);
  padding: 7px 16px;
  text-align: center;
  transition: background .2s;
}

.salony-event-row:hover .salony-ev-time {
  background: var(--red);
}

/* ── GALERIA ── */
.salony-gallery {
  padding: 80px 0 0;
}

.salony-gallery-header {
  margin-bottom: 56px;
}

.salony-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 260px;
  gap: 4px;
}

.salony-gallery-grid > div {
  cursor: pointer;
  transition: filter .4s;
  overflow: hidden;
}

.salony-gallery-grid > div:hover {
  filter: brightness(1.1) contrast(1.05);
}

.salony-gallery-grid > div:nth-child(1) { grid-column: 1/5;  grid-row: 1; }
.salony-gallery-grid > div:nth-child(2) { grid-column: 5/9;  grid-row: 1; }
.salony-gallery-grid > div:nth-child(3) { grid-column: 9/13; grid-row: 1; }
.salony-gallery-grid > div:nth-child(4) { grid-column: 1/4;  grid-row: 2; }
.salony-gallery-grid > div:nth-child(5) { grid-column: 4/7;  grid-row: 2; }
.salony-gallery-grid > div:nth-child(6) { grid-column: 7/10; grid-row: 2; }
.salony-gallery-grid > div:nth-child(7) { grid-column: 10/13; grid-row: 2; }

.salony-gallery-grid > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TEAM ── */
.salony-team {
  padding: 120px 0;
}

.salony-team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 72px;
}

.salony-team-card-img {
  height: 440px;
  overflow: hidden;
  background: #D8D6D0;
}

.salony-team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.salony-team-card:hover .salony-team-card-img img {
  transform: scale(1.05);
}

.salony-team-card-bar {
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.salony-team-card:hover .salony-team-card-bar {
  transform: scaleX(1);
}

.salony-team-card-info {
  padding: 16px 0;
}

.salony-team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.salony-team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
}

.salony-team-bio {
  font-size: .76rem;
  line-height: 1.7;
  color: rgba(21,21,21,.45);
  margin-top: 8px;
}

/* ── REZERWACJA ── */
.salony-reservation {
  padding: 120px 0;
  border-top: 1px solid rgba(21,21,21,.06);
}

.salony-res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.salony-res-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.salony-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.salony-fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.salony-fg label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(21,21,21,.4);
}

.salony-fg input,
.salony-fg select,
.salony-fg textarea {
  background: var(--white);
  border: 1px solid rgba(21,21,21,.1);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: .85rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color .3s;
  appearance: none;
}

.salony-fg input:focus,
.salony-fg select:focus,
.salony-fg textarea:focus {
  border-color: var(--red);
}

.salony-fg textarea {
  min-height: 90px;
  resize: vertical;
}

.salony-btn-res {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: all .3s;
}

.salony-btn-res:hover {
  background: var(--black);
  transform: translateY(-2px);
}

/* ── KONTAKT ── */
.salony-contact {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
}

.salony-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.salony-contact-address {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .9;
  color: var(--white);
}

.salony-contact-phone {
  font-family: 'Origin Super Condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--blue);
  margin-top: 16px;
  display: block;
}

.salony-contact-hours {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}

.salony-ch-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}

.salony-ch-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  color: var(--white);
}

.salony-map-wrap {
  height: 400px;
  background: #1a1a1a;
  filter: grayscale(1) contrast(1.2);
  overflow: hidden;
}

.salony-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
.salony-footer {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.05);
}

.salony-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.salony-footer-logo {
  width: 90px;
  filter: brightness(0) invert(1);
  opacity: .4;
}

.salony-footer-mid {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

.salony-footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.15);
}

.salony-footer-social {
  display: flex;
  gap: 16px;
}

.salony-footer-social a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}

.salony-footer-social a:hover {
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .salony-wrap {
    padding: 0 32px;
  }

  .salony-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .salony-team-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .salony-res-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .salony-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .salony-divider-duality {
    grid-template-columns: 1fr;
    height: auto;
  }

  .salony-dd-half {
    padding: 48px 40px;
  }

  .salony-menu-cols {
    grid-template-columns: 1fr;
  }

  .salony-events-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .salony-event-row {
    grid-template-columns: 60px 1fr;
  }

  .salony-ev-time {
    display: none;
  }

  .salony-team-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .salony-contact-grid {
    grid-template-columns: 1fr;
  }

  .salony-footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .salony-wrap {
    padding: 0 24px;
  }

  .salony-gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(4, 200px);
  }

  .salony-gallery-grid > div {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
