/* ============================================
   Object / Project / Differentiators
   ============================================ */
.p-diff {
  background: var(--color-ink);
  background-image: url('../assets/images/pattern_bk.png');
  background-repeat: repeat;
  color: #fff;
}
.p-diff__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-diff__head {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  max-width: 920px;
}
.p-diff__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
}
.p-diff__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-diff__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
}
.p-diff__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .p-diff__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1023px) {
  .p-diff__grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: var(--sp-2);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scroll-snap-type: x proximity;
  }

  .p-diff__grid::-webkit-scrollbar {
    display: none;
  }
}
.p-diff__item {
  background: rgba(12, 10, 9, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--dur-1) var(--ease-out);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.p-diff__item:last-child {
  border-right: none;
}
.p-diff__item:hover {
  background: #1a1a1a;
}
.p-diff__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
}
.p-diff__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.p-diff__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.p-diff__item:hover .p-diff__media img {
  transform: scale(1.04);
}
.p-diff__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-subtitle);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-meta);
  color: var(--color-brand);
}
.p-diff__tag {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--sp-3);
}
.p-diff__h {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-card-title);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: #fff;
  text-wrap: balance;
}
.p-diff__copy {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}
@media (max-width: 1023px) {
  .p-diff__item {
    flex: 0 0 60vw;
    scroll-snap-align: start;
  }
}

/* Map embed in store section */
.p-store__visual--map {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-paper-3);
}
.p-store__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* On crimson bg: brand-color hover would merge — use opacity instead */
.p-final .c-button--ink:hover,
.p-hero__ctas .c-button--ink:hover {
  background: var(--color-ink);
  opacity: 0.78;
}
.p-final .c-button--ink,
.p-hero__ctas .c-button--ink {
  transition: opacity var(--dur-1) var(--ease-out),
              background var(--dur-1) var(--ease-out);
}

/* ============================================
   Object / Project / Information (Blog)
   ============================================ */
.p-info {
  background: var(--color-paper);
  padding-bottom: calc(var(--sp-9) * 0.5);
}
@media (min-width: 768px) {
  .p-info {
    padding-bottom: calc(var(--sp-10) * 0.5);
  }
}
.p-info__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-info__head {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
@media (min-width: 900px) {
  .p-info__head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--sp-6);
  }
}
.p-info__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-info__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-info__grid {
  --journal-gap: clamp(var(--sp-4), 1.4vw, var(--sp-6));
  display: flex;
  gap: var(--journal-gap);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: var(--sp-2) var(--journal-gap) calc(var(--sp-1) / 2);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-padding-left: var(--journal-gap);
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}
.p-info__grid::-webkit-scrollbar {
  display: none;
}
.p-info__grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.p-info__grid > li {
  list-style: none;
  flex: 0 0 clamp(280px, 28vw, 420px);
  padding-top: calc(var(--sp-1) / 2);
}
@media (max-width: 599px) {
  .p-info__grid > li {
    flex-basis: 84vw;
  }
}
.p-info__foot {
  margin-top: var(--sp-7);
  display: flex;
  justify-content: center;
}

/* ============================================
   Object / Project / Hero
   ============================================ */
.p-hero {
  position: relative;
  padding-top: var(--header-h);
  padding-bottom: var(--sp-9);
  overflow: hidden;
  background: var(--color-paper);
}

/* Breadcrumb kept for SEO + a11y but visually hidden */
.p-hero__breadcrumb {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Split: text panel + image slideshow, edge-to-edge */
.p-hero__split {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-hero__split {
    grid-template-columns: 1fr 1fr;
    min-height: 72.27vw;
  }
}

/* Left: text panel on patterned brand background */
.p-hero__panel {
  background: var(--color-brand);
  background-image: url('../assets/images/pattern_red.png');
  background-repeat: repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: clamp(var(--sp-8), 7vw, var(--sp-10))
           clamp(var(--sp-5), 5vw, var(--sp-9));
}
.p-hero__content {
  display: grid;
  gap: var(--sp-4);
  max-width: 620px;
}
/* PC: text straddles the seam, overlapping onto the slideshow */
@media (min-width: 768px) {
  .p-hero__panel {
    position: relative;
    z-index: 2;
    min-width: 0;
    overflow: visible;
    padding-right: 0;
  }
  .p-hero__content {
    max-width: none;
    width: min(62vw, 760px);
    flex: none;
  }
}

/* Right: fading image slideshow */
.p-hero__slider {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
}
@media (max-width: 767px) {
  .p-hero__slider {
    order: -1;
    height: 153.85vw;
    aspect-ratio: 390 / 600;
  }
}
.p-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.p-hero__slide.is-active {
  opacity: 1;
}
.p-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.p-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
  color: #fff;
  text-wrap: balance;
  white-space: break-spaces;
}
.p-hero__title em {
  font-style: italic;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
}

.p-hero__sub {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.92);
  max-width: 48ch;
}
@media (min-width: 768px) {
  .p-hero__sub {
    font-size: var(--fs-lead);
  }
}

.p-hero__pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-meta);
  color: rgba(255, 255, 255, 0.92);
}
.p-hero__pillrow li {
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
}

.p-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.p-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-hero__meta {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr 1fr;
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--color-line);
}
@media (min-width: 768px) {
  .p-hero__meta {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-hero__meta-item dt {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: var(--sp-2);
}
.p-hero__meta-item dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--fs-card-title);
  line-height: var(--lh-heading);
  color: var(--color-ink);
}

/* ============================================
   Object / Project / Problem
   ============================================ */
.p-problem {
  background: var(--color-paper-2);
}
.p-problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 900px) {
  .p-problem__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-8);
    align-items: start;
  }
}
.p-problem__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-problem__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-problem__body {
  display: grid;
  gap: var(--sp-5);
}
.p-problem__lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--color-ink-2);
}
.p-problem__list {
  display: grid;
  gap: var(--sp-3);
  border-top: 1px solid var(--color-line);
  padding-top: var(--sp-5);
}
.p-problem__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--sp-3);
  align-items: baseline;
  font-size: var(--fs-body);
  color: var(--color-ink-2);
}
.p-problem__item b {
  color: var(--color-brand);
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  font-weight: 400;
}

/* ============================================
   Object / Project / Value (USP)
   ============================================ */
.p-value {
  background: var(--color-brand);
  background-image: url('../assets/images/pattern_red.png');
  background-repeat: repeat;
  color: #fff;
}
.p-value__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-value__head {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
@media (min-width: 900px) {
  .p-value__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: var(--sp-8);
  }
}
.p-value__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
  color: #fff;
}
.p-value__title em {
  font-style: italic;
  color: #ffd9dd;
}
.p-value__lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-lead);
  max-width: 50ch;
}
.p-value__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
@media (min-width: 768px) {
  .p-value__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-value__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-value__item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .p-value__item {
    padding: var(--sp-7) var(--sp-5);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  .p-value__item:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 1024px) {
  .p-value__item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  .p-value__item:nth-child(4n) {
    border-right: none;
  }
}
.p-value__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-subtitle);
  line-height: var(--lh-solid);
  color: rgba(255, 255, 255, 0.6);
}
.p-value__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-card-title);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: #fff;
}
.p-value__copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
}

/* ============================================
   Object / Project / Visual
   ============================================ */
/* Full-screen reveal: A is fixed behind the page and uncovered as p-diff
   scrolls over it; B then rises over the fixed A. */
.p-visual {
  position: relative;
  height: 200vh; /* 100vh to uncover A + 100vh runway for B reveal */
  background: transparent; /* let the fixed A show through */
}
/* Element A: truly fixed, full-screen, behind all opaque sections */
.p-visual__layer--a {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.p-visual__layer--a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Stage pins so B can rise over the fixed A */
.p-visual__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}
.p-visual__layer--b {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(calc((1 - var(--pb, 0)) * 100%));
  will-change: transform;
}
@media (max-width: 767px) {
  /* SP: stack B's contents vertically, each item full-height (100vh) */
  .p-visual {
    height: 400vh; /* 100vh uncover A + 300vh runway for 3 full-height items */
  }
  .p-visual__layer--b {
    bottom: auto;
    height: 300vh;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr); /* 3 rows of 100vh */
    transform: translateY(calc(100vh - var(--pb, 0) * 300vh));
  }
}
.p-visual__cell {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.p-visual__cell img,
.p-visual__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Static fallback when motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .p-visual {
    height: auto;
  }
  .p-visual__layer--a {
    position: relative;
    height: 100vh;
  }
  .p-visual__stage {
    position: static;
    height: auto;
  }
  .p-visual__layer--b {
    position: relative;
    height: 100vh;
    transform: none;
  }
}

/* ============================================
   Object / Project / Products
   ============================================ */
.p-products {
  background: var(--color-paper);
}
.p-products__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-products__head {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
@media (min-width: 900px) {
  .p-products__head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--sp-6);
  }
}
.p-products__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-products__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-products__lead {
  font-size: var(--fs-body);
  color: var(--color-ink-3);
  max-width: 56ch;
}
.p-products__grid {
  display: grid;
  gap: var(--sp-5) var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .p-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-products__foot {
  margin-top: var(--sp-7);
  display: flex;
  justify-content: center;
}
/* Product card overrides */
.c-card__media {
  border-radius: var(--radius-none);
}
.c-card__price {
  font-family: var(--font-serif);
  font-size: var(--fs-lead);
  font-weight: 500;
  font-style: italic;
}

/* ============================================
   Object / Project / Steps (How to buy)
   ============================================ */
.p-steps {
  background: var(--color-paper-3);
}
.p-steps__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-steps__head {
  margin-bottom: var(--sp-7);
  display: grid;
  gap: var(--sp-4);
}
.p-steps__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-steps__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-steps__list {
  display: grid;
  gap: 30px; /* 14px arrow + 8px margin each side */
  counter-reset: step;
}
@media (min-width: 768px) {
  .p-steps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-steps__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-steps__item {
  background: #fff;
  padding: var(--sp-6);
  border-radius: var(--radius-sm);
  position: relative;
  display: grid;
  gap: var(--sp-3);
  counter-increment: step;
  border: 1px solid var(--color-line);
}
.p-steps__item::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-subtitle);
  color: var(--color-brand);
  line-height: var(--lh-solid);
}
/* Connector chevron between steps — thin 14x54 ">" via SVG mask */
.p-steps__item::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 54px;
  background-color: var(--color-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='54' viewBox='0 0 14 54' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,5 11,27 3,49'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='54' viewBox='0 0 14 54' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,5 11,27 3,49'/%3E%3C/svg%3E") center / contain no-repeat;
  /* SP (stacked): centered below the card, rotated to point down */
  top: 100%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 15px)) rotate(90deg);
}
.p-steps__item:last-child::after {
  content: none;
}
@media (min-width: 768px) {
  /* 2-col: point right, centered in the 30px gap (8px each side) */
  .p-steps__item::after {
    top: 50%;
    left: 100%;
    transform: translate(8px, -50%);
  }
  .p-steps__item:nth-child(2n)::after {
    content: none;
  }
}
@media (min-width: 1024px) {
  /* 4-col: arrow between every card */
  .p-steps__item:nth-child(2n)::after {
    content: "";
  }
  .p-steps__item:last-child::after {
    content: none;
  }
}

.p-steps__step-title {
  font-size: var(--fs-lead);
  font-weight: 500;
  color: var(--color-ink);
  line-height: var(--lh-heading);
}
.p-steps__step-copy {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--color-ink-3);
}
.p-steps__note {
  margin-top: var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--color-mute);
  text-align: center;
}

/* ============================================
   Object / Project / Store
   ============================================ */
.p-store {
  background: var(--color-paper);
  padding-top: calc(var(--sp-9) * 0.5);
}
@media (min-width: 768px) {
  .p-store {
    padding-top: calc(var(--sp-10) * 0.5);
  }
}
.p-store__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 900px) {
  .p-store__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-8);
    align-items: stretch;
  }
}
.p-store__visual {
  aspect-ratio: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
/* SP: map に aspect-ratio を復元、body を上・map を下 */
.p-store__visual.p-store__visual--map {
  aspect-ratio: 16 / 9;
  order: 2;
}
.p-store__body {
  order: 1;
}
@media (min-width: 900px) {
  .p-store__visual.p-store__visual--map {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
    order: unset;
  }
  .p-store__body {
    order: unset;
  }
}
.p-store__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-store__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-store__body {
  display: grid;
  gap: var(--sp-5);
}
.p-store__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-store__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-store__details {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 540px) {
  .p-store__details {
    grid-template-columns: 1fr 1fr;
  }
}
.p-store__detail dt {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-mute);
  margin-bottom: var(--sp-1);
}
.p-store__detail dd {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--color-ink);
  line-height: var(--lh-body);
}
.p-store__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-1);
  font-size: var(--fs-body-sm);
  color: var(--color-ink-2);
}
.p-store__hours li {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-line);
}
.p-store__hours li:last-child {
  border-bottom: 0;
}
.p-store__hours b {
  font-weight: 500;
  color: var(--color-ink);
}

/* ============================================
   Object / Project / Support
   ============================================ */
.p-support {
  background: var(--color-paper-2);
}
.p-support__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.p-support__head {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
  max-width: 720px;
}
.p-support__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-support__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-support__grid {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .p-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-support__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-support__item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: var(--sp-6);
  display: grid;
  gap: var(--sp-3);
  align-content: start;
  justify-items: center;
  text-align: center;
  transition: border-color var(--dur-1) var(--ease-out),
              transform var(--dur-1) var(--ease-out);
}
.p-support__item:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}
.p-support__icon {
  width: var(--size-icon-lg);
  height: var(--size-icon-lg);
  border-radius: var(--radius-round);
  background: var(--color-brand-tint);
  color: var(--color-brand);
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.p-support__icon svg {
  width: 28px;
  height: 28px;
}
.p-support__h {
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: var(--lh-heading);
  color: var(--color-ink);
  text-align: center;
}
.p-support__copy {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body);
  color: var(--color-ink-3);
  text-align: center;
}

/* ============================================
   Object / Project / FAQ
   ============================================ */
.p-faq {
  background: var(--color-paper);
}
.p-faq__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 900px) {
  .p-faq__inner {
    grid-template-columns: 0.8fr 1.4fr;
    gap: var(--sp-8);
    align-items: start;
  }
}
.p-faq__head {
  display: grid;
  gap: var(--sp-4);
  align-content: start;
}
@media (min-width: 900px) {
  .p-faq__head {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-5));
  }
}
.p-faq__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
}
.p-faq__title em {
  font-style: italic;
  color: var(--color-brand);
}
/* Accordion head size override for FAQ */
.p-faq .c-accordion__head {
  font-size: var(--fs-card-title);
}
/* ============================================
   Object / Project / Comparison
   ============================================ */
.p-compare {
  background: var(--color-ink);
  background-image: url('../assets/images/pattern_bk.png');
  background-repeat: repeat;
  color: #fff;
}
.p-compare__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 900px) {
  .p-compare__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-8);
  }
}
.p-compare__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
  color: #fff;
}
.p-compare__title em {
  font-style: italic;
  color: var(--color-brand);
}
.p-compare__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
}
.p-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body-sm);
}
.p-compare__table th,
.p-compare__table td {
  text-align: left;
  padding: var(--sp-4) var(--sp-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  vertical-align: top;
}
.p-compare__table thead th {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0;
}
.p-compare__table tbody th {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  width: 38%;
}
.p-compare__table tbody td {
  color: rgba(255, 255, 255, 0.7);
}
.p-compare__table .is-us {
  color: #fff;
  font-weight: 500;
}
.p-compare__table .is-us-cell {
  color: #fff;
  background: rgba(195, 13, 35, 0.18);
}

/* ============================================
   Object / Project / Final CTA
   ============================================ */
.p-final {
  position: relative;
  background: var(--color-brand);
  background-image: url('../assets/images/pattern_red.png');
  background-repeat: repeat;
  color: #fff;
  overflow: hidden;
}
.p-final__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
  display: grid;
  gap: var(--sp-5);
  place-items: center;
  position: relative;
  z-index: 1;
}
.p-final__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: var(--lh-solid);
  letter-spacing: var(--ls-tight);
  color: #fff;
  max-width: 18ch;
}
.p-final__title em {
  font-style: italic;
  color: #ffd9dd;
}
.p-final__sub {
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.86);
  max-width: 50ch;
}
.p-final__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-3);
}
.p-final__mark {
  position: absolute;
  bottom: -40%;
  right: -10%;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(280px, 56vw, 720px);
  line-height: var(--lh-solid);
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}


/* ============================================
   Object / Scroll Reveal
   ============================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Object / Utility
   ============================================ */
.u-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-mt-0 { margin-top: 0; }
.u-mt-1 { margin-top: var(--sp-1); }
.u-mt-2 { margin-top: var(--sp-2); }
.u-mt-3 { margin-top: var(--sp-3); }
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mt-6 { margin-top: var(--sp-6); }

.u-text-center { text-align: center; }
