/* Photo Frames Hub + Border Frames — gallery / atelier system */
:root {
  --pf-ink: #0f0f0f;
  --pf-charcoal: #1a1a1a;
  --pf-charcoal-soft: #252525;
  --pf-gold: #c5a059;
  --pf-gold-light: #e8c878;
  --pf-text: #1a1a1a;
  --pf-text-muted: #555;
  --pf-bg: #f7f6f4;
  --pf-bg-alt: #ffffff;
  --pf-border: #e8e4dc;
  --pf-radius: 6px;
  --pf-radius-lg: 10px;
  --pf-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  --pf-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pf-container: 1120px;
  --pf-gap: clamp(1.25rem, 3vw, 2.25rem);
  /* legacy aliases so older class hooks still resolve */
  --pf-blue: var(--pf-gold);
  --pf-blue-dark: var(--pf-charcoal);
  --pf-blue-light: rgba(197, 160, 89, 0.12);
}

.pf-hub {
  font-family: var(--pf-font);
  color: var(--pf-text);
  background: var(--pf-bg);
  line-height: 1.65;
  overflow-x: clip;
}

.pf-hub *,
.pf-hub *::before,
.pf-hub *::after {
  box-sizing: border-box;
}

.pf-hub img,
.pf-hub svg {
  max-width: 100%;
}

.pf-hub__container {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  min-width: 0;
}

.pf-hub__section {
  padding: clamp(2.75rem, 7vw, 4rem) 0;
}

.pf-hub__section--alt {
  background: var(--pf-bg-alt);
}

.pf-hub__section--dark {
  background: var(--pf-charcoal);
  color: #fff;
}

.pf-hub__section--dark .pf-hub__section-head h2,
.pf-hub__section--dark .pf-hub__section-head p {
  color: #fff;
}

.pf-hub__section--dark .pf-hub__section-head p {
  opacity: 0.78;
}

.pf-hub__section-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 0.25rem;
}

.pf-hub__section-head h2 {
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  color: var(--pf-text);
  overflow-wrap: anywhere;
}

.pf-hub__section-head p {
  margin: 0;
  color: var(--pf-text-muted);
  overflow-wrap: anywhere;
}

/* Reveal motion */
@keyframes pf-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pf-hub__reveal {
  animation: pf-fade-up 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .pf-hub__reveal,
  .pf-hub__hero-content {
    animation: none !important;
  }
}

/* ——— Full-bleed hero ——— */
.pf-hub__hero {
  position: relative;
  color: #fff;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.pf-hub__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pf-hub__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-hub__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.35) 0%, rgba(15, 15, 15, 0.72) 55%, rgba(15, 15, 15, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.55) 0%, transparent 55%);
}

.pf-hub__hero--fallback .pf-hub__hero-media {
  background: linear-gradient(135deg, var(--pf-ink) 0%, var(--pf-charcoal) 50%, var(--pf-charcoal-soft) 100%);
}

.pf-hub__hero--fallback .pf-hub__hero-media img {
  display: none;
}

.pf-hub__hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(3.5rem, 10vw, 5.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.pf-hub__hero-content {
  max-width: 36rem;
  min-width: 0;
  animation: pf-fade-up 0.85s ease both;
}

.pf-hub__brand {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pf-gold-light);
  margin: 0 0 0.85rem;
}

.pf-hub__hero h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  overflow-wrap: anywhere;
}

.pf-hub__hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  opacity: 0.9;
  margin: 0 0 1.35rem;
  max-width: 32rem;
  overflow-wrap: anywhere;
}

.pf-hub__hero-trust {
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.pf-hub__hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pf-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--pf-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pf-hub__btn--primary {
  background: linear-gradient(135deg, var(--pf-gold), var(--pf-gold-light));
  color: #111 !important;
}

.pf-hub__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.35);
}

.pf-hub__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: transparent;
}

.pf-hub__btn--ghost:hover {
  border-color: var(--pf-gold-light);
  color: var(--pf-gold-light) !important;
}

.pf-hub__section .pf-hub__btn--ghost {
  border-color: #cfc9bd;
  color: var(--pf-text) !important;
}

.pf-hub__section .pf-hub__btn--ghost:hover {
  border-color: var(--pf-gold);
  color: var(--pf-charcoal) !important;
}

.pf-hub__section--dark .pf-hub__btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

/* Trust strip — single quiet band under hero */
.pf-hub__trust {
  background: var(--pf-ink);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 0.85rem 0;
}

.pf-hub__trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.pf-hub__trust-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pf-hub__trust-list li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--pf-gold);
  flex-shrink: 0;
}

/* Frame Finder */
.pf-hub__finder {
  background: var(--pf-bg-alt);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.pf-hub__finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.pf-hub__finder-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
  background: var(--pf-bg);
  border: 1px solid var(--pf-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pf-hub__finder-option:has(input:checked) {
  border-color: var(--pf-gold);
  background: rgba(197, 160, 89, 0.1);
}

.pf-hub__finder-option input {
  accent-color: var(--pf-gold);
}

.pf-hub__finder-option:focus-within {
  border-color: var(--pf-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.22);
}

.pf-hub__finder-result {
  background: var(--pf-bg);
  border-radius: var(--pf-radius);
  padding: 1.15rem;
  border: 1px solid var(--pf-border);
  min-width: 0;
  overflow-wrap: anywhere;
}

.pf-hub__finder-result[hidden] {
  display: none;
}

.pf-hub__finder-result a:not(.pf-hub__btn) {
  color: var(--pf-charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--pf-gold);
  text-underline-offset: 2px;
}

/* Editorial tiles (type / room / style) */
.pf-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 520px) {
  .pf-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pf-hub__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-hub__grid--tiles {
  gap: 1.35rem;
}

.pf-hub__card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  text-decoration: none;
  color: var(--pf-text);
  min-width: 0;
  transition: transform 0.25s ease;
}

.pf-hub__card:hover {
  transform: translateY(-3px);
}

.pf-hub__card--featured .pf-hub__card-media {
  box-shadow: 0 0 0 1px var(--pf-gold), var(--pf-shadow);
}

.pf-hub__card-media {
  position: relative;
  border-radius: var(--pf-radius-lg);
  overflow: hidden;
  background: var(--pf-charcoal);
  aspect-ratio: 4 / 3;
}

.pf-hub__card-media img,
.pf-hub__card > a > img,
.pf-hub__card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--pf-radius-lg);
}

.pf-hub__card-body {
  padding: 0.95rem 0.15rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.pf-hub__card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.pf-hub__card h3 a {
  color: inherit;
  text-decoration: none;
}

.pf-hub__card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pf-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.pf-hub__card-body > .pf-hub__btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.pf-hub__card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.25rem;
  -webkit-line-clamp: unset;
  display: flex;
}

.pf-hub__card-links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--pf-charcoal);
  border-bottom: 1px solid var(--pf-gold);
  font-size: 0.88rem;
}

.pf-hub__card-links a:hover {
  color: var(--pf-gold);
}

.pf-hub__section--dark .pf-hub__card h3 {
  color: #fff;
}

.pf-hub__section--dark .pf-hub__card p {
  color: rgba(255, 255, 255, 0.72);
}

.pf-hub__section--dark .pf-hub__card-links a {
  color: var(--pf-gold-light);
  border-bottom-color: var(--pf-gold);
}

/* Compare rows (replaces wide tables) */
.pf-hub__compare-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.pf-hub__compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
  background: var(--pf-bg-alt);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-lg);
  min-width: 0;
}

@media (min-width: 720px) {
  .pf-hub__compare-row {
    grid-template-columns: minmax(7rem, 9.5rem) 1fr;
    align-items: start;
  }
}

.pf-hub__compare-row__label {
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--pf-charcoal);
  overflow-wrap: anywhere;
}

.pf-hub__compare-row__cells {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
  min-width: 0;
}

@media (min-width: 520px) {
  .pf-hub__compare-row__cells {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .pf-hub__compare-row__cells {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pf-hub__compare-cell {
  font-size: 0.88rem;
  color: var(--pf-text-muted);
  min-width: 0;
  overflow-wrap: anywhere;
}

.pf-hub__compare-cell strong {
  display: block;
  color: var(--pf-text);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
  font-weight: 650;
}

.pf-hub__compare-cell a {
  color: var(--pf-charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--pf-gold);
}

/* Material strip */
.pf-hub__material-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .pf-hub__material-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pf-hub__material-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pf-hub__material-item {
  padding: 1.15rem 1.2rem;
  background: var(--pf-bg-alt);
  border-top: 2px solid var(--pf-gold);
  min-width: 0;
}

.pf-hub__material-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.pf-hub__material-item p {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  color: var(--pf-text-muted);
  overflow-wrap: anywhere;
}

.pf-hub__material-item a {
  font-weight: 600;
  color: var(--pf-charcoal);
  font-size: 0.86rem;
  text-decoration: none;
  border-bottom: 1px solid var(--pf-gold);
}

/* Legacy table — softened, no forced nowrap */
.pf-hub__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.pf-hub__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pf-bg-alt);
  border-radius: var(--pf-radius);
  overflow: hidden;
}

.pf-hub__table th,
.pf-hub__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--pf-border);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  vertical-align: top;
}

.pf-hub__table th {
  background: var(--pf-charcoal);
  color: #fff;
  font-weight: 600;
  white-space: normal;
}

.pf-hub__table tr:last-child td {
  border-bottom: none;
}

/* Steps / journey */
.pf-hub__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}

.pf-hub__steps li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--pf-border);
  min-width: 0;
}

.pf-hub__steps li:last-child {
  border-bottom: none;
}

.pf-hub__step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--pf-gold);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.pf-hub__steps h3,
.pf-hub__steps strong {
  overflow-wrap: anywhere;
}

.pf-hub__steps p {
  margin: 0.25rem 0 0;
  color: var(--pf-text-muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.pf-hub__stepper-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  max-width: 100%;
}

.pf-hub__step-card {
  background: var(--pf-bg-alt);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 1rem;
  min-width: 0;
}

.pf-hub__step-card h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.pf-hub__step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pf-text-muted);
  overflow-wrap: anywhere;
}

.pf-hub__chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pf-hub__journey {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .pf-hub__journey {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.pf-hub__journey-pack h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.pf-hub__journey-pack ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--pf-text-muted);
  font-size: 0.92rem;
}

.pf-hub__journey-pack li {
  margin-bottom: 0.45rem;
  overflow-wrap: anywhere;
}

/* SEO editorial */
.pf-hub__seo-list {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pf-hub__seo-item {
  background: transparent;
  border: none;
  border-top: 1px solid var(--pf-border);
  border-radius: 0;
  padding: 1.25rem 0 0;
}

.pf-hub__seo-item:first-child {
  border-top: none;
  padding-top: 0;
}

.pf-hub__seo-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.pf-hub__seo-item p {
  margin: 0;
  color: var(--pf-text-muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

/* Before / after */
.pf-hub__before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pf-hub__before-after {
    grid-template-columns: 1fr 1fr;
  }
}

.pf-hub__before-after-item {
  position: relative;
  border-radius: var(--pf-radius-lg);
  overflow: hidden;
  background: var(--pf-charcoal);
  min-width: 0;
}

.pf-hub__before-after-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pf-hub__before-after-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.pf-hub__cta-row {
  margin-top: 1.35rem;
  text-align: center;
}

/* FAQ */
.pf-hub__faq {
  max-width: 800px;
  margin: 0 auto;
}

.pf-hub__faq-item {
  border-bottom: 1px solid var(--pf-border);
  margin-bottom: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.pf-hub__faq-item summary {
  padding: 1.05rem 0;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  position: relative;
  padding-right: 1.75rem;
}

.pf-hub__faq-item summary::-webkit-details-marker {
  display: none;
}

.pf-hub__faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--pf-gold);
  font-weight: 400;
  font-size: 1.15rem;
}

.pf-hub__faq-item[open] summary::after {
  content: "–";
}

.pf-hub__faq-item p {
  padding: 0 0 1.1rem;
  margin: 0;
  color: var(--pf-text-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* Border colour/mat preview */
.pf-border-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pf-gap);
  align-items: start;
}

@media (min-width: 768px) {
  .pf-border-preview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.pf-border-preview__controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.pf-border-preview__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pf-border-preview__swatch {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--pf-border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}

.pf-border-preview__swatch[aria-checked="true"],
.pf-border-preview__swatch.is-active {
  border-color: var(--pf-gold);
  transform: scale(1.08);
}

.pf-border-preview__frame {
  position: relative;
  background: #ebe8e2;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: var(--pf-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  min-width: 0;
}

.pf-border-preview__frame-inner {
  position: relative;
  max-width: 100%;
  min-width: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: var(--pf-frame-color, #111111);
  padding: var(--pf-frame-border, 12px);
  transition: padding 0.25s, background-color 0.25s;
}

.pf-border-preview__frame-inner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pf-border-preview__mat {
  display: block;
  background: #fff;
  padding: var(--pf-mat-inset, 8%);
  transition: padding 0.25s, background-color 0.25s;
  min-width: 0;
}

/* Badges */
.pf-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(197, 160, 89, 0.14);
  color: #8a6a2f;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pf-badge--accent {
  background: var(--pf-gold);
  color: #111;
}

.pf-badge + .pf-badge {
  margin-left: 0.35rem;
}

/* Spotlight / hang band */
.pf-hub__hang-band {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .pf-hub__hang-band {
    grid-template-columns: 1fr 1fr;
  }
}

.pf-hub__hang-band h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.pf-hub__hang-band ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--pf-text-muted);
  font-size: 0.92rem;
}

.pf-hub__hang-band li {
  margin-bottom: 0.4rem;
  overflow-wrap: anywhere;
}

/* Sticky mobile CTA (border landing) */
.pf-border-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  z-index: 999991;
  background: rgba(15, 15, 15, 0.96);
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  padding: 0.7rem 1rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.pf-border-mobile-cta .pf-hub__btn {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .pf-hub--border {
    padding-bottom: calc(72px + 60px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 992px) {
  .pf-border-mobile-cta {
    display: none;
  }
}

/* Internal links */
.pf-hub__link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: center;
}

.pf-hub__link-cloud a {
  color: var(--pf-charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--pf-gold);
  overflow-wrap: anywhere;
}

.pf-hub__link-cloud a:hover {
  color: var(--pf-gold);
}
