:root {
  --bg: #050506;
  --bg-alt: #101015;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --accent: #c89a3b;
  --accent-dark: #a1781f;
  --border-soft: rgba(255, 255, 255, 0.06);
}

/* RESET PODSTAWOWY */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* POMOCNICZE */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* KONTAINER */
.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.5rem;
}

/* LOGO */
.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* NAWIGACJA */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: var(--accent);
  border-color: var(--accent);
}

/* HAMBURGER (MOBILE) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* HERO */
.hero {
  position: relative;
  color: #ffffff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/tlo_do_strony.jpeg") center center / cover no-repeat;
  filter: brightness(0.45);
  z-index: -1;
}

.hero-content {
  padding-block: 5rem 4rem;
}

.hero-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 38ch;
  color: #e0e0e0;
  margin-bottom: 1.75rem;
}

/* PRZYCISKI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #050506;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* INTRO */
.intro {
  padding-block: 3.5rem;
  background: radial-gradient(circle at top left, #20202a 0, #050506 50%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.intro h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.intro p {
  color: #d4d4d4;
}

.intro-photo img {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* FILARY */
.pillars {
  padding-block: 3.5rem;
  background: var(--bg);
}

.pillars h2 {
  text-align: left;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.pillar {
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(200, 154, 59, 0.16), rgba(5, 5, 6, 0.98));
  border: 1px solid var(--border-soft);
}

.pillar-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.pillar h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.pillar p {
  font-size: 0.9rem;
  color: #d0d0d0;
}

/* HOME – OFERTA I PORTFOLIO ZAJAWKI */
.home-offer {
  padding-block: 3rem;
  background: #0b0b0f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-offer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-offer p {
  color: var(--muted);
  max-width: 50ch;
}

.home-portfolio {
  padding-block: 3.5rem 4rem;
  background: #050506;
}

.home-portfolio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.home-portfolio p {
  color: var(--muted);
}

.home-portfolio-image img {
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  max-height: 320px;
}

/* STOPKA */
.site-footer {
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 2.5rem 1.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.site-footer p {
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.footer-socials a {
  text-decoration: none;
  color: #e2e2e2;
  font-size: 0.85rem;
}

.footer-socials a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  text-align: center;
  color: #777777;
  font-size: 0.78rem;
}

/* STRONA KONTAKT – DODATKOWE STYLE */
.contact-hero {
  position: relative;
  color: #ffffff;
  padding-block: 5rem;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/portret-na-strone.jpeg") center center / cover no-repeat;
  filter: brightness(0.35);
  z-index: -1;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.contact-text p {
  color: #e0e0e0;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-block: 2rem 1.5rem;
}

.contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9c9c9;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-main {
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: none;
}

.contact-main:hover {
  text-decoration: underline;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-photo img {
  border-radius: 16px;
  max-width: 100%;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

/* STRONA OFERTA – DODATKOWE STYLE */
.pricing-hero {
  padding-block: 4rem 2rem;
  background: #111111;
  color: #ffffff;
}

.pricing-hero-inner p {
  max-width: 40rem;
  color: #e0e0e0;
}

.pricing-packages {
  padding-block: 3rem;
  background: #f8f8f8;
  color: #111111;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.pricing-card-highlight {
  border: 2px solid #c89a3b;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: #555555;
  min-height: 5rem;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: #a1781f;
  font-weight: 500;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.pricing-list li::before {
  content: "• ";
  color: #c89a3b;
}

.pricing-details {
  padding-block: 3rem;
  background: #050506;
}

.pricing-details,
.pricing-details p,
.pricing-details h2,
.pricing-details h3 {
  color: #f5f5f5;
}

.pricing-details-inner > div:first-child {
  max-width: 40rem;
}

.pricing-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.pricing-columns h3 {
  margin-top: 1.5rem;
}

.single-rooms {
  padding-block: 3rem 4rem;
  background: #f8f8f8;
  color: #111111;
}

.single-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.single-room-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.pricing-footnote {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 1.5rem;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .intro-grid,
  .pillars-grid,
  .home-portfolio-grid,
  .footer-grid,
  .contact-hero-inner,
  .pricing-grid,
  .pricing-columns,
  .single-rooms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-block: 0.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(5, 5, 6, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.75rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-content {
    padding-block: 4rem 3rem;
  }

  .intro,
  .pillars,
  .home-offer,
  .home-portfolio {
    padding-inline: 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}
/* Sekcja pojedynczych wnętrz – delikatne wyrównanie */
.single-rooms {
  padding: 3rem 0 3.5rem;
  background: #f9f9f9;
}

.single-rooms h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.single-rooms-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #555;
  font-size: 0.95rem;
}

.single-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.single-room-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.single-room-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.single-room-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a063;
  margin-bottom: 0.35rem;
}

.single-room-note {
  font-size: 0.8rem;
  color: #777;
}

.single-rooms-extra {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

.single-rooms-extra h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.single-rooms-extra strong {
  color: #c9a063;
}

/* responsywność dla pojedynczych wnętrz */
@media (max-width: 768px) {
  .single-rooms-grid {
    grid-template-columns: 1fr;
  }
/* STRONA KONTAKT */
.contact-hero {
  padding-top: 96px; /* miejsce na header */
  padding-bottom: 3rem;
  background: #111111;
  color: #ffffff;
}

.contact-hero-inner {
  padding-block: 3rem;
}

.contact-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  max-width: 600px;
  color: #dddddd;
}

.contact-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a063;
  margin-bottom: 0.25rem;
  display: block;
}

.contact-item-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111111;
}

.contact-item a {
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-highlight {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555555;
}

/* Zdjęcie po prawej w kontakcie */
.contact-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* STRONA O MNIE */
.about-hero {
  padding-top: 96px; /* miejsce na header */
  padding-bottom: 3rem;
  background: #111111;
  color: #ffffff;
}

.about-hero-inner {
  padding-block: 3rem;
}

.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.about-hero p {
  max-width: 600px;
  color: #dddddd;
}

.about-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1rem;
}

/* Responsywność dla strony O mnie */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr); /* Na tabletach jedna kolumna */
  }
  .about-photo {
    order: -1; /* Zdjęcie idzie na górę na mobile */
  }
}

@media (max-width: 768px) {
  .about-section {
    padding-inline: 0;
  }
}
/* STRONA PORTFOLIO */
.portfolio-hero {
  padding-top: 96px; /* miejsce na header */
  padding-bottom: 3rem;
  background: #111111;
  color: #ffffff;
}

.portfolio-hero-inner {
  padding-block: 3rem;
}

.portfolio-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.portfolio-hero p {
  max-width: 600px;
  color: #dddddd;
}

.portfolio-gallery {
  padding: 4rem 0;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.gallery-item img {
  width: 100%;
  height: 250px; /* Ujednolicona wysokość dla zdjęć */
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: #dddddd;
  margin: 0;
}

/* Responsywność dla strony Portfolio */
@media (max-width: 768px) {
  .portfolio-gallery {
    padding-inline: 0;
  }
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Responsywność dla strony kontakt */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-photo {
    order: -1; /* Zdjęcie idzie na górę na mobile */
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding-inline: 0;
  }
}
}
/* ========================================
   PORTFOLIO – nagłówek + projekty ze sliderem
   ======================================== */
.portfolio-hero {
  padding-top: 96px;
  padding-bottom: 4rem;
  background: #111111;
  color: #ffffff;
}

.portfolio-hero-inner {
  padding-block: 3rem;
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.portfolio-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.portfolio-hero p {
  max-width: 600px;
  color: #dddddd;
}

.portfolio-hero-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.portfolio-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pojedyncze projekty */
.portfolio-project {
  padding: 4.5rem 0;
  background: #ffffff;
}

.portfolio-project:nth-of-type(even) {
  background: #f9f9f9;
}

.portfolio-project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
}

.project-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.project-subtitle {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 0.75rem;
}

.project-text > p {
  margin-bottom: 0.75rem;
}

.project-text ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #444444;
}

.project-text li {
  margin-bottom: 0.25rem;
}

/* Slider ze zdjęciami */
.project-slider {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.slider-window {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.slider-window img {
  width: 100%;
  display: block;
}

.slider-window img.is-hidden {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.1s ease;
  z-index: 10;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.05);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.75rem;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #cccccc;
  padding: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
  width: 18px;
  background: #111111;
}

/* Responsywność portfolio */
@media (max-width: 992px) {
  .portfolio-hero-grid,
  .portfolio-project-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-slider {
    margin: 0;
  }

  .portfolio-hero-photo {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .portfolio-hero,
  .portfolio-project {
    padding-inline: 0;
  }
}
/* Wymuś ciemniejszy kolor dla opisów w sekcjach portfolio */
.portfolio-project .project-text p,
.portfolio-project .project-text li {
  color: #333333;
}
/* Wymuś ciemniejszy kolor dla nagłówków H2 w sekcjach portfolio */
.portfolio-project .project-text h2 {
  color: #222222; /* Bardzo ciemny szary, prawie czarny */
}
.about-hero-photo {
  max-width: 520px;
  margin-left: auto;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
/* ========================================
   O MNIE – sekcja główna z 2 kolumnami
   ======================================== */
.about-hero {
  padding-top: 96px;
  padding-bottom: 4rem;
  background: #111111;
  color: #ffffff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
}

.about-hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.about-hero-text p {
  max-width: 620px;
  color: #dddddd;
  margin-bottom: 0.8rem;
}

/* Mniejsze zdjęcie po prawej */
.about-hero-photo {
  max-width: 380px;  /* TU możesz zmienić na 320px / 420px, jak wolisz */
  margin-left: auto;
}

.about-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

/* Sekcja "Moje podejście" */
.about-approach {
  padding: 4rem 0;
  background: #ffffff;
}

.about-approach h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222222;
}

.about-approach p {
  max-width: 800px;
  margin-bottom: 0.8rem;
  color: #444444;
}

/* Responsywność – na telefonie zdjęcie pod tekstem */
@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-hero-photo {
    margin: 2rem auto 0;
    max-width: 100%;
  }
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-socials .social-link {
  color: #ffffff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials .social-link:hover {
  color: #d4a574;
  transform: scale(1.1);
}