/* Nabór na rok szkolny — landing dla dorosłych. Design source: design_handoff_zapisy_landing/README.md */

/* Strona używa domyślnego szablonu Divi (normalny nagłówek/stopka serwisu) —
   klasa .pms-page siedzi na KAŻDEJ sekcji lądowania (przez module_class w
   build-nabor-page.php), nie na <body>, żeby nie przefarbować reszty strony
   (menu, stopka witryny) na ciemno/pomarańczowo. */
.pms-page * { box-sizing: border-box; }
/* Atrybutowy selektor zamiast wyliczanki nazw sekcji — działa dla każdej
   obecnej i przyszłej strony lądowania korzystającej z tego arkusza. */
[class*="pms-section-"] {
	background: #00001A;
	color: #EDEEF5;
	font-family: Karla, system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
/* :where() keeps this at zero extra specificity so single-class overrides
   below (buttons, tiles, header phone link) always win regardless of source order. */
:where(.pms-page) a { color: #F8921C; text-decoration: none; }
:where(.pms-page) a:hover { color: #FFAC48; }
.pms-page :focus-visible { outline: 2px solid #F8921C; outline-offset: 2px; }
.pms-page summary { list-style: none; cursor: pointer; }
.pms-page summary::-webkit-details-marker { display: none; }
.pms-page input, .pms-page select, .pms-page textarea, .pms-page button { font-family: inherit; }
.pms-page input, .pms-page select, .pms-page textarea { width: 100%; min-width: 0; }
.pms-page input::placeholder, .pms-page textarea::placeholder { color: #5C5E7A; }

.pms-container { max-width: 1360px; margin: 0 auto; padding-left: clamp(20px, 5vw, 64px); padding-right: clamp(20px, 5vw, 64px); }

/* Buttons */
.pms-btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.pms-btn--accent { background: #F8921C; color: #00001A; border: none; }
.pms-btn--accent:hover { background: #FFAC48; color: #00001A; }
.pms-btn--outline { background: transparent; color: #EDEEF5; border: 1px solid #3A3A66; font-weight: 600; }
.pms-btn--outline:hover { border-color: #F8921C; color: #EDEEF5; }
.pms-btn--sm { padding: 10px 20px; font-size: 14px; }
.pms-btn--lg { padding: 16px 30px; font-size: 16px; }

/* 1. Header */
.pms-header {
	position: sticky; top: 0; z-index: 40;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 16px clamp(20px, 5vw, 64px);
	background: rgba(0,0,26,0.90);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid #1E1E3C;
}
.pms-header__brand { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.pms-header__name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.pms-header__sub { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #8E90AA; white-space: nowrap; }
.pms-header__actions { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
.pms-header__tel { font-size: 15px; font-weight: 500; color: #EDEEF5; white-space: nowrap; }
.pms-header__tel:hover { color: #F8921C; }

/* 2. Hero i inne dwukolumnowe sekcje z natywnym Image module — prawdziwe
   wiersze/kolumny Divi, nie CSS grid. Divi attribute max_width nie zawsze
   generuje CSS przy zapisie przez WP-CLI, więc wymuszamy własnym rules
   (patrz też: box-sizing, bo bez niego padding poszerza box poza 1360px). */
.pms-native-row,
body #page-container .et_pb_row.pms-native-row {
	width: 100% !important;
	max-width: 1360px !important; margin-left: auto !important; margin-right: auto !important;
	padding-left: clamp(20px, 5vw, 64px) !important; padding-right: clamp(20px, 5vw, 64px) !important;
	box-sizing: border-box !important;
	display: flex !important; align-items: center !important;
}
.pms-native-row--hero { padding-top: clamp(48px, 8vw, 104px) !important; padding-bottom: clamp(40px, 6vw, 80px) !important; }
.pms-native-row--section { padding-top: clamp(56px, 7vw, 96px) !important; padding-bottom: clamp(56px, 7vw, 96px) !important; }

/* Divi ma tylko garstkę gotowych podziałów kolumn (1_2, 3_5/2_5, ...) —
   wymuszamy dokładne proporcje z projektu bez względu na wybrany preset. */
.pms-hero-row > .et_pb_column:nth-child(1) { width: 55% !important; }
.pms-hero-row > .et_pb_column:nth-child(2) { width: 45% !important; }
.pms-teacher-row > .et_pb_column:nth-child(1) { width: 42.5% !important; }
.pms-teacher-row > .et_pb_column:nth-child(2) { width: 57.5% !important; }

.pms-hero-text { min-width: 0; }
/* Moduł Divi Image — puste (bez wgranego zdjęcia) pokazuje ten sam placeholder
   co wcześniej; po wgraniu zdjęcia w Builderze <img> wypełnia ramkę 4:5. */
.pms-hero-image {
	aspect-ratio: 4/5; border-radius: 18px; border: 1px solid #242446;
	overflow: hidden; background: repeating-linear-gradient(135deg, #0A0A24 0 12px, #0E0E2C 12px 24px);
}
.pms-hero-image .et_pb_image_wrap, .pms-hero-image img { width: 100%; height: 100%; display: block; }
.pms-hero-image img { object-fit: cover; }
.pms-badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 7px 14px 7px 12px; border: 1px solid #2C2C52; border-radius: 999px;
	margin-bottom: 28px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #C8CADD;
}
.pms-badge__dot { width: 7px; height: 7px; border-radius: 999px; background: #F8921C; flex-shrink: 0; }
.pms-h1 {
	font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
	font-size: clamp(40px, 6.4vw, 82px); line-height: 0.98; letter-spacing: -0.035em;
	margin: 0 0 24px; text-wrap: pretty;
}
.pms-accent-text { color: #F8921C; }
.pms-lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: #B9BBD0; max-width: 30em; margin: 0 0 36px; text-wrap: pretty; }
.pms-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.pms-hero__meta { display: flex; flex-wrap: wrap; gap: 28px; font-size: 14.5px; color: #8E90AA; }

/* 3. Instruments */
.pms-instruments { border-top: 1px solid #1A1A34; border-bottom: 1px solid #1A1A34; background: #060620; }
.pms-instruments .pms-container { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(40px, 5vw, 64px); }
.pms-eyebrow { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: #8E90AA; margin: 0 0 16px; }
.pms-instruments .pms-eyebrow { margin-bottom: 28px; }
.pms-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pms-pill { padding: 11px 20px; border: 1px solid #26264A; border-radius: 999px; font-size: 15.5px; color: #DCDEEE; display: inline-block; }
.pms-pill:hover { border-color: #F8921C; color: #FFFFFF; }

/* 4. Steps */
.pms-steps-section { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.pms-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 12px; text-wrap: pretty; }
.pms-section-lead { font-size: 17px; color: #8E90AA; margin: 0 0 48px; max-width: 34em; }
.pms-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.pms-step { border-top: 2px solid #26264A; padding-top: 22px; min-width: 0; }
.pms-step--accent { border-top-color: #F8921C; }
.pms-step__num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; letter-spacing: 0.16em; color: #6A6C88; margin-bottom: 14px; }
.pms-step--accent .pms-step__num { color: #F8921C; }
.pms-h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 21px; margin: 0 0 10px; letter-spacing: -0.01em; }
.pms-p { font-size: 16px; line-height: 1.65; color: #A6A8C0; margin: 0; }

/* 5. Signup */
.pms-signup { background: #060620; border-top: 1px solid #1A1A34; }
.pms-signup__grid {
	display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 5vw, 80px);
	padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
}
.pms-signup__info { min-width: 0; }
.pms-h2--signup { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.06; margin-bottom: 18px; }
.pms-signup__lead { font-size: 17px; line-height: 1.65; color: #A6A8C0; max-width: 30em; margin: 0 0 40px; text-wrap: pretty; }

.pms-tiles { display: grid; gap: 2px; border: 1px solid #1E1E3C; border-radius: 14px; overflow: hidden; margin-bottom: 32px; }
.pms-tile { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 20px 22px; background: #0B0B28; color: #EDEEF5; }
a.pms-tile:hover { background: #12123A; }
.pms-tile__label { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8E90AA; white-space: nowrap; }
.pms-tile__value { font-size: 15.5px; font-weight: 600; text-align: right; overflow-wrap: anywhere; }
.pms-tile__value--lg { font-size: 17px; font-weight: 700; text-align: left; }

.pms-hours { display: grid; gap: 10px; max-width: 380px; }
.pms-hours__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 16px; padding-bottom: 10px; border-bottom: 1px solid #1A1A34; }
.pms-hours__day { color: #B9BBD0; }
.pms-hours__time { font-weight: 600; white-space: nowrap; }

.pms-form-card { background: #0B0B28; border: 1px solid #242446; border-radius: 20px; padding: clamp(20px, 3vw, 40px); min-width: 0; }
.pms-form-note { font-size: 13.5px; color: #6A6C88; margin: 12px 0 0; text-align: center; }

/* Contact Form 7 styling — kontrakt pól: name(text) / email / phone(tel) /
   instrument(select) / slot(radio, .pms-slot-group) / message(textarea) /
   consent(checkbox, wymagany). Standardowe tagi CF7 dziedziczą ten wygląd. */
.pms-form .wpcf7-form p { display: grid; gap: 8px; margin: 0 0 18px; }
.pms-form .wpcf7-form > p:last-of-type { margin-bottom: 0; }
.pms-form label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #8E90AA; display: block; margin-bottom: 8px; }
.pms-form input[type=text],
.pms-form input[type=email],
.pms-form input[type=tel],
.pms-form select,
.pms-form textarea {
	width: 100%; min-width: 0; padding: 15px 16px; border-radius: 10px;
	border: 1px solid #2C2C52; background: #04041A; color: #EDEEF5;
	font-size: 16px; outline: none;
}
.pms-form input[type=text]:focus,
.pms-form input[type=email]:focus,
.pms-form input[type=tel]:focus,
.pms-form select:focus,
.pms-form textarea:focus { border-color: #F8921C; }
.pms-form textarea { resize: vertical; }
.pms-form .wpcf7-not-valid { border-color: #E2555F; }
.pms-form .wpcf7-not-valid-tip { color: #FF8B8B; font-size: 13px; margin-top: 6px; }
.pms-form .wpcf7-response-output { border-radius: 10px; border: 1px solid #2C2C52 !important; color: #EDEEF5; font-size: 14px; margin: 18px 0 0; padding: 12px 14px; }

.pms-form .pms-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: #A6A8C0; cursor: pointer; text-transform: none; letter-spacing: normal; }
.pms-form input[type=checkbox] { width: 18px; min-width: 0; height: 18px; accent-color: #F8921C; flex-shrink: 0; margin-top: 3px; }

/* CF7 zagnieżdża input WEWNĄTRZ <label> (nie jako rodzeństwo), więc pigułkę
   stylujemy na <label>, a stan zaznaczenia łapiemy przez :has(). */
.pms-form .pms-slot-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pms-form .pms-slot-group .wpcf7-list-item { margin: 0; }
.pms-form .pms-slot-group input[type=radio] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pms-form .pms-slot-group label {
	position: relative; display: inline-flex; align-items: center; width: auto;
	padding: 11px 18px; border-radius: 999px; border: 1px solid #2C2C52;
	background: transparent; color: #B9BBD0; font-size: 15px; font-weight: 500;
	cursor: pointer; white-space: nowrap; text-transform: none; letter-spacing: normal;
	margin-bottom: 0;
}
.pms-form .pms-slot-group label:has(input:checked) { border-color: #F8921C; background: rgba(248,146,28,0.16); color: #FFAC48; }
.pms-form .pms-slot-group input[type=radio]:focus-visible ~ .wpcf7-list-item-label { outline: 2px solid #F8921C; outline-offset: 2px; border-radius: 4px; }

/* Opcjonalny wrapper na parę e-mail/telefon w formularzu CF7: owiń oba pola
   w <div class="pms-form-row-2">…</div> (w edytorze CF7, w widoku HTML). */
.pms-form .pms-form-row-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; }

.pms-form input[type=submit],
.pms-form button[type=submit] {
	margin-top: 6px; width: 100%; padding: 17px 24px; border-radius: 999px;
	border: none; background: #F8921C; color: #00001A; font-size: 16.5px;
	font-weight: 700; cursor: pointer;
}
.pms-form input[type=submit]:hover,
.pms-form button[type=submit]:hover { background: #FFAC48; }
.pms-form .wpcf7-spinner { margin-left: 10px; }

/* Post-submit confirmation state (toggled by zapisy.js on wpcf7mailsent) */
.pms-form-sent { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; min-height: 420px; }
.pms-form-sent[hidden] { display: none; }
.pms-form-sent__check { width: 44px; height: 44px; border-radius: 999px; background: #F8921C; color: #00001A; display: grid; place-items: center; font-size: 22px; font-weight: 700; }
.pms-form-sent__title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin: 0; }
.pms-form-sent__text { font-size: 16.5px; line-height: 1.6; color: #A6A8C0; margin: 0; max-width: 28em; }
.pms-form-sent__reset { margin-top: 8px; width: auto; padding: 12px 22px; font-size: 15px; font-weight: 600; }

/* 6. Map */
.pms-map-section {
	display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(28px, 4vw, 56px); align-items: center;
	padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
}
.pms-map__info { min-width: 0; }
.pms-h2--sm { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; margin: 0 0 18px; text-wrap: pretty; }
.pms-map__lead { font-size: 16.5px; line-height: 1.7; color: #A6A8C0; margin: 0 0 24px; max-width: 28em; }
.pms-link-arrow { font-size: 16px; font-weight: 600; }
.pms-map__embed { aspect-ratio: 16/10; border-radius: 18px; border: 1px solid #242446; overflow: hidden; min-width: 0; }
/* Complianz (RODO) blokuje mapę do zgody na cookies i wstawia własny
   placeholder wewnątrz dodatkowego .cmplz-placeholder-parent — dociągamy
   cały łańcuch do 100%, bo inaczej box się nie wypełnia. */
.pms-map__embed .cmplz-placeholder-parent { width: 100%; height: 100%; }
.pms-map__embed iframe,
.pms-map__embed .cmplz-placeholder-element {
	width: 100% !important; height: 100% !important; border: 0; display: block;
	object-fit: cover; background-size: cover !important; background-position: center !important;
}

/* 7. FAQ */
.pms-faq { background: #060620; border-top: 1px solid #1A1A34; border-bottom: 1px solid #1A1A34; }
.pms-faq__inner {
	display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(28px, 4vw, 64px);
	padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
}
.pms-faq__inner > .pms-h2--sm { margin: 0; min-width: 0; }
.pms-faq__list { display: grid; min-width: 0; }
.pms-faq__item { border-top: 1px solid #1E1E3C; padding: 22px 0; }
.pms-faq__q { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: clamp(18px, 1.6vw, 21px); color: #EDEEF5; letter-spacing: -0.01em; }
.pms-faq__plus { color: #F8921C; font-size: 22px; line-height: 1; flex-shrink: 0; }
.pms-faq__a { font-size: 16.5px; line-height: 1.7; color: #A6A8C0; margin: 14px 0 0; max-width: 46em; }

/* 8. Footer */
.pms-footer { max-width: 1360px; margin: 0 auto; padding: clamp(44px, 5vw, 72px) clamp(20px, 5vw, 64px); }
.pms-footer__cols { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 32px; margin-bottom: 40px; }
.pms-footer__col { display: grid; gap: 8px; align-content: start; font-size: 15.5px; color: #B9BBD0; min-width: 0; }
.pms-footer__brand { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 2px; }
.pms-footer__desc { font-size: 15.5px; line-height: 1.6; color: #8E90AA; margin: 0; max-width: 24em; }
.pms-footer__eyebrow { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #6A6C88; margin-bottom: 4px; }
.pms-footer__bottom { border-top: 1px solid #1A1A34; padding-top: 22px; font-size: 13.5px; color: #6A6C88; }

/* 9. Sticky CTA */
.pms-sticky-cta {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 14px clamp(16px, 4vw, 40px);
	background: rgba(4,4,30,0.94);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border-top: 1px solid #242446;
}
.pms-sticky-cta span { font-size: 15px; color: #B9BBD0; }
body.pms-page { padding-bottom: 76px; }

/* --- Zespół wokalny — komponenty specyficzne dla tej strony --- */
.pms-hero-kicker { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(18px, 1.6vw, 22px); font-weight: 600; letter-spacing: -0.01em; color: #EDEEF5; margin: 0 0 24px; }

.pms-stats-section { background: #060620; border-top: 1px solid #1A1A34; border-bottom: 1px solid #1A1A34; }
.pms-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pms-stat { padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 48px); min-width: 0; }
.pms-stat--mid { border-left: 1px solid #1A1A34; border-right: 1px solid #1A1A34; }
.pms-stat__label { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #8E90AA; margin-bottom: 12px; }
.pms-stat__value { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; }
.pms-stat__value--accent { color: #F8921C; }
.pms-stat__value--place { font-weight: 600; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.35; }
.pms-stat__sub { color: #B9BBD0; }

.pms-lead-split { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr); gap: clamp(28px, 4vw, 72px); padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.pms-lead-split h2 { min-width: 0; }
.pms-lead-split__body { min-width: 0; }
.pms-lead-split__body p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.72; color: #B9BBD0; margin: 0 0 28px; max-width: 40em; text-wrap: pretty; }
.pms-lead-split__body p:last-child { margin-bottom: 0; }

.pms-teacher-section { background: #060620; border-top: 1px solid #1A1A34; border-bottom: 1px solid #1A1A34; }
/* .pms-teacher-row: patrz reguły .pms-native-row / nth-child przy 2. Hero — ten
   sam mechanizm, inne proporcje (0.85fr/1.15fr z projektu). */
.pms-teacher-image { aspect-ratio: 1/1; border-radius: 18px; border: 1px solid #242446; overflow: hidden; background: repeating-linear-gradient(45deg, #0A0A24 0 14px, #0E0E2C 14px 28px); }
.pms-teacher-image .et_pb_image_wrap, .pms-teacher-image img { width: 100%; height: 100%; display: block; }
.pms-teacher-image img { object-fit: cover; }
.pms-teacher-info { min-width: 0; }
.pms-teacher-info p { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.7; color: #B9BBD0; margin: 0; max-width: 32em; text-wrap: pretty; }

.pms-join-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(36px, 5vw, 80px); padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.pms-join-info { min-width: 0; }
.pms-join-lead { font-size: 17px; line-height: 1.65; color: #A6A8C0; margin: 0 0 40px; max-width: 30em; text-wrap: pretty; }

/* Responsive: 1024px — all two/three column grids collapse to one column */
@media (max-width: 1024px) {
	.pms-signup__grid,
	.pms-map-section,
	.pms-faq__inner,
	.pms-steps,
	.pms-footer__cols,
	.pms-stats,
	.pms-lead-split,
	.pms-join-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	/* Natywne wiersze Divi (hero, prowadząca) — Divi sam składa kolumny w
	   stos na tablecie/mobile, ale nasze wymuszone % szerokości trzeba
	   zresetować, inaczej zostają węższe niż 100%. */
	.pms-hero-row > .et_pb_column,
	.pms-teacher-row > .et_pb_column {
		width: 100% !important;
	}
	.pms-native-row { flex-wrap: wrap !important; }
	.pms-hero-image, .pms-teacher-image { max-width: 460px; }
	.pms-stat--mid { border-left: none; border-right: none; border-top: 1px solid #1A1A34; border-bottom: 1px solid #1A1A34; }
}

/* Responsive: 520px — email/phone pair collapses to one column */
@media (max-width: 520px) {
	.pms-form .wpcf7-form .pms-form-row-2 { grid-template-columns: minmax(0, 1fr); }
}

/* Header on narrow screens: keep brand + phone + CTA on one line without overflow */
@media (max-width: 480px) {
	.pms-header { padding: 14px 16px; gap: 12px; }
	.pms-header__tel { display: none; }
}
