:root {
  --pm-font-display: "Cormorant Garamond", serif;
  --pm-font-body: "Manrope", sans-serif;
  --pm-ivory-50: #fffdf9;
  --pm-ivory-100: #fbf7ef;
  --pm-ivory-200: #f4eadc;
  --pm-ink-900: #241b14;
  --pm-ink-800: #342820;
  --pm-ink-700: #4d3f34;
  --pm-ink-600: #6f6258;
  --pm-ink-500: #95887c;
  --pm-gold-500: #c7a15a;
  --pm-gold-600: #aa8240;
  --pm-rose-500: #9f5f61;
  --pm-oud-900: #17100d;
  --pm-line: rgba(52, 40, 32, 0.12);
  --pm-line-soft: rgba(52, 40, 32, 0.07);
  --pm-shadow-soft: 0 16px 40px rgba(52, 40, 32, 0.08);
  --pm-ease: cubic-bezier(0.2, 0, 0, 1);
}

.pm-hero,
.pm-section,
.pm-trust-strip {
  font-family: var(--pm-font-body);
}

.pm-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--pm-ivory-50);
  background: var(--pm-oud-900);
}

.pm-hero-media,
.pm-hero-scrim,
.pm-hero-picture,
.pm-hero-picture img,
.pm-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pm-hero-picture img,
.pm-hero-video {
  object-fit: cover;
}

.pm-hero-video {
  z-index: 1;
}

.pm-hero-picture {
  z-index: 0;
  display: block;
}

.pm-hero-video-mobile {
  display: none;
}

.pm-hero-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 20, 26, 0.78) 0%, rgba(10, 20, 26, 0.46) 34%, rgba(10, 20, 26, 0.08) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.42) 100%);
}

.pm-hero-overlay-soft .pm-hero-scrim {
  opacity: 0.72;
}

.pm-hero-overlay-strong .pm-hero-scrim {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(10, 20, 26, 0.88) 0%, rgba(10, 20, 26, 0.58) 40%, rgba(10, 20, 26, 0.15) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.52) 100%);
}

.pm-hero-content {
  position: relative;
  z-index: 3;
  width: min(560px, calc(100% - 40px));
  padding: clamp(112px, 18vh, 180px) clamp(20px, 6vw, 96px) clamp(48px, 10vh, 112px);
}

.pm-hero-position-left-bottom .pm-hero-content,
.pm-hero-position-left-center .pm-hero-content {
  margin-right: auto;
}

.pm-hero-position-right-bottom .pm-hero-content,
.pm-hero-position-right-center .pm-hero-content {
  margin-left: auto;
}

.pm-hero-position-left-center,
.pm-hero-position-right-center {
  display: flex;
  align-items: center;
}

.pm-eyebrow {
  margin: 0 0 14px;
  color: var(--pm-gold-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pm-hero h1,
.pm-section h2 {
  margin: 0;
  font-family: var(--pm-font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.pm-hero h1 {
  color: var(--pm-ivory-50);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
}

.pm-hero-content > p:not(.pm-eyebrow) {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.pm-hero-actions,
.pm-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--pm-gold-500);
  border-radius: 2px;
  font-family: var(--pm-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms var(--pm-ease), background 220ms var(--pm-ease), border-color 220ms var(--pm-ease), color 220ms var(--pm-ease);
}

.pm-button:hover,
.pm-button:focus {
  transform: translateY(-1px);
}

.pm-button-primary {
  background: var(--pm-gold-500);
  color: var(--pm-ink-900);
}

.pm-button-primary:hover,
.pm-button-primary:focus {
  border-color: var(--pm-gold-600);
  background: var(--pm-gold-600);
  color: var(--pm-ivory-50);
}

.pm-button-secondary {
  background: transparent;
  color: var(--pm-ink-900);
}

.pm-button-on-dark {
  color: var(--pm-ivory-50);
}

.pm-button-secondary:hover,
.pm-button-secondary:focus {
  background: rgba(199, 161, 90, 0.12);
}

.pm-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--pm-line);
  color: var(--pm-ink-800);
}

.pm-trust-strip span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--pm-ivory-50);
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.pm-section {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 80px);
  background: var(--pm-ivory-50);
  color: var(--pm-ink-800);
}

.pm-section-heading {
  max-width: 760px;
  margin: 0 0 34px;
}

.pm-section h2 {
  max-width: 880px;
  color: var(--pm-ink-900);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.pm-section p {
  color: var(--pm-ink-600);
  font-size: 1rem;
  line-height: 1.7;
}

.pm-split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 80px);
}

.pm-split-feature > div {
  border-top: 1px solid var(--pm-line);
  padding-top: 28px;
}

.pm-text-link {
  color: var(--pm-ink-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--pm-gold-500);
  text-underline-offset: 6px;
}

.pm-category-grid,
.pm-product-grid,
.pm-note-grid {
  display: grid;
  gap: 18px;
}

.pm-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-category-tile {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--pm-line);
  background: var(--pm-ivory-100);
  color: var(--pm-ink-800);
  text-decoration: none;
  transition: transform 220ms var(--pm-ease), border-color 220ms var(--pm-ease);
}

.pm-category-tile:hover,
.pm-category-tile:focus {
  border-color: rgba(199, 161, 90, 0.62);
  transform: translateY(-2px);
}

.pm-category-tile span {
  display: block;
  font-family: var(--pm-font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.pm-signature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  background: var(--pm-oud-900);
  color: var(--pm-ivory-50);
}

.pm-signature h2,
.pm-signature p {
  color: inherit;
}

.pm-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pm-note-row span {
  border: 1px solid rgba(255, 253, 249, 0.28);
  padding: 8px 11px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-signature-frame {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 249, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.12), rgba(199, 161, 90, 0.06)),
    rgba(255, 253, 249, 0.04);
  text-align: center;
}

.pm-signature-frame span {
  font-family: var(--pm-font-display);
  font-size: 2.4rem;
}

.pm-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-mood-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(251, 247, 239, 0.98)),
    var(--pm-ivory-50);
}

.pm-mood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
}

.pm-mood-chip {
  display: inline-flex;
  min-height: 68px;
  flex: 1 1 230px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--pm-line);
  background: rgba(255, 253, 249, 0.72);
  color: var(--pm-ink-800);
  padding: 13px 15px;
  text-decoration: none;
  transition: border-color 220ms var(--pm-ease), background 220ms var(--pm-ease), transform 220ms var(--pm-ease);
}

.pm-mood-chip:hover,
.pm-mood-chip:focus {
  border-color: rgba(199, 161, 90, 0.65);
  background: var(--pm-ivory-50);
  transform: translateY(-1px);
}

.pm-mood-chip strong {
  color: var(--pm-ink-900);
  font-family: var(--pm-font-display);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1;
}

.pm-mood-chip span {
  margin-top: 6px;
  color: var(--pm-ink-600);
  font-size: 0.86rem;
  line-height: 1.45;
}

.pm-product-card,
ul.products li.product {
  position: relative;
  color: var(--pm-ink-800);
}

.pm-product-card-media,
ul.products li.product a.woocommerce-LoopProduct-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pm-ivory-100);
}

.pm-product-card-media img,
ul.products li.product a.woocommerce-LoopProduct-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 260ms var(--pm-ease), transform 260ms var(--pm-ease);
}

.pm-card-image-secondary,
.pm-loop-secondary-image {
  opacity: 0;
}

.pm-product-card:hover .pm-card-image-primary,
ul.products li.product:hover a.woocommerce-LoopProduct-link > img:first-child {
  opacity: 0;
}

.pm-product-card:hover .pm-card-image-secondary,
ul.products li.product:hover .pm-loop-secondary-image {
  opacity: 1;
}

.pm-product-card:hover img,
ul.products li.product:hover img {
  transform: scale(1.02);
}

.pm-product-card-body {
  padding-top: 14px;
}

.pm-product-card-body span,
.pm-loop-meta {
  color: var(--pm-ink-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-product-card h3 {
  margin: 6px 0 3px;
  font-family: var(--pm-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
}

.pm-product-card h3 a {
  color: var(--pm-ink-900);
  text-decoration: none;
}

.pm-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.pm-product-card-footer strong,
.pm-product-card-footer .amount {
  color: var(--pm-ink-900);
  font-variant-numeric: tabular-nums;
}

.pm-quick-add {
  color: var(--pm-gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-discovery {
  background: var(--pm-ivory-100);
  text-align: left;
}

.pm-discovery > * {
  max-width: 760px;
}

.pm-guides {
  background: var(--pm-ivory-50);
}

.pm-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--pm-line);
}

.pm-guide-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--pm-ivory-100);
  color: var(--pm-ink-800);
  padding: clamp(20px, 3vw, 32px);
  text-decoration: none;
  transition: background 220ms var(--pm-ease), transform 220ms var(--pm-ease);
}

.pm-guide-card:hover,
.pm-guide-card:focus {
  background: var(--pm-ivory-50);
  transform: translateY(-1px);
}

.pm-guide-card span {
  display: block;
  color: var(--pm-gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pm-guide-card p {
  color: var(--pm-ink-700);
  font-family: var(--pm-font-display);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.pm-guide-card strong {
  color: var(--pm-ink-900);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pm-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pm-note-grid blockquote {
  margin: 0;
  border-top: 1px solid var(--pm-line);
  padding: 22px 0 0;
  color: var(--pm-ink-700);
  font-family: var(--pm-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.pm-newsletter {
  background: var(--pm-oud-900);
  color: var(--pm-ivory-50);
}

.pm-newsletter h2 {
  color: var(--pm-ivory-50);
}

.pm-newsletter-form {
  display: flex;
  max-width: 720px;
  gap: 12px;
  margin-top: 28px;
}

.pm-newsletter-form label {
  flex: 1;
}

.pm-newsletter-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 2px;
  background: rgba(255, 253, 249, 0.08);
  color: var(--pm-ivory-50);
  padding: 0 14px;
}

.pm-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: var(--pm-line);
}

.pm-product-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.pm-product-assurance span {
  border: 1px solid var(--pm-line);
  padding: 8px 11px;
  color: var(--pm-ink-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-product-facts div {
  background: var(--pm-ivory-50);
  padding: 14px;
}

.pm-product-facts span,
.pm-notes-pyramid span {
  display: block;
  color: var(--pm-ink-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-product-facts strong,
.pm-notes-pyramid strong {
  color: var(--pm-ink-900);
  font-size: 0.95rem;
  font-weight: 600;
}

.pm-product-ritual-details {
  clear: both;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 80px);
  background: var(--pm-ivory-100);
}

.pm-product-story {
  max-width: 760px;
  color: var(--pm-ink-700);
  font-size: 1.08rem;
  line-height: 1.75;
}

.pm-notes-pyramid {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--pm-line);
}

.pm-notes-pyramid div {
  background: var(--pm-ivory-50);
  padding: 22px;
}

.pm-discovery-fallback {
  margin-top: 28px;
  border-top: 1px solid var(--pm-line);
  padding-top: 24px;
}

.pm-discovery-fallback h3 {
  margin: 0 0 10px;
  color: var(--pm-ink-900);
  font-family: var(--pm-font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.02;
}

@media (max-width: 980px) {
  .pm-trust-strip,
  .pm-category-grid,
  .pm-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-split-feature,
  .pm-signature,
  .pm-note-grid,
  .pm-guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pm-hero {
    min-height: 88svh;
  }

  .pm-hero-video-desktop {
    display: none;
  }

  .pm-hero-video-mobile {
    display: block;
  }

  .pm-hero-content {
    width: 100%;
    padding: 118px 20px 42px;
  }

  .pm-hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .pm-hero-actions,
  .pm-newsletter-form {
    align-items: stretch;
    flex-direction: column;
  }

  .pm-button {
    width: 100%;
  }

  .pm-trust-strip {
    grid-template-columns: 1fr;
  }

  .pm-section {
    padding: 52px 20px;
  }

  .pm-category-grid,
  .pm-product-grid,
  .pm-note-grid,
  .pm-notes-pyramid,
  .pm-product-facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-hero-video {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
