:root {
  --bg-main: #fbf7f1;
  --bg-alt: #f2e9d8;
  --bg-card: #ffffff;
  --gold: #b8903f;
  --gold-soft: #e8caa0;
  --text-dark: #2e2a24;
  --text-muted: #766e5f;
  --text-inverse: #fbf7f1;
  --text-inverse-muted: #e8e2d5;
  --border-soft: rgba(46,42,36,0.14);
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  text-align: center;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 22px;
  color: var(--text-dark);
}

.section-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.btn {
  display: inline-block;
  padding: 15px 38px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold);
  color: #fff;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: var(--bg-main);
  box-shadow: 0 2px 12px rgba(46,42,36,0.06);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(46,42,36,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

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

.header-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.header-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-dark);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('Hintergrund.jpg') center 30% / cover no-repeat fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,26,16,0.5) 0%, rgba(35,26,16,0.38) 45%, rgba(30,22,13,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--text-inverse);
  line-height: 1.1;
}

.hero h1 span {
  color: var(--gold-soft);
  display: block;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 18px;
}

.hero-name {
  margin-top: 26px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-inverse-muted);
  letter-spacing: 2px;
}

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-inverse-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-down .line {
  width: 1px;
  height: 40px;
  background: var(--gold-soft);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* SECTIONS */
section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-alt);
}

#propozycje {
  padding-top: 50px;
  padding-bottom: 50px;
}

#galeria {
  padding-top: 50px;
  padding-bottom: 50px;
}

#opinie {
  padding-top: 50px;
  padding-bottom: 50px;
}

#kontakt {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 20px 50px rgba(46,42,36,0.14);
}

.about-text .signature {
  margin-top: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.proposals-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

@media (max-width: 900px) {
  .proposals-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.feature-item .num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.6rem;
}

.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.centered .section-text {
  margin: 0 auto;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: 0 14px 34px rgba(46,42,36,0.12);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* MUSIC / PLAYLIST */
.playlist-box {
  border: 1px solid rgba(184,144,63,0.35);
  padding: 50px;
  text-align: center;
  background: rgba(184,144,63,0.06);
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.genre-tags span {
  padding: 8px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-card);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 34px rgba(46,42,36,0.06);
  padding: 34px 28px;
}

.testimonial-card .quote-mark {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.testimonial-card .author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .source {
  color: var(--text-muted);
  font-size: 0.78rem;
  opacity: 0.8;
}

.testimonial-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.75;
}

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-info .phone {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 20px 0;
  display: block;
}

.contact-info .info-line {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

form .full {
  grid-column: 1 / -1;
}

form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

form input,
form select,
form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 2px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  text-align: left;
}

form select option {
  background: var(--bg-card);
  color: var(--text-dark);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

form textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* FOOTER */
footer {
  padding: 40px 0;
  background: var(--bg-alt);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* SPLIT ROW (full-bleed image + text, alternating) */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  padding: 0;
}

.split-row .media {
  order: 1;
  overflow: hidden;
  min-height: 320px;
}

.split-row .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-row .content {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 60px;
}

.split-row.reverse .media {
  order: 2;
}

.split-row.reverse .content {
  order: 1;
}

.split-row .content-inner {
  max-width: 460px;
}

.split-row .content-inner .section-text + .section-text {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .split-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-row .media,
  .split-row.reverse .media {
    order: 2;
    min-height: 320px;
  }
  .split-row .content,
  .split-row.reverse .content {
    order: 1;
    padding: 50px 24px;
  }
}

/* QUOTE BANNER */
.quote-banner {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  background: url('para-taniec-chmury.jpg') center 30% / cover no-repeat fixed;
}

.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,35,0.45) 0%, rgba(20,24,35,0.6) 100%);
}

.quote-banner blockquote {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--text-inverse);
  line-height: 1.5;
}

.quote-banner cite {
  display: block;
  margin-top: 22px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .two-col,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .about-photo img {
    height: 420px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .main-nav, .header-social {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(251,247,241,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .main-nav.open a {
    font-size: 1.1rem;
    color: var(--text-dark);
  }
  form {
    grid-template-columns: 1fr;
  }
  section {
    padding: 80px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid figure.wide {
    grid-column: span 1;
  }
}
