@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600&display=swap");

:root {
  --ps-ink: #0d0c0e;
  --ps-ink-soft: #161317;
  --ps-cream: #f4eee4;
  --ps-cream-soft: #cfc5b7;
  --ps-copper: #c96f43;
  --ps-gold: #d8b06a;
  --ps-lilac: #9d91bc;
  --ps-line: rgba(244, 238, 228, 0.16);
  --ps-serif: "Cormorant Garamond", Georgia, serif;
  --ps-sans: "Manrope", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body,
#main-container,
.site-main {
  background: var(--ps-ink);
}

body {
  color: var(--ps-cream);
}

#header [data-row="middle"] {
  background: rgba(13, 12, 14, 0.9);
  border-bottom: 1px solid var(--ps-line);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#header .site-title,
#header .site-title a {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

#header .site-title a::after {
  color: var(--ps-copper);
  content: ".";
}

#header .menu > li > a,
#header .mobile-menu a,
#header .ct-header-trigger {
  color: var(--ps-cream-soft);
  font-family: var(--ps-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#header .menu > li > a:hover,
#header .menu > li.current-menu-item > a,
#header .mobile-menu a:hover {
  color: var(--ps-cream);
}

#header .ct-icon {
  fill: currentColor;
}

#offcanvas,
#offcanvas .ct-panel-inner {
  background: var(--ps-ink-soft);
}

.ct-container-full[data-vertical-spacing] {
  padding-bottom: 0;
  padding-top: 0;
}

.entry-content.is-layout-constrained {
  --theme-block-max-width: none;
}

.entry-content > .ps-site {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: none !important;
  width: 100vw;
}

.ps-site,
.ps-site * {
  box-sizing: border-box;
}

.ps-site {
  background:
    radial-gradient(
      circle at 82% 6%,
      rgba(157, 145, 188, 0.16),
      transparent 25rem
    ),
    radial-gradient(
      circle at 8% 33%,
      rgba(201, 111, 67, 0.1),
      transparent 30rem
    ),
    var(--ps-ink);
  color: var(--ps-cream);
  font-family: var(--ps-sans);
  overflow: hidden;
  position: relative;
}

.ps-site a {
  color: inherit;
}

.ps-site img {
  display: block;
  max-width: 100%;
}

.ps-wrap {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}

.ps-eyebrow {
  align-items: center;
  color: var(--ps-gold);
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.22em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.ps-eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 38px;
}

.ps-hero {
  min-height: min(860px, calc(100vh - 74px));
  padding: clamp(58px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
  position: relative;
}

.ps-hero::after {
  background: linear-gradient(90deg, transparent, var(--ps-line), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 5vw;
  position: absolute;
  right: 5vw;
}

.ps-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.ps-hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.ps-hero h1 {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.8;
  margin: 0;
}

.ps-hero h1 em {
  color: var(--ps-lilac);
  font-weight: 400;
}

.ps-intro {
  color: var(--ps-cream-soft);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.8;
  margin: 34px 0 0;
  max-width: 560px;
}

.ps-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.ps-button {
  align-items: center;
  background: var(--ps-cream);
  border: 1px solid var(--ps-cream);
  color: var(--ps-ink) !important;
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.13em;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.ps-button:hover {
  background: transparent;
  color: var(--ps-cream) !important;
  transform: translateY(-2px);
}

.ps-text-link {
  color: var(--ps-cream-soft) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.ps-text-link span {
  color: var(--ps-copper);
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.ps-text-link:hover span {
  transform: translateX(5px);
}

.ps-hero-stage {
  aspect-ratio: 0.96;
  isolation: isolate;
  margin-left: auto;
  max-width: 620px;
  position: relative;
  width: 100%;
}

.ps-stage-back {
  border: 1px solid var(--ps-line);
  height: 74%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 7%;
  width: 82%;
}

.ps-stage-back::after {
  background: linear-gradient(180deg, transparent, rgba(13, 12, 14, 0.55));
  content: "";
  inset: 0;
  position: absolute;
}

.ps-stage-cover {
  bottom: 0;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.48);
  left: 0;
  position: absolute;
  width: 46%;
  z-index: 2;
}

.ps-stage-cover img {
  aspect-ratio: 0.724;
  height: auto;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.ps-stage-cover::before {
  border: 1px solid rgba(244, 238, 228, 0.58);
  content: "";
  inset: -11px 11px 11px -11px;
  pointer-events: none;
  position: absolute;
  transition: transform 420ms ease;
  z-index: -1;
}

.ps-stage-cover:hover img {
  transform: translateY(-8px);
}

.ps-stage-number {
  bottom: 3%;
  color: var(--ps-cream-soft);
  font-family: var(--ps-serif);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.08em;
  position: absolute;
  right: 1%;
}

.ps-stage-number strong {
  color: var(--ps-cream);
  font-size: 34px;
  font-weight: 400;
  margin-right: 8px;
}

.ps-manifesto {
  padding: clamp(82px, 11vw, 150px) 0;
}

.ps-manifesto-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.5fr 1.5fr;
}

.ps-manifesto-label {
  color: var(--ps-cream-soft);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding-top: 12px;
  text-transform: uppercase;
}

.ps-manifesto blockquote {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  max-width: 930px;
}

.ps-manifesto blockquote em {
  color: var(--ps-copper);
  font-weight: 400;
}

.ps-manifesto cite {
  color: var(--ps-cream-soft);
  display: block;
  font-family: var(--ps-sans);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.18em;
  margin-top: 26px;
  text-transform: uppercase;
}

.ps-collections {
  padding: 0 0 clamp(92px, 12vw, 160px);
}

.ps-section-head {
  align-items: end;
  border-bottom: 1px solid var(--ps-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 38px;
  padding-bottom: 22px;
}

.ps-section-head h2 {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
}

.ps-section-head p {
  color: var(--ps-cream-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.ps-collection-grid {
  align-items: stretch;
  display: grid !important;
  gap: clamp(22px, 3vw, 38px);
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ps-collection-grid > .ps-card {
  margin: 0 !important;
  max-width: none !important;
  min-width: 0;
  width: 100% !important;
}

/* WordPress may inject paragraph wrappers when HTML is pasted outside a true Custom HTML block. */
.ps-collection-grid > p {
  display: contents !important;
}

.ps-card {
  background: var(--ps-ink-soft);
  border: 1px solid var(--ps-line);
  color: var(--ps-cream) !important;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}

.ps-card-media {
  aspect-ratio: 1 / 0.84;
  background: #19161a;
  overflow: hidden;
  position: relative;
}

.ps-card-media::after {
  background: linear-gradient(180deg, transparent 44%, rgba(13, 12, 14, 0.82));
  content: "";
  inset: 0;
  position: absolute;
}

.ps-card-media img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 700ms ease;
  width: 100%;
}

.ps-card-placeholder {
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(157, 145, 188, 0.45),
      transparent 42%
    ),
    linear-gradient(145deg, #251b20, #0f0e11 68%);
  display: block;
  height: 100%;
  width: 100%;
}

.ps-card--portrait .ps-card-media img {
  object-position: 50% 47%;
}

.ps-card:hover .ps-card-media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.ps-card-index {
  color: rgba(244, 238, 228, 0.75);
  font-family: var(--ps-serif);
  font-size: 18px;
  left: 22px;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.ps-card-body {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding: clamp(23px, 3vw, 34px);
}

.ps-card-kicker {
  color: var(--ps-gold);
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ps-card h3 {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}

.ps-card p {
  color: var(--ps-cream-soft);
  font-size: 13px;
  line-height: 1.65;
  margin: 13px 0 0;
  max-width: 500px;
}

.ps-card-arrow {
  align-items: center;
  border: 1px solid var(--ps-line);
  border-radius: 50%;
  color: var(--ps-cream);
  display: flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 48px;
}

.ps-card:hover .ps-card-arrow {
  background: var(--ps-cream);
  color: var(--ps-ink);
  transform: rotate(-35deg);
}

.ps-coda {
  border-top: 1px solid var(--ps-line);
  padding: clamp(74px, 10vw, 130px) 0;
  text-align: center;
}

.ps-coda p {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(44px, 6vw, 78px);
  font-style: italic;
  line-height: 1;
  margin: 0;
}

.ps-coda small {
  color: var(--ps-cream-soft);
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 24px;
  text-transform: uppercase;
}

.ps-reader {
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 6vw, 82px) 0 clamp(64px, 8vw, 110px);
}

.ps-reader-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(44px, 6vw, 74px);
}

.ps-back {
  align-items: center;
  color: var(--ps-cream-soft) !important;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.16em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.ps-back:hover {
  color: var(--ps-cream) !important;
}

.ps-reader-index {
  color: var(--ps-gold);
  font-family: var(--ps-serif);
  font-size: 17px;
  font-style: italic;
}

.ps-reader-intro {
  align-items: end;
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  margin-bottom: clamp(38px, 6vw, 72px);
}

.ps-reader h1 {
  color: var(--ps-cream);
  font-family: var(--ps-serif);
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.78;
  margin: 0;
  max-width: 860px;
}

.ps-reader-copy {
  border-left: 1px solid var(--ps-line);
  color: var(--ps-cream-soft);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 2px 0 2px 26px;
}

.ps-reader-note {
  color: var(--ps-cream-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-align: right;
  text-transform: uppercase;
}

.ps-viewer-shell {
  background: #09090a;
  border: 1px solid rgba(244, 238, 228, 0.21);
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(157, 145, 188, 0.07);
  padding: clamp(7px, 1vw, 12px);
  position: relative;
}

.ps-viewer-shell::before,
.ps-viewer-shell::after {
  content: "";
  height: 1px;
  position: absolute;
  top: -1px;
  width: 20%;
}

.ps-viewer-shell::before {
  background: linear-gradient(90deg, var(--ps-copper), transparent);
  left: 0;
}

.ps-viewer-shell::after {
  background: linear-gradient(270deg, var(--ps-lilac), transparent);
  right: 0;
}

.ps-viewer-shell iframe {
  background: #111;
  border: 0;
  display: block;
  height: min(820px, 78vh);
  min-height: 610px;
  width: 100%;
}

#footer [data-row="bottom"] {
  background: var(--ps-ink) !important;
  border-top: 1px solid var(--ps-line);
}

#footer .ct-footer-copyright {
  color: var(--ps-cream-soft);
  font-family: var(--ps-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ps-preview-header,
.ps-preview-footer {
  align-items: center;
  background: rgba(13, 12, 14, 0.92);
  color: var(--ps-cream);
  display: flex;
  font-family: var(--ps-sans);
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(22px, 5vw, 72px);
}

.ps-preview-header {
  border-bottom: 1px solid var(--ps-line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.ps-preview-brand {
  font-family: var(--ps-serif);
  font-size: 30px;
}

.ps-preview-brand span {
  color: var(--ps-copper);
}

.ps-preview-nav {
  display: flex;
  gap: 26px;
}

.ps-preview-nav a {
  color: var(--ps-cream-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.ps-preview-footer {
  border-top: 1px solid var(--ps-line);
  color: var(--ps-cream-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  justify-content: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ps-hero {
    min-height: auto;
  }

  .ps-hero-grid,
  .ps-reader-intro {
    grid-template-columns: 1fr;
  }

  .ps-hero-copy {
    max-width: 720px;
  }

  .ps-hero-stage {
    margin: 8px auto 0;
    max-width: 650px;
  }

  .ps-manifesto-grid {
    grid-template-columns: 1fr;
  }

  .ps-manifesto-label {
    padding-top: 0;
  }

  .ps-reader-copy {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .ps-hero h1,
  .ps-reader h1 {
    line-height: 0.86;
  }

  .ps-hero-stage {
    aspect-ratio: 0.9;
  }

  .ps-stage-back {
    height: 68%;
    width: 88%;
  }

  .ps-stage-cover {
    width: 48%;
  }

  .ps-stage-number {
    display: none;
  }

  .ps-section-head {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .ps-collection-grid {
    grid-template-columns: 1fr !important;
  }

  .ps-card-media {
    aspect-ratio: 1 / 0.8;
  }

  .ps-card-body {
    grid-template-columns: 1fr auto;
  }

  .ps-reader-topline {
    margin-bottom: 38px;
  }

  .ps-reader-note {
    text-align: left;
  }

  .ps-viewer-shell iframe {
    height: 72vh;
    min-height: 520px;
  }

  .ps-preview-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ps-site *,
  .ps-site *::before,
  .ps-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
