/* ===========================================
   PARFUMERIE — Style
   Design parity pass vs. the "Willey Fragrance" reference
   (Syne/Outfit, brand gold #d2a647, near-black).
   Scoped under .pfm-scope so it never leaks into
   other tenants/templates or the admin/dashboard UI.
   =========================================== */

.pfm-scope,
.pfm-scope *,
.pfm-scope *::before,
.pfm-scope *::after {
  box-sizing: border-box;
}
.pfm-scope ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pfm-scope a {
  text-decoration: none;
  color: inherit;
}
.pfm-scope img {
  max-width: 100%;
  display: block;
}
.pfm-scope button {
  font-family: inherit;
}

.pfm-scope {
  --pfm-bg: #000;
  --pfm-bg-alt: #0a0a0a;
  --pfm-card: #0a0a0a;
  --pfm-gold: #d2a647;
  --pfm-gold-light: #cfae82;
  --pfm-text: #e9e5e5;
  --pfm-muted: silver;
  --pfm-border: #373636;
  /* Slow, decelerated ease — the signature "expensive" motion curve used
     across every hover/reveal transition in this template. */
  --pfm-ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-outfit), "Outfit", system-ui, sans-serif;
  font-weight: 300;
  background: var(--pfm-bg);
  color: var(--pfm-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.pfm-scope ::selection {
  background: var(--pfm-gold);
  color: #0a0a0a;
}
/* This stylesheet is only ever linked on parfumerie-template pages, so
   theming the real page scrollbar here is safe — it never reaches other
   tenants' templates. */
html:has(.pfm-scope) {
  scrollbar-width: thin;
  scrollbar-color: var(--pfm-gold, #d2a647) #0a0a0a;
}
html:has(.pfm-scope)::-webkit-scrollbar {
  width: 10px;
}
html:has(.pfm-scope)::-webkit-scrollbar-track {
  background: #0a0a0a;
}
html:has(.pfm-scope)::-webkit-scrollbar-thumb {
  background: #373636;
  border: 2px solid #0a0a0a;
  border-radius: 999px;
}
html:has(.pfm-scope)::-webkit-scrollbar-thumb:hover {
  background: #d2a647;
}
/* ── Film grain — the single detail that reads as "print", not "app".
   A fixed, near-invisible noise layer over the whole viewport; this is
   the same trick used by most awarded editorial/luxury sites to keep flat
   digital black from looking sterile. Non-interactive, GPU-cheap (one
   fixed layer, no JS). */
.pfm-scope:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.pfm-scope h1,
.pfm-scope h2,
.pfm-scope h3 {
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 700;
  margin: 0;
  color: var(--pfm-text);
}
.pfm-scope h4 {
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 500;
  margin: 0;
  color: var(--pfm-text);
}
.pfm-scope p {
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  color: var(--pfm-muted);
}
.pfm-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.pfm-nav__container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 24px;
}
.pfm-gold-text {
  color: var(--pfm-gold);
}
.pfm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pfm-gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.pfm-kicker.light {
  color: var(--pfm-gold-light);
}
.pfm-kicker:before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--pfm-gold);
  display: inline-block;
}
.pfm-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.pfm-section-head h2 {
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ── Page hero banner — full-height image with the title centered on it.
   Used as the intro block for every non-home page (About, Boutique,
   Contact, product detail...); the homepage keeps its own dedicated
   hero-with-slider instead. ──────────────────────────────────────────── */
.pfm-page-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  max-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pfm-bg-alt);
}
.pfm-page-hero__media {
  position: absolute;
  inset: 0;
}
.pfm-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pfm-page-hero__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}
.pfm-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  opacity: 0;
  animation: pfm-fade-up 0.9s var(--pfm-ease) forwards;
  animation-delay: 0.1s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 6px 26px rgba(0, 0, 0, 0.45);
}
.pfm-page-hero__content h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 14px;
}
/* Force the kicker to a bright, always-legible white here — its usual
   muted gold tones can wash out against light or busy hero photography. */
.pfm-page-hero__content .pfm-kicker {
  color: rgba(255, 255, 255, 0.92);
}
.pfm-page-hero__content .pfm-kicker:before {
  background: var(--pfm-gold-light);
}
@media (prefers-reduced-motion: reduce) {
  .pfm-page-hero__content {
    opacity: 1;
    animation: none;
  }
}
@media (max-width: 720px) {
  .pfm-page-hero {
    height: 46vh;
    min-height: 340px;
  }
}

/* ── Signature "gallery frame" corner-bracket motif ───────────────────────
   Two offset L-shaped brackets (top-left + bottom-right), the recurring
   framing device used on every image throughout the template — hero,
   story, teasers, products. Deliberately sharp-edged (border-radius: 0
   everywhere) rather than rounded, for an editorial/fashion-plate feel
   instead of a soft "app" feel. */
.pfm-frame {
  position: relative;
}
.pfm-frame:before,
.pfm-frame:after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pfm-gold);
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
  transition: width 0.5s var(--pfm-ease), height 0.5s var(--pfm-ease);
}
.pfm-frame:before {
  top: -12px;
  left: -12px;
  border-right: 0;
  border-bottom: 0;
}
.pfm-frame:after {
  bottom: -12px;
  right: -12px;
  border-left: 0;
  border-top: 0;
}
.pfm-frame:hover:before,
.pfm-frame:hover:after {
  width: 44px;
  height: 44px;
}

/* ── Thin decorative rule — the recurring "stitch" that ties sections
   together into one system, echoing a magazine's column guides. ────────── */
.pfm-rule {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(210, 166, 71, 0.35) 15%,
    rgba(210, 166, 71, 0.35) 85%,
    transparent
  );
  pointer-events: none;
}
@media (max-width: 900px) {
  .pfm-rule {
    display: none;
  }
}

/* ── Staggered reveal-on-scroll for grids ─────────────────────────────────
   Pair a `.pfm-stagger` container (ref'd via useRevealOnView) with an
   `.is-visible` class toggle; children fade up in sequence. Falls back to
   fully visible/static if JS never adds the class (progressive enhancement). */
.pfm-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--pfm-ease), transform 0.7s var(--pfm-ease);
}
.pfm-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.pfm-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.pfm-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.pfm-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.pfm-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.pfm-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.pfm-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }
.pfm-stagger.is-visible > *:nth-child(n+7) { transition-delay: 540ms; }
@media (prefers-reduced-motion: reduce) {
  .pfm-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Buttons */
.pfm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  transition: border-color 0.45s var(--pfm-ease), background-color 0.45s var(--pfm-ease),
    color 0.45s var(--pfm-ease), transform 0.45s var(--pfm-ease), box-shadow 0.45s var(--pfm-ease);
  cursor: pointer;
}
.pfm-btn--gold {
  position: relative;
  border: 1px solid var(--pfm-gold);
  background: var(--pfm-gold);
  color: #0a0a0a;
  overflow: hidden;
  z-index: 0;
}
.pfm-btn--gold:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pfm-bg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--pfm-ease);
  z-index: -1;
}
.pfm-btn--gold:hover:before {
  transform: scaleX(1);
}
.pfm-btn--gold:hover {
  color: var(--pfm-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(210, 166, 71, 0.22);
}
/* A single soft light streak sweeps across on hover — the "expensive"
   micro-interaction luxury buttons use instead of a flat color swap. */
.pfm-btn--gold:after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s var(--pfm-ease);
  pointer-events: none;
  z-index: 2;
}
.pfm-btn--gold:hover:after {
  left: 130%;
}
/* Reference's dominant CTA pattern: uppercase text + a persistent full-width
   underline bar (e.g. "See Offers", "Shop Now", "Explore All") — no fill/border box. */
.pfm-btn--outline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--pfm-gold);
  font-weight: 500;
}
.pfm-btn--outline:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--pfm-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: background-color 0.3s var(--pfm-ease), transform 0.45s var(--pfm-ease);
}
.pfm-btn--outline:hover {
  color: var(--pfm-gold-light);
}
.pfm-btn--outline:hover:after {
  background: var(--pfm-gold-light);
  transform: scaleX(0.94);
}
.pfm-btn--dark {
  background: #000;
  color: var(--pfm-gold-light);
  border: 1px solid var(--pfm-border);
}
.pfm-btn--sm {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 2px;
}
.pfm-btn--outline.pfm-btn--sm {
  padding: 0;
  gap: 6px;
}
.pfm-btn--arrow {
  position: relative;
}
.pfm-btn--arrow:after {
  content: "\2192";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.4s var(--pfm-ease);
}
.pfm-btn--arrow:hover:after {
  transform: translateX(6px);
}
/* Undo the shared .pfm-btn--outline underline-bar rule for the arrow
   variant — this one reads as a plain link + moving arrow, no bar. */
.pfm-btn--arrow.pfm-btn--outline:after {
  content: none;
}
.pfm-btn--arrow.pfm-btn--outline {
  flex-direction: row;
  align-items: center;
}
.pfm-btn--arrow.pfm-btn--outline:before {
  content: "\2192";
  display: inline-block;
  order: 2;
  margin-left: 8px;
  transition: transform 0.4s var(--pfm-ease);
}
.pfm-btn--arrow.pfm-btn--outline:hover:before {
  transform: translateX(6px);
}
/* Navbar */
.pfm-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s var(--pfm-ease), border-color 0.5s var(--pfm-ease),
    box-shadow 0.5s var(--pfm-ease);
}
.pfm-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--pfm-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.pfm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.4s var(--pfm-ease);
}
.pfm-nav.is-scrolled .pfm-nav__inner {
  height: 70px;
}
.pfm-logo {
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--pfm-text);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pfm-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.pfm-logo span {
  color: var(--pfm-gold);
}
.pfm-logo small {
  font-family: var(--font-outfit), "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pfm-muted);
  font-weight: 400;
  margin-top: 6px;
}
.pfm-nav__links {
  display: flex;
  gap: 36px;
}
.pfm-nav__links a {
  position: relative;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pfm-muted);
  transition: color 0.3s var(--pfm-ease);
  padding-bottom: 4px;
}
.pfm-nav__links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--pfm-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--pfm-ease);
}
.pfm-nav__links a:hover,
.pfm-nav__links a.active {
  color: var(--pfm-gold);
}
.pfm-nav__links a:hover:after,
.pfm-nav__links a.active:after {
  transform: scaleX(1);
  transform-origin: left;
}
.pfm-nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pfm-nav__icons {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pfm-muted);
}
.pfm-nav__icon {
  display: inline-flex;
  transition: color 0.3s var(--pfm-ease), transform 0.3s var(--pfm-ease);
}
.pfm-nav__icon:hover {
  color: var(--pfm-gold-light);
  transform: translateY(-1px);
}
.pfm-nav__icon svg {
  width: 17px;
  height: 17px;
}
.pfm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  z-index: 41;
}
.pfm-burger span {
  width: 22px;
  height: 2px;
  background: var(--pfm-text);
  display: block;
  transition: transform 0.35s var(--pfm-ease), opacity 0.35s var(--pfm-ease);
  transform-origin: center;
}
.pfm-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pfm-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.pfm-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.pfm-nav__links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 3, 3, 0.98);
  backdrop-filter: blur(10px);
  padding: 120px 32px 40px;
  gap: 28px;
  border-bottom: 1px solid var(--pfm-border);
}
.pfm-nav__links.is-open li {
  opacity: 0;
  transform: translateY(14px);
  animation: pfm-nav-link-in 0.5s var(--pfm-ease) forwards;
  animation-delay: calc(var(--i, 0) * 60ms + 80ms);
}
.pfm-nav__links.is-open a {
  font-size: 22px;
  letter-spacing: 1px;
}
@keyframes pfm-nav-link-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Hero */
.pfm-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
  overflow: hidden;
}
.pfm-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 82% 45%,
      rgba(210, 166, 71, 0.14),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 0% 100%,
      rgba(210, 166, 71, 0.07),
      transparent 70%
    );
  pointer-events: none;
}
/* Large soft decorative shape — an oversized, barely-there ring that gives
   the hero depth without competing with the product image or the type. */
.pfm-hero__shape {
  position: absolute;
  top: 50%;
  left: 46%;
  width: min(58vw, 780px);
  height: min(58vw, 780px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(210, 166, 71, 0.16);
  pointer-events: none;
}
.pfm-hero__shape:before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(210, 166, 71, 0.1);
}
/* Oversized faint outlined word behind the copy — a classic editorial
   "watermark" device for scale and drama. Purely decorative (aria-hidden),
   sourced from the same title text so it never needs separate CMS content. */
.pfm-hero__watermark {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 100%;
  text-align: center;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 700;
  font-size: min(22vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 166, 71, 0.14);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.pfm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.pfm-hero__content {
  max-width: 640px;
}
.pfm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pfm-gold-light);
  margin-bottom: 22px;
}
.pfm-star {
  color: var(--pfm-gold);
}
h1.pfm-hero__title {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--pfm-gold);
  overflow-wrap: break-word;
}
.pfm-hero__bottom {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 36px;
}
.pfm-hero__line {
  width: 2px;
  min-height: 56px;
  background: var(--pfm-gold);
  flex-shrink: 0;
}
.pfm-hero__text {
  max-width: 420px;
  font-size: 15px;
  align-self: center;
}
.pfm-hero__cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.pfm-hero__media {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Wraps .pfm-hero__slider so the .pfm-frame corner brackets aren't clipped
   by the slider's own overflow:hidden (needed for the slide crossfade). */
.pfm-hero__frame {
  position: relative;
  transform: translateY(var(--pfm-parallax, 0px));
  will-change: transform;
}
.pfm-hero__slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: var(--pfm-bg-alt);
}
.pfm-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.pfm-hero__slide.is-active {
  opacity: 1;
}
.pfm-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Optional second CMS image (images[1]) rendered as a smaller, offset
   accent overlapping the main frame — the "image overlap" composition. */
.pfm-hero__accent {
  position: absolute;
  left: -48px;
  bottom: -44px;
  width: 42%;
  aspect-ratio: 4 / 5;
  z-index: 2;
  border: 6px solid var(--pfm-bg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}
.pfm-hero__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pfm-hero__arrows {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}
.pfm-hero__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--pfm-muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}
.pfm-hero__arrow:hover {
  color: var(--pfm-gold-light);
}

/* Entrance animation — runs automatically on load (hero is always
   above-the-fold, so it must never be gated behind a scroll trigger). */
@keyframes pfm-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pfm-hero__eyebrow,
h1.pfm-hero__title,
.pfm-hero__bottom,
.pfm-hero__cta,
.pfm-hero__media {
  opacity: 0;
  animation: pfm-fade-up 0.9s var(--pfm-ease) forwards;
}
.pfm-hero__eyebrow { animation-delay: 0.05s; }
h1.pfm-hero__title { animation-delay: 0.16s; }
.pfm-hero__bottom { animation-delay: 0.34s; }
.pfm-hero__cta { animation-delay: 0.46s; }
.pfm-hero__media { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .pfm-hero__eyebrow,
  h1.pfm-hero__title,
  .pfm-hero__bottom,
  .pfm-hero__cta,
  .pfm-hero__media {
    opacity: 1;
    animation: none;
  }
}

/* Scroll cue */
.pfm-hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--pfm-muted);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: pfm-fade-up 0.9s var(--pfm-ease) forwards;
  animation-delay: 0.7s;
}
.pfm-hero__scrollcue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--pfm-gold), transparent);
  animation: pfm-scrollcue 1.8s ease-in-out infinite;
}
@keyframes pfm-scrollcue {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
}

/* Gallery / Teasers */
.pfm-teasers {
  border-top: 1px solid var(--pfm-border);
  border-bottom: 1px solid var(--pfm-border);
}

/* Promo split composition (1-2 items) — matches the reference's
   "40% Off" / "New" bordered promo cards. */
.pfm-promo-grid {
  display: flex;
  align-items: stretch;
}
.pfm-promo {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 68px;
  padding: 120px 0;
}
.pfm-promo:not(:last-child) {
  border-right: 1px solid var(--pfm-border);
  padding-right: 66px;
}
.pfm-promo:not(:first-child) {
  padding-left: 66px;
}
.pfm-promo__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 300px;
  flex-shrink: 0;
}
.pfm-promo__heading {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--pfm-gold-light);
}
.pfm-promo__content p {
  font-size: 14px;
}
.pfm-promo__media-frame {
  flex: 1;
}
.pfm-promo__media {
  position: relative;
  overflow: hidden;
}
.pfm-promo__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s var(--pfm-ease);
}
.pfm-promo:hover .pfm-promo__media img {
  transform: scale(1.05);
}

/* Overlay grid fallback (3-4 items) */
.pfm-teasers__grid {
  display: grid;
  grid-template-columns: repeat(var(--pfm-teasers-cols, 2), 1fr);
  align-items: end;
  gap: 24px;
  padding: 80px 0;
}
.pfm-teaser {
  position: relative;
  overflow: hidden;
  height: 320px;
}
/* Alternating heights give the 3-4 item grid an editorial rhythm instead
   of a flat, uniform row of tiles — odd tiles run taller and sit
   bottom-aligned against the row (via .pfm-teasers__grid's align-items: end). */
.pfm-teaser--tall {
  height: 380px;
}
.pfm-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--pfm-ease);
}
.pfm-teaser:hover img {
  transform: scale(1.06);
}
.pfm-teaser:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1) 60%);
}
.pfm-teaser__body {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  z-index: 2;
}
.pfm-teaser__body span {
  display: block;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
}
.pfm-teaser__link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pfm-gold-light);
  border-bottom: 1px solid var(--pfm-gold);
  padding-bottom: 4px;
  transition: transform 0.4s var(--pfm-ease), letter-spacing 0.4s var(--pfm-ease);
}
.pfm-teaser:hover .pfm-teaser__link {
  transform: translateX(4px);
}

/* Brand showcase — "shop by maison" filter bar above the catalogue grid
   (productsByBrand). Reuses .pfm-products__grid for the card layout;
   only the filter tabs and the cross-fade-on-filter are defined here. */
.pfm-brands {
  padding: 130px 0;
}
.pfm-brands__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 48px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--pfm-border);
}
.pfm-brands__tab {
  position: relative;
  background: none;
  border: none;
  padding: 0 0 12px;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pfm-muted);
  cursor: pointer;
  transition: color 0.4s var(--pfm-ease);
}
.pfm-brands__tab:after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--pfm-gold);
  transition: left 0.4s var(--pfm-ease), right 0.4s var(--pfm-ease);
}
.pfm-brands__tab:hover {
  color: var(--pfm-text);
}
.pfm-brands__tab.is-active {
  color: var(--pfm-gold);
  font-weight: 700;
}
.pfm-brands__tab.is-active:after {
  left: 0;
  right: 0;
}
.pfm-brands__grid {
  animation: pfm-brands-fade 0.6s var(--pfm-ease);
}
@keyframes pfm-brands-fade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pfm-brands__grid { animation: none; }
}
@media (max-width: 720px) {
  .pfm-brands { padding: 90px 0; }
  .pfm-brands__filter { gap: 10px 28px; margin-bottom: 40px; padding-bottom: 28px; }
  .pfm-brands__tab { font-size: 13px; letter-spacing: 2px; }
}

/* Details / numbered grid (imageTextScroll with listItems) */
.pfm-details {
  padding: 90px 0 130px;
  background: var(--pfm-bg-alt);
}
.pfm-details__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  max-width: 1099px;
  margin: 0 auto;
}
.pfm-details__grid.pfm-img-right {
  grid-template-columns: 1.15fr 0.85fr;
}
.pfm-details__grid.pfm-img-right .pfm-details__media {
  order: 2;
}
.pfm-details__media img {
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pfm-details__content h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  margin-bottom: 28px;
}
.pfm-details__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--pfm-border);
  border-left: 1px solid var(--pfm-border);
}
.pfm-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 26px 26px;
  border-right: 1px solid var(--pfm-border);
  border-bottom: 1px solid var(--pfm-border);
  transition: background-color 0.4s var(--pfm-ease);
}
.pfm-detail:hover {
  background: rgba(210, 166, 71, 0.05);
}
.pfm-detail__num {
  position: absolute;
  top: -15px;
  left: 22px;
  background: var(--pfm-bg-alt);
  padding: 0 8px;
  font-family: var(--font-outfit), "Outfit", sans-serif;
  color: var(--pfm-gold);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}
.pfm-detail h4 {
  font-size: 22px;
  margin-bottom: 4px;
}
.pfm-detail p {
  font-size: 14.5px;
  line-height: 1.6;
}

/* Story (imageTextScroll without listItems) — asymmetrical editorial
   composition: the media column sits offset (not vertically centered)
   with an optional overlapping accent image, and the copy column carries
   a large decorative quote mark for depth. */
.pfm-story {
  padding: 130px 0 70px;
  background: var(--pfm-bg-alt);
  overflow: hidden;
}
.pfm-story__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}
.pfm-story__grid.pfm-img-right {
  grid-template-columns: 0.95fr 1.05fr;
}
.pfm-story__grid.pfm-img-right .pfm-story__media-wrap {
  order: 2;
}
.pfm-story__media-wrap {
  position: relative;
  margin-top: -48px;
}
.pfm-story__grid.pfm-img-right .pfm-story__media-wrap {
  margin-top: 48px;
}
/* Curtain-mask reveal — the image un-masks on scroll instead of merely
   fading in, one of the "layered" reveal moments the editorial direction
   calls for. Clips the <img> itself (not the .pfm-frame wrapper), so the
   corner brackets — which sit outside the image's own box — are never
   affected by the mask. */
.pfm-story__media img {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.2s var(--pfm-ease);
}
.pfm-story__media.is-revealed img {
  clip-path: inset(0 0 0 0%);
}
@media (prefers-reduced-motion: reduce) {
  .pfm-story__media img {
    clip-path: none;
    transition: none;
  }
}
.pfm-story__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.pfm-story__media-accent {
  position: absolute;
  right: -40px;
  bottom: -56px;
  width: 52%;
  aspect-ratio: 1 / 1;
  border: 6px solid var(--pfm-bg-alt);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.pfm-story__grid.pfm-img-right .pfm-story__media-accent {
  right: auto;
  left: -40px;
}
.pfm-story__media-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pfm-story__content {
  position: relative;
  padding-top: 28px;
}
.pfm-story__mark {
  position: absolute;
  top: -70px;
  left: -12px;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 166, 71, 0.16);
  z-index: 0;
  pointer-events: none;
}
.pfm-story__content > *:not(.pfm-story__mark) {
  position: relative;
  z-index: 1;
}
.pfm-story__content h2 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.pfm-story__content p {
  margin-bottom: 20px;
}
.pfm-story__founder {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--pfm-border);
}
.pfm-story__founder strong {
  display: block;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 18px;
  color: var(--pfm-gold-light);
}
.pfm-story__founder span {
  font-size: 12.5px;
  color: var(--pfm-muted);
}
.pfm-story__founder-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.pfm-story__founder-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--pfm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pfm-muted);
  transition: border-color 0.35s var(--pfm-ease), color 0.35s var(--pfm-ease),
    transform 0.35s var(--pfm-ease);
}
.pfm-story__founder-socials a:hover {
  border-color: var(--pfm-gold);
  color: var(--pfm-gold-light);
  transform: translateY(-3px);
}

/* Products / Services */
.pfm-products {
  padding: 130px 0;
}
.pfm-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 32px;
  margin-bottom: 56px;
}
.pfm-product-frame {
  margin: 14px 2px 18px;
}
.pfm-product {
  display: block;
}
.pfm-product__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--pfm-bg-alt);
}
.pfm-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--pfm-ease);
}
.pfm-product:hover .pfm-product__media img {
  transform: scale(1.045);
}
.pfm-product__caption {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--pfm-border);
  text-align: left;
  transition: border-color 0.4s var(--pfm-ease);
}
.pfm-product:hover .pfm-product__caption {
  border-color: var(--pfm-gold);
}
.pfm-product h4 {
  font-size: 21px;
  margin-bottom: 10px;
  transition: color 0.4s var(--pfm-ease);
}
.pfm-product:hover h4 {
  color: var(--pfm-gold-light);
}
.pfm-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pfm-product__price {
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 14px;
  color: var(--pfm-gold-light);
  letter-spacing: 0.5px;
}
.pfm-product__arrow {
  color: var(--pfm-muted);
  transition: transform 0.4s var(--pfm-ease), color 0.4s var(--pfm-ease);
}
.pfm-product:hover .pfm-product__arrow {
  transform: translateX(6px);
  color: var(--pfm-gold);
}
.pfm-product p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--pfm-muted);
}
.pfm-product__size {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(233, 229, 229, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pfm-text);
}
.pfm-product__size-caret {
  font-size: 9px;
  color: var(--pfm-gold);
}
.pfm-products__more {
  text-align: center;
}
.pfm-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  border: 1px solid var(--pfm-gold);
  background: transparent;
  color: var(--pfm-gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  transition: background-color 0.45s var(--pfm-ease), color 0.45s var(--pfm-ease),
    transform 0.45s var(--pfm-ease), box-shadow 0.45s var(--pfm-ease);
}
.pfm-circle-btn:hover {
  background: var(--pfm-gold);
  color: #0a0a0a;
  transform: scale(1.06);
  box-shadow: 0 16px 34px rgba(210, 166, 71, 0.25);
}
/* Diff / Stats — feature row with hairline dividers (no boxed cards) */
.pfm-diff {
  padding: 120px 0;
  background: var(--pfm-bg-alt);
}
.pfm-diff__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--pfm-border);
  border-left: 1px solid var(--pfm-border);
}
.pfm-stat {
  position: relative;
  text-align: center;
  padding: 40px 20px 32px;
  border-right: 1px solid var(--pfm-border);
  border-bottom: 1px solid var(--pfm-border);
  transition: background-color 0.4s var(--pfm-ease);
}
.pfm-stat:hover {
  background: rgba(210, 166, 71, 0.05);
}
.pfm-stat__num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pfm-bg-alt);
  padding: 0 10px;
  font-family: var(--font-outfit), "Outfit", sans-serif;
  color: var(--pfm-gold);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
.pfm-stat h4 {
  font-size: 22px;
  margin-bottom: 6px;
}
.pfm-stat p {
  font-size: 13px;
}

/* Testimonials */
.pfm-testimonials {
  padding: 130px 0 70px;
}
.pfm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pfm-t-card {
  position: relative;
  text-align: left;
  padding: 52px 36px 40px;
  border-left: 2px solid var(--pfm-gold);
  background: var(--pfm-bg-alt);
  overflow: hidden;
  transition: transform 0.45s var(--pfm-ease), background-color 0.45s var(--pfm-ease);
}
.pfm-t-card:hover {
  transform: translateY(-4px);
  background: #0d0d0d;
}
.pfm-t-card__quote {
  position: absolute;
  top: -18px;
  right: 20px;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 140px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 166, 71, 0.3);
  pointer-events: none;
}
.pfm-t-card__stars {
  position: relative;
  color: var(--pfm-gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 13px;
}
.pfm-t-card p {
  position: relative;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 28px;
  color: var(--pfm-text);
}
.pfm-t-card__who {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--pfm-border);
}
.pfm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210, 166, 71, 0.14);
  color: var(--pfm-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-syne), "Syne", sans-serif;
  flex-shrink: 0;
}
.pfm-avatar--photo {
  background: none;
  object-fit: cover;
}
.pfm-t-card__who strong {
  display: block;
  font-size: 14px;
  color: var(--pfm-text);
}
.pfm-t-card__who span {
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pfm-gold-light);
}

/* Pagination — only rendered when there are more than 3 testimonials, so
   the default (reference-matching) static grid is untouched otherwise. */
.pfm-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 44px;
}
.pfm-testimonials__dots {
  display: flex;
  gap: 10px;
}
.pfm-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--pfm-border);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s var(--pfm-ease), border-color 0.3s var(--pfm-ease),
    transform 0.3s var(--pfm-ease);
}
.pfm-testimonials__dot.is-active {
  background: var(--pfm-gold);
  border-color: var(--pfm-gold);
  transform: scale(1.3);
}

/* Locator / CTA */
.pfm-locator {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: #000;
}
.pfm-locator__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.pfm-locator__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.pfm-locator__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.pfm-locator h2 {
  margin-bottom: 16px;
}
.pfm-locator p {
  margin-bottom: 32px;
}
.pfm-locator__btns {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Blog */
.pfm-blog {
  padding: 100px 0;
}
.pfm-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pfm-blog-card {
  display: block;
  background: #0b0b0b;
  border: 1px solid var(--pfm-border);
  border-top: 0;
  overflow: hidden;
  transition: border-color 0.45s var(--pfm-ease), transform 0.45s var(--pfm-ease),
    box-shadow 0.45s var(--pfm-ease);
}
.pfm-blog-card:hover {
  border-color: var(--pfm-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.pfm-blog-card img {
  height: 190px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s var(--pfm-ease);
}
.pfm-blog-card:hover img {
  transform: scale(1.06);
}
.pfm-blog-card__body {
  padding: 16px 30px 24px;
}
.pfm-blog-card h4 {
  font-size: 18px;
  margin: 0 0 8px;
}
.pfm-blog-card p {
  font-size: 13px;
  margin-bottom: 16px;
}
.pfm-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pfm-border);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pfm-muted);
}
.pfm-blog-card__meta span:last-child {
  color: var(--pfm-gold);
}
.pfm-blog__bottom {
  text-align: center;
  margin-top: 44px;
}

/* Single product page */
.pfm-product-detail {
  padding: 90px 0 60px;
}
.pfm-product-detail__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.pfm-product-detail__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pfm-bg-alt);
}
.pfm-product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pfm-product-detail__content {
  padding-top: 40px;
}
.pfm-product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: var(--pfm-muted);
  margin-bottom: 32px;
  transition: color 0.3s var(--pfm-ease);
}
.pfm-product-detail__back:hover {
  color: var(--pfm-gold-light);
}
.pfm-product-detail__content h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.pfm-product-detail__price {
  font-family: var(--font-syne), "Syne", sans-serif;
  font-size: 28px;
  color: var(--pfm-gold-light);
  margin-bottom: 20px;
}
.pfm-product-detail__size {
  margin-bottom: 28px;
}
.pfm-product-detail__desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--pfm-muted);
  max-width: 460px;
  margin-bottom: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--pfm-border);
}
.pfm-product-detail__cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Rich text */
.pfm-richtext {
  padding: 100px 0;
}
.pfm-richtext__inner {
  max-width: 760px;
}
.pfm-richtext--center {
  margin: 0 auto;
  text-align: center;
}
.pfm-richtext--right {
  margin-left: auto;
  text-align: right;
}
.pfm-richtext__inner p {
  color: var(--pfm-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15.5px;
}
.pfm-richtext__list {
  margin-top: 12px;
}
.pfm-richtext__list li {
  color: var(--pfm-muted);
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}
.pfm-richtext__list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--pfm-gold);
  border-radius: 50%;
}

/* FAQ */
.pfm-faq {
  padding: 100px 0;
}
.pfm-faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.pfm-faq__item {
  border-bottom: 1px solid var(--pfm-border);
}
.pfm-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  color: var(--pfm-text);
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.pfm-faq__item.is-open .pfm-faq__question {
  color: var(--pfm-gold-light);
}
.pfm-faq__icon {
  flex-shrink: 0;
  color: var(--pfm-gold);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.4s var(--pfm-ease);
}
.pfm-faq__item.is-open .pfm-faq__icon {
  transform: rotate(180deg);
}
.pfm-faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--pfm-ease);
}
.pfm-faq__item.is-open .pfm-faq__answer-wrap {
  grid-template-rows: 1fr;
}
.pfm-faq__answer {
  overflow: hidden;
  padding-bottom: 22px;
  color: var(--pfm-muted);
  line-height: 1.7;
  font-size: 14.5px;
}

/* Contact info panel */
.pfm-contact-panel {
  padding: 100px 0;
}
.pfm-contact-panel__card {
  max-width: 480px;
  background: var(--pfm-bg-alt);
  border: 1px solid var(--pfm-border);
  padding: 48px;
}
.pfm-contact-panel__card h3 {
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pfm-border);
}
.pfm-contact-panel__group {
  padding: 18px 0;
  border-bottom: 1px solid var(--pfm-border);
}
.pfm-contact-panel__group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pfm-contact-panel__label {
  display: block;
  font-size: 13px;
  color: var(--pfm-muted);
  margin-bottom: 10px;
}
.pfm-contact-panel__row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pfm-text);
  font-size: 14.5px;
}
.pfm-contact-panel__icon {
  color: var(--pfm-gold);
  display: flex;
}

/* Google map */
.pfm-map {
  padding: 100px 0;
}
.pfm-map__frame {
  overflow: hidden;
  border: 1px solid var(--pfm-border);
}
.pfm-map__address {
  text-align: center;
  color: var(--pfm-muted);
  font-size: 13.5px;
  margin-top: 16px;
}

/* Contact form */
.pfm-contact-form {
  padding: 100px 0;
}
.pfm-contact-form__inner {
  max-width: 900px;
  margin: 0 auto;
}
.pfm-contact-form__card {
  background: var(--pfm-bg-alt);
  border: 1px solid var(--pfm-border);
  padding: 48px;
}
.pfm-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pfm-contact-form__field--full {
  grid-column: 1 / -1;
}
.pfm-contact-form__field label {
  display: block;
  font-size: 13px;
  color: var(--pfm-muted);
  margin-bottom: 8px;
}
.pfm-contact-form__required {
  color: var(--pfm-gold);
  margin-left: 2px;
}
.pfm-contact-form__field input,
.pfm-contact-form__field textarea {
  width: 100%;
  background: var(--pfm-bg);
  border: 1px solid var(--pfm-border);
  color: var(--pfm-text);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.35s var(--pfm-ease), box-shadow 0.35s var(--pfm-ease);
}
.pfm-contact-form__field input::placeholder,
.pfm-contact-form__field textarea::placeholder {
  color: var(--pfm-muted);
}
.pfm-contact-form__field input:focus,
.pfm-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--pfm-gold);
  box-shadow: 0 0 0 3px rgba(210, 166, 71, 0.14);
}
.pfm-contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--pfm-muted);
  margin: 20px 0;
  cursor: pointer;
}
.pfm-contact-form__consent input {
  margin-top: 3px;
  accent-color: var(--pfm-gold);
}
.pfm-contact-form__consent a {
  color: var(--pfm-gold-light);
  text-decoration: underline;
}
.pfm-contact-form__card .pfm-btn {
  width: 100%;
}
.pfm-contact-form__card .pfm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pfm-contact-form__success {
  text-align: center;
  padding: 60px 20px;
  border: 1px solid var(--pfm-border);
  background: var(--pfm-bg-alt);
}
.pfm-contact-form__success h3 {
  color: var(--pfm-gold-light);
  margin-bottom: 10px;
}
.pfm-contact-form__success p {
  color: var(--pfm-muted);
}

/* Instagram gallery */
.pfm-instagram {
  padding: 100px 0 0;
}
.pfm-instagram__icon {
  color: var(--pfm-gold);
  margin: 0 auto 18px;
}
.pfm-instagram__handle {
  color: var(--pfm-gold-light);
  font-size: 14px;
  margin-top: 8px;
}
.pfm-instagram__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pfm-instagram__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.pfm-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--pfm-ease);
}
.pfm-instagram__item:hover img {
  transform: scale(1.06);
}

/* Footer */
.pfm-footer {
  position: relative;
  padding: 120px 0 0;
  background: var(--pfm-bg-alt);
  border-top: 1px solid var(--pfm-border);
  overflow: hidden;
}
.pfm-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}
/* Giant faint outlined brand wordmark — the "signed like a fashion house"
   footer signature. Purely decorative, sourced straight from tenant.name. */
.pfm-footer__signature {
  width: 100%;
  text-align: center;
  font-family: var(--font-syne), "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 11vw, 168px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 166, 71, 0.18);
  padding: 10px 20px 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  user-select: none;
}
.pfm-footer__grid--custom {
  grid-template-columns: repeat(var(--footer-cols, 3), minmax(0, 1fr));
  gap: 48px;
}
.pfm-footer__links a {
  display: block;
  font-size: 13.5px;
  color: var(--pfm-muted);
  margin-bottom: 12px;
}
.pfm-footer__links a:hover {
  color: var(--pfm-gold-light);
}
.pfm-newsletter-banner {
  border-bottom: 1px solid var(--pfm-border);
  padding-bottom: 56px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.pfm-newsletter-banner h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
.pfm-newsletter-banner p {
  color: var(--pfm-muted);
  font-size: 14px;
  max-width: 460px;
}
.pfm-newsletter-banner .pfm-newsletter {
  max-width: 420px;
  flex: 1;
  min-width: 280px;
}
.pfm-footer__brand .pfm-logo {
  margin-bottom: 16px;
}
.pfm-footer__brand p {
  max-width: 320px;
  margin-bottom: 20px;
  font-size: 13.5px;
}
.pfm-newsletter {
  display: flex;
  gap: 0;
  max-width: 340px;
}
.pfm-newsletter input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--pfm-border);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  padding: 12px 16px;
  color: var(--pfm-text);
  font-size: 13px;
}
.pfm-newsletter button {
  border-radius: 0 999px 999px 0;
  padding: 12px 20px;
}
.pfm-footer__col h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pfm-gold-light);
  margin-bottom: 20px;
}
.pfm-footer__col a,
.pfm-footer__col p {
  display: block;
  font-size: 13.5px;
  color: var(--pfm-muted);
  margin-bottom: 12px;
}
.pfm-footer__col a:hover {
  color: var(--pfm-gold-light);
}
.pfm-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--pfm-border);
  font-size: 12px;
  color: var(--pfm-muted);
  gap: 16px;
}
.pfm-footer__bottom-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pfm-footer__bottom-line a:hover {
  color: var(--pfm-gold-light);
}
.pfm-footer__bottom-line > *:not(:last-child):after {
  content: "|";
  margin-left: 10px;
  color: var(--pfm-border);
}
.pfm-socials {
  display: flex;
  gap: 14px;
}
.pfm-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--pfm-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: border-color 0.35s var(--pfm-ease), color 0.35s var(--pfm-ease),
    transform 0.35s var(--pfm-ease);
}
.pfm-socials a:hover {
  border-color: var(--pfm-gold);
  color: var(--pfm-gold-light);
  transform: translateY(-3px);
}

/* Sticky mobile CTA (mirrors lacasadecom4 pattern) */
.pfm-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pfm-border);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pfm-sticky-cta__label {
  font-size: 11px;
  color: var(--pfm-muted);
  display: block;
}
.pfm-sticky-cta__label strong {
  color: var(--pfm-gold-light);
}

/* Cookie consent banner */
.pfm-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--pfm-border);
  padding: 20px 24px;
}
.pfm-cookie__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pfm-cookie__inner p {
  flex: 1 1 320px;
  font-size: 13px;
  margin: 0;
}
.pfm-cookie__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Scroll-to-top button */
.pfm-scrolltop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--pfm-border);
  border-radius: 50%;
  color: var(--pfm-gold-light);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s var(--pfm-ease), transform 0.3s var(--pfm-ease), border-color 0.3s var(--pfm-ease);
}
.pfm-scrolltop.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.pfm-scrolltop:hover {
  border-color: var(--pfm-gold);
}
.pfm-scrolltop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.pfm-scrolltop__arrow {
  position: relative;
  width: 16px;
  height: 16px;
}

/* Agency "powered by" credit bar — optional, driven by tenant.footer.poweredBy* */
.pfm-poweredby {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pfm-poweredby span {
  font-size: 11px;
  color: var(--pfm-muted);
}
.pfm-poweredby img {
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s var(--pfm-ease);
}
.pfm-poweredby a:hover img {
  opacity: 1;
}

@media (max-width: 900px) {
  .pfm-scrolltop {
    bottom: 92px;
  }
  .pfm-nav__links {
    display: none;
  }
  .pfm-nav__icons {
    display: none;
  }
  .pfm-burger {
    display: flex;
  }
  .pfm-hero__inner {
    grid-template-columns: 1fr;
  }
  .pfm-hero__content {
    max-width: 100%;
  }
  .pfm-hero__slider {
    height: 380px;
  }
  .pfm-hero__shape,
  .pfm-hero__watermark {
    display: none;
  }
  .pfm-hero__accent {
    width: 46%;
    left: -20px;
    bottom: -28px;
    border-width: 4px;
  }
  .pfm-hero__frame:before,
  .pfm-hero__frame:after {
    width: 22px;
    height: 22px;
  }
  .pfm-promo-grid {
    flex-direction: column;
  }
  .pfm-promo {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 48px 0;
  }
  .pfm-promo__content {
    max-width: none;
  }
  .pfm-promo__media-frame {
    width: 100%;
  }
  .pfm-promo:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--pfm-border);
    padding-right: 0;
  }
  .pfm-promo:not(:first-child) {
    padding-left: 0;
  }
  .pfm-teasers__grid,
  .pfm-details__grid,
  .pfm-story__grid,
  .pfm-testimonials__grid,
  .pfm-product-detail__grid {
    grid-template-columns: 1fr;
  }
  .pfm-product-detail__content {
    padding-top: 24px;
  }
  .pfm-details__grid.pfm-img-right .pfm-details__media {
    order: 2;
  }
  .pfm-story__media-wrap,
  .pfm-story__grid.pfm-img-right .pfm-story__media-wrap {
    margin-top: 0;
  }
  .pfm-story__media-accent {
    width: 42%;
    right: -16px;
    bottom: -24px;
    border-width: 4px;
  }
  .pfm-story__grid.pfm-img-right .pfm-story__media-accent {
    left: -16px;
  }
  .pfm-story__mark {
    font-size: 140px;
    top: -46px;
  }
  .pfm-products__grid,
  .pfm-blog__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pfm-footer__grid,
  .pfm-footer__grid--custom {
    grid-template-columns: 1fr;
  }
  .pfm-newsletter-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .pfm-sticky-cta {
    display: flex;
  }
  .pfm-footer {
    padding-bottom: 90px;
  }
}
@media (max-width: 560px) {
  .pfm-products__grid,
  .pfm-blog__grid,
  .pfm-details__list {
    grid-template-columns: 1fr;
  }
  .pfm-t-card:before {
    font-size: 44px;
  }
  .pfm-instagram__strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .pfm-contact-form__grid {
    grid-template-columns: 1fr;
  }
  .pfm-contact-form__card,
  .pfm-contact-panel__card {
    padding: 32px 24px;
  }
  .pfm-diff__stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .pfm-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
}

/* ── Keyboard focus — a deliberate gold ring so tabbing through the site
   still reads as designed, not as a browser default breaking the black/gold
   system. Placed last so it wins the specificity tie against earlier
   component rules without needing !important. */
.pfm-scope a:focus-visible,
.pfm-scope button:focus-visible,
.pfm-scope input:focus-visible,
.pfm-scope textarea:focus-visible,
.pfm-scope select:focus-visible,
.pfm-scope [tabindex]:focus-visible {
  outline: 2px solid var(--pfm-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
