:root {
  --ps-bg: #070708;
  --ps-bg-2: #121213;
  --ps-card: #151516;
  --ps-gold: #d4a957;
  --ps-gold-deep: #9b692c;
  --ps-gold-light: #f0d28b;
  --ps-text: #f7f4ef;
  --ps-muted: #bbb5ae;
  --ps-line: rgba(212, 169, 87, .25);
  --ps-shell: 1840px;
  --ps-header-h: 86px;
  --ps-radius: 2px;
  --ps-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ps-bg);
  color: var(--ps-text);
  font-family: Montserrat, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.ps-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
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;
  padding: .75rem 1rem;
  background: var(--ps-gold);
  color: #111;
}
.ps-skip-link:focus { top: 1rem; }

.ps-shell {
  width: min(calc(100% - 48px), var(--ps-shell));
  margin-inline: auto;
}
.ps-gold { color: var(--ps-gold); }
.ps-eyebrow {
  margin: 0 0 1.1rem;
  color: var(--ps-gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ps-section {
  position: relative;
  padding: clamp(66px, 5.5vw, 96px) 0;
}
.ps-section--black { background: #080809; }
.ps-section--dark { background: var(--ps-bg-2); }
.ps-section-head { margin-bottom: clamp(32px, 3.5vw, 50px); }
.ps-section-head h2,
.ps-split__copy h2,
.ps-contact__copy h2,
.ps-basic-page h1 {
  margin-top: 0;
  font-family: "League Spartan", Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.ps-section-head h2 {
  margin-bottom: 0;
  max-width: 1560px;
  font-size: clamp(2.8rem, 4.35vw, 5.3rem);
  line-height: .92;
}
.ps-section-head--compact h2 { font-size: clamp(2.65rem, 4vw, 4.9rem); }
.ps-section-head--wide h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.55rem, 4.15vw, 5.05rem);
}

/* 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, .91);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.admin-bar .ps-header { top: 32px; }
.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(210px, 16vw, 290px);
}
.ps-brand img { width: 100%; }
.ps-nav { display: flex; align-items: center; gap: clamp(20px, 2vw, 36px); }
.ps-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.75vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.ps-nav__list a {
  position: relative;
  font-size: .7rem;
  font-weight: 800;
  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;
  padding: 8px;
  border: 0;
  background: transparent;
  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;
  overflow: hidden;
  border: 1px solid #d5aa61;
  border-radius: var(--ps-radius);
  background: linear-gradient(115deg, #986528 0%, #d3a653 34%, #f0d38e 52%, #c38c3c 74%, #916024 100%);
  background-size: 175% 100%;
  color: #111;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 28px rgba(167,112,44,.18);
  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,.44) 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,.46), 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;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.32);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  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: 28px; flex-wrap: wrap; }

/* Hero */
.ps-hero {
  --ps-hero-image: none;
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #070708;
  background-image: var(--ps-hero-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.ps-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.ps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4,4,5,.72) 0%, rgba(4,4,5,.54) 31%, rgba(4,4,5,.23) 60%, rgba(4,4,5,.16) 100%);
}
.ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, transparent 48%, rgba(5,5,6,.55) 80%, #121213 100%);
}
.ps-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 68% 36%, transparent 0 22%, rgba(0,0,0,.1) 64%, rgba(0,0,0,.28) 100%);
}
.ps-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--ps-header-h) + 52px);
  padding-bottom: 70px;
}
.ps-hero__title {
  margin: 0 0 26px;
  max-width: 900px;
  font-family: "League Spartan", Montserrat, sans-serif;
  font-size: clamp(4.25rem, 7.15vw, 8.25rem);
  line-height: .82;
  font-weight: 800;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,.24);
}
.ps-hero__title span { display: block; }
.ps-hero__lead {
  max-width: 630px;
  margin: 0 0 34px;
  color: #eee9e3;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

/* 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: 220px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ps-line);
  text-align: center;
  transition: background .25s ease, transform .25s ease;
}
.ps-feature:last-child { border-right: 0; }
.ps-feature:hover { background: rgba(212,169,87,.055); transform: translateY(-5px); }
.ps-feature h3 { margin: 19px 0 9px; font-size: .81rem; letter-spacing: .04em; text-transform: uppercase; }
.ps-feature p { max-width: 290px; margin: 0; color: var(--ps-muted); font-size: .88rem; }
.ps-icon { color: var(--ps-gold); font-size: 2.35rem; line-height: 1; }

/* Packages */
.ps-package-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.ps-package {
  position: relative;
  min-height: 630px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg,#171718,#101011);
  box-shadow: 0 20px 50px rgba(0,0,0,.23);
  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(212,169,87,.13);
}
.ps-package__image { height: 205px; overflow: hidden; background: #0c0c0d; }
.ps-package__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.7) saturate(.88);
  transition: transform .48s ease, filter .35s ease;
}
.ps-package:hover .ps-package__image img { transform: scale(1.045); filter: brightness(.86) saturate(1); }
.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,.96),#101011 26%);
}
.ps-package h3 {
  min-height: 56px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "League Spartan", Montserrat, sans-serif;
  font-size: clamp(1.25rem,1.35vw,1.55rem);
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.ps-package__people {
  color: var(--ps-gold) !important;
  font-size: .72rem !important;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}
.ps-package p { color: var(--ps-muted); font-size: .86rem; }
.ps-package ul { margin: 14px 0 24px; padding: 0; list-style: none; }
.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;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080809;
}
.ps-section--image::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--ps-shell));
  transform: translateX(-50%);
  background-image: linear-gradient(90deg,rgba(6,6,7,.9) 0%,rgba(6,6,7,.72) 45%,rgba(6,6,7,.6) 100%), var(--ps-section-image);
  background-size: cover;
  background-position: center 43%;
  background-repeat: no-repeat;
}
.ps-section--image > .ps-shell { position: relative; z-index: 1; }
.ps-split { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px,5vw,84px); align-items: center; }
.ps-split__copy h2 { margin: 0 0 22px; font-size: clamp(2.9rem,4.4vw,5.25rem); line-height: .92; }
.ps-split__copy p { max-width: 610px; margin-bottom: 28px; color: #d5d0c9; }
.ps-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--ps-line);
  background: rgba(0,0,0,.51);
  backdrop-filter: blur(10px);
}
.ps-checklist ul { margin: 0; padding: 0; list-style: none; }
.ps-checklist li { position: relative; min-height: 54px; padding: 13px 0 13px 33px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .89rem; }
.ps-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ps-gold);
  border-radius: 50%;
  color: var(--ps-gold);
  font-size: .65rem;
}

/* Included elements */
#elementai { padding-top: clamp(58px,4.8vw,82px); padding-bottom: clamp(58px,4.8vw,82px); }
.ps-elements-grid {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  border-top: 1px solid var(--ps-line);
  border-left: 1px solid var(--ps-line);
}
.ps-element {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 14px 8px;
  border-right: 1px solid var(--ps-line);
  border-bottom: 1px solid var(--ps-line);
  text-align: center;
}
.ps-element span {
  color: var(--ps-gold);
  font-size: 1.55rem;
  line-height: 1;
  filter: grayscale(.15) sepia(.45);
  transition: transform .25s ease, filter .25s ease;
}
.ps-element:hover span { transform: scale(1.17); filter: grayscale(0) sepia(.72) brightness(1.14); }
.ps-element strong { font-size: .61rem; line-height: 1.25; letter-spacing: .04em; text-transform: uppercase; }

/* Gallery */
#galerija { padding-top: clamp(60px,5vw,86px); padding-bottom: clamp(60px,5vw,86px); }
.ps-gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.ps-gallery-head .ps-section-head { margin-bottom: 0; }
.ps-gallery-controls { display: flex; gap: 9px; flex: 0 0 auto; }
.ps-gallery-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ps-line);
  background: #111112;
  color: var(--ps-gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.ps-gallery-controls button:hover { transform: translateY(-2px); border-color: var(--ps-gold); background: #181819; }
.ps-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.ps-gallery::-webkit-scrollbar { display: none; }
.ps-gallery__item {
  flex: 0 0 calc((100% - 28px) / 3);
  height: clamp(250px,25vw,410px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  scroll-snap-align: start;
  cursor: zoom-in;
}
.ps-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.86);
  transition: transform .48s ease, filter .35s ease;
}
.ps-gallery__item:hover img { transform: scale(1.04); filter: brightness(.96) saturate(1); }
.ps-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(0,0,0,.94);
  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(1500px,92vw); max-height: 88vh; object-fit: contain; }
.ps-lightbox button { position: absolute; top: 18px; right: 24px; border: 0; background: transparent; font-size: 2.5rem; cursor: pointer; }

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

/* FAQ */
.ps-faq-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(46px,6vw,100px); align-items: start; }
.ps-faq-layout .ps-section-head h2 { font-size: clamp(2.4rem,3.75vw,4.45rem); }
.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: 22px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.ps-faq__item button span:first-child { font-size: .95rem; 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: 22px; }

/* Contact */
.ps-contact {
  --ps-contact-image: none;
  position: relative;
  min-height: 790px;
  padding: clamp(82px,7vw,116px) 0;
  overflow: hidden;
  background: #080809;
}
.ps-contact::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--ps-shell));
  transform: translateX(-50%);
  background-image: linear-gradient(90deg,rgba(5,5,6,.93),rgba(5,5,6,.67)), var(--ps-contact-image);
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}
.ps-contact__overlay {
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--ps-shell));
  transform: translateX(-50%);
  background: radial-gradient(circle at 52% 45%,transparent,rgba(0,0,0,.47));
}
.ps-contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px,6vw,100px); align-items: center; }
.ps-contact__copy h2 { margin: 0 0 25px; font-size: clamp(3rem,4.65vw,5.55rem); line-height: .92; }
.ps-contact__copy > p { max-width: 510px; color: #d4cfc8; }
.ps-contact-groups { display: grid; gap: 24px; margin-top: 38px; }
.ps-contact-group { padding-top: 18px; border-top: 1px solid rgba(212,169,87,.28); }
.ps-contact-group h3 { margin: 0 0 10px; color: var(--ps-gold); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ps-contact-list { margin: 0; padding: 0; list-style: none; }
.ps-contact-list li { display: flex; align-items: center; gap: 14px; margin: 9px 0; }
.ps-contact-list span { width: 24px; color: var(--ps-gold); text-align: center; }
.ps-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(12,12,13,.84);
  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: 800; 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; color: var(--ps-gold-light); font-size: .82rem; }
.ps-form.is-sending { opacity: .75; pointer-events: none; }

/* Footer */
.ps-footer { padding: 34px 0; border-top: 1px solid rgba(255,255,255,.08); background: #060607; }
.ps-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.ps-footer img { width: 225px; }
.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(22px); transition: opacity .66s ease, transform .66s ease; }
.ps-reveal.is-visible { opacity: 1; transform: none; }


.ps-package__image {
  position: relative;
  height: 240px;
}
.ps-package__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(8,8,9,.12) 0%,rgba(8,8,9,.08) 34%,rgba(8,8,9,.36) 100%), linear-gradient(90deg,rgba(8,8,9,.28) 0%,rgba(8,8,9,.07) 18%,rgba(8,8,9,0) 50%,rgba(8,8,9,.07) 82%,rgba(8,8,9,.28) 100%);
  pointer-events: none;
}
.ps-package--after-work .ps-package__image img { object-position: center 42%; }
.ps-package--corporate-cup .ps-package__image img { object-position: center 12%; }
.ps-package--signature-experience .ps-package__image img { object-position: center 30%; }
.ps-package--corporate-league .ps-package__image img { object-position: center 24%; }
.ps-section--image::before {
  background-image: linear-gradient(90deg,rgba(6,6,7,.94) 0%,rgba(6,6,7,.82) 32%,rgba(6,6,7,.68) 56%,rgba(6,6,7,.86) 100%), var(--ps-section-image);
}
.ps-checklist {
  background: linear-gradient(180deg,rgba(0,0,0,.58),rgba(0,0,0,.5));
}
.ps-checklist li {
  transition: transform .22s ease, color .22s ease, text-shadow .22s ease, background .22s ease, padding-left .22s ease;
}
.ps-checklist li:hover {
  transform: translateX(8px) scale(1.015);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(212,169,87,.18);
  padding-left: 37px;
}
.ps-checklist li::before {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.ps-checklist li:hover::before {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(212,169,87,.10), 0 0 18px rgba(212,169,87,.18);
  background: rgba(212,169,87,.12);
}
.ps-element {
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ps-element:hover {
  transform: translateY(-4px);
  background: rgba(212,169,87,.045);
  box-shadow: inset 0 0 0 1px rgba(212,169,87,.12);
}
.ps-element span {
  width: 34px;
  height: 34px;
  font-size: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: none;
}
.ps-element .dashicons { font-size: 1.85rem; }
.ps-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.ps-gallery-head .ps-section-head {
  margin-bottom: 0;
  text-align: left;
}
.ps-gallery-controls {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}
.ps-quote cite {
  color: #f1ece5;
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}
.ps-contact::before {
  background-image: linear-gradient(90deg,rgba(5,5,6,.96) 0%,rgba(5,5,6,.84) 28%,rgba(5,5,6,.74) 48%,rgba(5,5,6,.88) 100%), var(--ps-contact-image);
}
.ps-contact__overlay {
  background: radial-gradient(circle at 56% 44%,transparent 0%,rgba(0,0,0,.32) 56%,rgba(0,0,0,.56) 100%);
}
.ps-contact__grid {
  align-items: start;
}
.ps-contact__copy {
  padding-top: 18px;
}
.ps-contact__copy > p {
  margin: 0;
}
.ps-contact__eyebrow {
  margin: 52px 0 0;
}
.ps-contact-groups {
  margin-top: 14px;
}
.ps-footer {
  padding: 20px 0;
}
.ps-footer__inner {
  align-items: center;
}
.ps-footer__inner > div {
  align-items: center;
}

@media (max-width: 1420px) {
  .ps-shell { width: min(calc(100% - 40px), var(--ps-shell)); }
  .ps-package-grid { gap: 14px; }
  .ps-package__body { padding-inline: 21px; }
  .ps-package h3 { font-size: 1.25rem; }
}

@media (max-width: 1180px) {
  .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--wide h2 { white-space: normal; }
}

@media (max-width: 820px) {
  :root { --ps-header-h: 76px; }
  .admin-bar .ps-header { top: 46px; }
  .ps-shell { width: min(calc(100% - 32px), var(--ps-shell)); }
  .ps-brand { width: 205px; }
  .ps-section { padding: 70px 0; }
  .ps-hero { background-position: 50% top; }
  .ps-hero::before { background: linear-gradient(90deg,rgba(5,5,6,.91),rgba(5,5,6,.57)); }
  .ps-hero__title { font-size: clamp(3.55rem,15vw,6rem); }
  .ps-feature-grid,
  .ps-package-grid,
  .ps-split,
  .ps-faq-layout,
  .ps-contact__grid,
  .ps-testimonials { grid-template-columns: 1fr; }
  .ps-feature { min-height: 188px; border-right: 0; border-bottom: 1px solid var(--ps-line); }
  .ps-package { min-height: 0; }
  .ps-package h3 { min-height: 0; }
  .ps-section--image { min-height: 0; }
  .ps-section--image::before { width: calc(100% - 24px); background-position: center 36%; }
  .ps-contact::before,
  .ps-contact__overlay { width: calc(100% - 24px); }
  .ps-checklist { grid-template-columns: 1fr; padding: 25px; }
  .ps-elements-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ps-gallery-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ps-gallery-head .ps-section-head { text-align: left; }
  .ps-gallery-controls { align-self: flex-end; }
  .ps-gallery__item { flex-basis: 78vw; height: 58vw; max-height: 390px; }
  .ps-contact { min-height: 0; }
  .ps-contact__copy { padding-top: 0; }
  .ps-contact__copy h2 { font-size: clamp(3rem,12vw,5rem); }
  .ps-contact__eyebrow { margin-top: 24px; }
  .ps-contact-groups { margin-top: 12px; }
  .ps-footer__inner,
  .ps-footer__inner > div { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ps-shell { width: min(calc(100% - 22px), var(--ps-shell)); }
  .ps-section { padding: 62px 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-gallery-head { flex-direction: column; align-items: flex-start; }
  .ps-gallery-head .ps-section-head { text-align: left; }
  .ps-gallery-controls { align-self: flex-end; }
  .ps-gallery__item { flex-basis: 88vw; height: 66vw; }
  .ps-form { padding: 23px 16px; }
  .ps-form__row { grid-template-columns: 1fr; gap: 0; }
  .ps-element { min-height: 106px; }
  .ps-section-head h2 { font-size: clamp(2.3rem,12vw,3.6rem); }
}

@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; }
}

/* v8 final refinements */
.ps-element .ps-element-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--ps-gold);
  transition: transform .25s ease, filter .25s ease;
}
.ps-element .ps-element-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.ps-element:hover .ps-element-svg {
  transform: scale(1.17);
  filter: brightness(1.14);
}
@media (min-width: 901px) {
  .ps-gallery { overflow-x: hidden; }
  .ps-gallery__item { flex-basis: calc((100% - 28px) / 3); }
}
.ps-gallery-head .ps-section-head { text-align: left; }
.ps-contact__eyebrow { margin-top: 58px; }

/* v10: only the hero uses a photographic background. */
.ps-section--image,
.ps-contact {
  background: #080809;
}
.ps-section--image::before,
.ps-contact::before {
  background: #080809 !important;
  background-image: none !important;
}
.ps-contact__overlay {
  display: none;
}


@media (prefers-reduced-motion: reduce) {
  .ps-hero__video { display: none; }
}
