:root {
  --ps-bg: #080809;
  --ps-bg-2: #121213;
  --ps-card: #151516;
  --ps-gold: #d2a85f;
  --ps-gold-deep: #9e6f2f;
  --ps-gold-light: #efd49a;
  --ps-text: #f8f5f1;
  --ps-muted: #bbb5ae;
  --ps-line: rgba(210, 168, 95, .25);
  --ps-shell: 1340px;
  --ps-header-h: 88px;
  --ps-radius: 2px;
  --ps-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ps-bg);
  color: var(--ps-text);
  font-family: Montserrat, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.ps-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.screen-reader-text,
.ps-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ps-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--ps-gold);
  color: #111;
  padding: .75rem 1rem;
}
.ps-skip-link:focus { top: 1rem; }

.ps-shell { width: min(calc(100% - 88px), var(--ps-shell)); margin-inline: auto; }
.ps-gold { color: var(--ps-gold); }
.ps-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--ps-gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ps-section { position: relative; padding: clamp(68px, 6.5vw, 104px) 0; }
.ps-section--black { background: #080809; }
.ps-section--dark { background: var(--ps-bg-2); }
.ps-section-head { margin-bottom: clamp(36px, 4vw, 58px); }
.ps-section-head--compact { margin-bottom: clamp(28px, 3vw, 42px); }
.ps-section-head h2,
.ps-split__copy h2,
.ps-contact__copy h2,
.ps-basic-page h1 {
  font-family: "League Spartan", Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.ps-section-head h2 {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(2.5rem, 4.8vw, 5.1rem);
  line-height: .94;
}
.ps-section-head--compact h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.15rem, 3.5vw, 4.45rem);
}

/* Header */
.ps-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--ps-header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.ps-header.is-scrolled {
  background: rgba(7, 7, 8, .9);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.ps-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.ps-brand { position: relative; z-index: 2; display: block; width: clamp(205px, 17vw, 275px); }
.ps-brand img { width: 100%; }
.ps-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.ps-nav__list { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); list-style: none; margin: 0; padding: 0; }
.ps-nav__list a {
  position: relative;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ps-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--ps-gold);
  transition: right .25s ease;
}
.ps-nav__list a:hover::after,
.ps-nav__list a:focus-visible::after { right: 0; }
.ps-menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.ps-menu-toggle span:not(.screen-reader-text) { display: block; width: 27px; height: 1px; margin: 6px 0; background: #fff; transition: transform .25s ease, opacity .25s ease; }

/* Buttons */
.ps-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid #d5aa61;
  border-radius: var(--ps-radius);
  background: linear-gradient(115deg, #9d6d2d 0%, #d4a95f 36%, #efd291 52%, #c18a42 74%, #9b692b 100%);
  background-size: 170% 100%;
  color: #111;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 10px 28px rgba(167, 112, 44, .17);
  transition: transform .24s ease, background-position .35s ease, box-shadow .24s ease, filter .24s ease;
}
.ps-button::before {
  content: "";
  position: absolute;
  inset: -20% -45%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, .42) 50%, transparent 62%);
  transform: translateX(-55%);
  transition: transform .65s ease;
}
.ps-button:hover,
.ps-button:focus-visible {
  transform: translateY(-3px);
  background-position: 100% 0;
  filter: saturate(1.08) brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 16px 38px rgba(174, 119, 47, .28);
}
.ps-button:hover::before { transform: translateX(55%); }
.ps-button--small { min-height: 44px; padding-inline: 22px; font-size: .67rem; }
.ps-button--full { width: 100%; }
.ps-link {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  padding-bottom: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.ps-link:hover { color: var(--ps-gold-light); border-color: var(--ps-gold); }
.ps-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

/* Hero */
.ps-hero {
  --ps-hero-image: none;
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--ps-hero-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #070708;
}
.ps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 4, 5, .94) 0%, rgba(4, 4, 5, .78) 36%, rgba(4, 4, 5, .28) 70%, rgba(4, 4, 5, .42) 100%);
}
.ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, transparent 48%, rgba(5, 5, 6, .62) 78%, #121213 100%);
  pointer-events: none;
}
.ps-hero__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 68% 36%, transparent 0 22%, rgba(0,0,0,.14) 62%, rgba(0,0,0,.42) 100%); }
.ps-hero__content { position: relative; z-index: 2; padding-top: calc(var(--ps-header-h) + 48px); padding-bottom: 74px; }
.ps-hero__title {
  margin: 0 0 28px;
  max-width: 940px;
  font-family: "League Spartan", Montserrat, sans-serif;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  line-height: .81;
  font-weight: 700;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.ps-hero__title span { display: block; }
.ps-hero__lead { max-width: 640px; margin: 0 0 36px; color: #ece7e1; font-size: clamp(1rem, 1.25vw, 1.16rem); }

/* Benefits */
.ps-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--ps-line); border-bottom: 1px solid var(--ps-line); }
.ps-feature {
  min-height: 228px;
  padding: 34px 26px;
  border-right: 1px solid var(--ps-line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.ps-feature:last-child { border-right: 0; }
.ps-feature:hover { background: rgba(210, 168, 95, .055); transform: translateY(-5px); }
.ps-feature h3 { margin: 20px 0 10px; font-size: .81rem; letter-spacing: .04em; text-transform: uppercase; }
.ps-feature p { margin: 0; color: var(--ps-muted); font-size: .88rem; }
.ps-icon { color: var(--ps-gold); font-size: 2.4rem; line-height: 1; }

/* Packages */
.ps-package-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.ps-package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, #171718, #101011);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.ps-package:hover { transform: translateY(-9px) scale(1.01); border-color: var(--ps-gold); box-shadow: 0 25px 70px rgba(0,0,0,.48), 0 0 0 1px rgba(210,168,95,.13); }
.ps-package__image { height: 190px; background-size: cover; background-position: center; transition: transform .48s ease, filter .35s ease; filter: brightness(.62) saturate(.8); }
.ps-package:hover .ps-package__image { transform: scale(1.05); filter: brightness(.78) saturate(.96); }
.ps-package__badge { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 8px 12px; background: linear-gradient(115deg, #a36e2d, #e4bd77, #a66f2d); color: #111; font-size: .61rem; font-weight: 800; text-transform: uppercase; }
.ps-package__body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; padding: 27px 25px 25px; background: linear-gradient(180deg, rgba(23,23,24,.94), #101011 26%); }
.ps-package h3 { margin: 0 0 8px; min-height: 58px; font-family: "League Spartan", Montserrat, sans-serif; font-size: 1.42rem; line-height: 1.08; font-weight: 700; text-transform: uppercase; }
.ps-package__people { color: var(--ps-gold) !important; font-size: .72rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.ps-package p { color: var(--ps-muted); font-size: .86rem; }
.ps-package ul { list-style: none; padding: 0; margin: 14px 0 24px; }
.ps-package li { position: relative; padding: 6px 0 6px 20px; color: #ddd8d2; font-size: .84rem; }
.ps-package li::before { content: "✓"; position: absolute; left: 0; color: var(--ps-gold); }
.ps-package .ps-button { margin-top: auto; }

/* Individual format */
.ps-section--image {
  --ps-section-image: none;
  background-image: linear-gradient(90deg, rgba(7,7,8,.91), rgba(7,7,8,.84)), var(--ps-section-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ps-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.ps-split__copy h2 { margin: 0 0 24px; font-size: clamp(2.7rem, 4.8vw, 5.2rem); line-height: .92; }
.ps-split__copy p { color: var(--ps-muted); max-width: 580px; margin-bottom: 28px; }
.ps-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 34px; border: 1px solid var(--ps-line); background: rgba(0,0,0,.38); backdrop-filter: blur(10px); }
.ps-checklist ul { list-style: none; padding: 0; margin: 0; }
.ps-checklist li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid rgba(255,255,255,.075); font-size: .88rem; }
.ps-checklist li::before { content: "✓"; position: absolute; left: 0; top: 11px; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--ps-gold); border-radius: 50%; color: var(--ps-gold); font-size: .65rem; }

/* Included elements */
#elementai { padding-top: clamp(60px, 5.5vw, 84px); padding-bottom: clamp(60px, 5.5vw, 84px); }
.ps-elements-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid var(--ps-line); border-left: 1px solid var(--ps-line); }
.ps-element {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid var(--ps-line);
  border-bottom: 1px solid var(--ps-line);
  background: transparent;
}
.ps-element span { font-size: 1.62rem; line-height: 1; color: var(--ps-gold); transition: transform .25s ease, filter .25s ease; filter: grayscale(.2) sepia(.5); }
.ps-element:hover span { transform: scale(1.16); filter: grayscale(0) sepia(.7) brightness(1.12); }
.ps-element strong { font-size: .62rem; line-height: 1.25; letter-spacing: .04em; text-transform: uppercase; }

/* Gallery */
#galerija { padding-top: clamp(64px, 6vw, 92px); padding-bottom: clamp(64px, 6vw, 92px); }
.ps-gallery { display: grid; grid-template-columns: 1.28fr .82fr .98fr; grid-auto-rows: 270px; gap: 14px; }
.ps-gallery__item { padding: 0; border: 0; background: transparent; overflow: hidden; cursor: zoom-in; }
.ps-gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.69) saturate(.8); transition: transform .48s ease, filter .35s ease; }
.ps-gallery__item:hover img { transform: scale(1.045); filter: brightness(.91) saturate(1); }
.ps-lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 40px; background: rgba(0,0,0,.93); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.ps-lightbox.is-open { opacity: 1; visibility: visible; }
.ps-lightbox img { max-width: min(1400px, 92vw); max-height: 86vh; object-fit: contain; }
.ps-lightbox button { position: absolute; top: 20px; right: 24px; border: 0; background: transparent; font-size: 2.5rem; cursor: pointer; }

/* Testimonials */
#atsiliepimai { padding-top: clamp(64px, 6vw, 92px); padding-bottom: clamp(64px, 6vw, 92px); }
.ps-testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ps-quote { margin: 0; padding: 34px 32px; border: 1px solid rgba(255,255,255,.09); background: #101011; transition: transform .28s ease, border-color .28s ease; }
.ps-quote:hover { transform: translateY(-6px); border-color: var(--ps-gold); }
.ps-stars { color: var(--ps-gold); letter-spacing: .15em; }
.ps-quote p { margin: 20px 0 28px; font-size: .98rem; line-height: 1.65; }
.ps-quote cite { color: var(--ps-muted); font-style: normal; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }

/* FAQ */
.ps-faq-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
.ps-faq-layout .ps-section-head h2 { font-size: clamp(2.4rem, 4vw, 4.5rem); }
.ps-faq__item { border-top: 1px solid rgba(255,255,255,.14); }
.ps-faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.ps-faq__item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.ps-faq__item button span:first-child { font-size: .96rem; font-weight: 500; }
.ps-faq__item button span:last-child { color: var(--ps-gold); font-size: 1.7rem; line-height: 1; transition: transform .25s ease; }
.ps-faq__item.is-open button span:last-child { transform: rotate(45deg); }
.ps-faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.ps-faq__answer > p { overflow: hidden; margin: 0; color: var(--ps-muted); }
.ps-faq__item.is-open .ps-faq__answer { grid-template-rows: 1fr; }
.ps-faq__item.is-open .ps-faq__answer > p { padding-bottom: 23px; }

/* Contact */
.ps-contact {
  --ps-contact-image: none;
  position: relative;
  min-height: 820px;
  padding: clamp(88px, 8vw, 124px) 0;
  background-image: var(--ps-contact-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ps-contact::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,6,.93), rgba(5,5,6,.72)); }
.ps-contact__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 52% 45%, transparent, rgba(0,0,0,.48)); }
.ps-contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 7vw, 110px); align-items: center; }
.ps-contact__copy h2 { margin: 0 0 26px; font-size: clamp(3rem, 5.2vw, 5.6rem); line-height: .92; }
.ps-contact__copy > p { color: var(--ps-muted); max-width: 490px; }
.ps-contact-list { list-style: none; padding: 0; margin: 46px 0 0; }
.ps-contact-list li { display: flex; align-items: center; gap: 16px; margin: 15px 0; }
.ps-contact-list span { width: 28px; color: var(--ps-gold); text-align: center; }
.ps-form { padding: 36px; border: 1px solid rgba(255,255,255,.17); background: rgba(12,12,13,.82); backdrop-filter: blur(18px); box-shadow: var(--ps-shadow); }
.ps-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.ps-field { margin-bottom: 14px; }
.ps-field label { display: block; margin-bottom: 7px; color: #d7d2cc; font-size: .67rem; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.ps-field input,
.ps-field select,
.ps-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  background: rgba(255,255,255,.045);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.ps-field textarea { resize: vertical; }
.ps-field select option { color: #111; }
.ps-field input:focus,
.ps-field select:focus,
.ps-field textarea:focus { border-color: var(--ps-gold); background: rgba(255,255,255,.07); }
.ps-consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 20px; color: var(--ps-muted); font-size: .71rem; }
.ps-consent input { margin-top: 4px; accent-color: var(--ps-gold); }
.ps-form__status { min-height: 26px; margin-top: 12px; font-size: .82rem; color: var(--ps-gold-light); }
.ps-form.is-sending { opacity: .75; pointer-events: none; }

/* Footer */
.ps-footer { padding: 36px 0; background: #060607; border-top: 1px solid rgba(255,255,255,.08); }
.ps-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.ps-footer img { width: 215px; }
.ps-footer__inner > div { display: flex; gap: 24px; color: var(--ps-muted); font-size: .71rem; }
.ps-basic-page { min-height: 80vh; padding: 145px 0 86px; background: var(--ps-bg); }
.ps-basic-page h1 { font-size: clamp(2.5rem, 6vw, 6rem); }

.ps-reveal { opacity: 0; transform: translateY(24px); transition: opacity .68s ease, transform .68s ease; }
.ps-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .ps-shell { width: min(calc(100% - 54px), var(--ps-shell)); }
  .ps-menu-toggle { display: block; position: relative; z-index: 1002; }
  .ps-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; justify-content: center; padding: 100px 30px 40px; background: rgba(7,7,8,.98); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .ps-nav.is-open { opacity: 1; visibility: visible; }
  .ps-nav__list { flex-direction: column; gap: 24px; }
  .ps-nav__list a { font-size: 1rem; }
  .ps-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .ps-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .ps-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .ps-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ps-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ps-feature:nth-child(2) { border-right: 0; }
  .ps-feature:nth-child(-n+2) { border-bottom: 1px solid var(--ps-line); }
  .ps-elements-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ps-section-head--compact h2 { white-space: normal; }
}

@media (max-width: 820px) {
  :root { --ps-header-h: 76px; }
  .ps-shell { width: min(calc(100% - 34px), var(--ps-shell)); }
  .ps-brand { width: 205px; }
  .ps-section { padding: 72px 0; }
  .ps-hero { background-position: 61% top; }
  .ps-hero::before { background: linear-gradient(90deg, rgba(5,5,6,.94), rgba(5,5,6,.63)); }
  .ps-hero__title { font-size: clamp(3.6rem, 15vw, 6rem); }
  .ps-feature-grid,
  .ps-package-grid,
  .ps-split,
  .ps-faq-layout,
  .ps-contact__grid,
  .ps-testimonials { grid-template-columns: 1fr; }
  .ps-feature { border-right: 0; border-bottom: 1px solid var(--ps-line); min-height: 190px; }
  .ps-package { min-height: 0; }
  .ps-package h3 { min-height: 0; }
  .ps-checklist { grid-template-columns: 1fr; padding: 26px; }
  .ps-elements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ps-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .ps-gallery__item:first-child { grid-column: span 2; }
  .ps-contact { min-height: 0; }
  .ps-contact__copy h2 { font-size: clamp(3rem, 12vw, 5rem); }
  .ps-contact-list { margin-top: 34px; }
  .ps-footer__inner,
  .ps-footer__inner > div { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ps-shell { width: min(calc(100% - 24px), var(--ps-shell)); }
  .ps-section { padding: 64px 0; }
  .ps-hero__content { padding-top: 116px; }
  .ps-hero__title { line-height: .86; }
  .ps-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .ps-actions .ps-button { width: 100%; }
  .ps-actions .ps-link { align-self: flex-start; }
  .ps-form { padding: 24px 17px; }
  .ps-form__row { grid-template-columns: 1fr; gap: 0; }
  .ps-gallery { grid-template-columns: 1fr; }
  .ps-gallery__item:first-child { grid-column: span 1; }
  .ps-elements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ps-element { min-height: 108px; }
  .ps-section-head--compact h2 { font-size: clamp(2.1rem, 11vw, 3.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ps-reveal { opacity: 1; transform: none; }
}
