/*
Theme Name: Percent Science
Theme URI: https://github.com/linkinf88k/percent-science
Author: Percent Science
Description: Starter theme for the Percent Science WordPress project.
Version: 1.0.0
Text Domain: percent-science
*/

:root {
  --container-width: 1120px;
  --page-bg: #fff;
  --text-color: #000;
  --muted-text: #5c5c5c;
  --border-color: #d3d3d3;
  --footer-bg: #000;
  --footer-text: #fff;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  font-family: "Mona Sans", sans-serif;
  font-size: 17px;
  line-height: 25px;
  background: var(--page-bg);
  color: var(--text-color);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 67px;
  font-family: "Inter", sans-serif;
  background: #fff;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--container-width);
  min-height: 67px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header__nav--right {
  display: flex;
  justify-content: flex-end;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-header__brand {
  display: flex;
  justify-content: center;
}

/* Desktop logo shown by default; mobile logo hidden */
.site-header__logo--mobile {
  display: none;
}

.site-header__mobile-logo {
  display: flex;
  align-items: center;
}

.site-header__mobile-logo img {
  display: block;

  object-fit: contain;
}

.brand-mark,
.site-footer__brandlockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark__word,
.site-footer__wordmark {
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-mark__badge,
.site-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.site-header .menu {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.menu--primary-right {
  gap: 34px;
}

.site-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.site-header__search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-form-container {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 280ms ease,
    opacity 220ms ease;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background: #fff;
}

.search-form-container.active {
  max-height: 150px;
  opacity: 1;
  border-top-color: var(--border-color);
  border-bottom-color: var(--border-color);
}

.site-search__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.site-search__form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-search__field {
  flex: 1;
  min-height: 44px;
  border: 1px solid #d0d0d0;
  padding: 0 14px;
  font-size: 16px;
  border-radius: 2px;
}

.site-search__field:focus {
  outline: none;
  border-color: #8f8f8f;
}

.site-search__submit {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-search__submit:hover,
.site-search__submit:focus-visible {
  background: #1f1f1f;
  border-color: #1f1f1f;
}

/* Search results page */
.site-shell--search {
  padding-top: 34px;
}

.search-header {
  text-align: center;
  margin-bottom: 42px;
}

.search-header .page-title {
  margin: 0;
  font-family: "Fahkwang", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.2;
}

.search-header .search-query {
  font-style: italic;
}

.search-results-count {
  margin: 10px 0 0;
  color: var(--muted-text);
}

.category-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-grid-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.grid-card-image {
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}

.grid-card-image img {
  width: 100%;
  aspect-ratio: 9 / 5.5;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-grid-card:hover .grid-card-image img {
  transform: scale(1.04);
}

.grid-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.beauty-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.grid-card-title {
  margin: 10px 0 12px;
  font-size: 16px;
  line-height: 1.55;
}

.grid-card-title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  margin-top: auto;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.pagination-wrapper .nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination-wrapper .page-numbers {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d4d4;
  color: #777;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  border-color: #111;
  color: #111;
}

.pagination-wrapper .nav-links svg.icon {
  width: 18px;
  height: 18px;
}

.no-results-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.no-results-message {
  margin: 0 0 8px;
  font-size: 18px;
}

.no-results-suggestion {
  margin: 0 0 22px;
  color: var(--muted-text);
}

.no-results-search-form .search-form {
  display: flex;
  max-width: 430px;
  margin: 0 auto;
}

.no-results-search-form .search-field {
  flex: 1;
  min-height: 44px;
  border: 1px solid #d0d0d0;
  border-right: none;
  padding: 0 12px;
}

.no-results-search-form .search-submit {
  min-height: 44px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.menu a {
  position: relative;
  padding-bottom: 4px;
}

.menu a:hover,
.menu .current_page_item a,
.menu .current-menu-item a {
  font-weight: bold;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu .current_page_item a::after,
.menu .current-menu-item a::after {
  transform: scaleX(1);
}

.site-shell {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 72px 0;
  min-height: 40vh;
}

.site-title {
  margin-bottom: 12px;
  font-size: 2.5rem;
}

.site-tagline {
  max-width: 640px;
  line-height: 1.6;
}

.site-footer {
  /* margin-top: 96px; */
  padding: 65px 24px 54px;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-footer__masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
}

.site-footer__company {
  display: grid;
  gap: 3px;
}

.site-footer__company-line,
.site-footer__detail {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

.site-footer__detail {
  font-weight: 400;
}

.site-footer__languages {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 1px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: inherit;
}

.site-footer__social svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__social li:nth-child(1) svg,
.site-footer__social li:nth-child(3) svg,
.site-footer__social li:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer__details {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 180px;
}

.site-footer__detail span {
  color: rgba(247, 244, 237, 0.92);
}

.site-footer__brandband {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 64px;
}

.site-footer__brandlockup {
  max-width: 100%;
}

.site-footer__wordmark {
  font-size: clamp(4.2rem, 11vw, 7.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.82;
}

.site-footer__badge {
  min-width: clamp(68px, 10vw, 82px);
  min-height: clamp(52px, 7vw, 62px);
  padding: 0 14px;
  border-width: 4px;
  border-radius: 8px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
}

/* Hamburger – hidden on desktop */
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.site-header__burger-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: opacity 160ms ease;
}

/* =========================================
   Mobile Navigation Overlay
   ========================================= */

.site-mobile-nav {
  display: none;
}

.site-mobile-nav.is-open {
  display: block;
}

.site-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(0, 0, 0, 0.28);
}

.site-mobile-nav__panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 80px;
  flex-shrink: 0;
}

.site-mobile-nav__logo {
  text-decoration: none;
  color: inherit;
}

.site-mobile-nav__logo .site-header__mobile-logo {
  display: inline-flex;
  align-items: center;
}

.site-mobile-nav__logo .site-header__mobile-logo img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.site-mobile-nav__logo .custom-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.site-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}

.site-mobile-nav__menu {
  flex: 1;
}

.site-mobile-nav__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Fahkwang", sans-serif;
}

.site-mobile-nav__list li {
  border-bottom: 1px solid var(--border-color);
}

.site-mobile-nav__list li a {
  display: block;
  padding: 22px 18px;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}

.site-mobile-nav__list li a:hover,
.site-mobile-nav__list li.current_page_item a,
.site-mobile-nav__list li.current-menu-item a {
  background: #000;
  color: #fff;
  font-weight: bold;
}

.site-mobile-nav__foot {
  padding: 28px 18px 32px;
  flex-shrink: 0;
  text-align: center;
}

.site-mobile-nav__foot .site-header__mobile-logo,
.site-mobile-nav__foot .site-header__mobile-logo img {
  display: inline;
}

.site-mobile-nav__foot .site-footer__brandlockup {
  color: #111;
}

.site-mobile-nav__foot .site-footer__wordmark {
  font-size: clamp(2.8rem, 14vw, 4rem);
}

.site-mobile-nav__foot .site-footer__badge {
  font-size: clamp(1.1rem, 5vw, 1.6rem);
  min-width: 46px;
  min-height: 36px;
  border-width: 2.5px;
}

/* Prevent body scroll when overlay open */
body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header__nav--right {
    justify-content: center;
  }

  .site-header__actions {
    justify-content: center;
  }

  .site-footer__masthead {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__languages {
    justify-content: flex-start;
  }

  .site-footer__social,
  .site-footer__details,
  .site-footer__brandband {
    justify-content: flex-start;
  }

  .site-footer__details,
  .site-footer__brandband {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__details {
    margin-top: 42px;
  }
}

@media (max-width: 767px) {
  /* Switch header to flex: brand center + burger right */
  body {
    font-size: 12px;
    line-height: 1.4;
  }
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header__nav--left,
  .site-header__nav--right {
    display: none;
  }

  .site-header__brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header__logo--desktop {
    display: none;
  }

  .site-header__logo--mobile {
    display: flex;
    align-items: center;
  }

  .site-header__burger {
    display: flex;
    margin-left: auto;
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 22px;
    align-items: start;
  }

  .site-footer__masthead {
    display: contents;
  }

  .site-footer__company {
    order: 1;
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
    gap: 2px;
    margin-top: 0;
  }

  .site-footer__company-line {
    max-width: none;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
  }

  .site-footer__details {
    order: 2;
    grid-column: 1 / -1;
    margin-top: 12px;
    display: grid;
    justify-items: start;
    text-align: left;
    align-items: start;
    gap: 4px;
  }

  .site-footer__detail {
    font-size: 12px;
    line-height: 1.55;
  }

  .site-footer__languages {
    order: 3;
    grid-column: 1;
    margin-top: 22px;
    justify-content: flex-start;
    gap: 34px;
    font-size: 19px;
    line-height: 1;
  }

  .site-footer__social {
    order: 4;
    grid-column: 2;
    margin-top: 18px;
    justify-content: flex-end;
    gap: 14px;
  }

  .site-footer__social a {
    width: 28px;
    height: 28px;
  }

  .site-footer__brandband {
    order: 5;
    grid-column: 1 / -1;
    margin-top: 26px;
    justify-content: center;
  }

  .site-footer__brandband .site-footer__brandlockup {
    width: 100%;
    justify-content: center;
  }

  .site-footer__wordmark {
    font-size: clamp(3.2rem, 13.5vw, 4.8rem);
  }

  .site-footer__badge {
    min-width: 60px;
    min-height: 46px;
    font-size: 1.6rem;
  }

  .site-footer__logo-image {
    max-width: min(92vw, 520px);
    height: auto;
  }

  .site-search__inner {
    padding: 14px 18px;
  }

  .site-search__form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-search__submit {
    width: 100%;
  }

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

  .pagination-wrapper .nav-links {
    gap: 8px;
  }

  .pagination-wrapper .page-numbers {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .no-results-search-form .search-form {
    flex-direction: column;
    gap: 10px;
  }

  .no-results-search-form .search-field {
    border-right: 1px solid #d0d0d0;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* .site-header__inner {
    padding-left: 16px;
    padding-right: 16px;
  } */

  .site-footer__details {
    margin-top: 32px;
    gap: 6px;
    text-align: center;
    display: block;
  }

  .site-footer__wordmark {
    font-size: 2.95rem;
  }

  .site-footer__badge {
    min-width: 58px;
    min-height: 46px;
    font-size: 1.5rem;
    border-width: 3px;
  }
}

/* body.page-template-template-homepage {
  background: #fff;
  color: #0e0e0e;
}

.page-template-template-homepage .site-header {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(17, 17, 17, 0.07);
} */

.ps-home {
  overflow: hidden;
}

.ps-home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-home-film,
.ps-home-intro,
.ps-home-stories,
.ps-home-collection,
.ps-home-journal,
.ps-home-wordmark {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ps-home-film {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.ps-home-film__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: min(78vh, 880px);
  aspect-ratio: 16 / 7.4;
  background: #e8edf0;
  animation: ps-fade-up 0.8s ease both;
}

.ps-home-film__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

iframe.ps-home-film__video {
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.34);
}

.ps-home-film__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at center,
      rgba(14, 24, 42, 0.06),
      rgba(8, 10, 16, 0.28) 72%
    ),
    linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.34));
}

.ps-home-film__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.ps-home-film__title {
  margin: 0;
  max-width: 12ch;
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ps-home-film__text {
  margin: 18px 0 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.ps-home-film__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 152px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.45);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.ps-home-film__controls:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(14, 14, 14, 0.58);
}

.ps-home-film__play,
.ps-home-film__audio {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.ps-home-film__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.ps-home-film__audio::before,
.ps-home-film__audio::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.ps-home-film__audio::before {
  inset: 2px 1px 2px 6px;
}

.ps-home-film__audio::after {
  inset: 4px 4px 4px 9px;
}

.ps-home-film__progress {
  display: block;
  width: 74px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.ps-home-film__progress span {
  display: block;
  width: 38%;
  height: 100%;
  background: #fff;
}

.ps-home-intro {
  max-width: 550px;
  padding-top: 100px;
  padding-bottom: 85px;
  text-align: center;
  animation: ps-fade-up 0.8s ease 0.08s both;
}

.ps-home-intro__mark {
  margin-bottom: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ps-home-intro__mark-logo {
  width: clamp(52px, 5.2vw, 78px);
  height: auto;
}

.ps-home-intro__mark-fallback {
  font-size: 2.55rem;
  font-weight: 300;
}

.ps-home-intro__eyebrow,
.ps-home-story__eyebrow,
.ps-home-showcase__eyebrow,
.ps-home-banner__eyebrow,
.ps-home-journal__eyebrow {
  margin: 0 0 12px;
  /* font-size: 0.58rem; */
  /* font-weight: 700; */
  /* letter-spacing: 0.18em; */
  text-transform: uppercase;
}

.ps-home-intro__title {
  margin: 0 auto;
  max-width: 545px;
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  text-transform: uppercase;
}

.ps-home-intro__text,
.ps-home-story__text,
.ps-home-collection__text,
.ps-home-banner__text,
.ps-home-journal__summary p {
  font-size: 17px;
  color: #000;
}

.ps-home-intro__text {
  white-space: pre-line;
}

.ps-home-stories {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 86px;
}

.ps-home-story {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: center;
  gap: 16px;
}

.ps-home-story.is-reversed {
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
}

.ps-home-story.is-reversed .ps-home-story__image {
  order: 2;
}

.ps-home-story__image {
  overflow: hidden;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
  animation: ps-fade-up 0.8s ease both;
}

.ps-home-story__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
}

.ps-home-story__content {
  max-width: 360px;
  margin-left: 105px;
}

.ps-home-story.is-reversed .ps-home-story__content {
  margin-left: 0;
  margin-right: 105px;
  text-align: right;
  justify-self: end;
}

.ps-home-story.is-reversed .ps-home-story__text {
  margin-left: auto;
}

.ps-home-story__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 17px;
}

.ps-home-story__text {
  max-width: 360px;
  /* line-height: 1.8; */
}

.ps-home-stories__divider {
  width: var(--container-width);
  height: 1px;
  margin: 100px auto;
  background: #d3d3d3;
}

.ps-home-showcase {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  animation: ps-fade-up 0.85s ease both;
}

.ps-home-carousel {
  position: relative;
  background-image: url("./img/ps-home-carousel-bg.jpg") !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.ps-home-carousel .owl-item {
  width: 100%;
}

.ps-home-carousel .owl-stage-outer {
  overflow: hidden;
}

.ps-home-carousel .owl-dots {
  display: none;
}

.ps-home-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translateY(-50%);
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  /* padding: 0 250px; */
  pointer-events: none;
  z-index: 10;
  width: 930px;
}

.ps-home-carousel .owl-nav button {
  pointer-events: auto;
  background-size: contain;
  background-repeat: no-repeat !important;
  background-position: center;
  border: none;
  cursor: pointer;
  transition: opacity 200ms ease;
  width: 75px;
  height: 16px;
}

.ps-home-carousel .owl-nav button:hover {
  opacity: 1;
}

.ps-home-carousel .owl-nav button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0;
  border-right: 0;
  display: none;
}

.ps-home-carousel .owl-nav .owl-prev {
  background-image: url("./img/arrow-left.png") !important;
}

.ps-home-carousel .owl-nav .owl-next {
  background-image: url("./img/arrow-right.png") !important;
}

.ps-home-carousel .owl-nav .owl-prev::before {
  transform: none;
}

.ps-home-carousel .owl-nav .owl-next::before {
  transform: none;
}

.ps-home-showcase__mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 28% 35%,
      rgba(255, 255, 255, 0.72),
      transparent 38%
    ),
    radial-gradient(
      circle at 72% 35%,
      rgba(255, 255, 255, 0.38),
      transparent 42%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56));
}

.ps-home-showcase__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 438px;
  padding: 100px 20px;
}

.ps-home-showcase.is-right .ps-home-showcase__inner {
  flex-direction: column;
}

.ps-home-showcase.is-right .ps-home-showcase__product-card {
  order: 0;
}

.ps-home-showcase.is-right .ps-home-showcase__copy {
  order: 0;
  text-align: center;
}

.ps-home-showcase__arrow {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: center;
  opacity: 0.55;
}

.ps-home-showcase__arrow::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
}

.ps-home-showcase__arrow--left::before {
  transform: rotate(-135deg);
}

.ps-home-showcase__arrow--right::before {
  transform: rotate(45deg);
}

.ps-home-showcase__product-card {
  position: relative;
  width: 360px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-home-showcase__product-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 6;
}

.ps-home-showcase__copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.ps-home-showcase__title {
  position: absolute;
  margin: 0;
  font-size: 100px;
  font-weight: 500;
  color: #000;
  text-align: center;
  z-index: 2;
  width: 200%;
  bottom: 75px;
}

.ps-home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
  background: #000 !important;
  color: #fff;
}

.ps-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  /* padding: 0 42px; */
  border: 1px solid grey;
  background: transparent;
  font-size: 12px;
  /* font-weight: 700; */
  /* letter-spacing: 0.18em; */
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
  width: 170px;
}

.ps-home-button--light {
  background: rgba(255, 255, 255, 0.72);
}

.ps-home-collection {
  padding-bottom: 100px;
  padding-top: 100px;
}

.ps-home-collection__header {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(250px, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 28px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d3d3d3;
}

.ps-home-collection__title {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
}

.ps-home-collection__subtitle {
  margin: 14px 0 0;
}

.ps-home-collection__text {
  margin: 0;
  max-width: 320px;
  line-height: 1.55;
}

.ps-home-collection__link {
  justify-self: end;
  align-self: start;
  margin-top: 6px;
  white-space: nowrap;
}

.ps-home-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
}

/* .ps-home-link::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) scale(0.75);
  transition: transform 200ms ease;
} */

/* .ps-home-link:hover::after {
  transform: rotate(45deg) translate(2px, -2px) scale(0.75);
} */

.ps-home-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ps-home-product-card {
  display: grid;
  /* gap: 8px; */
}

.ps-home-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 6;
  border: 1px solid var(--border-color);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  margin-bottom: 30px;
}

.ps-home-product-card__img,
.ps-archive-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-home-product-card__img--hover,
.ps-archive-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-shell.ps-product-page {
  padding-bottom: 0;
}

/* .ps-home-product-card__image img {
  object-fit: contain;
  padding: clamp(12px, 1.9vw, 24px);
} */

.ps-home-product-card:hover .ps-home-product-card__image {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .ps-home-product-card:hover .ps-home-product-card__img--hover,
  .ps-home-product-card:focus-within .ps-home-product-card__img--hover,
  .ps-archive-card__link:hover .ps-archive-card__img--hover,
  .ps-archive-card__link:focus-visible .ps-archive-card__img--hover {
    opacity: 1;
  }
}

.ps-home-product-card__title,
.ps-home-journal-card__title {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.ps-home-product-card__title {
  font-weight: 400;
}

.ps-home-product-card__meta {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.ps-home-collection__detail-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 120px;
}

.ps-home-collection--reverse .ps-home-collection__detail-strip {
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
}

.ps-home-collection--reverse .ps-home-collection__thumbs {
  order: 1;
}

.ps-home-collection--reverse .ps-home-collection__feature-shot {
  order: 2;
}

.ps-home-collection__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ps-home-collection__thumb,
.ps-home-collection__feature-shot {
  overflow: hidden;
  background: #f3f3f3;
}

.ps-home-collection__thumb {
  aspect-ratio: 1 / 1;
}

.ps-home-collection__feature-shot {
  aspect-ratio: 16 / 8.8;
}

.ps-home-wordmark {
  padding-bottom: 120px;
  padding-top: 120px;
}

.ps-home-wordmark__media {
  width: 100%;
}

.ps-home-wordmark__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ps-home-wordmark__text {
  font-size: clamp(3rem, 10vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 0.9;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(241, 209, 223, 0.85),
    rgba(174, 45, 90, 0.75),
    rgba(241, 209, 223, 0.85)
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.ps-home-banner {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 72px;
  padding: 10px 0;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}

.ps-home-banner__bg {
  width: 100%;
  background: linear-gradient(90deg, #f5f4f2 0%, #fbfbfb 58%, #f1efed 100%);
  background-image: var(--ps-home-banner-bg-desktop);
  background-size: cover;
  background-position: center;
  min-height: 390px;
}

.ps-home-banner__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 18px;
}

.ps-home-banner__media {
  min-height: 300px;
}

.ps-home-banner__copy {
  max-width: 340px;
  padding: 95px 0 65px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.ps-home-banner__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  max-width: 260px;
}

.ps-home-banner__text {
  margin-top: 0;
  margin-bottom: 22px;
  max-width: 260px;
  font-size: 12px;
  line-height: 20px;
}

.ps-home-journal {
  padding-bottom: 90px;
}

.ps-home-journal__hero-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 6;
  background: #edf1f4;
  margin-bottom: 40px;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.ps-home-journal__hero-image:hover,
.ps-home-journal-card__image:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.ps-home-journal__meta-row {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(0, 0.7fr) minmax(0, 0.4fr);
  align-items: start;
  gap: 18px;
  margin-bottom: 50px;
}

.ps-home-journal__section-title {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: uppercase;
}

.ps-home-journal__summary p {
  margin: 0;
  max-width: 440px;
  white-space: pre-line;
}

.ps-home-journal__link {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: underline;
  text-align: right;
}

.ps-home-journal__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ps-home-journal-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5.4;
  background: #edf1f4;
  margin-bottom: 0;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

@keyframes ps-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ps-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ps-home-film__frame,
  .ps-home-story__image,
  .ps-home-showcase,
  .ps-home-showcase__product-card,
  .ps-home-product-card__image,
  .ps-home-journal__hero-image,
  .ps-home-journal-card__image,
  .ps-home-button,
  .ps-home-film__controls,
  .ps-home-link::after {
    animation: none;
    transition: none;
  }
}

/* About Page Styles */

/* .ps-about-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
} */

.ps-about-hero__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ps-about-intro {
  padding: 80px 24px;
  background-color: var(--page-bg);
}

.ps-about-intro__container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.ps-about-intro__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.ps-about-intro__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--muted-text);
  max-width: 800px;
  margin: 0 auto;
}

.ps-about-intro-images {
  padding: 0 24px 60px;
  background-color: var(--page-bg);
}

.ps-about-intro-images__grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ps-about-intro-images__card {
  width: 100%;
  overflow: hidden;
}

.ps-about-intro-images__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .ps-about-technology {
  padding: 80px 24px;
  background-color: var(--page-bg);
} */

.ps-about-technology__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.ps-about-technology__headline {
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
  max-width: 740px;
  margin: 40px 0 100px 0;
}

.ps-about-technology__copy-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
  padding: 0 0 30px;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 50px;
}

.ps-about-technology__row-label {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  max-width: 320px;
  text-transform: uppercase;
}

/* .ps-about-technology__row-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.52;
  color: #2a2a2a;
  max-width: 54ch;
} */

.ps-about-technology__media-row {
  display: grid;
  gap: 20px;
  margin-bottom: 100px;
}

.ps-about-technology__media-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ps-about-technology__media-row--feature {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.ps-about-technology__media-card {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.ps-about-technology__media-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ps-about-technology__row-image {
  width: 100%;
  display: block;
}

.ps-about-technology__media-row--split .ps-about-technology__row-image {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.ps-about-technology__row-image--main {
  aspect-ratio: 16 / 9.7;
  height: auto;
  object-fit: cover;
}

.ps-about-technology__row-image--small {
  height: auto;
  object-fit: cover;
}

.ps-about-visual-strip {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 10px;
  background-color: var(--page-bg);
}

.ps-about-visual-strip__image {
  /* max-width: var(--container-width); */
  margin: 0 auto;
  min-height: clamp(260px, 36vw, 470px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.ps-about-visual-strip__inner {
  min-height: inherit;
  display: grid;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
}

.ps-about-visual-strip__caption {
  position: static;
  max-width: 450px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
}

.ps-about-process {
  padding: 100px 0;
}

.ps-about-process__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.ps-about-process__title {
  margin: 0 0 50px;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

.ps-about-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 20px;
}

.ps-about-process__card {
  text-align: left;
}

.ps-about-process__card-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.ps-about-process__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  display: block;
}

.ps-about-process__card-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 40px;
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  min-height: 120px;
}

.ps-about-process__card-number {
  font-size: 40px;
  font-weight: 400;
  color: var(--border-color);
  line-height: 45px;
}

.ps-about-process__card-title {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0;
  color: var(--text-color);
}

/* Single Product Page */

.single-ps_product .site-shell.ps-product-page {
  max-width: var(--container-width);
  padding-top: 200px;
}

.ps-product-page__article {
  display: grid;
  gap: 74px;
  width: 930px;
  margin: 0 auto;
}

.ps-product-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 120px;
}

.ps-product-hero__media {
  display: grid;
  gap: 18px;
}

.ps-product-hero__main-image,
.ps-product-hero__thumb {
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.ps-product-hero__main-image {
  aspect-ratio: 4 / 5.2;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.ps-product-hero__main-image img,
.ps-product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-product-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 320px;
}

.ps-product-hero__thumb {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid rgba(17, 17, 17, 0.18);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ps-product-hero__thumb.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

/* .ps-product-hero__details {
  padding-top: 10px;
} */

.ps-product-hero__title {
  margin: 0;
  font-size: 35px;
  line-height: 25px;
  font-weight: 700;
  line-height: 42px;
}

.ps-product-hero__price {
  margin: 14px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.4;
}

.ps-product-hero__divider {
  margin: 70px 0 24px;
  border-top: 1px solid var(--border-color);
}

.ps-product-hero__meta {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
  row-gap: 8px;
  column-gap: 28px;
  align-items: start;
}

.ps-product-hero__meta dt,
.ps-product-hero__meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.ps-product-hero__meta dt {
  color: rgba(0, 0, 0, 0.72);
}

.ps-product-hero__meta-list {
  margin: 0;
  padding-left: 14px;
  display: grid;
  gap: 2px;
}

.ps-product-hero__summary {
  margin: 24px 0 0;
  color: var(--muted-text);
}

.ps-product-content {
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.ps-product-content__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ps-product-content__body {
  margin-top: 22px;
  max-width: 930px;
  font-size: 15px;
  line-height: 1.78;
}

.ps-product-content__body > *:first-child {
  margin-top: 0;
}

.ps-product-content__body h2,
.ps-product-content__body h3,
.ps-product-content__body h4 {
  margin: 28px 0 8px;
  font-size: 1rem;
  line-height: 1.45;
}

.ps-product-content__body p {
  margin: 0 0 8px;
}

.ps-product-related {
  width: 100vw;
  margin-top: 40px;
  margin-left: calc(50% - 50.4vw);
  padding: 56px 0;
  background: #eeeeee;
}

.ps-product-related__inner {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ps-product-related__label {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.ps-product-related__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Related News Section ─────────────────────────────────── */
.ps-product-news {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 56px 0;
  background: #fff;
}

.ps-product-news__inner {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ps-product-news__header {
  margin-bottom: 28px;
}

.ps-product-news__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ps-product-news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ps-news-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 220ms ease;
}

.ps-news-card:hover {
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
}

.ps-news-card__image {
  flex: 0 0 96px;
  width: 96px;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.ps-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.ps-news-card:hover .ps-news-card__image img {
  transform: scale(1.04);
}

.ps-news-card__body {
  flex: 1;
  min-width: 0;
}

.ps-news-card__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.ps-news-card__title a {
  color: inherit;
  text-decoration: none;
}

.ps-news-card__title a:hover {
  text-decoration: underline;
}

.ps-news-card__date {
  margin: 0;
  font-size: 0.75rem;
  color: #888;
}

@media (prefers-reduced-motion: reduce) {
  .ps-about-hero__image,
  .ps-about-intro-images__image,
  .ps-about-technology__row-image,
  .ps-about-visual-strip__image,
  .ps-about-process__card-image {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .ps-home-showcase__inner,
  .ps-home-showcase.is-right .ps-home-showcase__inner,
  .ps-home-collection__header,
  .ps-home-journal__meta-row {
    grid-template-columns: 1fr;
  }

  .ps-home-showcase,
  .ps-home-showcase__inner {
    min-height: 0;
  }

  .ps-home-showcase__inner {
    padding: 42px 0;
  }

  .ps-home-showcase__copy,
  .ps-home-showcase.is-right .ps-home-showcase__copy {
    order: 3;
    text-align: center;
  }

  .ps-home-showcase.is-right {
    order: 2;
  }

  .ps-home-showcase__arrow {
    display: none;
  }

  .ps-home-collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* .ps-product-related__inner {
    grid-template-columns: 1fr 1fr;
  } */

  .ps-product-related__label {
    grid-column: 1 / -1;
  }

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

  .ps-home-collection__link {
    justify-self: start;
    margin-top: 0;
  }

  .ps-home-collection__detail-strip {
    margin-top: 40px;
  }

  .ps-home-collection__detail-strip,
  .ps-home-banner__inner,
  .ps-home-story,
  .ps-home-story.is-reversed {
    grid-template-columns: 1fr;
  }

  .ps-home-story__content {
    max-width: 420px;
  }

  .ps-home-story.is-reversed .ps-home-story__content {
    margin-right: 0;
    text-align: left;
    justify-self: start;
  }

  .ps-home-story.is-reversed .ps-home-story__text {
    margin-left: 0;
  }

  .ps-home-banner__media {
    order: 0;
    min-height: 200px;
  }

  .ps-home-banner__copy {
    max-width: 420px;
  }

  .ps-home-banner__bg {
    background-image: var(
      --ps-home-banner-bg-mobile,
      var(--ps-home-banner-bg-desktop)
    );
    min-height: auto;
  }

  /* About Page Responsive (max-width: 1120px) */
  .ps-about-intro {
    padding: 60px 24px;
  }

  .ps-about-intro__title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    margin-bottom: 18px;
  }

  .ps-about-intro-images {
    padding: 50px 24px;
  }

  .ps-about-intro-images__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  /* .ps-about-technology {
    padding: 60px 24px;
  } */

  /* .ps-about-technology__headline { */
  /* margin-bottom: 48px; */
  /* font-size: clamp(1.6rem, 3.5vw, 2.8rem); */
  /* } */

  /* .ps-about-technology__copy-row {
    grid-template-columns: minmax(190px, 0.9fr) minmax(280px, 1.6fr);
    gap: 22px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  } */

  .ps-about-technology__media-row {
    margin-bottom: 34px;
  }

  .ps-about-technology__media-row--feature {
    grid-template-columns: minmax(0, 1fr);
  }
  /* 
  .ps-about-technology__media-side-grid {
    max-width: 60%;
  } */

  .ps-about-visual-strip {
    padding: 10px 0;
  }

  .ps-about-visual-strip__image {
    min-height: clamp(230px, 38vw, 400px);
  }

  .ps-about-visual-strip__inner {
    padding: 20px 24px;
  }

  .ps-about-process__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 10px;
  }
}

/* Product Archive Page */
.post-type-archive-ps_product .site-shell,
.tax-ps_product_line .site-shell {
  max-width: none;
  padding: 0;
}

.ps-archive-product {
  width: 100%;
  padding-top: 42px;
}

.ps-archive-product__wordmark,
.ps-archive-product__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ps-archive-product__wordmark {
  margin: 150px auto 200px;
}

.ps-archive-product__wordmark-inner {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-archive-product__wordmark img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.ps-archive-product__wordmark-fallback {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 12vw, 8.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(244, 216, 227, 0.86),
    rgba(162, 32, 83, 0.76),
    rgba(244, 216, 227, 0.88)
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.ps-archive-product__tabs {
  margin: 100px auto;
  border-bottom: 1px solid var(--border-color);
  max-width: var(--container-width);
}

.ps-archive-product__tabs-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.ps-archive-product__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: -1px;
  padding-bottom: 2px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #cfcfcf;
  transition: color 200ms ease;
}

.ps-archive-product__tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ps-archive-product__tab:hover,
.ps-archive-product__tab:focus-visible,
.ps-archive-product__tab.is-active {
  color: #000;
  font-weight: 600;
}

.ps-archive-product__tab.is-active::after,
.ps-archive-product__tab:hover::after,
.ps-archive-product__tab:focus-visible::after {
  transform: scaleX(1);
}

/* .ps-archive-product__content {
  padding-bottom: 100px;
} */

.ps-archive-line {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--border-color);
}

.ps-archive-line__header {
  display: grid;
  grid-template-columns: minmax(280px, 2.1fr) minmax(220px, 1fr) minmax(
      220px,
      1fr
    );
  align-items: start;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.ps-archive-line__header.is-empty {
  grid-template-columns: 1fr;
}

.ps-archive-line__title {
  margin: 0;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.05;
}

.ps-archive-line__headline {
  margin: 40px 0 0;
}

.ps-archive-line__copy {
  margin-top: 120px;
  max-width: 265px;
}

.ps-archive-line__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ps-archive-card {
  display: block;
}

.ps-archive-card__link {
  display: grid;
}

.ps-archive-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 6;
  border: 1px solid var(--border-color);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  margin-bottom: 30px;
}

.ps-archive-card__link:hover .ps-archive-card__image,
.ps-archive-card__link:focus-visible .ps-archive-card__image {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.08);
}

.ps-archive-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.ps-archive-card__price {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.ps-archive-brand {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.ps-archive-brand__media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%) rotate(-16deg);
  /* opacity: 0.82;
  filter: grayscale(1); */
}

.ps-archive-brand__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ps-archive-brand__copy {
  position: relative;
  z-index: 1;
}

.ps-archive-brand__title {
  margin: 0;
  font-size: 97px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.ps-archive-brand__text {
  margin: 80px auto 0;
  max-width: 570px;
  font-size: 35px;
  line-height: 1.2;
}

@media (max-width: 1120px) {
  .ps-archive-line__header {
    grid-template-columns: 1fr;
  }

  .ps-archive-line__copy,
  .ps-archive-line__lead {
    max-width: 100%;
  }

  .ps-archive-line__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ps-home-story__text {
    max-width: 100%;
  }
  .ps-home-showcase__inner {
    gap: 25px;
  }
  .site-shell {
    padding-top: 60px;
  }
  .ps-archive-card__title {
    font-size: 12px;
    font-weight: 400;
  }

  .ps-archive-card__price {
    font-size: 12px;
  }

  .ps-archive-card__image {
    margin-bottom: 20px;
  }
  .ps-archive-line__header {
    gap: 40px;
  }
  .ps-archive-product {
    padding-top: 22px;
  }

  .ps-archive-line__title {
    font-size: 45px;
  }

  .ps-archive-line__copy {
    margin: 0;
  }

  .ps-archive-product__wordmark,
  .ps-archive-product__tabs-inner,
  .ps-archive-product__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ps-archive-product__wordmark {
    margin-bottom: 48px;
    margin-top: 40px;
  }

  .ps-archive-product__tabs {
    margin: 40px auto;
  }

  .ps-archive-product__tabs-inner {
    gap: 22px;
  }

  .ps-archive-product__tab {
    min-height: 42px;
    font-size: 12px;
  }

  .ps-archive-line {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .ps-archive-brand {
    min-height: 320px;
    margin-top: 40px;
    padding: 42px 16px;
  }
}

@media (max-width: 767px) {
  .ps-archive-line__header {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
  .ps-archive-line__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 40px;
  }

  .ps-archive-product__tabs-inner {
    gap: 16px;
  }

  .ps-archive-brand__media {
    transform: translate(-50%, -58%) rotate(-14deg);
  }

  .ps-archive-brand__title {
    font-size: 32px;
  }

  .ps-archive-brand__text {
    max-width: 230px;
    font-size: 14px;
    margin-top: 25px;
  }
}

/* =========================================
   Single Post Page (news / blog)
   ========================================= */

.ps-post-page {
  padding-bottom: 0;
}

.ps-post-page__article {
  width: 100%;
  margin-top: 130px;
}

/* Hero */

.ps-post-hero {
  padding-top: 52px;
}

/* Text block inside hero – narrower, centered */
.ps-post-hero__content {
  max-width: 930px;
  margin-inline: auto;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-color);
}

.ps-post-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.ps-post-hero__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.ps-post-hero__eyebrow a:hover {
  text-decoration: underline;
}

.ps-post-hero__title {
  margin: 0 0 20px;
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
}

.ps-post-hero__meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted-text);
}

/* Full-bleed featured image */
.ps-post-hero__image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #edf1f4;
}

.ps-post-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content body */

.ps-post-content {
  max-width: 930px;
  margin-inline: auto;
  padding: 52px 0 72px;
}

.ps-post-content__body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
}

.ps-post-content__body > *:first-child {
  margin-top: 0;
}

.ps-post-content__body h2 {
  margin: 44px 0 14px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.ps-post-content__body h3 {
  margin: 34px 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.ps-post-content__body p {
  margin: 0 0 20px;
}

/* Images in content break out to the full container width */
.ps-post-content__body img {
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: auto;
}

.ps-post-content__body a {
  color: inherit;
  text-decoration: underline;
}

.ps-post-content__body ul,
.ps-post-content__body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.ps-post-content__body li {
  margin-bottom: 8px;
}

/* Related posts section */

.ps-post-related {
  padding: 80px 0 50px;
  border-top: 1px solid var(--border-color);
}

.ps-post-related__inner {
  width: 100%;
}

.ps-post-related__header {
  margin-bottom: 28px;
}

.ps-post-related__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.ps-post-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ps-post-related__grid .ps-blog-side-card {
  padding: 20px 0 0;
  /* border-top: 1px solid var(--border-color); */
}

/* Post card */

.ps-post-card {
  display: flex;
  flex-direction: column;
}

.ps-post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #d8dde2;
  margin-bottom: 12px;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.ps-post-card__image:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
}

.ps-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-post-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ps-post-card__eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.ps-post-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ps-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.ps-post-card__title a:hover {
  text-decoration: underline;
}

.ps-post-card__date {
  margin: 0;
  font-size: 11px;
  color: var(--muted-text);
}

/* Responsive – post page */

@media (max-width: 767px) {
  .ps-post-related__title {
    font-size: 15px;
  }

  .ps-post-content__body {
    font-size: 12px;
    line-height: 20px;
  }
  .ps-post-hero__content {
    padding-bottom: 40px;
  }

  .ps-post-content {
    padding: 40px 0;
  }

  .ps-post-page__article {
    margin-top: 0;
  }
  .ps-post-hero {
    padding-top: 0;
  }

  .ps-post-hero__title {
    font-size: 17px;
    line-height: 20px;
  }

  .ps-post-related {
    padding: 40px 0 56px;
  }

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

  /* .ps-post-related__grid .ps-blog-side-card {
    grid-template-columns: 140px 1fr;
  } */
}

/* @media (max-width: 480px) {
  .ps-post-related__grid .ps-blog-side-card {
    grid-template-columns: 120px 1fr;
  }
} */

/* ==========================================================================
   Customer Care Page  (.ps-care-*)
   ========================================================================== */

/* Page shell — override site-shell defaults */
.ps-care-page.site-shell {
  padding-top: 48px;
  padding-bottom: 120px;
}

.ps-care-page__inner {
  /* Width and horizontal padding handled by .site-shell */
}

/* Page title */
.ps-care-page__title {
  font-size: 55px;
  font-weight: 700;
  margin: 200px 0 100px;
  line-height: 55px;
}

/* Tabs */
.ps-care-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 0;
}

.ps-care-tabs__tab {
  position: relative;
  display: inline-block;
  padding: 0 0 20px;
  margin-right: 50px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #cfcfcf;
  transition: color 200ms ease;
  white-space: nowrap;
}

.ps-care-tabs__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ps-care-tabs__tab.is-active,
.ps-care-tabs__tab:hover {
  color: #000;
}

.ps-care-tabs__tab.is-active::after {
  transform: scaleX(1);
}

/* Table header */
.ps-care-table {
  margin-top: 80px;
}

.ps-care-table__header {
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  gap: 0 24px;
  padding: 20px 0 12px;
  border-bottom: 1px solid #d5d5d5;
}

.ps-care-table__header span {
  text-transform: uppercase;
}

/* Accordion rows */
.ps-care-row {
  border-bottom: 1px solid var(--border-color);
}

.ps-care-row__toggle {
  display: grid;
  grid-template-columns: 60px 200px 1fr 32px;
  gap: 0 24px;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  transition: background 150ms ease;
}

.ps-care-row__toggle:hover .ps-care-row__question {
  opacity: 0.72;
}

.ps-care-row__chevron {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* color: #6c6c6c; */
  transition: transform 240ms ease;
  flex-shrink: 0;
}

/* Expanded state */
.ps-care-row.is-open .ps-care-row__chevron {
  transform: rotate(90deg);
}

/* .ps-care-row.is-open .ps-care-row__toggle {
  font-weight: 500;
} */

/* Accordion body */
.ps-care-row__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms ease;
}

.ps-care-row__body[hidden] {
  display: block !important; /* override hidden so CSS transition works */
  visibility: hidden;
}

.ps-care-row.is-open .ps-care-row__body {
  visibility: visible;
  max-height: 2000px;
}

.ps-care-row__body-inner {
  padding: 8px 0 32px;
  padding-left: calc(60px + 24px + 200px + 24px);
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.ps-care-row__body-inner p {
  margin: 0 0 12px;
}

.ps-care-row__body-inner p:last-child {
  margin-bottom: 0;
}

/* Pagination */
.ps-care-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 48px;
}

.ps-care-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #9a9a9a;
  transition: color 150ms ease;
}

.ps-care-pagination .page-numbers:hover {
  color: #111;
}

.ps-care-pagination .page-numbers.current {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.ps-care-pagination .page-numbers.dots {
  cursor: default;
  color: #9a9a9a;
}

/* Empty state */
.ps-care-empty {
  padding: 64px 0;
  text-align: center;
  font-size: 15px;
  color: #6c6c6c;
}

/* Responsive */
@media (max-width: 767px) {
  .ps-care-tabs__tab {
    margin-right: 30px;
    font-size: 15px;
  }
  .ps-care-page__title {
    font-size: 25px;
    line-height: 35px;
    margin: 20px 0 40px;
  }
  .ps-care-page.site-shell {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .ps-care-table__header {
    grid-template-columns: 40px 1fr;
  }

  .ps-care-table__header span:nth-child(2) {
    display: none;
  }

  .ps-care-table {
    border-top: 1px solid var(--border-color);
  }

  .ps-care-row__toggle {
    grid-template-columns: 1fr;
    gap: 0 16px;
    font-size: 17px;
    padding: 26px 0;
  }

  .ps-care-row__num,
  .ps-care-row__chevron,
  .ps-care-table__header {
    display: none;
  }

  .ps-care-row__category {
    display: none;
  }

  .ps-care-row__body-inner {
    padding-left: calc(40px + 16px);
  }
}

@media (max-width: 560px) {
  .ps-care-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ps-care-tabs::-webkit-scrollbar {
    display: none;
  }

  .ps-care-table__header {
    grid-template-columns: 36px 1fr;
  }

  .ps-care-row__body-inner {
    padding-left: calc(36px + 16px);
  }
}

/* ==========================================================================
   Blog / Posts Listing Page  (.ps-blog-*)
   ========================================================================== */

/* -- Page shell ------------------------------------------------------------ */
.ps-blog {
  padding-top: 0;
  padding-bottom: 96px;
}

/* -- Page header ------------------------------------------------------------ */
.ps-blog__header {
  padding: 200px 0 100px;
}

.ps-blog__header-title {
  margin: 0;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
}

/* -- Featured section (first 4 posts) -------------------------------------- */
.ps-blog__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

/* Left: large featured card */
.ps-blog-featured {
  display: flex;
  flex-direction: column;
}

.ps-blog-featured__images {
  display: block;
  overflow: hidden;
  /* aspect-ratio: 4 / 3; */
  background: #edf1f4;
  margin-bottom: 16px;
  transition: box-shadow 240ms ease;
}

.ps-blog-featured__images.has-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 4 / 3;
}

.ps-blog-featured__img {
  overflow: hidden;
}

.ps-blog-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.ps-blog-featured__images:hover {
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.ps-blog-featured__images:hover img {
  transform: scale(1.03);
}

.ps-blog-featured__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.ps-blog-featured__date {
  margin: 0;
  /* font-family: "Inter", sans-serif; */
  font-size: 12px;
  color: var(--muted-text);
}

.ps-blog-featured__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.ps-blog-featured__title a {
  color: inherit;
  text-decoration: none;
}

.ps-blog-featured__title a:hover {
  text-decoration: underline;
}

/* Right: 3 stacked side cards */
.ps-blog-featured__side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ps-blog-side-card {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 20px;
  /* border-bottom: 1px solid var(--border-color); */
}

/* .ps-blog-side-card:first-child {
  border-top: 1px solid var(--border-color);
} */

.ps-blog-side-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 9/5.6;
  background: #edf1f4;
  transition: box-shadow 220ms ease;
}

.ps-blog-side-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.ps-blog-side-card:hover .ps-blog-side-card__image {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
}

.ps-blog-side-card:hover .ps-blog-side-card__image img {
  transform: scale(1.04);
}

.ps-blog-side-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ps-blog-side-card__date {
  margin: 0;
  font-size: 12px;
  color: var(--muted-text);
}

.ps-blog-side-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.ps-blog-side-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-blog-side-card__title a:hover {
  text-decoration: underline;
}

/* -- Remaining rows (4-col grid) ------------------------------------------- */
.ps-blog__rows {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.ps-blog__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* -- Standard card (rows) --------------------------------------------------- */
.ps-blog-card {
  display: flex;
  flex-direction: column;
}

.ps-blog-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #edf1f4;
  margin-bottom: 12px;
  transition: box-shadow 240ms ease;
}

.ps-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.ps-blog-card:hover .ps-blog-card__image {
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.1);
}

.ps-blog-card:hover .ps-blog-card__image img {
  transform: scale(1.03);
}

.ps-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ps-blog-card__date {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  color: var(--muted-text);
}

.ps-blog-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.ps-blog-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-blog-card__title a:hover {
  text-decoration: underline;
}

/* -- XEM THEM link ---------------------------------------------------------- */
.ps-blog__read-more {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.ps-blog__read-more:hover {
  opacity: 0.6;
}

/* -- Pagination ------------------------------------------------------------- */
.ps-blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 64px;
}

.ps-blog__page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  border: 1px solid transparent;
  border-radius: 2px;
  transition:
    border-color 150ms ease,
    background 150ms ease;
}

.ps-blog__page-link:hover {
  border-color: var(--border-color);
}

.ps-blog__page-link.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.ps-blog__page-link--prev,
.ps-blog__page-link--next {
  padding: 0 14px;
}

/* -- Empty state ------------------------------------------------------------ */
.ps-blog__empty {
  padding: 64px 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted-text);
}

@media (max-width: 767px) {
  .ps-blog__featured {
    grid-template-columns: 1fr;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .ps-blog-side-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

@media (max-width: 640px) {
  .ps-blog {
    padding-bottom: 60px;
  }

  .ps-blog__header {
    padding: 32px 0 24px;
  }

  .ps-blog__pagination {
    margin-top: 48px;
  }
}

/* =========================================
   Partner Page (.ps-partner-*)
   ========================================= */

.ps-partner-hero {
  width: 100vw;
  margin-left: calc(50% - 50.5vw);
}

.ps-partner-hero__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.ps-partner-intro {
  padding: 100px 0;
  text-align: center;
}

.ps-partner-intro__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ps-partner-intro__mark-logo {
  width: clamp(52px, 5.2vw, 78px);
  height: auto;
}

.ps-partner-list {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px 100px;
}

.ps-partner-item {
  padding-bottom: 100px;
}

/* .ps-partner-item:last-child {
  border-bottom: 1px solid var(--border-color);
} */

.ps-partner-item__name {
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

.ps-partner-item__address {
  font-style: normal;
}

/* .ps-partner-item__phone {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-text);
} */

.ps-partner-item__image {
  margin: 50px 0 0;
}

.ps-partner-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   CTA Banner (blog index + single post)
   ========================================= */

.ps-cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  padding: 10px;
  border-top: 1px solid var(--border-color);
}

.ps-cta-banner__image {
  overflow: hidden;
  background: #111;
}

.ps-cta-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.ps-cta-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  padding: 56px 64px;
  background: #111;
  color: #fff;
  text-align: center;
}

.ps-cta-banner__title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  max-width: 455px;
  margin: 0 auto;
}

.ps-cta-banner__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
  padding-bottom: 2px;
  align-self: flex-start;
  transition:
    border-color 200ms ease,
    opacity 200ms ease;
  margin: 0 auto;
}

.ps-cta-banner__link:hover {
  opacity: 0.75;
  /* border-color: rgba(255, 255, 255, 0.8); */
}

@media (max-width: 767px) {
  .ps-cta-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 10px 0;
  }

  .ps-cta-banner__title {
    font-size: 15px;
    line-height: 21px;
  }

  .ps-cta-banner__link {
    font-size: 12px;
  }

  .ps-cta-banner__image {
    aspect-ratio: 16 / 7;
  }

  .ps-cta-banner__copy {
    padding: 40px 32px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ps-cta-banner__copy {
    padding: 32px 20px;
  }
}

@media (max-width: 767px) {
  .ps-home-film,
  .ps-home-intro,
  .ps-home-stories,
  .ps-home-showcase,
  .ps-home-collection,
  .ps-home-journal,
  .ps-home-wordmark {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ps-home-wordmark {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ps-home-product-card__title {
    font-size: 12px;
    font-weight: 400;
  }

  .ps-home-product-card__meta {
    font-size: 12px;
    margin-top: -10px;
  }

  .ps-home-journal__cards {
    gap: 7px;
  }

  .ps-home-product-card {
    gap: 10px;
  }

  .ps-home-collection__header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "title title" "lead link" "text text";
    align-items: end;
    gap: 12px 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .ps-home-product-card__image {
    margin-bottom: 0;
  }

  .ps-home-collection__title {
    grid-area: title;
  }

  .ps-home-collection__lead {
    grid-area: lead;
    max-width: none;
  }

  .ps-home-collection__subtitle {
    margin: 16px 0 20px 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .ps-home-collection__text {
    grid-area: text;
    max-width: 100%;
  }

  .ps-home-intro__mark-logo,
  .ps-partner-intro__mark-logo {
    width: 42px;
  }

  .ps-partner-item__name {
    margin: 0;
    font-size: 12px;
  }

  .ps-home-intro__title {
    font-size: 17px;
    line-height: 25px;
    margin-bottom: 25px;
  }

  .ps-home-collection__link {
    grid-area: link;
    justify-self: end;
    align-self: end;
    margin: 0;
    white-space: nowrap;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .ps-home-story__title,
  .ps-home-story__text {
    text-align: center;
  }

  .ps-home-stories__divider {
    margin: 40px 0;
  }

  .ps-home-banner__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ps-home-film {
    padding-left: 0;
    padding-right: 0;
  }

  .ps-home-film__frame {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .ps-home-film__title {
    max-width: 11ch;
    font-size: clamp(2rem, 7vw, 3.4rem);
  }

  .ps-home-film__text {
    max-width: 24ch;
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .page-template-template-homepage .site-header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ps-home-intro {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .ps-home-story__content {
    margin-left: 0;
  }

  .ps-home-stories {
    padding-bottom: 54px;
    padding-top: 40px;
    width: auto;
  }

  /* .ps-home-story {
    padding: 0 16px 38px;
  } */
  /* 
  .ps-home-showcase {
    margin-bottom: 24px;
  } */

  .ps-home-showcase__product-card {
    width: 180px;
  }

  .ps-home-showcase__title {
    font-size: 72px;
  }

  .ps-home-carousel .owl-nav {
    padding: 0 20px;
  }

  .ps-home-collection {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .ps-home-collection__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 40px;
  }

  .ps-home-journal__link {
    text-align: left;
  }

  .ps-home-collection__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ps-home-collection--reverse .ps-home-collection__detail-strip {
    grid-template-columns: 1fr;
    grid-template-areas:
      "thumbs"
      "feature";
  }

  .ps-home-collection--reverse .ps-home-collection__thumbs {
    grid-area: thumbs;
    order: 1;
  }

  .ps-home-collection--reverse .ps-home-collection__feature-shot {
    grid-area: feature;
    order: 2;
    width: 100%;
  }

  .ps-home-collection__header {
    gap: 14px;
  }

  .ps-home-collection__title {
    font-size: 30px;
  }

  .ps-home-journal {
    padding-bottom: 40px;
  }

  .ps-home-journal__hero-image {
    aspect-ratio: 4 / 3;
  }

  .ps-home-collection__feature-shot {
    aspect-ratio: 4 / 3;
  }

  /* About Page Responsive (max-width: 760px) */
  .ps-about-intro {
    padding: 48px 16px;
  }

  .ps-about-intro__title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 16px;
  }

  .ps-about-intro__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }

  .ps-about-intro-images {
    padding: 40px 16px;
  }

  .ps-about-intro-images__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  /* 
  .ps-about-technology {
    padding: 48px 16px;
  } */

  .ps-about-technology__headline {
    margin-bottom: 40px;
    margin-top: 0;
    /* font-size: clamp(1.4rem, 2.8vw, 2rem); */
  }

  /* .ps-about-technology__copy-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  } */

  .ps-about-technology__row-label {
    font-size: 17px;
    font-weight: 400;
  }

  /* .ps-about-technology__row-body {
    font-size: 0.95rem;
    line-height: 1.48;
  } */

  .ps-about-technology__media-row--split,
  .ps-about-technology__media-row--feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ps-about-technology__media-side-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ps-about-visual-strip {
    padding: 10px 0;
  }

  .ps-about-visual-strip__image {
    min-height: clamp(210px, 48vw, 320px);
  }

  .ps-about-visual-strip__inner {
    padding: 18px 16px;
  }

  .ps-about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .ps-about-process__card-image-wrapper {
    margin-bottom: 8px;
  }

  .ps-about-process__card-title {
    font-size: 17px;
  }

  .ps-about-process__card-meta {
    column-gap: 60px;
    padding-bottom: 20px;
    padding-top: 20px;
    min-height: auto;
  }

  .single-ps_product .site-shell.ps-product-page {
    padding-top: 40px;
  }

  .ps-product-page__article {
    gap: 50px;
  }

  .ps-product-hero {
    gap: 30px;
  }

  .ps-product-hero__title {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .ps-product-hero__meta {
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
    column-gap: 16px;
  }

  .ps-product-content__body {
    line-height: 1.68;
  }
}

@media (max-width: 767px) {
  .ps-home img.ps-home-intro__mark-logo {
    width: 42px;
  }

  .ps-home-intro__mark {
    margin-bottom: 36px;
  }

  .ps-home-intro__text,
  .ps-home-story__text,
  .ps-home-collection__text,
  .ps-home-banner__text,
  .ps-home-journal__summary p {
    font-size: 12px;
    line-height: 1.45;
  }

  .ps-home-intro__text {
    margin: 0;
  }

  .ps-home-banner__text {
    max-width: 200px;
    line-height: 1.4;
  }

  .ps-home-banner {
    margin-bottom: 40px;
  }
  .ps-product-hero {
    grid-template-columns: 1fr;
  }

  .ps-product-hero__thumbs {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ps-product-related__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .page-template-template-homepage .menu {
    gap: 10px 14px;
    font-size: 0.52rem;
  }

  .ps-home-film__controls {
    min-width: 126px;
    gap: 10px;
    padding: 6px 10px;
  }

  .ps-home-film__copy {
    padding: 20px;
  }

  .ps-home-film__title {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .ps-home-film__text {
    font-size: 0.82rem;
  }

  .ps-home-showcase__product-card {
    width: 240px;
  }

  .ps-home-showcase__title {
    font-size: 56px;
  }

  .ps-home-carousel .owl-nav {
    padding: 0 16px;
  }

  .ps-home-carousel .owl-nav button {
    width: 32px;
    height: 32px;
  }

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

  .ps-home-collection__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ps-product-related {
    margin-top: 30px;
    padding: 36px 0;
  }

  .ps-product-related__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 18px;
    width: auto;
  }

  .ps-partner-intro {
    padding: 40px 0;
  }

  .ps-product-related__label {
    grid-column: auto;
  }

  .ps-product-news {
    padding: 36px 0;
  }

  .ps-product-news__inner {
    padding: 0 16px;
  }

  .ps-home-showcase__title {
    font-size: 45px;
    bottom: 30px;
  }

  .ps-home-wordmark__text {
    letter-spacing: 0.08em;
  }

  .ps-home-banner__copy {
    padding: 22px 18px;
  }

  .ps-home-banner__title {
    font-size: 17px;
    font-weight: 600;
    max-width: 200px;
    margin-top: 40px;
  }

  /* About Page Responsive (max-width: 560px) */
  .ps-about-intro {
    padding: 36px 12px;
  }

  .ps-about-intro__title {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .ps-about-intro__subtitle {
    font-size: 0.9rem;
  }

  .ps-about-intro-images {
    padding: 40px 18px 0;
  }

  .ps-about-technology {
    padding: 40px 18px;
  }

  .ps-about-technology__headline {
    margin-bottom: 40px;
    font-size: 25px;
    line-height: 28px;
    font-weight: 300;
  }

  .ps-about-technology__copy-row {
    margin-bottom: 40px;
    padding-bottom: 40px;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  /* .ps-about-technology__row-body {
    font-size: 0.9rem;
  } */

  .ps-about-technology__media-row {
    margin-bottom: 20px;
    gap: 20px;
  }

  /* .ps-about-technology__media-row--split,
  .ps-about-technology__media-row--feature,
  .ps-about-technology__media-side-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  } */

  .ps-about-visual-strip {
    padding: 10px 0;
  }

  .ps-about-visual-strip__image {
    min-height: 210px;
  }

  .ps-about-visual-strip__caption {
    font-size: 15px;
  }

  .ps-about-process {
    padding: 40px 18px;
  }

  .ps-about-process__title {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .ps-about-process__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ps-about-process__card-number {
    font-size: 35px;
  }
  .ps-partner-item__image {
    margin: 0;
  }
  .ps-partner-item__phone {
    margin: 30px 0 20px;
  }
}

@media (max-width: 767px) {
  .ps-partner-item {
    padding: 0 0 40px;
  }

  .ps-partner-item__image {
    max-width: 100%;
  }

  .ps-partner-list {
    padding: 0 18px;
  }

  .ps-blog__header {
    padding: 60px 0 40px;
  }

  .ps-blog__header-title {
    font-size: 25px;
  }

  .ps-blog-featured__side {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .ps-blog-side-card__title,
  .ps-blog__read-more {
    font-size: 12px;
  }

  .ps-blog-side-card {
    grid-template-rows: max-content;
  }
}

@media (min-width: 1920px) {
  .ps-home-banner__bg {
    min-height: 500px;
  }
}
