:root {
  color-scheme: dark;
  --black: #080808;
  --surface: #121212;
  --surface-2: #1b1b1b;
  --line: rgba(255, 255, 255, .12);
  --muted: #a8a8a8;
  --white: #fff;
  --red: #e50914;
  --red-dark: #b70710;
  --gold: #d8b36a;
  --page: min(1440px, calc(100vw - 8vw));
  --font: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand {
  color: var(--red);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 82px;
  align-items: center;
  gap: 58px;
  transform: translateX(-50%);
}

.site-header--solid {
  position: relative;
  left: auto;
  width: 100%;
  height: 76px;
  padding-inline: max(4vw, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, .96);
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d5d5d5;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav .is-current {
  color: var(--white);
}

.site-nav .is-current::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

.header-actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 14px;
}

.city-trigger {
  display: flex;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, .55);
  font-size: 14px;
  font-weight: 600;
}

.city-trigger:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 10px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.menu-toggle b {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .72) 40%, rgba(0, 0, 0, .15) 74%),
    linear-gradient(0deg, var(--black) 0%, transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(229, 9, 20, .24), transparent 25%),
    linear-gradient(135deg, #080808 10%, #251318 57%, #090909 100%);
}

.hero--home::before,
.hero--home::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,0)),
    var(--surface-2);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  content: "";
  transform: rotate(7deg);
}

.hero--home::before {
  top: 62px;
  right: 5vw;
  width: min(38vw, 530px);
  height: 620px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 29%, #6b363d 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 67%, #30171c 0 27%, transparent 27.5%),
    linear-gradient(150deg, #291317, #0e0e0e);
}

.hero--home::after {
  top: 146px;
  right: 35vw;
  width: 210px;
  height: 300px;
  border-radius: 10px;
  opacity: .6;
  transform: rotate(-9deg);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--page);
  padding-top: 185px;
  margin: auto;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0;
  color: #d0d0d0;
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--red);
  color: var(--white);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--glass,
.button--secondary {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

.button--glass:hover,
.button--secondary:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.16);
}

.button--small {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
}

.trust-line {
  display: flex;
  margin: 32px 0 0;
  align-items: center;
  gap: 10px;
  color: #9d9d9d;
  font-size: 12px;
}

.trust-line span {
  color: var(--red);
}

.hero--archive {
  min-height: 340px;
  padding: 112px max(4vw, calc((100vw - 1440px) / 2)) 68px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.36)),
    radial-gradient(circle at 82% 50%, rgba(229, 9, 20, .28), transparent 24%),
    linear-gradient(135deg, #1f1215, #080808 70%);
}

.hero--archive h1 {
  max-width: 800px;
  font-size: clamp(38px, 4vw, 58px);
}

.hero--archive > div > p:last-child {
  margin: 18px 0 0;
  color: #bbb;
  font-size: 18px;
}

.catalog-section {
  position: relative;
  z-index: 5;
  width: var(--page);
  padding: 42px 0 100px;
  margin: -46px auto 0;
}

.catalog-section--archive {
  margin-top: 0;
}

.section-heading {
  display: flex;
  margin-bottom: 25px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 36px);
  letter-spacing: -.025em;
}

.result-count {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.filter-open {
  display: none;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  font-weight: 700;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
}

.filter-panel {
  align-self: start;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #101010;
}

.filter-heading {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.filter-heading button {
  display: none;
  padding: 0;
  background: transparent;
  font-size: 28px;
}

.filter-panel h2 {
  margin: 22px 0 10px;
  color: #c7c7c7;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

[data-pbn-slot="filter-items"] {
  display: grid;
  gap: 2px;
}

[data-pbn-slot="filter-items"] a {
  display: flex;
  padding: 9px 10px;
  border-radius: 3px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

[data-pbn-slot="filter-items"] a:hover,
[data-pbn-slot="filter-items"] a.is-active {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}

[data-pbn-slot="filter-items"] a.is-active {
  box-shadow: inset 2px 0 var(--red);
}

[data-pbn-slot="filter-items"] small {
  color: #666;
}

.filter-block label {
  display: grid;
  margin-bottom: 13px;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.filter-block select {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #1c1c1c;
}

.filter-block .button {
  margin-top: 8px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 14px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border-radius: 7px;
  background: var(--surface);
  transition: z-index .2s ease, transform .25s ease, box-shadow .25s ease;
}

.profile-card:hover {
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .65);
  transform: translateY(-6px) scale(1.015);
}

.profile-card > a:first-child,
[data-pbn-slot="card-media"] {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #21191b;
}

.profile-card > a:first-child::after,
[data-pbn-slot="card-media"]::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  content: "";
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.profile-card:hover img {
  transform: scale(1.04);
}

.profile-card--alt img { filter: hue-rotate(330deg) brightness(.8); }
.profile-card--warm img { filter: sepia(.4) brightness(.78); }
.profile-card--cool img { filter: hue-rotate(150deg) brightness(.72); }
.profile-card--rose img { filter: hue-rotate(300deg) brightness(.82); }
.profile-card--gold img { filter: sepia(.75) brightness(.74); }

.card-badges {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-badges span,
.card-badges b {
  padding: 5px 7px;
  border-radius: 2px;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(7px);
}

.card-badges span::before {
  margin-right: 4px;
  color: var(--red);
  content: "✓";
}

.card-badges b {
  background: var(--red);
}

.card-body {
  display: flex;
  min-height: 76px;
  padding: 14px 14px 15px;
  align-items: center;
  justify-content: space-between;
}

.card-body h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.02em;
}

.card-body p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.card-body button {
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #242424;
  font-size: 17px;
  transition: background .2s ease, transform .2s ease;
}

.card-body button:hover {
  background: var(--red);
  transform: rotate(10deg);
}

.seo-section {
  width: var(--page);
  padding: 96px 0 110px;
  margin: auto;
  border-top: 1px solid var(--line);
}

.seo-section > h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(36px, 4.3vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

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

.benefit-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(145deg, #1d1720, #101010);
}

.benefit-grid article > span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 76px 0 10px;
  font-size: 20px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  width: var(--page);
  padding: 54px 0 36px;
  margin: auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-top p {
  font-size: 14px;
}

.footer-links {
  display: flex;
  margin: 42px 0 34px;
  flex-wrap: wrap;
  gap: 18px 36px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-note {
  margin: 0;
  color: #666;
  font-size: 11px;
}

.dialog-shell {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(7px);
}

.dialog-card {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  background: #181818;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
}

.dialog-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.dialog-card h2 {
  margin: 0 0 22px;
  font-size: 28px;
}

.dialog-title button,
.dialog-card--phone > button {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #2b2b2b;
  font-size: 24px;
}

.dialog-card input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #101010;
}

.city-list {
  display: grid;
  margin-top: 12px;
}

.city-list a {
  display: flex;
  padding: 14px 3px;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
}

.city-list a:hover {
  color: var(--red);
}

.city-list small {
  color: var(--muted);
}

.dialog-card--phone {
  text-align: center;
}

.dialog-card--phone p:not(.eyebrow) {
  color: var(--muted);
}

.dialog-card--phone [data-phone-link] {
  display: block;
  padding: 15px;
  margin-top: 24px;
  border-radius: 4px;
  background: var(--red);
  font-size: 21px;
  font-weight: 800;
}

.profile-main {
  width: var(--page);
  padding: 34px 0 100px;
  margin: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.back-link:hover {
  color: var(--white);
}

.profile-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr);
  gap: 28px;
}

.profile-heading {
  display: flex;
  grid-column: 1 / -1;
  align-items: end;
  justify-content: space-between;
}

.profile-heading h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  letter-spacing: -.04em;
}

.profile-location {
  margin: 9px 0 0;
  color: var(--muted);
}

.save-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  font-size: 24px;
}

.profile-gallery {
  display: grid;
  overflow: hidden;
  height: min(66vw, 650px);
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  border-radius: 8px;
  background: var(--surface);
}

.profile-gallery > img,
.profile-gallery [data-gallery-secondary] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-gallery [data-gallery-secondary] {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.profile-gallery [data-gallery-secondary] img:nth-child(2) {
  filter: hue-rotate(330deg) brightness(.78);
}

.contact-card {
  position: sticky;
  top: 25px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #20171a, #111);
}

.contact-card > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 12px;
}

.contact-card > strong {
  display: block;
  margin-bottom: 22px;
  font-size: 30px;
}

.contact-card > strong small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.contact-card .button {
  width: 100%;
}

.contact-card > small {
  display: block;
  margin-top: 14px;
  color: #777;
  text-align: center;
}

.profile-content {
  display: grid;
  grid-column: 1;
  gap: 0;
}

.profile-content > section,
.profile-content > dl {
  padding: 55px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.profile-content h2 {
  margin: 0 0 22px;
  font-size: 30px;
  letter-spacing: -.025em;
}

[data-pbn-surface="profile-description"] > p:not(.eyebrow) {
  max-width: 760px;
  color: #c8c8c8;
  font-size: 17px;
  line-height: 1.75;
}

[data-pbn-surface="profile-characteristics"] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

[data-pbn-surface="profile-characteristics"] div {
  padding: 18px;
  border-radius: 5px;
  background: var(--surface);
}

[data-pbn-surface="profile-characteristics"] dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

[data-pbn-surface="profile-characteristics"] dd {
  margin: 0;
  font-weight: 700;
}

[data-pbn-surface="profile-prices"] > div {
  display: flex;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

[data-pbn-surface="profile-prices"] > div span {
  color: var(--gold);
  font-weight: 800;
}

[data-pbn-surface="profile-services"] ul {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

[data-pbn-surface="profile-services"] li {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #d0d0d0;
}

[data-pbn-surface="profile-services"] li::before {
  margin-right: 8px;
  color: var(--red);
  content: "✓";
}

[data-pbn-surface="profile-report"] summary {
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

[data-abuse-form] {
  display: grid;
  max-width: 600px;
  margin-top: 20px;
  gap: 10px;
}

[data-abuse-form] label {
  font-size: 13px;
}

[data-abuse-form] textarea {
  min-height: 120px;
  padding: 13px;
  border: 1px solid #444;
  border-radius: 4px;
  background: var(--surface);
  resize: vertical;
}

[data-abuse-form] .button {
  justify-self: start;
}

.form-success {
  display: none;
  color: #72d998;
}

[data-abuse-form][data-sent="true"] .form-success {
  display: block;
}

@media (max-width: 1050px) {
  :root { --page: calc(100vw - 48px); }
  .site-header { gap: 32px; }
  .site-nav { gap: 20px; }
  .hero--home::before { right: -6vw; width: 48vw; }
  .hero--home::after { display: none; }
  .catalog-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 18px; }
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-detail { grid-template-columns: minmax(0, 1fr) 285px; }
  [data-pbn-surface="profile-characteristics"] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 28px); }
  .site-header,
  .site-header--solid { height: 66px; padding-inline: 0; }
  .site-header--solid { width: var(--page); margin: auto; border-bottom: 0; }
  .brand { font-size: 23px; }
  .site-nav { position: absolute; top: 58px; right: 0; display: none; width: 210px; padding: 15px; border: 1px solid var(--line); border-radius: 5px; align-items: stretch; flex-direction: column; background: #181818; }
  .site-header:has(.menu-toggle[aria-expanded="true"]) .site-nav { display: flex; }
  .site-nav .is-current::after { display: none; }
  .city-trigger { min-height: 36px; padding: 7px 10px; font-size: 12px; }
  .city-trigger span { display: none; }
  .menu-toggle { display: block; }
  .hero--home { min-height: 660px; text-align: center; }
  .hero--home::before { top: 0; right: -22%; width: 95%; height: 70%; opacity: .36; transform: rotate(10deg); }
  .hero--home::after { display: none; }
  .hero--home { background: linear-gradient(0deg, var(--black) 5%, rgba(0,0,0,.32) 67%, rgba(0,0,0,.7)), linear-gradient(135deg, #1d0f12, #080808); }
  .hero-content { display: flex; min-height: 660px; padding: 155px 0 55px; align-items: center; flex-direction: column; justify-content: flex-end; }
  .hero h1 { font-size: 39px; line-height: 1.06; }
  .hero-copy { margin: 20px 0; font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-line { display: none; }
  .hero--archive { min-height: 280px; padding: 110px 14px 45px; }
  .hero--archive h1 { font-size: 38px; }
  .hero--archive > div > p:last-child { font-size: 15px; }
  .catalog-section { padding: 30px 0 70px; margin-top: 0; }
  .section-heading { align-items: center; }
  .section-heading h2 { font-size: 25px; }
  .filter-open { display: block; }
  .catalog-layout { display: block; }
  .filter-panel { position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; width: min(350px, 90vw); padding: 24px; border-radius: 0; overflow-y: auto; box-shadow: -30px 0 80px rgba(0,0,0,.8); transform: translateX(105%); transition: transform .3s ease; }
  .filter-panel.is-open { transform: translateX(0); }
  .filter-heading button { display: block; }
  .profile-grid { gap: 16px 8px; }
  .card-body { min-height: 68px; padding: 11px; }
  .card-body h2 { font-size: 16px; }
  .card-body button { width: 31px; height: 31px; }
  .card-badges { top: 8px; right: 8px; left: 8px; }
  .card-badges b { display: none; }
  .seo-section { padding: 65px 0 75px; }
  .seo-section > h2 { font-size: 36px; }
  .benefit-grid { margin-top: 35px; grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 190px; }
  .benefit-grid h3 { margin-top: 45px; }
  .footer-top { align-items: start; flex-direction: column; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .dialog-card { padding: 25px 20px; }
  .profile-main { padding-top: 22px; }
  .profile-detail { display: flex; flex-direction: column; }
  .profile-heading { align-items: center; }
  .profile-heading h1 { font-size: 38px; }
  .profile-gallery { height: 115vw; grid-template-columns: 1fr; }
  .profile-gallery [data-gallery-secondary] { display: none; }
  .contact-card { position: relative; top: 0; order: 3; }
  .profile-content { order: 4; }
  [data-pbn-surface="profile-characteristics"] { grid-template-columns: repeat(2, 1fr); }
  [data-pbn-surface="profile-services"] ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .profile-card > a:first-child,
  [data-pbn-slot="card-media"] { aspect-ratio: 3 / 4; }
  .card-body button { display: none; }
  [data-pbn-surface="profile-services"] ul { grid-template-columns: 1fr; }
}


/* Functional gallery compatibility generated by the adapter. */
.gallery-item{cursor:zoom-in}
.gallery-lightbox{position:fixed;z-index:10000;inset:0;display:grid;grid-template-columns:64px minmax(0,1fr) 64px;align-items:center;gap:18px;padding:28px;background:rgba(8,8,10,.94)}
.gallery-lightbox[hidden]{display:none}.gallery-lightbox__stage{position:relative;min-width:0;height:calc(100vh - 56px);overflow:hidden}.gallery-lightbox__image{position:absolute;inset:0;display:block;width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;object-fit:contain!important}
.gallery-lightbox button{border:0;color:#fff;background:rgba(255,255,255,.12);cursor:pointer}.gallery-lightbox__prev,.gallery-lightbox__next{width:56px;height:56px;border-radius:50%;font-size:32px}.gallery-lightbox__close{position:absolute;top:20px;right:20px;width:44px;height:44px;border-radius:50%;font-size:28px}.gallery-lightbox__counter{position:absolute;left:50%;bottom:18px;transform:translateX(-50%);color:#fff;font-size:13px}
@media(max-width:700px){.gallery-lightbox{grid-template-columns:42px minmax(0,1fr) 42px;padding:14px;gap:6px}.gallery-lightbox__stage{height:calc(100vh - 28px)}.gallery-lightbox__prev,.gallery-lightbox__next{width:40px;height:48px}}
