/* ============================================================
   Party Room page — reuses shared.css tokens
   ============================================================ */

.pr-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  color: #fdf6ed;
  overflow: hidden;
}
.pr-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pr-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pr-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(20,12,8,0.55) 0%,
    rgba(20,12,8,0.35) 40%,
    rgba(20,12,8,0.7) 100%);
}

.pr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 96px 32px;
  margin: 0 auto;
  width: 100%;
}

.pr-hero__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

.pr-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #fdf6ed;
  margin: 0 0 24px;
}
.pr-hero h1 .underline {
  position: relative;
  display: inline-block;
}
.pr-hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8'><path d='M2 5 Q 30 1 60 4 T 118 4' fill='none' stroke='%23d4a373' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

.pr-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: oklch(95% 0.012 80);
  max-width: 560px;
  margin: 0 0 32px;
}

.pr-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pr-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(85% 0.012 80);
}

/* INTRO */
.pr-intro {
  padding: var(--space-8) 0;
  background: var(--bg);
}

/* INCLUDED */
.pr-included {
  padding: var(--space-8) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pr-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 880px) {
  .pr-included__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pr-included__grid { grid-template-columns: 1fr; }
}

.pr-included__card {
  padding: var(--space-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.pr-included__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--fg);
}
.pr-included__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* FIT */
.pr-fit {
  padding: var(--space-8) 0;
  background: var(--bg);
}

.pr-fit__list {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pr-fit__list li {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}
.pr-fit__list li:last-child { border-bottom: none; }

.pr-fit__list h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--accent);
}
.pr-fit__list p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* PRICING */
.pr-pricing {
  padding: var(--space-8) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pr-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 880px) {
  .pr-pricing__grid { grid-template-columns: 1fr; }
}

.pr-pricing__card {
  padding: var(--space-5);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease-soft);
}
.pr-pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.pr-pricing__card--weekend {
  border-color: var(--accent);
  border-width: 2px;
}

.pr-pricing__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

.pr-pricing__amount {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: var(--fg);
  margin: 0 0 8px;
}
.pr-pricing__amount span {
  font-size: 24px;
  color: var(--muted);
  font-style: italic;
}

.pr-pricing__per {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}

.pr-pricing__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.pr-pricing__includes li {
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 0;
  color: var(--fg);
  position: relative;
  padding-left: 18px;
}
.pr-pricing__includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pr-pricing__extras {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: var(--bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}
.pr-pricing__extras h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--fg);
}
.pr-pricing__extras ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pr-pricing__extras li {
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0;
  color: var(--muted);
}
.pr-pricing__extras strong {
  color: var(--fg);
  font-weight: 600;
}

.pr-pricing__note {
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* PHOTO PENDING */
.pr-photo-pending {
  padding: var(--space-6) 0;
  background: var(--bg);
}

.pr-photo-pending__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: var(--space-5);
  background: oklch(95% 0.015 75);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}
.pr-photo-pending__note h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--fg);
}
.pr-photo-pending__note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ENQUIRE */
.pr-enquire {
  padding: var(--space-8) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pr-enquire__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  margin-top: var(--space-6);
}
@media (max-width: 800px) {
  .pr-enquire__grid { grid-template-columns: 1fr; }
}

.pr-enquire__contact h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 24px 0 8px;
}
.pr-enquire__contact h3:first-child { margin-top: 0; }
.pr-enquire__contact p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: var(--fg);
}
.pr-enquire__contact a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
}

.pr-enquire__form {
  background: var(--bg);
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: grid;
  gap: 16px;
}
.pr-enquire__form label {
  display: block;
}
.pr-enquire__form label span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pr-enquire__form input,
.pr-enquire__form textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s;
}
.pr-enquire__form input:focus,
.pr-enquire__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(85% 0.06 35);
}
.pr-enquire__note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 8px 0 0 !important;
}

/* ==========================================================================
   Editorial Design additions — sticky scroll, pull quotes, counters
   ========================================================================== */

/* ---- Sticky editorial panels ---- */
.pr-editorial {
  position: relative;
}

/* Each panel is 100vh, they stack vertically */
.pr-editorial__panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Alternate layout: photo left / right */
.pr-editorial__panel:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}
.pr-editorial__panel:nth-child(even) > .pr-editorial__photo {
  order: 2;
}
.pr-editorial__panel:nth-child(even) > .pr-editorial__copy {
  order: 1;
}

.pr-editorial__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.pr-editorial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.pr-editorial__panel.is-active .pr-editorial__photo img {
  transform: scale(1.0);
}
.pr-editorial__photo--primary img {
  object-position: center 30%;
}
.pr-editorial__photo--portrait img {
  object-position: center 25%;
}

.pr-editorial__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    oklch(15% 0.02 145 / 0.7) 0%,
    oklch(15% 0.02 145 / 0.3) 60%,
    transparent 100%
  );
  pointer-events: none;
}
.pr-editorial__panel:nth-child(even) .pr-editorial__scrim {
  background: linear-gradient(
    270deg,
    oklch(15% 0.02 145 / 0.7) 0%,
    oklch(15% 0.02 145 / 0.3) 60%,
    transparent 100%
  );
}

/* Copy side */
.pr-editorial__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--bg-dark);
  color: white;
}

.pr-editorial__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: oklch(78% 0.08 75);
  margin: 0 0 var(--space-3);
  font-weight: 600;
}

.pr-editorial__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 var(--space-4);
  font-weight: 400;
}
.pr-editorial__copy h2 em {
  font-style: italic;
  color: oklch(78% 0.08 75);
}

.pr-editorial__copy p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: oklch(90% 0.012 80);
  margin: 0 0 var(--space-3);
}

.pr-editorial__caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(55% 0.02 80);
  margin-top: var(--space-4) !important;
  padding-top: var(--space-3);
  border-top: 1px solid oklch(95% 0.012 80 / 0.1);
}

/* Panel entrance animation */
.pr-editorial__panel .pr-editorial__copy {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 700ms var(--ease-soft), transform 700ms var(--ease-soft);
}
.pr-editorial__panel.is-active .pr-editorial__copy {
  opacity: 1;
  transform: translateX(0);
}
.pr-editorial__panel:nth-child(even) .pr-editorial__copy {
  transform: translateX(-24px);
}
.pr-editorial__panel:nth-child(even).is-active .pr-editorial__copy {
  transform: translateX(0);
}

@media (max-width: 860px) {
  .pr-editorial__panel {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: unset;
  }
  .pr-editorial__panel:nth-child(even) > .pr-editorial__photo { order: 0; }
  .pr-editorial__panel:nth-child(even) > .pr-editorial__copy { order: 1; }
  .pr-editorial__scrim,
  .pr-editorial__panel:nth-child(even) .pr-editorial__scrim {
    background: linear-gradient(
      0deg,
      oklch(15% 0.02 145 / 0.8) 0%,
      oklch(15% 0.02 145 / 0.2) 50%,
      transparent 100%
    );
  }
  .pr-editorial__copy {
    transform: translateY(20px) !important;
    padding: var(--space-5) var(--space-4);
  }
  .pr-editorial__panel.is-active .pr-editorial__copy {
    transform: translateY(0) !important;
  }
}

/* ---- Intro chips ---- */
.pr-intro {
  padding: clamp(56px, 7vw, 96px) 0;
}
.pr-intro__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
}
.pr-intro__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}
.pr-intro__chip span {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 10px;
  display: grid; place-items: center;
}

/* ---- Big pull quote with drop cap ---- */
.pr-pullquote {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-dark);
  text-align: center;
}
.pr-pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.5;
  color: oklch(95% 0.012 80);
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  font-style: italic;
  position: relative;
}
/* Drop cap */
.pr-pullquote__text::first-letter {
  font-size: 4.2em;
  font-weight: 400;
  color: oklch(78% 0.08 75);
  float: left;
  line-height: 0.75;
  margin: 0.1em 0.1em 0 0;
  font-family: var(--font-display);
}
.pr-pullquote__mark {
  font-size: 2em;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.3em;
  margin: 0 6px;
}
.pr-pullquote__attr {
  margin: var(--space-5) 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(60% 0.012 80);
  font-style: normal;
}

/* ---- Number counters ---- */
.pr-numbers {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pr-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.pr-numbers__item {
  text-align: center;
  position: relative;
}
.pr-numbers__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.pr-numbers__item:last-child::after { display: none; }
.pr-numbers__val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  font-weight: 400;
}
.pr-numbers__label {
  margin: var(--space-2) 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .pr-numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .pr-numbers__item:nth-child(2)::after { display: none; }
  .pr-numbers__item:nth-child(3)::after { display: none; }
}

/* ---- Floor plan ---- */
.pr-floorplan {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg);
}
.pr-floorplan__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.pr-floorplan__copy h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: var(--space-2) 0 var(--space-3);
}
.pr-floorplan__copy h2 em {
  font-style: italic;
  color: var(--accent);
}
.pr-floorplan__copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.pr-floorplan__svg {
  background: oklch(99% 0.008 80);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: box-shadow 300ms var(--ease-soft);
}
.pr-floorplan__svg:hover {
  box-shadow: var(--shadow-2);
}
.pr-floorplan__svg svg {
  width: 100%;
  height: auto;
}
@media (max-width: 760px) {
  .pr-floorplan__inner { grid-template-columns: 1fr; }
}

/* ---- Included card hover effect ---- */
.pr-included__card {
  transition: transform 300ms var(--ease-soft), box-shadow 300ms var(--ease-soft);
}
.pr-included__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

/* ============================================================
   FEATURED SECTION — 3 animation themes
   ============================================================ */

.pr-featured {
  padding: 96px 0;
  background: var(--bg-dark);
  color: #fdf6ed;
}
.pr-featured .kicker { color: oklch(78% 0.08 75); margin-bottom: 16px; }
.pr-featured__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 64px;
  color: #fdf6ed;
  line-height: 1;
}
.pr-featured__title em { color: oklch(78% 0.08 75); font-style: italic; }
.pr-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .pr-featured__grid { grid-template-columns: 1fr; }
}

/* Shared frame */
.pr-feat__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: oklch(30% 0.02 145);
  margin-bottom: 16px;
}
.pr-feat__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pr-feat__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, oklch(20% 0.04 145 / 0.85));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pr-feat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(78% 0.08 75);
  background: oklch(25% 0.04 145);
  padding: 3px 8px;
  border-radius: 3px;
}
.pr-feat__caption {
  font-size: 11px;
  color: oklch(75% 0.01 80);
  font-style: italic;
  margin: 0;
}
.pr-feat__sub {
  font-size: 13px;
  color: oklch(70% 0.01 80);
  font-style: italic;
  margin: 0;
}

/* ── ① PARALLAX ── */
.pr-feat--parallax .pr-feat__parallax-wrap {
  width: 100%;
  height: 120%;
  position: absolute;
  inset: -10% 0;
}
.pr-feat--parallax .pr-feat__parallax-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ── ② CINEMATIC KEN BURNS ── */
@keyframes kenBurns3 {
  0%   { transform: scale(1)    translate(0%, 0%); }
  50%  { transform: scale(1.07) translate(-1%, -1.5%); }
  100% { transform: scale(1.03) translate(1.5%, 0.5%); }
}
.pr-feat--cinema img {
  animation: kenBurns3 14s ease-in-out infinite;
}
.pr-feat--cinema:hover img {
  animation-duration: 4s;
}

/* ── ③ CURTAIN REVEAL ── */
@keyframes curtainRevealRight {
  0%   { clip-path: inset(0 0 0 100%); }
  100% { clip-path: inset(0 0 0 0%); }
}
.pr-feat--curtain img {
  clip-path: inset(0 0 0 100%);
}
.pr-feat--curtain.is-visible img {
  animation: curtainRevealRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

