:root {
  --pd-paper: #f4f0e7;
  --pd-paper-light: #faf8f3;
  --pd-ink: #272821;
  --pd-muted: #68695f;
  --pd-line: rgba(39, 40, 33, 0.18);
  --pd-madder: #9a665c;
  --pd-indigo: #31556a;
  --pd-lichen: #747b63;
  --pd-clay: #b59a7d;
  --pd-serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", serif;
  --pd-sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

body.template-index,
body:has(.pd-home) {
  background: var(--pd-paper-light);
  color: var(--pd-ink);
}

/* Keep the staged New Arrivals module out of the preview until its draft
   products receive verified price, size and stock data and are published. */
.product-list-2:not(:has(.product-list-2__products)) {
  display: none !important;
}

.pd-home {
  overflow: hidden;
  background: var(--pd-paper-light);
  color: var(--pd-ink);
  font-family: var(--pd-sans);
}

.pd-home *,
.pd-home *::before,
.pd-home *::after {
  box-sizing: border-box;
}

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

.pd-home a {
  color: inherit;
  text-decoration: none;
}

.pd-wrap {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

.pd-eyebrow {
  margin: 0 0 18px;
  color: var(--pd-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pd-display,
.pd-title,
.pd-card-title {
  margin: 0;
  font-family: var(--pd-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.pd-display {
  max-width: 9.5ch;
  font-size: clamp(56px, 7.2vw, 116px);
  line-height: 0.89;
}

.pd-title {
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 0.96;
}

.pd-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--pd-muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.72;
}

.pd-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 0 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transition: gap 180ms ease, opacity 180ms ease;
}

.pd-link:hover,
.pd-link:focus-visible {
  gap: 25px;
  opacity: 0.72;
}

.pd-link::after {
  content: "→";
  font-size: 18px;
  font-weight: 400;
}

.pd-hero {
  position: relative;
  overflow: hidden;
  height: clamp(620px, 52vw, 780px);
  background: #eee9de;
}

.pd-hero-carousel,
.pd-hero-track {
  position: relative;
  height: 100%;
}

.pd-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 760ms cubic-bezier(.32,.72,0,1);
}

.pd-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.pd-hero-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  padding: 18px 18px 18px 0;
  overflow: hidden;
}

.pd-hero-media img {
  position: static;
  width: 100%;
  height: 100%;
  min-width: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.pd-hero-shade {
  position: absolute;
  inset-block: 0;
  width: min(58%, 860px);
  pointer-events: none;
}

.pd-hero-shade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(20, 24, 18, .68), rgba(20, 24, 18, 0));
}

.pd-hero-shade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(20, 24, 18, .68), rgba(20, 24, 18, 0));
}

.pd-hero-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(32px, 5vw, 96px);
  color: var(--pd-ink);
}

.pd-hero-caption--left {
  left: clamp(30px, 6vw, 110px);
}

.pd-hero-caption--right {
  right: clamp(30px, 6vw, 110px);
  text-align: right;
}

.pd-hero-caption .pd-eyebrow {
  color: var(--pd-muted);
}

.pd-hero-caption .pd-display {
  display: block;
  max-width: 11ch;
  font-size: clamp(54px, 6vw, 104px);
  line-height: .92;
}

.pd-hero-description {
  max-width: 34ch;
  margin-top: 28px;
  color: var(--pd-muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
}

.pd-hero-caption--right .pd-display {
  margin-left: auto;
}

.pd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pd-hero-cta b {
  font-size: 18px;
  font-weight: 400;
}

.pd-hero-controls {
  position: absolute;
  left: clamp(32px, 5vw, 96px);
  bottom: 32px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.pd-hero-controls button {
  width: 42px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(39, 40, 33, .24);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.pd-hero-controls button.is-active,
.pd-hero-controls button:hover,
.pd-hero-controls button:focus-visible {
  background: var(--pd-ink);
  transform: scaleY(1.8);
}

.pd-category-section {
  padding: 120px 0 138px;
}

.pd-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.pd-section-intro {
  max-width: 490px;
  color: var(--pd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.pd-category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.pd-category-card {
  grid-column: span 3;
  display: block;
}

.pd-category-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ded9ce;
}

.pd-category-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.pd-category-media img {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pd-category-card:hover .pd-category-media img,
.pd-category-card:focus-visible .pd-category-media img {
  transform: scale(1.025);
}

.pd-category-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px 0;
}

.pd-card-title {
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.08;
}

.pd-card-index {
  color: var(--pd-muted);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.pd-editorial {
  padding: 128px 0;
  background: var(--pd-ink);
  color: #f7f2e8;
}

.pd-editorial-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(560px, 1.25fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.pd-editorial-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 18px;
}

.pd-editorial .pd-eyebrow,
.pd-editorial .pd-copy {
  color: rgba(247, 242, 232, 0.64);
}

.pd-palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid rgba(247, 242, 232, 0.24);
}

.pd-swatch {
  padding: 18px 0 0;
  border-right: 1px solid rgba(247, 242, 232, 0.15);
  color: rgba(247, 242, 232, 0.72);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pd-swatch:last-child {
  border-right: 0;
}

.pd-swatch::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  background: var(--swatch);
}

.pd-editorial-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.pd-editorial-primary {
  aspect-ratio: 3 / 4;
}

.pd-editorial-secondary {
  aspect-ratio: 3 / 4;
  margin-bottom: -74px;
}

.pd-season {
  padding: 136px 0 128px;
}

.pd-season-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(36px, 7vw, 112px);
  align-items: end;
  margin-bottom: 42px;
}

.pd-season-heading .pd-copy {
  margin: 0 0 5px;
}

.pd-season-media {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  height: clamp(560px, 58vw, 760px);
}

.pd-season-details {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}

.pd-season-details figure {
  margin: 0;
  overflow: hidden;
  min-height: 0;
  background: #d8dbd7;
}

.pd-season-feature {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid var(--pd-line);
  background: #e5e9e8;
}

.pd-season-feature img {
  flex: 1;
  min-height: 0;
  -o-object-position: center;
     object-position: center;
}

.pd-season-feature > span {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 25px;
  background: var(--pd-paper-light);
  font-family: var(--pd-serif);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1;
}

.pd-season-feature:hover > span,
.pd-season-feature:focus-visible > span {
  background: #e9eeeb;
}

.pd-season-feature:focus-visible {
  outline: 2px solid var(--pd-indigo);
  outline-offset: 4px;
}

.pd-season-disclosure {
  margin: 14px 0 0;
  color: var(--pd-muted);
  font-size: 11px;
  line-height: 1.5;
}

.pd-note-line {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 28px;
  padding: 23px 0;
  border-top: 1px solid var(--pd-line);
}

.pd-note-line:first-of-type {
  margin-top: 58px;
}

.pd-note-label {
  color: var(--pd-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pd-note-value {
  font-family: var(--pd-serif);
  font-size: 20px;
  line-height: 1.35;
}

.pd-truth {
  padding: 126px 0;
  background: #dfe2d8;
}

.pd-truth-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(70px, 11vw, 180px);
}

.pd-truth-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.pd-truth-copy {
  padding-top: 10px;
}

.pd-truth-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #565b52;
  font-size: 16px;
  line-height: 1.78;
}

.pd-truth-copy .pd-lead {
  color: var(--pd-ink);
  font-family: var(--pd-serif);
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.pd-truth-copy .pd-link {
  margin-top: 18px;
}

.pd-story {
  padding: 150px 0;
  background: var(--pd-paper-light);
}

.pd-story-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(62px, 10vw, 165px);
  align-items: center;
}

.pd-story-media {
  min-height: 700px;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #ded9ce;
}

.pd-story-media img {
  -o-object-position: center 36%;
     object-position: center 36%;
}

.pd-story-copy .pd-copy + .pd-copy {
  margin-top: 18px;
}

.pd-story-copy .pd-link {
  margin-top: 36px;
}

.pd-timeline {
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pd-line);
}

.pd-timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pd-line);
}

.pd-timeline span {
  color: var(--pd-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pd-timeline p {
  margin: 0;
  font-family: var(--pd-serif);
  font-size: 20px;
  line-height: 1.4;
}

.pd-service {
  padding: 126px 0 140px;
  background: #eee7da;
}

.pd-service-head {
  margin-bottom: 55px;
}

.pd-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pd-line);
  border-bottom: 1px solid var(--pd-line);
}

.pd-service-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 28px 36px 30px;
  border-right: 1px solid var(--pd-line);
  transition: background-color 180ms ease;
}

.pd-service-card:last-child {
  border-right: 0;
}

.pd-service-card:hover,
.pd-service-card:focus-visible {
  background: rgba(250, 248, 243, .62);
}

.pd-service-card > span {
  color: var(--pd-muted);
  font-size: 10px;
  letter-spacing: .16em;
}

.pd-service-card h3 {
  margin: 54px 0 14px;
  font-family: var(--pd-serif);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: -.025em;
}

.pd-service-card p {
  max-width: 340px;
  margin: 0;
  color: var(--pd-muted);
  font-size: 14px;
  line-height: 1.65;
}

.pd-service-card b {
  margin-top: auto;
  padding-top: 28px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pd-about {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  color: var(--pd-ink);
  font-family: var(--pd-sans);
}

.pd-about h1,
.pd-about h2,
.pd-about h3 {
  margin: 0;
  font-family: var(--pd-serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

.pd-about h1 {
  max-width: 8.5ch;
  font-size: clamp(62px, 8.2vw, 126px);
  line-height: .88;
}

.pd-about h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: .98;
}

.pd-about p {
  color: var(--pd-muted);
  font-size: 16px;
  line-height: 1.76;
}

.pd-about-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
  min-height: 620px;
  padding: 120px 0 96px;
  border-bottom: 1px solid var(--pd-line);
}

.pd-about-lead {
  max-width: 570px;
  margin: 0 0 12px;
  color: var(--pd-ink) !important;
  font-family: var(--pd-serif);
  font-size: clamp(27px, 2.7vw, 42px) !important;
  line-height: 1.24 !important;
  letter-spacing: -.02em;
}

.pd-about-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
  padding: 140px 0;
}

.pd-about-split figure {
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #ded9ce;
}

.pd-about-split img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pd-about-split p:not(.pd-eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
}

.pd-about-split .pd-link,
.pd-about-truth .pd-link {
  margin-top: 34px;
}

.pd-about-principles {
  padding: 120px 0 130px;
  border-top: 1px solid var(--pd-line);
}

.pd-about-principles > h2 {
  max-width: 760px;
}

.pd-about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--pd-line);
  border-bottom: 1px solid var(--pd-line);
}

.pd-about-cards > div {
  min-height: 300px;
  padding: 26px 34px 34px;
  border-right: 1px solid var(--pd-line);
}

.pd-about-cards > div:last-child { border-right: 0; }
.pd-about-cards span { color: var(--pd-muted); font-size: 10px; letter-spacing: .16em; }
.pd-about-cards h3 { margin-top: 58px; font-size: 36px; }
.pd-about-cards p { max-width: 330px; margin-top: 16px; font-size: 14px; }

.pd-about-truth,
.pd-about-company {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(65px, 11vw, 180px);
  padding: 130px 0;
  border-top: 1px solid var(--pd-line);
}

.pd-about-truth p,
.pd-about-company dl {
  margin-top: 0;
}

.pd-about-company {
  padding-bottom: 150px;
}

.pd-about-company dl {
  border-top: 1px solid var(--pd-line);
}

.pd-about-company dl > div {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--pd-line);
}

.pd-about-company dt {
  color: var(--pd-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pd-about-company dd {
  margin: 0;
  font-family: var(--pd-serif);
  font-size: 20px;
  line-height: 1.5;
}

.pd-policy-page {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
  color: var(--pd-ink);
}

.pd-policy-page > h1 {
  margin-bottom: 52px;
  font-family: var(--pd-serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -.035em;
}

.pd-policy-page .mce-content {
  color: var(--pd-muted);
  font-size: 16px;
  line-height: 1.72;
}

.pd-policy-page .mce-content h2 {
  margin-top: 52px;
  color: var(--pd-ink);
  font-family: var(--pd-serif);
  font-size: 32px;
  font-weight: 500;
}

.pd-closing {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  background: #e9e5d9;
  color: var(--pd-ink);
}

.pd-closing-image {
  min-height: 660px;
  overflow: hidden;
}

.pd-closing-image img {
  -o-object-position: center;
     object-position: center;
}

.pd-closing-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100% - 48px, 650px);
  margin-inline: auto;
  padding-block: 96px;
  text-align: left;
}

.pd-closing .pd-title {
  font-size: clamp(54px, 6vw, 92px);
}

.pd-closing .pd-copy {
  margin-inline: 0;
  color: var(--pd-muted);
}

.pd-closing .pd-link {
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .pd-wrap {
    width: min(100% - 36px, 1480px);
  }

  .pd-hero { height: 680px; }

  .pd-category-card {
    grid-column: span 6;
  }

  .pd-editorial-grid,
  .pd-season-heading,
  .pd-truth-grid,
  .pd-story-grid {
    gap: 58px;
  }

  .pd-story-media {
    min-height: 600px;
  }
}

@media (max-width: 767px) {
  .pd-closing { grid-template-columns: 1fr; }
  .pd-closing-image { min-height: 420px; }
  .pd-closing-content { padding-block: 60px 74px; }
  .pd-wrap {
    width: min(100% - 28px, 1480px);
  }

  .pd-hero {
    height: 720px;
  }

  .pd-hero-slide {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 54%) minmax(0, 46%);
  }

  .pd-hero-media {
    grid-row: 1;
    gap: 8px;
    padding: 8px;
  }

  .pd-hero-caption {
    grid-row: 2;
    padding: 22px 24px 46px;
  }

  .pd-editorial-grid,
  .pd-season-heading,
  .pd-truth-grid,
  .pd-story-grid {
    grid-template-columns: 1fr;
  }

  .pd-hero-caption .pd-display {
    max-width: 12ch;
    font-size: clamp(45px, 11vw, 61px);
  }

  .pd-hero-cta {
    margin-top: 19px;
  }

  .pd-hero-controls {
    left: 24px;
    bottom: 19px;
  }

  .pd-hero-controls button {
    width: 30px;
  }

  .pd-category-section {
    padding: 82px 0 92px;
  }

  .pd-section-head {
    display: block;
    margin-bottom: 34px;
  }

  .pd-section-intro {
    margin-top: 22px;
  }

  .pd-category-grid {
    gap: 28px 12px;
  }

  .pd-category-card {
    grid-column: span 6;
  }

  .pd-category-meta {
    display: block;
    padding-top: 12px;
  }

  .pd-card-title {
    font-size: 25px;
  }

  .pd-card-index {
    display: block;
    margin-top: 6px;
  }

  .pd-editorial {
    padding: 84px 0 116px;
  }

  .pd-editorial-media {
    margin-top: 8px;
    gap: 10px;
  }

  .pd-editorial-secondary {
    margin-bottom: -38px;
  }

  .pd-palette {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
    margin-top: 46px;
  }

  .pd-season {
    padding: 108px 0 92px;
  }

  .pd-season-media {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
    gap: 8px;
    height: clamp(420px, 93vw, 600px);
  }

  .pd-season-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .pd-season-details {
    gap: 8px;
  }

  .pd-season-feature > span {
    padding: 14px 15px;
    font-size: 19px;
  }

  .pd-note-line {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .pd-truth {
    padding: 84px 0 90px;
  }

  .pd-truth-heading {
    position: static;
  }

  .pd-truth-copy .pd-lead {
    font-size: 31px;
  }

  .pd-story {
    padding: 90px 0;
  }

  .pd-story-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .pd-timeline {
    margin-top: 44px;
  }

  .pd-service {
    padding: 86px 0 96px;
  }

  .pd-service-grid {
    grid-template-columns: 1fr;
  }

  .pd-service-card {
    min-height: 250px;
    padding-inline: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--pd-line);
  }

  .pd-service-card:last-child {
    border-bottom: 0;
  }

  .pd-about {
    width: min(100% - 28px, 1440px);
  }

  .pd-about-hero,
  .pd-about-split,
  .pd-about-truth,
  .pd-about-company {
    grid-template-columns: 1fr;
  }

  .pd-about-hero {
    min-height: 0;
    padding: 90px 0 68px;
  }

  .pd-about h1 {
    font-size: clamp(60px, 19vw, 82px);
  }

  .pd-about-split {
    padding: 82px 0;
  }

  .pd-about-split figure {
    aspect-ratio: 4 / 5;
  }

  .pd-about-principles,
  .pd-about-truth,
  .pd-about-company {
    padding: 84px 0;
  }

  .pd-about-cards {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .pd-about-cards > div {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--pd-line);
  }

  .pd-about-cards > div:last-child {
    border-bottom: 0;
  }

  .pd-about-company dl > div {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pd-policy-page {
    width: min(100% - 28px, 860px);
  }

  .pd-closing {
    min-height: 600px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-home *,
  .pd-home *::before,
  .pd-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
