.pt-page {
  --pt-page-ink: #211d1b;
  --pt-page-red: #af2d2c;
  --pt-page-red-dark: #842120;
  --pt-page-muted: #6d635e;
  --pt-page-warm: #fbf8f4;
  --pt-page-cream: #f4ece5;
  color: var(--pt-page-ink);
  background: #fff;
}

.pt-page-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.pt-page-section {
  position: relative;
  padding: clamp(76px, 8vw, 116px) 0;
}

.pt-page-section--warm { background: var(--pt-page-warm); }
.pt-page-section--cream { background: var(--pt-page-cream); }
.pt-page-section--dark { color: #fff; background: #24201e; }

.pt-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--pt-page-red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pt-page-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.pt-page-eyebrow--light { color: #fff; }

.pt-page-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.pt-page-heading--center {
  margin-inline: auto;
  text-align: center;
}

.pt-page-heading--center .pt-page-eyebrow { justify-content: center; }

.pt-page-heading h2,
.pt-page-copy h2,
.pt-page-final h2 {
  margin: 0 0 18px;
  color: var(--pt-page-ink);
  font-size: clamp(2rem, 4.25vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.pt-page-heading p,
.pt-page-copy > p,
.pt-page-final p {
  max-width: 680px;
  margin: 0;
  color: var(--pt-page-muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.75;
}

.pt-page-section--dark .pt-page-heading h2,
.pt-page-section--dark .pt-page-copy h2 { color: #fff; }
.pt-page-section--dark .pt-page-heading p,
.pt-page-section--dark .pt-page-copy > p { color: rgba(255,255,255,.68); }
.pt-page-section--dark .pt-page-eyebrow { color: #e3a89e; }

.pt-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pt-page-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pt-page-button:hover,
.pt-page-button:focus-visible { transform: translateY(-2px); }

.pt-page-button--primary {
  color: #fff;
  background: var(--pt-page-red);
  box-shadow: 0 14px 30px rgba(112, 28, 27, .2);
}

.pt-page-button--primary:hover,
.pt-page-button--primary:focus-visible { color: #fff; background: var(--pt-page-red-dark); }

.pt-page-button--outline {
  color: var(--pt-page-ink);
  background: rgba(255,255,255,.72);
  border-color: #d9cec7;
}

.pt-page-button--outline:hover,
.pt-page-button--outline:focus-visible { color: var(--pt-page-red); background: #fff; }

.pt-page-button--light {
  color: var(--pt-page-red-dark);
  background: #fff;
  box-shadow: 0 14px 34px rgba(64,12,12,.18);
}

.pt-page-button--light:hover,
.pt-page-button--light:focus-visible { color: var(--pt-page-red-dark); background: #fff8f5; }

.pt-page-button--ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.48);
}

.pt-page-button--ghost-light:hover,
.pt-page-button--ghost-light:focus-visible { color: #fff; background: rgba(255,255,255,.1); }

.pt-page-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pt-page-red);
  font-size: .91rem;
  font-weight: 700;
}

.pt-page-text-link span { transition: transform 180ms ease; }
.pt-page-text-link:hover span { transform: translateX(4px); }

/* Default supporting-page hero */
.pt-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(175,45,44,.08), transparent 27%),
    linear-gradient(130deg, #fff 0%, #fbf6f1 100%);
}

.pt-page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  bottom: -230px;
  border: 1px solid rgba(175,45,44,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(175,45,44,.025), 0 0 0 140px rgba(175,45,44,.018);
}

.pt-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
}

.pt-page-hero__copy h1 {
  max-width: 710px;
  margin: 0 0 22px;
  color: var(--pt-page-ink);
  font-size: clamp(2.8rem, 5.55vw, 5.05rem);
  font-weight: 700;
  letter-spacing: -.058em;
  line-height: .99;
  text-wrap: balance;
}

.pt-page-hero__copy > p {
  max-width: 650px;
  margin: 0 0 28px;
  color: var(--pt-page-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.pt-page-hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #635954;
  font-size: .8rem;
  font-weight: 600;
}

.pt-page-hero__note span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--pt-page-red);
  background: #f8e9e6;
  border-radius: 50%;
}

.pt-page-hero__visual,
.pt-page-photo {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  background: #eadfd7;
  border-radius: 90px 24px 24px 24px;
  box-shadow: 0 30px 70px rgba(68,47,39,.16);
}

.pt-page-hero__visual::after,
.pt-page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,22,19,.56), transparent 43%);
  pointer-events: none;
}

.pt-page-hero__visual img,
.pt-page-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-page-hero__caption,
.pt-page-photo__caption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(42,31,27,.7);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 17px;
  backdrop-filter: blur(12px);
}

.pt-page-hero__caption strong,
.pt-page-photo__caption strong { font-size: 1rem; }
.pt-page-hero__caption span,
.pt-page-photo__caption span { font-size: .76rem; opacity: .8; }

/* Shared grids and story patterns */
.pt-page-split {
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(0,.96fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.pt-page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.pt-page-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(77,55,47,.09);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(67,48,42,.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pt-page-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(67,48,42,.11); }

.pt-page-card__number,
.pt-page-card__label {
  display: block;
  margin-bottom: 22px;
  color: var(--pt-page-red);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pt-page-card h3 { margin: 0 0 11px; font-size: 1.25rem; letter-spacing: -.03em; }
.pt-page-card p { margin: 0; color: var(--pt-page-muted); font-size: .87rem; line-height: 1.72; }

.pt-page-list {
  display: grid;
  gap: 0;
  margin: 30px 0 28px;
  padding: 0;
  list-style: none;
}

.pt-page-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #ebe4de;
}

.pt-page-list li > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--pt-page-red);
  font-size: .68rem;
  font-weight: 800;
  background: #faeeee;
  border-radius: 50%;
}

.pt-page-list strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.pt-page-list p { margin: 0; color: #716762; font-size: .87rem; line-height: 1.65; }

.pt-page-stat-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}

.pt-page-stat {
  padding: 30px;
  background: rgba(255,255,255,.055);
}

.pt-page-stat strong { display: block; margin-bottom: 8px; color: #fff; font-size: 1.15rem; }
.pt-page-stat p { margin: 0; color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.65; }

/* Shared final CTA */
.pt-page-final {
  position: relative;
  overflow: hidden;
  padding: clamp(90px,10vw,140px) 0;
  color: #fff;
  background: linear-gradient(135deg,#8d2423,#b83836);
}

.pt-page-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%,rgba(255,255,255,.12),transparent 26%);
}

.pt-page-final__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -250px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.03),0 0 0 140px rgba(255,255,255,.025);
}

.pt-page-final__content { position: relative; z-index: 1; max-width: 790px; text-align: center; }
.pt-page-final .pt-page-eyebrow { justify-content: center; }
.pt-page-final h2 { color: #fff; }
.pt-page-final p { max-width: 640px; margin: 0 auto 28px; color: rgba(255,255,255,.82); }
.pt-page-final .pt-page-actions { justify-content: center; }

.pt-mobile-bar { display: none; }

/* Progressive enhancement */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.2,.7,.2,1), transform 650ms cubic-bezier(.2,.7,.2,1);
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .pt-page-shell { width: min(100% - 36px,720px); }
  .pt-page-hero__grid,
  .pt-page-split { grid-template-columns: 1fr; }
  .pt-page-hero__visual { min-height: min(650px,80vw); order: -1; }
  .pt-page-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .pt-page { padding-bottom: 68px; }
  .pt-page-shell { width: min(100% - 28px,560px); }
  .pt-page-section { padding: 68px 0; }
  .pt-page-heading { margin-bottom: 32px; }
  .pt-page-hero { padding: 26px 0 68px; }
  .pt-page-hero__visual { min-height: 405px; border-radius: 78px 20px 20px 20px; }
  .pt-page-hero__copy h1 { font-size: clamp(2.65rem,12.7vw,4rem); }
  .pt-page-actions { display: grid; grid-template-columns: 1fr; }
  .pt-page-button { width: 100%; min-height: 54px; }
  .pt-page-card-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 14px;
    margin-right: -14px;
    padding: 2px 14px 12px 1px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .pt-page-card-grid::-webkit-scrollbar { display: none; }
  .pt-page-card { scroll-snap-align: start; }
  .pt-page-stat-grid { grid-template-columns: 1fr; }
  .pt-page-list li { grid-template-columns: 38px 1fr; }
  .pt-page-final { padding: 82px 0; }
  .pt-page-final .pt-page-actions { width: 100%; }

  .pt-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9000;
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 8px;
    padding: 8px max(10px,env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left));
    background: rgba(255,255,255,.96);
    border-top: 1px solid #e6ddd7;
    box-shadow: 0 -12px 28px rgba(46,33,28,.1);
    backdrop-filter: blur(15px);
  }

  .pt-mobile-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 800;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
  }

  .pt-mobile-bar a:last-child { color: #fff; background: var(--color-primary); }
}

@media (max-width: 390px) {
  .pt-page-hero__copy h1 { font-size: 2.5rem; }
  .pt-page-hero__visual { min-height: 370px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .pt-page-button,
  .pt-page-card,
  .pt-page-text-link span { transition: none; }
}
