/* ============ TOKENS ============
   Same values as the rest of the site, duplicated here so this page stays
   self-contained and editing it can never affect other pages. */
:root {
  --red: #c23c1a;
  --blue: #1c1cb0;
  --black: #0e0e0e;
  --cream: #f2ede4;
  --white: #fbf9f5;

  --pad: clamp(1.5rem, 6vw, 5rem);

  --font-display: "Archivo Black", sans-serif;
  --font-body: "Archivo Expanded", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2 { margin: 0; font-family: var(--font-display); line-height: 0.92; }

/* ============ NAV (same as the rest of the site) ============ */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 1.4rem var(--pad) 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
}

.nav__link { color: var(--black); opacity: 0.75; transition: opacity 0.15s ease; }
.nav__link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav__link--current { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* ============ MAIN — PRICING / PHOTO ============ */
.pr-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(0.5rem, 2vw, 1.5rem) var(--pad) clamp(3rem, 6vw, 4.5rem);
}

.pr-col {
  display: flex;
  flex-direction: column;
}

.pr-title {
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.pr-list {
  border-top: 2.5px solid var(--black);
}

.pr-row {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  border-bottom: 2.5px solid var(--black);
}

.pr-row--sub {
  border-bottom-width: 1px;
}

.pr-row__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  text-transform: uppercase;
  color: var(--black);
  align-self: start;
}

.pr-row__content {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--black);
  text-transform: uppercase;
}

.pr-accent { color: var(--red); }

.pr-cta {
  display: inline-block;
  align-self: start;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--red);
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: clamp(3px, 0.4vw, 6px);
  text-underline-offset: clamp(6px, 1vw, 10px);
}

.pr-cta:hover { opacity: 0.85; }

.pr-photo {
  width: 100%;
  height: 100%;
  min-height: clamp(22rem, 46vw, 34rem);
  overflow: hidden;
}

.pr-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .pr-main { grid-template-columns: 1fr; }
  .pr-photo { order: 2; min-height: 20rem; margin-top: clamp(2rem, 6vw, 3rem); }
  .pr-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .pr-row__label { margin: 0; }
  .pr-cta { font-size: clamp(2.4rem, 12vw, 3.4rem); align-self: center; }
}
