:root {
  --ps-bg: #0d0d0e;
  --ps-bg-2: #151516;
  --ps-card: #181819;
  --ps-gold: #c8a26a;
  --ps-gold-light: #dfbd86;
  --ps-text: #f7f4f1;
  --ps-muted: #b9b5b0;
  --ps-line: rgba(200, 162, 106, .24);
  --ps-shell: 1280px;
  --ps-header-h: 94px;
  --ps-radius: 2px;
  --ps-shadow: 0 24px 80px rgba(0,0,0,.34);
}

* { 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.65;
  -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% - 96px), var(--ps-shell)); margin-inline: auto; }
.ps-gold { color: var(--ps-gold); }
.ps-eyebrow {
  margin: 0 0 1.4rem;
  color: var(--ps-gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ps-section { position: relative; padding: clamp(88px, 9vw, 148px) 0; }
.ps-section--black { background: #09090a; }
.ps-section--dark { background: var(--ps-bg-2); }
.ps-section--light { background: #f4f0eb; color: #171718; }
.ps-section-head { margin-bottom: clamp(44px, 5vw, 74px); }
.ps-section-head h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.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 .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.ps-header.is-scrolled {
  background: rgba(8,8,9,.86);
  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(190px, 18vw, 280px); }
.ps-brand img { width: 100%; }
.ps-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 44px); }
.ps-nav__list { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 38px); list-style: none; margin: 0; padding: 0; }
.ps-nav__list a {
  position: relative;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ps-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--ps-gold);
  transition: right .28s 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; }

.ps-button {
  --arrow-x: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--ps-gold);
  border-radius: var(--ps-radius);
  background: var(--ps-gold);
  color: #111;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ps-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.35) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}
.ps-button > * { position: relative; z-index: 1; }
.ps-button span { transform: translateX(var(--arrow-x)); transition: transform .25s ease; }
.ps-button:hover, .ps-button:focus-visible {
  --arrow-x: 6px;
  transform: translateY(-3px);
  background: var(--ps-gold-light);
  border-color: var(--ps-gold-light);
  box-shadow: 0 14px 32px rgba(200,162,106,.22);
}
.ps-button:hover::before { transform: translateX(130%); }
.ps-button--small { min-height: 44px; padding-inline: 22px; font-size: .68rem; }
.ps-button--full { width: 100%; }
.ps-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 6px;
}
.ps-link span { transition: transform .25s ease; }
.ps-link:hover span { transform: translateX(6px); }
.ps-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }

.ps-hero {
  --ps-hero-image: none;
  position: relative;
  min-height: 100svh;
  background-image: var(--ps-hero-image);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ps-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,6,.94) 0%, rgba(5,5,6,.76) 39%, rgba(5,5,6,.35) 68%, rgba(5,5,6,.52) 100%);
}
.ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 68% 40%, transparent 0 18%, rgba(0,0,0,.25) 68%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}
.ps-hero__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 42%); }
.ps-hero__content { position: relative; z-index: 2; padding-top: calc(var(--ps-header-h) + 40px); padding-bottom: 78px; }
.ps-hero__title {
  margin: 0 0 30px;
  max-width: 840px;
  font-size: clamp(4rem, 8.7vw, 8.4rem);
  line-height: .83;
  font-weight: 400;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.ps-hero__title span { display: block; }
.ps-hero__lead { max-width: 610px; margin: 0 0 38px; color: #e5e1dc; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.ps-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  animation: psBob 2s infinite ease-in-out;
}
@keyframes psBob { 0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,8px)} }

.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: 265px; padding: 42px 34px; border-right: 1px solid var(--ps-line); transition: background .25s ease, transform .25s ease; }
.ps-feature:last-child { border-right: 0; }
.ps-feature:hover { background: rgba(200,162,106,.06); transform: translateY(-5px); }
.ps-feature h3 { margin: 24px 0 14px; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.ps-feature p { margin: 0; color: var(--ps-muted); font-size: .9rem; }
.ps-icon { color: var(--ps-gold); font-size: 2.7rem; line-height: 1; }

.ps-package-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.ps-package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  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 .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ps-package:hover { transform: translateY(-12px) scale(1.012); border-color: var(--ps-gold); box-shadow: 0 26px 80px rgba(0,0,0,.48), 0 0 0 1px rgba(200,162,106,.15); }
.ps-package__image { height: 210px; background-size: cover; transition: transform .5s ease, filter .4s ease; filter: brightness(.58) saturate(.75); }
.ps-package:hover .ps-package__image { transform: scale(1.055); filter: brightness(.72) saturate(.9); }
.ps-package__badge { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 8px 12px; background: var(--ps-gold); color: #111; font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.ps-package__body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; padding: 30px 28px 28px; background: linear-gradient(180deg, rgba(23,23,24,.92), #101011 24%); }
.ps-package h3 { margin: 0 0 8px; min-height: 68px; font-size: 1.56rem; line-height: 1.15; font-weight: 500; text-transform: uppercase; }
.ps-package__people { color: var(--ps-gold) !important; font-size: .74rem !important; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.ps-package p { color: var(--ps-muted); font-size: .9rem; }
.ps-package ul { list-style: none; padding: 0; margin: 18px 0 28px; }
.ps-package li { position: relative; padding: 7px 0 7px 21px; color: #ddd8d2; font-size: .87rem; }
.ps-package li::before { content: "✓"; position: absolute; left: 0; color: var(--ps-gold); }
.ps-package .ps-button { margin-top: auto; }

.ps-section--image {
  --ps-section-image: none;
  background-image: linear-gradient(90deg, rgba(8,8,9,.88), rgba(8,8,9,.93)), var(--ps-section-image);
  background-size: cover;
  background-position: center;
}
.ps-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,8vw,140px); align-items: center; }
.ps-split__copy h2 { margin: 0 0 28px; font-size: clamp(2.5rem,5vw,5.5rem); line-height: .98; font-weight: 400; text-transform: uppercase; }
.ps-split__copy p:not(.ps-eyebrow) { color: var(--ps-muted); max-width: 580px; margin-bottom: 32px; }
.ps-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 42px; border: 1px solid var(--ps-line); background: rgba(0,0,0,.34); backdrop-filter: blur(10px); }
.ps-checklist ul { list-style: none; padding: 0; margin: 0; }
.ps-checklist li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .9rem; }
.ps-checklist li::before { content: "✓"; position: absolute; left: 0; top: 13px; display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid var(--ps-gold); border-radius: 50%; color: var(--ps-gold); font-size: .68rem; }

.ps-elements-grid { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); border-top: 1px solid rgba(23,23,24,.14); border-left: 1px solid rgba(23,23,24,.14); }
.ps-element { min-height: 160px; display: grid; place-items: center; align-content: center; gap: 16px; text-align: center; padding: 20px 10px; border-right: 1px solid rgba(23,23,24,.14); border-bottom: 1px solid rgba(23,23,24,.14); transition: background .25s ease, transform .25s ease; }
.ps-element:hover { background: #fff; transform: translateY(-4px); }
.ps-element span { font-size: 2.1rem; color: var(--ps-gold); filter: grayscale(1) sepia(.7); }
.ps-element strong { font-size: .68rem; line-height: 1.3; letter-spacing: .035em; text-transform: uppercase; }

.ps-gallery { display: grid; grid-template-columns: 1.3fr .8fr 1fr; grid-auto-rows: 260px; gap: 14px; }
.ps-gallery__item { padding: 0; border: 0; background: transparent; overflow: hidden; cursor: zoom-in; }
.ps-gallery__item:nth-child(1), .ps-gallery__item:nth-child(5) { grid-row: span 2; }
.ps-gallery__item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.68) saturate(.78); transition: transform .5s ease, filter .4s ease; }
.ps-gallery__item:hover img { transform: scale(1.055); filter: brightness(.9) 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; }

.ps-testimonials { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.ps-quote { margin: 0; padding: 42px 36px; border: 1px solid rgba(255,255,255,.09); background: #111112; transition: transform .3s ease, border-color .3s ease; }
.ps-quote:hover { transform: translateY(-7px); border-color: var(--ps-gold); }
.ps-stars { color: var(--ps-gold); letter-spacing: .15em; }
.ps-quote p { margin: 24px 0 34px; font-size: 1.05rem; line-height: 1.75; }
.ps-quote cite { color: var(--ps-muted); font-style: normal; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }

.ps-faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px,8vw,130px); align-items: start; }
.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: 26px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.ps-faq__item button span:first-child { font-size: 1rem; font-weight: 500; }
.ps-faq__item button span:last-child { color: var(--ps-gold); font-size: 1.8rem; 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: 26px; }

.ps-contact {
  --ps-contact-image: none;
  position: relative;
  min-height: 900px;
  padding: clamp(100px,10vw,160px) 0;
  background-image: var(--ps-contact-image);
  background-size: cover;
  background-position: center;
}
.ps-contact::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(5,5,6,.9), rgba(5,5,6,.74)); }
.ps-contact__overlay { position:absolute; inset:0; background:radial-gradient(circle at 50% 50%, transparent, rgba(0,0,0,.46)); }
.ps-contact__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,8vw,140px); align-items: center; }
.ps-contact__copy h2 { margin: 0 0 30px; font-size: clamp(3rem,5.8vw,6rem); font-weight: 400; line-height: .96; letter-spacing: -.04em; text-transform: uppercase; }
.ps-contact__copy > p:not(.ps-eyebrow) { color: var(--ps-muted); max-width: 470px; }
.ps-contact-list { list-style: none; padding: 0; margin: 62px 0 0; }
.ps-contact-list li { display: flex; align-items: center; gap: 18px; margin: 17px 0; }
.ps-contact-list span { width: 30px; color: var(--ps-gold); text-align: center; }
.ps-form { padding: 42px; border: 1px solid rgba(255,255,255,.18); background: rgba(13,13,14,.82); backdrop-filter: blur(18px); box-shadow: var(--ps-shadow); }
.ps-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ps-field { margin-bottom: 15px; }
.ps-field label { display: block; margin-bottom: 8px; color: #d7d2cc; font-size: .68rem; font-weight: 600; letter-spacing: .055em; text-transform: uppercase; }
.ps-field input, .ps-field select, .ps-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  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 22px; color: var(--ps-muted); font-size: .72rem; }
.ps-consent input { margin-top: 4px; accent-color: var(--ps-gold); }
.ps-form__status { min-height: 28px; margin-top: 14px; font-size: .84rem; color: var(--ps-gold-light); }
.ps-form.is-sending { opacity: .75; pointer-events: none; }

.ps-footer { padding: 42px 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: 30px; }
.ps-footer img { width: 220px; }
.ps-footer__inner > div { display: flex; gap: 26px; color: var(--ps-muted); font-size: .72rem; }
.ps-basic-page { min-height: 80vh; padding: 150px 0 90px; background: var(--ps-bg); }
.ps-basic-page h1 { font-size: clamp(2.5rem,6vw,6rem); font-weight: 400; text-transform: uppercase; }

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

@media (max-width: 1180px) {
  .ps-shell { width: min(calc(100% - 56px), 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-feature-grid, .ps-package-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)); }
}

@media (max-width: 820px) {
  :root { --ps-header-h: 78px; }
  .ps-shell { width: min(calc(100% - 36px), var(--ps-shell)); }
  .ps-brand { width: 205px; }
  .ps-hero { background-position: 58% center; }
  .ps-hero::before { background: linear-gradient(90deg, rgba(5,5,6,.94), rgba(5,5,6,.62)); }
  .ps-hero__title { font-size: clamp(3.4rem,15vw,6rem); }
  .ps-scroll { display: none; }
  .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: 220px; }
  .ps-package { min-height: 0; }
  .ps-package h3 { min-height: 0; }
  .ps-checklist { grid-template-columns: 1fr; padding: 28px; }
  .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:nth-child(1), .ps-gallery__item:nth-child(5) { grid-row: span 1; }
  .ps-gallery__item:first-child { grid-column: span 2; }
  .ps-contact { min-height: 0; }
  .ps-contact__copy h2 { font-size: clamp(3rem,13vw,5rem); }
  .ps-contact-list { margin-top: 36px; }
  .ps-footer__inner, .ps-footer__inner > div { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ps-shell { width: min(calc(100% - 26px), var(--ps-shell)); }
  .ps-section { padding: 80px 0; }
  .ps-hero__content { padding-top: 120px; }
  .ps-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .ps-actions .ps-button { width: 100%; }
  .ps-actions .ps-link { align-self: flex-start; }
  .ps-form { padding: 26px 18px; }
  .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: 132px; }
}

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