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

:root {
  --malinowy: #D14D72;
  --burgund: #6E2132;
  --off-white: #F4F1EE;
  --porcelanowy: #F6E9EC;
  --czern: #121212;
  --red-bye: #E8342A;
  --font-main: 'DM Sans', sans-serif;
  --font-logo: 'Poller One', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--czern);
  overflow-x: hidden;
}

/* NAV */
nav.pm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 5%;
  background: rgba(244,241,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209,77,114,0.15);
}
nav.pm-nav .nav-logo {
  font-family: var(--font-main);
  font-weight: 900; font-size: 15px;
  letter-spacing: -0.3px; color: var(--czern);
  text-decoration: none;
}
nav.pm-nav .nav-logo span { color: var(--malinowy); }
nav.pm-nav ul {
  list-style: none;
  display: flex; gap: 2.5rem;
}
nav.pm-nav ul li a {
  font-size: 14px; font-weight: 400;
  color: var(--czern); text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
nav.pm-nav ul li a:hover { opacity: 1; }
nav.pm-nav .nav-cta {
  background: var(--malinowy); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
nav.pm-nav .nav-cta:hover { background: var(--burgund); transform: scale(1.02); }

/* HERO */
.pm-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 7rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18; pointer-events: none;
  z-index: -1;
}
.hero-bg-blob-1 {
  width: 850px; height: 850px;
  background: var(--malinowy);
  top: -250px; right: -180px;
  opacity: 0.4; filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-bg-blob-2 {
  width: 400px; height: 400px;
  background: var(--burgund);
  bottom: -100px; left: -80px;
  animation: blobFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,20px) scale(1.08); }
}
.collab-tag {
  display: inline-block;
  background: var(--porcelanowy);
  border: 1px solid rgba(209,77,114,0.3);
  color: var(--malinowy);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 100px;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.7s ease both;
}
.hero-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s ease 0.1s both;
}
.hero-logo-pm {
  height: 62px; width: auto;
}
.hero-logo-bye {
  height: 62px; width: auto;
}

.pm-logo .pm-top {
  font-family: var(--font-main);
  font-weight: 300; font-size: 18px;
  color: var(--burgund); letter-spacing: 0.5px;
}
.pm-logo .pm-bottom {
  font-family: var(--font-logo);
  font-size: 42px; color: var(--malinowy); letter-spacing: -1px;
}
.pm-logo .pm-bottom span { font-size: 48px; }
.collab-x {
  font-size: 28px; font-weight: 900;
  color: var(--czern); opacity: 0.25; padding: 0 0.5rem;
}
.bye-logo-wrap {
  background: var(--red-bye);
  border-radius: 18px; padding: 14px 22px;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.bye-rocket { font-size: 22px; color: #fff; line-height: 1; }
.bye-text { font-family: var(--font-logo); font-size: 32px; color: #fff; letter-spacing: -1px; }
.bye-sub {
  font-size: 9px; color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px; text-transform: uppercase; font-weight: 700;
  text-align: center; line-height: 1.3;
}
.pm-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  max-width: 820px; margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.pm-hero h1 em { font-style: normal; color: var(--malinowy); }
.hero-desc {
  font-size: 1.1rem; font-weight: 300;
  max-width: 580px; line-height: 1.8;
  color: rgba(18,18,18,0.7); margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.9s ease 0.45s both;
}
.btn-primary {
  background: var(--malinowy); color: #fff;
  padding: 0.85rem 2.2rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(209,77,114,0.3);
}
.btn-primary:hover { background: var(--burgund); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--czern);
  border: 1.5px solid rgba(18,18,18,0.25);
  padding: 0.85rem 2.2rem; border-radius: 100px;
  font-weight: 400; font-size: 1rem; text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--malinowy); color: var(--malinowy); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(18,18,18,0.4);
  animation: bounce 2s ease infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(209,77,114,0.5), transparent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* SHARED */
.pm-section { padding: 7rem 5%; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: var(--malinowy); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em { font-style: normal; color: var(--malinowy); }

/* O NAS */
.pm-about { background: var(--czern); color: var(--off-white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.pm-about .section-label { color: var(--malinowy); }
.pm-about .section-title { color: #fff; }
.about-desc { font-size: 1rem; line-height: 1.9; font-weight: 300; color: rgba(244,241,238,0.7); margin-bottom: 2rem; }
.about-advantage {
  background: rgba(209,77,114,0.1);
  border: 1px solid rgba(209,77,114,0.3);
  border-radius: 16px; padding: 1.5rem; margin-top: 2rem;
}
.about-advantage h4 {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--malinowy); margin-bottom: 0.8rem;
}
.about-advantage p { font-size: 0.95rem; line-height: 1.75; font-weight: 300; color: rgba(244,241,238,0.75); }
.persons-grid { display: flex; flex-direction: column; gap: 2rem; }
.person-card { display: flex; flex-direction: column; gap: 1rem; }
.person-photo-row { display: flex; align-items: center; gap: 1.5rem; }
.person-photo {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; border: 3px solid var(--malinowy);
}
.person-bye .person-photo { border-color: var(--malinowy); }
.person-info h3 { font-size: 1.15rem; font-weight: 900; color: #fff; margin-bottom: 0.25rem; }
.person-role { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.person-pm .person-role { color: var(--malinowy); }
.person-bye .person-role { color: var(--malinowy); }
.person-bio { font-size: 0.9rem; line-height: 1.8; font-weight: 300; color: rgba(244,241,238,0.65); }
.person-divider { border: none; border-top: 1px solid rgba(244,241,238,0.1); margin: 0.5rem 0; }

/* PAKIETY */
.pm-packages { background: var(--off-white); }
.packages-inner { max-width: 1200px; margin: 0 auto; }
.packages-header { max-width: 600px; margin-bottom: 4rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pkg-card {
  background: #fff; border: 1.5px solid rgba(18,18,18,0.08);
  border-radius: 24px; padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.pkg-card.featured {
  border-color: var(--malinowy); border-width: 2px;
  box-shadow: 0 16px 40px rgba(209,77,114,0.12);
  position: relative;
}
.pkg-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  background: var(--malinowy); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
}
.pkg-name { font-family: var(--font-logo); font-size: 2rem; color: var(--malinowy); margin-bottom: 0.3rem; }
.pkg-tagline { font-size: 0.85rem; font-weight: 700; color: rgba(18,18,18,0.5); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.2rem; }
.pkg-desc { font-size: 0.9rem; line-height: 1.75; font-weight: 300; color: rgba(18,18,18,0.65); margin-bottom: 1.5rem; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pkg-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; line-height: 1.5; color: rgba(18,18,18,0.7); }
.pkg-features li::before { content: '—'; color: var(--malinowy); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pkg-cta {
  display: block; text-align: center; margin-top: 2rem;
  background: var(--malinowy); color: #fff;
  padding: 0.75rem; border-radius: 100px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s;
}
.pkg-cta:hover { background: var(--burgund); }

/* KORZYŚCI */
.pm-benefits { background: var(--porcelanowy); }
.benefits-inner { max-width: 1200px; margin: 0 auto; }
.benefits-header { max-width: 560px; margin-bottom: 4rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.benefit-card {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(209,77,114,0.12); transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--porcelanowy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.2rem;
  border: 1px solid rgba(209,77,114,0.2);
}
.benefit-card h3 { font-size: 1rem; font-weight: 900; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.88rem; line-height: 1.75; font-weight: 300; color: rgba(18,18,18,0.65); }

/* KONTAKT */
.pm-contact { background: var(--czern); color: var(--off-white); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.pm-contact .section-title { color: #fff; }
.contact-desc { font-size: 1rem; line-height: 1.8; font-weight: 300; color: rgba(244,241,238,0.65); margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-row { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: rgba(244,241,238,0.65); }
.contact-info-row span:first-child { font-weight: 700; color: var(--malinowy); min-width: 80px; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(244,241,238,0.5); }
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 0.85rem 1rem;
  color: var(--off-white); font-family: var(--font-main);
  font-size: 0.95rem; font-weight: 300;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--malinowy); }
.form-field select option { background: var(--czern); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--malinowy); color: #fff;
  border: none; border-radius: 100px;
  padding: 1rem 2.5rem;
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: #be3d60; transform: translateY(-2px); }

/* WPForms overrides — żeby pasował do ciemnej sekcji kontakt */
.contact-form-wrap .wpforms-container { margin: 0 !important; }
.contact-form-wrap .wpforms-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form-wrap .wpforms-field { padding: 0 !important; margin: 0 !important; }
.contact-form-wrap .wpforms-field-container { margin: 0 !important; }
.contact-form-wrap .wpforms-field-label,
.contact-form-wrap .wpforms-field label {
  font-size: 12px !important; font-weight: 700 !important; letter-spacing: 1px !important;
  text-transform: uppercase !important; color: rgba(244,241,238,0.5) !important;
  font-family: var(--font-main) !important; margin-bottom: 0.5rem !important;
}
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap input[type=number],
.contact-form-wrap input[type=url],
.contact-form-wrap textarea,
.contact-form-wrap select,
.contact-form-wrap .wpforms-field input,
.contact-form-wrap .wpforms-field textarea,
.contact-form-wrap .wpforms-field select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 12px !important;
  padding: 0.85rem 1rem !important;
  color: var(--off-white) !important;
  font-family: var(--font-main) !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(244,241,238,0.35) !important; }
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus { border-color: var(--malinowy) !important; }
.contact-form-wrap select option { background: var(--czern) !important; color: var(--off-white) !important; }
.contact-form-wrap textarea { min-height: 130px !important; resize: vertical !important; }
.contact-form-wrap .wpforms-submit-container { padding: 0 !important; margin-top: 0.5rem !important; display: flex !important; justify-content: center !important; }
.contact-form-wrap button[type=submit],
.contact-form-wrap .wpforms-submit {
  background: var(--malinowy) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 1rem 3rem !important;
  font-family: var(--font-main) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
}
.contact-form-wrap button[type=submit]:hover,
.contact-form-wrap .wpforms-submit:hover { background: #be3d60 !important; transform: translateY(-2px) !important; }
.contact-form-wrap .wpforms-field-required { color: var(--malinowy) !important; }
.contact-form-wrap .wpforms-error { color: #ff8a9e !important; font-size: 0.8rem !important; margin-top: 4px !important; }
.contact-form-wrap .wpforms-confirmation-container,
.contact-form-wrap .wpforms-confirmation-container-full {
  background: rgba(42,122,74,0.15) !important;
  border: 1px solid rgba(42,122,74,0.4) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  color: var(--off-white) !important;
}

/* FAQ */
.pm-faq { background: var(--off-white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-inner .section-label, .faq-inner .section-title { text-align: center; }
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(18,18,18,0.1); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; text-align: left;
  font-family: var(--font-main); font-size: 1rem; font-weight: 700;
  color: var(--czern); gap: 1rem;
}
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--porcelanowy); border: 1px solid rgba(209,77,114,0.3);
  position: relative; flex-shrink: 0; color: var(--malinowy);
  font-size: 0;
  transition: transform 0.25s, background 0.2s;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--malinowy); color: #fff; }
.faq-a {
  font-size: 0.93rem; line-height: 1.8; font-weight: 300;
  color: rgba(18,18,18,0.65);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s; padding: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }

/* FOOTER */
.pm-footer {
  background: var(--czern); color: rgba(244,241,238,0.4);
  padding: 4rem 5% 2.5rem;
  font-size: 0.82rem; font-weight: 300;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(244,241,238,0.5); margin-bottom: 0.4rem;
}
.footer-col a {
  color: rgba(244,241,238,0.65); text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--malinowy); }
.footer-col span { color: rgba(244,241,238,0.45); }
.footer-brands { display: flex; align-items: center; gap: 0.8rem; font-weight: 700; font-size: 1rem; flex-wrap: wrap; }
.footer-brands .pm { color: var(--malinowy); }
.footer-brands .x { color: rgba(244,241,238,0.2); }
.footer-brands .bye { color: var(--off-white); }
.footer-tagline { margin-top: 1rem; line-height: 1.7; color: rgba(244,241,238,0.45); max-width: 340px; }
.footer-rodo {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(244,241,238,0.1);
  padding-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem;
}
.footer-rodo p { font-size: 0.74rem; line-height: 1.7; color: rgba(244,241,238,0.35); }
.footer-rodo strong { color: rgba(244,241,238,0.55); font-weight: 700; }
.footer-rodo a { color: var(--malinowy); text-decoration: none; }
.footer-rodo a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(244,241,238,0.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
}
.footer-made { color: rgba(244,241,238,0.3); letter-spacing: 1px; text-transform: uppercase; font-size: 0.68rem; }

/* ANIMATIONS */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* STRONA PRAWNA (regulamin / polityki) */
.legal-hero {
  padding: 9rem 5% 3rem; text-align: center;
  background: var(--off-white);
}
.legal-hero .section-label { color: var(--malinowy); }
.legal-hero h1 {
  font-family: var(--font-main); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--czern); margin-top: 0.5rem; letter-spacing: -1px;
}
.legal-hero .legal-updated {
  margin-top: 1rem; font-size: 0.85rem; color: rgba(18,18,18,0.45);
}
.legal-wrap {
  max-width: 820px; margin: 0 auto; padding: 1rem 5% 6rem;
}
.legal-wrap h2 {
  font-family: var(--font-main); font-weight: 900;
  font-size: 1.15rem; color: var(--burgund);
  margin: 2.5rem 0 1rem; letter-spacing: -0.2px;
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p, .legal-wrap li {
  font-size: 0.95rem; line-height: 1.85; font-weight: 300;
  color: rgba(18,18,18,0.78); margin-bottom: 0.9rem;
}
.legal-wrap ol, .legal-wrap ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-wrap li { margin-bottom: 0.5rem; }
.legal-wrap strong { font-weight: 700; color: var(--czern); }
.legal-wrap a { color: var(--malinowy); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-note {
  background: var(--porcelanowy); border: 1px solid rgba(209,77,114,0.25);
  border-radius: 16px; padding: 1.4rem 1.6rem; margin: 2rem 0;
  font-size: 0.9rem; line-height: 1.7; color: rgba(18,18,18,0.7);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .packages-grid { grid-template-columns: 1fr; }
  nav.pm-nav ul { display: none; }
  .person-photo { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
  .pm-hero h1 { font-size: 1.9rem; }
  .pm-logo .pm-bottom { font-size: 30px; }
  .bye-text { font-size: 24px; }
  .pm-section { padding: 5rem 5%; }
  .person-photo { width: 110px; height: 110px; }
  .person-photo-row { gap: 1rem; }
  .hero-logo-pm { height: 44px; width: auto; }
  .hero-logo-bye { height: 72px; width: auto; }
  .hero-logos { flex-direction: column; gap: 1.2rem; }
  .hero-bg-blob-1 {
    top: auto; bottom: -200px; right: -120px; left: auto;
    width: 700px; height: 700px; opacity: 0.5;
  }
  .hero-bg-blob-2 { opacity: 0.12; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
