/*
Theme Name: PhotogRibi
Theme URI: https://photogribi.com/
Author: SUTSTONE LLC
Author URI: https://sutstone.com/
Description: Editorial photography theme for PhotogRibi — light, moody, minimal, dual-photographer portfolio, liquid-glass details, and client-first conversion flow.
Version: 1.1.0
Requires at least: 6.3
Requires PHP: 8.0
Text Domain: photogribi
*/

:root {
  --pg-bg: #fbfaf7;
  --pg-paper: #fffefa;
  --pg-ink: #151514;
  --pg-muted: #73716c;
  --pg-line: rgba(21,21,20,.16);
  --pg-line-soft: rgba(21,21,20,.08);
  --pg-glass: rgba(253,252,248,.66);
  --pg-glass-strong: rgba(253,252,248,.82);
  --pg-shadow: 0 18px 55px rgba(24,22,18,.09);
  --pg-serif: "Bodoni 72", Didot, "Bodoni MT", "Iowan Old Style", Georgia, serif;
  --pg-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pg-home-width: min(calc(100% - 52px), 1320px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pg-bg);
  color: var(--pg-ink);
  font-family: var(--pg-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--pg-ink); color: #fff; }

.pg-wrap { width: min(calc(100% - 52px), 1480px); margin-inline: auto; }
.pg-home-frame { width: var(--pg-home-width); margin-inline: auto; }
.pg-narrow { width: min(calc(100% - 52px), 900px); margin-inline: auto; }
.pg-section { padding: clamp(76px, 9vw, 150px) 0; }
.pg-rule { border-top: 1px solid var(--pg-line); }
.pg-display {
  font-family: var(--pg-serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}
.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pg-muted);
  font-weight: 650;
}
.pg-eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .58; }
.pg-lede { font-size: clamp(21px, 2.05vw, 30px); line-height: 1.42; color: #2e2d2a; }
.pg-muted { color: var(--pg-muted); }
.pg-index { font-family: var(--pg-serif); font-size: 12px; letter-spacing: 0; opacity: .5; }

.pg-glass {
  background: var(--pg-glass);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--pg-shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(21,21,20,.2);
  background: rgba(255,255,255,.46);
  color: var(--pg-ink);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.pg-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.8); }
.pg-btn--dark { background: var(--pg-ink); color: #fff; border-color: var(--pg-ink); }
.pg-btn--dark:hover { background: #2a2a28; }
.pg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .25s ease, opacity .25s ease;
}
.pg-text-link:hover { gap: 15px; opacity: .68; }

/* -------------------------------------------------------------------------
   Header — intentionally restrained at the top, then liquid-glass on scroll.
   ------------------------------------------------------------------------- */
.pg-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}
.pg-header__inner {
  width: min(calc(100% - 32px), 1280px);
  margin-inline: auto;
  min-height: 58px;
  padding: 0 12px 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  pointer-events: auto;
  transition: background .32s ease, border-color .32s ease, box-shadow .32s ease, backdrop-filter .32s ease;
}
.pg-header.is-scrolled .pg-header__inner,
body:not(.home) .pg-header__inner {
  background: rgba(251,250,247,.7);
  border-color: rgba(255,255,255,.75);
  box-shadow: 0 10px 36px rgba(25,23,19,.07);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}
.pg-header__brand { justify-self: start; }
.pg-brand {
  font-family: var(--pg-serif);
  font-size: 27px;
  letter-spacing: -.065em;
  line-height: 1;
  white-space: nowrap;
}
.pg-brand .pg-brand-r { font-size: .73em; letter-spacing: -.015em; position: relative; top: -.045em; }
.pg-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 31px);
}
.pg-nav li { margin: 0; padding: 0; }
.pg-nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .17em;
  position: relative;
}
.pg-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.pg-nav a:hover::after,
.pg-nav .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }
.pg-header__right { justify-self: end; display: flex; align-items: center; gap: 10px; }
.pg-header__inquire {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(21,21,20,.17);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s ease, color .25s ease;
}
.pg-header__inquire:hover { background: var(--pg-ink); color: #fff; }
.pg-menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 999px; }
.pg-menu-toggle span,
.pg-menu-toggle::before { content: ""; display: block; width: 17px; height: 1px; background: currentColor; margin: 5px auto; }

/* -------------------------------------------------------------------------
   Home hero — reference-site rhythm, but with a distinct PhotogRibi identity.
   ------------------------------------------------------------------------- */
.pg-home-hero { padding: 92px 0 0; }
.pg-home-frame.pg-hero__underbar { width: var(--pg-home-width); }
.pg-home-frame:first-child { position: relative; }
.pg-home-frame.pg-split { position: relative; }
.pg-home-hero > .pg-home-frame:first-child,
.pg-home-hero > .pg-home-frame:not(.pg-hero__underbar) { position: relative; }
.pg-home-hero .pg-home-frame:first-child {
  aspect-ratio: 2.12 / 1;
  min-height: 470px;
  overflow: hidden;
  background: #d2d0ca;
}
.pg-hero__media,
.pg-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.pg-hero__media img {
  object-fit: cover;
  transform: scale(1.035);
  will-change: transform;
}
.pg-hero__placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 32%, rgba(255,255,255,.55), transparent 18%),
    linear-gradient(115deg, #9b9993 0%, #c8c5bd 34%, #74716b 100%);
}
.pg-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), transparent 32%, transparent 68%, rgba(0,0,0,.08)),
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14));
  z-index: 1;
}
.pg-hero__identity {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: white;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 44px;
  pointer-events: none;
}
.pg-hero__brand {
  margin: 0;
  font-size: clamp(86px, 11.2vw, 174px);
  line-height: .78;
  letter-spacing: -.055em;
  text-shadow: 0 2px 22px rgba(0,0,0,.12);
}
.pg-hero__brand .pg-brand-r { font-size: .71em; position: relative; top: -.045em; letter-spacing: -.015em; }
.pg-hero__byline {
  margin: 27px 0 0;
  font-family: var(--pg-serif);
  font-size: clamp(15px, 1.55vw, 22px);
  font-style: italic;
  letter-spacing: .025em;
}
.pg-hero__byline span { margin: 0 .45em; opacity: .6; }
.pg-hero__edge {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  color: rgba(255,255,255,.86);
  font-size: 8px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.pg-hero__edge--left { left: 18px; }
.pg-hero__edge--right { right: 18px; text-align: right; }
.pg-hero__underbar {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--pg-line);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.pg-hero__underbar p { margin: 0; }
.pg-hero__underbar p:last-child { text-align: right; color: var(--pg-muted); }

/* -------------------------------------------------------------------------
   Dual artist home gallery — Marisa left, Nick right, photography first.
   ------------------------------------------------------------------------- */
.pg-duo { padding: 22px 0 0; }
.pg-duo__labels,
.pg-duo__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pg-duo__labels > div {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 2px 10px;
  border-bottom: 1px solid var(--pg-line);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pg-duo__labels > div:first-child { margin-right: 1px; }
.pg-duo__labels > div:last-child { margin-left: 1px; }
.pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: start;
  background: var(--pg-bg);
}
.pg-artist { min-width: 0; overflow: hidden; }
.pg-artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.pg-work-card {
  position: relative;
  overflow: hidden;
  background: #d9d6cf;
}
.pg-artist-grid .pg-work-card { aspect-ratio: 4 / 5; }
.pg-artist-grid .pg-work-card:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 1.18 / 1; }
.pg-artist-grid .pg-work-card:nth-child(4) { grid-column: 1 / -1; aspect-ratio: 1.55 / 1; }
.pg-artist-grid .pg-work-card:nth-child(7) { grid-column: 1 / -1; aspect-ratio: 1.08 / 1; }
.pg-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.22,.61,.36,1), filter .45s ease;
}
.pg-work-card:hover img { transform: scale(1.025); }
.pg-work-card__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .32s ease;
}
.pg-work-card__caption {
  position: absolute;
  z-index: 4;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .32s ease, transform .32s ease;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.pg-work-card:hover .pg-work-card__veil,
.pg-work-card:hover .pg-work-card__caption { opacity: 1; transform: none; }
.pg-work-card--placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: var(--pg-muted);
  border: 1px dashed var(--pg-line);
  background: rgba(255,255,255,.26);
}
.pg-duo__footer { padding-top: 16px; }
.pg-duo__footer > a { justify-self: start; }
.pg-duo__footer > a:last-child { justify-self: end; }

/* Studio intro */
.pg-editorial-intro { padding: clamp(110px, 12vw, 190px) 0; }
.pg-intro {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}
.pg-intro__headline h2 {
  margin: 18px 0 0;
  font-size: clamp(61px, 7.4vw, 112px);
}
.pg-intro__body { padding-top: 16px; }
.pg-intro__body p { margin: 0 0 32px; }

/* Secondary editorial image */
.pg-editorial-image { padding: 0 0 clamp(90px, 10vw, 150px); }
.pg-editorial-image__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.82 / 1;
  background: #d5d2ca;
}
.pg-editorial-image__frame img { width: 100%; height: 100%; object-fit: cover; }
.pg-editorial-image__caption {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.9);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Category ribbon */
.pg-ribbon {
  overflow: hidden;
  padding: 14px 0 17px;
  border-top: 1px solid var(--pg-line);
  border-bottom: 1px solid var(--pg-line);
  background: #f8f7f3;
}
.pg-ribbon__track { display: flex; width: max-content; gap: 26px; animation: pg-marquee 38s linear infinite; align-items: center; }
.pg-ribbon span { font-family: var(--pg-serif); font-size: clamp(26px, 3.25vw, 46px); white-space: nowrap; letter-spacing: -.025em; }
.pg-ribbon i { font-style: normal; opacity: .25; }
@keyframes pg-marquee { to { transform: translateX(-50%); } }

/* Final CTA */
.pg-final-cta { padding: clamp(105px, 12vw, 180px) 0 clamp(90px, 10vw, 150px); }
.pg-final-cta__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(42px, 10vw, 160px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--pg-line);
}
.pg-final-cta h2 { margin: 18px 0 0; font-size: clamp(70px, 9vw, 132px); }
.pg-final-cta__copy { padding-bottom: 8px; }
.pg-final-cta__copy p { margin: 0 0 28px; font-size: 16px; line-height: 1.7; color: #4f4d48; }

/* -------------------------------------------------------------------------
   Interior page hero / portfolio / forms
   ------------------------------------------------------------------------- */
.pg-page-hero { padding: 154px 0 62px; }
.pg-page-hero h1 { font-size: clamp(78px, 12vw, 176px); margin: 0; }
.pg-page-hero__row {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 50px;
  align-items: end;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--pg-line);
}
.pg-page-hero__row p { max-width: 660px; margin: 0; font-size: 17px; line-height: 1.6; color: #4d4b47; }
.pg-page-hero__row p:last-child { justify-self: end; text-align: right; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--pg-muted); }

.pg-filters {
  position: sticky;
  top: 84px;
  z-index: 50;
  padding: 9px;
  border-radius: 999px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
}
.pg-filter-group { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pg-filter-label { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: var(--pg-muted); padding: 0 8px; }
.pg-filter {
  border: 1px solid rgba(21,21,20,.1);
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pg-filter.is-active { background: var(--pg-ink); color: white; }
.pg-masonry { columns: 3 320px; column-gap: 4px; }
.pg-masonry .pg-work-card { break-inside: avoid; margin-bottom: 4px; }
.pg-masonry .pg-work-card img { height: auto; object-fit: unset; }
.pg-work-card[hidden] { display: none !important; }
.pg-protect { position: absolute; inset: 0; z-index: 3; }

/* Forms */
.pg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.pg-field { display: grid; gap: 8px; }
.pg-field--full { grid-column: 1 / -1; }
.pg-field label { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--pg-muted); }
.pg-field input,
.pg-field select,
.pg-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--pg-line);
  background: transparent;
  color: var(--pg-ink);
  border-radius: 0;
  min-height: 54px;
  padding: 13px 2px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.pg-field textarea { min-height: 150px; resize: vertical; }
.pg-field input:focus,
.pg-field select:focus,
.pg-field textarea:focus { border-color: var(--pg-ink); background: rgba(255,255,255,.22); }
.pg-form-note { grid-column: 1 / -1; font-size: 11px; color: var(--pg-muted); line-height: 1.55; }
.pg-alert { padding: 15px 0; margin-bottom: 22px; border-top: 1px solid var(--pg-line); border-bottom: 1px solid var(--pg-line); }

/* Legacy CTA used on interior pages — now editorial instead of a rounded blob. */
.pg-cta {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: 50px;
  background: #d9d6ce;
}
.pg-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.85), transparent 38%), linear-gradient(135deg,#d9d5cb,#f7f5ef 58%,#d8d5cf);
}
.pg-cta__card { position: relative; z-index: 2; width: min(720px,100%); padding: clamp(30px,5vw,58px); text-align: center; border-radius: 2px; }
.pg-cta h2 { font-size: clamp(48px,7vw,88px); margin: 0 0 20px; }
.pg-cta p { max-width: 570px; margin: 0 auto 30px; color: #4f4d49; line-height: 1.6; }

/* Portal */
.pg-portal-shell { min-height: 100svh; padding: 142px 0 80px; }
.pg-portal-login { width: min(560px,100%); margin: 30px auto 0; padding: 30px; border-radius: 20px; }
.pg-gallery-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--pg-line); }
.pg-gallery-head h1 { margin: 0; font-size: clamp(48px,7vw,92px); }
.pg-gallery-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.pg-client-grid { columns: 4 260px; column-gap: 5px; }
.pg-client-item { break-inside: avoid; margin: 0 0 5px; position: relative; overflow: hidden; background: #ddd; }
.pg-client-item img { width: 100%; }
.pg-client-check { position: absolute; top: 10px; right: 10px; z-index: 4; width: 26px; height: 26px; accent-color: #111; cursor: pointer; }
.pg-client-toolbar { position: sticky; bottom: 16px; z-index: 60; width: min(740px,calc(100% - 24px)); margin: 30px auto 0; padding: 9px 10px 9px 15px; border-radius: 999px; display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.pg-client-count { font-size: 11px; color: var(--pg-muted); }
.pg-expiry { font-size: 11px; color: var(--pg-muted); margin-top: 6px; }

/* Footer */
.pg-footer { padding: 34px 0 28px; border-top: 1px solid var(--pg-line); }
.pg-footer__top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; padding: 54px 0 70px; }
.pg-footer__brand { font-size: clamp(76px,10vw,144px); margin: 10px 0 0; }
.pg-footer__brand .pg-brand-r { font-size: .73em; position: relative; top: -.045em; }
.pg-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; align-content: start; padding-top: 14px; }
.pg-footer__links a { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.pg-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--pg-line); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--pg-muted); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .9s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  :root { --pg-home-width: min(calc(100% - 36px), 1320px); }
  .pg-wrap, .pg-narrow { width: min(calc(100% - 36px), 1480px); }
  .pg-header__inner { grid-template-columns: 1fr auto; }
  .pg-nav, .pg-header__right .pg-header__inquire { display: none; }
  .pg-menu-toggle { display: block; }
  .pg-header.is-open .pg-nav {
    display: flex;
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    padding: 24px;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(251,250,247,.9);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow: var(--pg-shadow);
  }
  .pg-intro { grid-template-columns: 1fr; gap: 45px; }
  .pg-final-cta__inner { grid-template-columns: 1fr; gap: 42px; }
  .pg-final-cta__copy { max-width: 610px; }
  .pg-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pg-home-width: calc(100% - 18px); }
  .pg-wrap, .pg-narrow { width: calc(100% - 24px); }
  .pg-header { top: 8px; }
  .pg-header__inner { width: calc(100% - 16px); min-height: 55px; padding-left: 14px; }
  .pg-brand { font-size: 24px; }

  .pg-home-hero { padding-top: 72px; }
  .pg-home-hero .pg-home-frame:first-child { aspect-ratio: auto; min-height: 68svh; }
  .pg-hero__identity { padding: 26px 12px; }
  .pg-hero__brand { font-size: clamp(62px, 20vw, 104px); }
  .pg-hero__byline { margin-top: 19px; font-size: 15px; }
  .pg-hero__edge { bottom: 12px; font-size: 7px; letter-spacing: .14em; }
  .pg-hero__edge--left { left: 12px; max-width: 55%; line-height: 1.45; }
  .pg-hero__edge--right { right: 12px; }
  .pg-hero__underbar { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; line-height: 1.45; }
  .pg-hero__underbar p:last-child { text-align: left; }

  .pg-duo { padding-top: 12px; }
  .pg-duo__labels { gap: 1px; }
  .pg-duo__labels > div { font-size: 8px; letter-spacing: .12em; }
  .pg-split { gap: 1px; }
  .pg-artist-grid { grid-template-columns: 1fr; gap: 1px; }
  .pg-artist-grid .pg-work-card,
  .pg-artist-grid .pg-work-card:nth-child(1),
  .pg-artist-grid .pg-work-card:nth-child(4),
  .pg-artist-grid .pg-work-card:nth-child(7) { grid-column: auto; aspect-ratio: 3 / 4; }
  .pg-artist-grid .pg-work-card:nth-child(1) { aspect-ratio: 4 / 5; }
  .pg-artist-grid .pg-work-card:nth-child(3),
  .pg-artist-grid .pg-work-card:nth-child(6) { aspect-ratio: 1 / 1; }
  .pg-work-card__caption { display: none; }
  .pg-duo__footer { gap: 14px; }
  .pg-duo__footer .pg-text-link { font-size: 8px; letter-spacing: .1em; }

  .pg-editorial-intro { padding: 88px 0; }
  .pg-intro__headline h2 { font-size: clamp(56px, 16vw, 80px); }
  .pg-intro__body { padding-top: 0; }
  .pg-editorial-image { padding-bottom: 80px; }
  .pg-editorial-image__frame { aspect-ratio: .95 / 1; }
  .pg-editorial-image__caption { font-size: 7px; letter-spacing: .11em; }

  .pg-final-cta { padding: 86px 0; }
  .pg-final-cta h2 { font-size: clamp(62px, 18vw, 94px); }

  .pg-page-hero { padding: 122px 0 42px; }
  .pg-page-hero h1 { font-size: clamp(70px, 21vw, 116px); }
  .pg-page-hero__row { grid-template-columns: 1fr; gap: 18px; }
  .pg-page-hero__row p:last-child { justify-self: start; text-align: left; }
  .pg-filters { top: 70px; border-radius: 18px; overflow-x: auto; flex-wrap: nowrap; width: 100%; }
  .pg-filter-group { flex-wrap: nowrap; }
  .pg-filter-label { display: none; }
  .pg-masonry { columns: 2 150px; column-gap: 2px; }
  .pg-masonry .pg-work-card { margin-bottom: 2px; }

  .pg-form { grid-template-columns: 1fr; }
  .pg-field--full { grid-column: auto; }
  .pg-gallery-head { flex-direction: column; align-items: flex-start; }
  .pg-client-grid { columns: 2 150px; column-gap: 3px; }
  .pg-client-item { margin-bottom: 3px; }
  .pg-client-toolbar { border-radius: 20px; align-items: stretch; flex-direction: column; }

  .pg-footer__links { grid-template-columns: 1fr 1fr; }
  .pg-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .pg-hero__media img { transform: scale(1.035) !important; }
}
