@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
  --bg: #0f0b0d;
  --panel: #171214;
  --panel-2: #1f181b;
  --text: #f5eef1;
  --muted: #cdbcbf;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #9f1d35;
  --accent-hover: #b82441;
  --gold: #c7a86b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #120d10 0%, #0d090b 100%);
  color: var(--text);
  font-family: 'Montserrat', Georgia, serif;
  line-height: 1.7;
/*
    overflow-x: hidden;
*/
}
img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--gold); }
.container { width: min(100% - 2rem, var(--max-width)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 9, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 320px;
  display: block;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
}
.site-nav a.active,
.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--gold);
}

.page-hero {
  padding: 5rem 0 0.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 760px; }
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.15rem; color: var(--text); max-width: 60ch; }
.subtle-note, .form-helper, .privacy-note, .submission-note {
  color: var(--muted);
  font-size: 0.98rem;
}

.intro-section { padding: 3rem 0 5rem; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.styled-list { margin: 0; padding-left: 1.2rem; }
.styled-list li + li { margin-top: 0.6rem; }
.info-block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.intro-form { margin-top: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.96rem;
  color: var(--text);
}
input, select, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition), background var(--transition);
}

select option {
  background: #1f181b;
  color: #f5eef1;
}

input::placeholder, textarea::placeholder { color: #aa9aa1; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
textarea { resize: vertical; min-height: 140px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.15);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
font-size: 0.82rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.center-actions .btn-primary {
  max-width: 320px;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-inner {
    flex-direction: column;
    justify-content: center;
  align-items: center;
    padding: 1rem 0;
  }
  .site-nav { justify-content: center; }
}

@media (max-width: 560px) {
  .card { padding: 1.25rem; }
.card { border-radius: 12px; }
  .page-hero { padding: 3.5rem 0 2rem; }
  h1 { font-size: 2.2rem; }
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 2.5rem;
  align-items: center;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 44vh;
  min-height: 300px;
  max-height: 480px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.9) contrast(1.04);
}

.hero-photo::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to left, #0f0b0d, transparent);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  white-space: normal;
  word-break: normal;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}

.hero-title em {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 0.7em;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 0.1em;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 0.45rem;
}

.hero-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(201,185,192,0.5);
  letter-spacing: 0.05em;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 260px;
 align-items: flex-start;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(199,168,107,0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-hero-ghost:hover {
  border-color: var(--gold);
  background: rgba(199,168,107,0.08);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Homepage Teaser Pillars ── */

.teaser {
  border-top: 1px solid var(--border);
  padding: 3rem 0 4.5rem;
}

.teaser-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.teaser-item {
  padding: 1.25rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.teaser-item:last-child { border-right: none; }
.teaser-item:hover { background: rgba(255,255,255,0.02); }

.teaser-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
  opacity: 0.7;
}

.teaser-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.teaser-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 26ch;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-photo {
    height: 48vw;
    min-height: 220px;
    max-height: 380px;
    border-radius: 12px;
  }

.hero-photo img {
    object-position: center 40%;
}

  .hero-photo::after { display: none; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-rule { margin: 1rem auto; }
  .hero-actions { max-width: 100%; align-items: center; }
  .teaser-inner { grid-template-columns: 1fr; }
  .teaser-item { border-right: none; border-bottom: 1px solid var(--border); }
  .teaser-item { width: 100%; }
.teaser-item { padding: 1.5rem 1.75rem; }
  .teaser-item:last-child { border-bottom: none; }
.teaser { padding: 2rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-hero-primary,
  .btn-hero-ghost { width: 100%; max-width: 250px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.about-bio p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.8;
}

.about-bio p:last-child { margin-bottom: 0; }

.about-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem !important;
  font-weight: 400;
  color: var(--text) !important;
  line-height: 1.75 !important;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  line-height: 1.65;
}

.about-highlights {
  margin-bottom: 1.5rem;
}

.about-highlights h3,
.about-cta h3 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .about-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CITIES PAGE
   ============================================================ */

/* Home base banner */
.cities-home {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
  border-left: 3px solid var(--gold);
}

.cities-home h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--text);
  margin: 0.25rem 0 0;
}

.cities-home p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Section label */
.cities-section-label {
  margin-bottom: 1.75rem;
}

.cities-section-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--text);
  margin: 0.25rem 0 0;
}

/* City cards grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.city-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.city-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 168, 107, 0.35);
}

.city-icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.city-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

.city-state {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.city-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA block */
.cities-cta {
  text-align: center;
  padding: 2.5rem;
}

.cities-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cities-cta p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.75;
}

.cities-cta .center-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .cities-home {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHAT WE'RE LOOKING FOR PAGE
   ============================================================ */

.wlf-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.wlf-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* Individual trait rows */
.wlf-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wlf-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.wlf-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wlf-item-icon {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.7;
  padding-top: 0.2rem;
}

.wlf-item-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.wlf-item-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* Sidebar cards */
.wlf-requirements,
.wlf-dealbreakers {
  margin-bottom: 1.5rem;
}

.wlf-requirements h3,
.wlf-dealbreakers h3,
.wlf-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

.wlf-cta p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .wlf-grid {
    grid-template-columns: 1fr;
  }
  .wlf-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .wlf-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .wlf-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

.blog-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Two-column layout: feed + sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* ── Feed ── */
.blog-feed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-post {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Meta row: category + location */
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-date {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

.blog-date::before {
  content: '·';
  margin-right: 1rem;
  opacity: 0.4;
}

/* Post title */
.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  text-transform: none;
  letter-spacing: 0;
}

/* Post body */
.blog-post-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.85;
  margin: 0 0 1.1rem;
}

.blog-post-body p:last-child { margin-bottom: 0; }

/* Cliffhanger line */
.blog-cliffhanger {
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem !important;
  margin-top: 1.25rem !important;
}

/* Hashtags */
.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.tag {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.tag:hover { opacity: 1; }

/* ── Sidebar ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-about p,
.blog-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}

.blog-about p:last-child,
.blog-cta p:last-child { margin-bottom: 0; }

.blog-about h3,
.blog-topics h3,
.blog-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 0.85rem;
  text-transform: none;
}

.blog-topic-list li {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .blog-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRIVATE INTRODUCTION PAGE
   ============================================================ */

/* Section divider labels inside the form */
.pi-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: 1.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pi-section-label:first-of-type {
  margin-top: 0.5rem;
}

/* Numbered steps in What Happens Next */
.pi-steps {
  list-style: decimal;
  padding-left: 1.4rem;
}

.pi-steps li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.pi-steps li + li {
  margin-top: 0.75rem;
}

/* Optional label on photo field */
.pi-optional {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  opacity: 0.7;
  margin-left: 0.4rem;
}

/* ── Private Intro: sticky left column ── */
.pi-sticky {
  position: sticky;
  top: 96px; /* clears the 76px nav + comfortable gap */
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}
.pi-sticky::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* ── Private Intro: photo ── */
.pi-photo {
  margin: 1.75rem -2rem; /* bleed to card edges */
  overflow: hidden;
  position: relative;
}

.pi-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.88) contrast(1.04);
}

/* Fade top and bottom into card bg */
.pi-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--panel), transparent);
  pointer-events: none;
  z-index: 1;
}

.pi-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--panel-2), transparent);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 900px) {
  .pi-sticky {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .pi-photo {
    margin: 1.75rem -1.25rem;
  }
  .pi-photo img {
    height: 220px;
  }
}

/* ============================================================
   MEMBERS CLUB PAGE
   ============================================================ */

/* Status banner */
.mc-status-banner {
  background: rgba(199, 168, 107, 0.07);
  border-bottom: 1px solid rgba(199, 168, 107, 0.2);
  border-top: 1px solid rgba(199, 168, 107, 0.2);
  padding: 0.85rem 0;
}

.mc-status-banner .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: mc-pulse 2s ease-in-out infinite;
}

@keyframes mc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.mc-status-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.mc-status-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Tiers header */
.mc-tiers-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mc-tiers-subhead {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 48ch;
  margin: 0 auto;
}

/* Tier cards */
.mc-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: start;
}

.mc-tier {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* VIP tier elevated styling */
.mc-tier-vip {
  border-color: rgba(199, 168, 107, 0.4);
  background: linear-gradient(160deg, #1c1318 0%, #201419 100%);
}

.mc-tier-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: #0f0b0d;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 8px 8px;
}

.mc-tier-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mc-tier-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  opacity: 0.7;
}

.mc-tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1;
}

.mc-tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.mc-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.mc-price-period {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

.mc-tier-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Feature list */
.mc-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.mc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.mc-feature-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* Dimmed features (not included) */
.mc-feature-dim {
  opacity: 0.3;
}

.mc-feature-dim .mc-feature-icon {
  opacity: 0.3;
}

/* Tier CTAs */
.mc-tier-cta {
  margin-top: auto;
}

.btn-mc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

.btn-mc-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #fff;
}

.btn-mc-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(199, 168, 107, 0.35);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-mc-ghost:hover {
  border-color: var(--gold);
  background: rgba(199, 168, 107, 0.07);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Content preview section */
.mc-preview-section {
  padding: 0 0 5rem;
}

.mc-preview-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mc-preview-item {
  text-align: center;
}

.mc-preview-icon {
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.7;
  margin: 0 0 0.85rem;
}

.mc-preview-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.mc-preview-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Bottom CTA */
.mc-bottom-cta {
  padding: 0 0 5rem;
}

.mc-cta-card {
  text-align: center;
  padding: 3rem 2rem;
  border-color: rgba(199, 168, 107, 0.2);
}

.mc-cta-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}

.mc-cta-card p {
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.mc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.mc-cta-actions .btn-mc-primary,
.mc-cta-actions .btn-mc-ghost {
  width: auto;
  min-width: 220px;
}

/* Responsive */
@media (max-width: 820px) {
  .mc-tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .mc-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .mc-preview-grid {
    grid-template-columns: 1fr;
  }
  .mc-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .mc-cta-actions .btn-mc-primary,
  .mc-cta-actions .btn-mc-ghost {
    width: 100%;
    max-width: 280px;
  }
}

/* ============================================================
   MEMBERS CLUB WAITLIST PAGE
   ============================================================ */

.mc-wl-intro {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 0.5rem;
}

/* Tier recap labels */
.mc-wl-tier-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.mc-wl-tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
}

.mc-wl-vip-name {
  color: var(--gold);
}

.mc-wl-tier-price {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* VIP block subtle highlight */
.mc-wl-vip-block {
  border-color: rgba(199, 168, 107, 0.25);
  background: rgba(199, 168, 107, 0.03);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1.75rem;
}

.mc-wl-list li {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ============================================================
   THANK YOU PAGES (shared)
   ============================================================ */

.ty-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* Numbered steps */
.ty-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ty-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.ty-step:last-child {
  border-bottom: none;
}

.ty-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(199, 168, 107, 0.4);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ty-step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.ty-step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.ty-main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* Sidebar */
.ty-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ty-sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ty-sidebar-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.ty-links {
  margin-top: 0.75rem;
}

.ty-links li {
  font-size: 0.9rem;
}

.ty-links a {
  color: var(--muted);
  transition: color var(--transition);
}

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

@media (max-width: 900px) {
  .ty-grid {
    grid-template-columns: 1fr;
  }
  .ty-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .ty-sidebar {
    grid-template-columns: 1fr;
  }
  .ty-step {
    grid-template-columns: 36px 1fr;
    gap: 1rem;
  }
}

/* ── Thank you page: photo callout ── */
.ty-photo-callout {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(199, 168, 107, 0.35);
  background: rgba(199, 168, 107, 0.04);
}

.ty-photo-callout-icon {
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 0.1rem;
}

.ty-photo-callout-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.ty-photo-callout-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 0.5rem;
}

.ty-photo-callout-body p:last-child { margin-bottom: 0; }

.ty-photo-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem !important;
  font-weight: 400;
  color: var(--text) !important;
  letter-spacing: 0.02em;
  margin: 0.25rem 0 0.5rem !important;
}

@media (max-width: 560px) {
  .ty-photo-callout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
