:root {
  --p-thumb: clamp(80px, 12vw, 140px);
  --p-gap: clamp(12px, 2vw, 24px);
  --p-bg: #f5efe4;
  --p-text: #1d1d1b;
  --p-muted: #6a6a64;
  --p-line: rgba(17, 17, 15, 0.14);
  --p-gold: #c18455;
}

/* ── Main container (light background for readability on dark site) ── */
.p-main {
  background: var(--p-bg);
  color: var(--p-text);
}

/* ── Hero Section ── */
.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0a0a;
}

.p-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.02);
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-hero:hover .p-hero-bg {
  transform: scale(1.0);
}

.p-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.4) 40%,
    rgba(10,10,10,0.85) 100%
  );
}

.p-hero-content {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px));
  color: #fff;
  z-index: 2;
}

.p-hero-content .p-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.p-hero-content .p-kicker .p-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-gold, #c9a84c);
}

.p-hero-content h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  max-width: 800px;
  font-family: var(--p-display, "Bebas Neue", Impact, sans-serif);
}

.p-hero-content h1 em {
  font-style: italic;
  color: var(--p-gold, #c9a84c);
}

.p-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.p-hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-hero-meta small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.p-hero-meta strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.p-section {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(60px, 10vh, 120px) 0;
}

.p-section-header {
  margin-bottom: 48px;
}

.p-section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.9;
  margin: 0 0 12px;
  font-family: var(--p-display, "Bebas Neue", Impact, sans-serif);
  color: var(--p-text);
}

.p-section-header h2 em {
  font-style: italic;
  color: var(--p-gold, #c18455);
}

.p-section-header p {
  max-width: 640px;
  color: var(--p-muted);
  line-height: 1.7;
}

.p-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.p-intro-grid .p-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--p-text);
}

.p-intro-grid .p-lead p {
  margin: 0 0 1.2em;
  color: var(--p-muted);
}

.p-intro-grid .p-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.p-detail-item {
  padding: 20px;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  background: rgba(255,255,255,0.6);
}

.p-detail-item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-muted);
  margin-bottom: 4px;
}

.p-detail-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--p-text);
}

.p-full-image {
  width: 100%;
  height: clamp(240px, 50vw, 520px);
  object-fit: cover;
  display: block;
}

.p-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--p-gap);
}

.p-gallery img {
  width: 100%;
  height: clamp(200px, 30vw, 400px);
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--p-line);
}

.p-gallery img:first-child {
  grid-column: 1 / -1;
  height: clamp(280px, 40vw, 500px);
}

.p-gallery img:last-child {
  grid-column: 1 / -1;
  height: clamp(280px, 40vw, 500px);
}

.p-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.p-spec-item {
  padding: 24px;
  border: 1px solid var(--p-line);
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,0.7);
}

.p-spec-item .p-spec-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.p-spec-item small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-muted);
  margin-bottom: 4px;
}

.p-spec-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--p-text);
}

.p-next {
  display: block;
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.p-next img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-next:hover img {
  transform: scale(1.04);
}

.p-next-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.7) 100%);
}

.p-next-content {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px));
  text-align: center;
  z-index: 2;
}

.p-next-content small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.p-next-content h3 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  margin: 8px 0;
  font-family: var(--p-display, "Bebas Neue", Impact, sans-serif);
  line-height: 0.9;
  color: #fff;
}

.p-next-content .p-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.5rem;
  transition: transform 0.35s ease;
}

.p-next:hover .p-arrow {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .p-hero { height: 80vh; min-height: 480px; }
  .p-hero-content { bottom: 6vh; }
  .p-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .p-intro-grid .p-details { grid-template-columns: 1fr 1fr; }
  .p-gallery { grid-template-columns: 1fr; }
  .p-gallery img:first-child,
  .p-gallery img:last-child { grid-column: 1; }
}

@media (max-width: 480px) {
  .p-intro-grid .p-details { grid-template-columns: 1fr; }
  .p-hero-meta { gap: 16px 24px; }
}
