/* Website 1.0 — Homepage layout & lord-lore presentation */

main.container.v1-home {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3vw, 2rem);
}

/* ── Compact hero ── */
.v1-hero.hero.panel.hero-panel,
.v1-hero.hero.panel.hero-panel.hero-panel--funnel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto;
  padding: 0 !important;
  margin-bottom: clamp(1.15rem, 2.8vw, 1.85rem);
  min-height: clamp(14rem, 24vw, 18.5rem) !important;
  border-color: rgba(201, 162, 39, 0.28) !important;
  /* Photo must show through — panel glass was painting a fat frosted stripe */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.55);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 0;
}

.v1-hero.hero-panel--funnel .v1-hero__copy {
  padding-top: 0;
  max-width: none;
}

.v1-hero.hero.panel.hero-panel::before,
.v1-hero.hero.panel.hero-panel::after,
body.v1-site .v1-hero.hero.panel.hero-panel::before,
body.v1-site .v1-hero.hero.panel.hero-panel::after,
body.v1-site .v1-hero.panel::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

.v1-hero .hero-copy h2:not(.v1-hero__title) {
  display: none;
}

/* Full-bleed cinemagraph background */
.v1-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.v1-hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: none;
}

.v1-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v1-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.35s ease;
  pointer-events: none;
}

.v1-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.v1-hero__slide picture,
.v1-hero__bg--kenburns .v1-hero__slide {
  display: block;
  width: 100%;
  height: 100%;
}

.v1-hero__bg--kenburns .v1-hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
}

.v1-hero__bg-embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.v1-hero__bg-flicker {
  display: none;
}

.v1-hero__bg-sweep {
  display: none;
}

/* Full-bleed left wash on real shade node — edge-to-edge hero height */
.v1-hero__bg-shade {
  display: block !important;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: min(62%, 46rem);
  height: auto;
  background: linear-gradient(
    90deg,
    rgba(2, 2, 1, 0.94) 0%,
    rgba(2, 2, 1, 0.86) 40%,
    rgba(2, 2, 1, 0.55) 70%,
    rgba(2, 2, 1, 0.18) 88%,
    transparent 100%
  );
  border-radius: 0;
  opacity: 1;
}

/* Kill stacked duplicate washes (old body/copy/bg pseudo layers) */
.v1-hero__bg::after,
.v1-hero__body::before,
.v1-hero__copy::before,
body.v1-site .v1-hero__body::before,
body.v1-site .v1-hero__copy::before {
  content: none !important;
  display: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

.v1-hero__lore-tag {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: rgba(4, 3, 2, 0.82);
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: #d4a84a;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
  transition: border-color 0.2s, background 0.2s;
}

.v1-hero__lore-tag:hover {
  border-color: rgba(232, 197, 71, 0.45);
  background: rgba(8, 6, 4, 0.9);
}

.v1-hero__lore-tag i {
  color: #e87a3a;
  animation: v1EmberIcon 1.6s ease-in-out infinite;
}

.v1-hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(188px, 248px);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: start;
  padding: clamp(0.9rem, 2vw, 1.25rem);
}

/* Soft dark wash owned by .v1-hero__bg-shade above */
.v1-hero__copy {
  position: relative;
  z-index: 1;
  color: #d2c7b2;
  isolation: isolate;
}

.v1-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}

.v1-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a84a;
}

.v1-seal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9a8, #c9a227);
  box-shadow: 0 0 12px rgba(232, 197, 71, 0.65);
  animation: v1SealPulse 2.4s ease-in-out infinite;
}

@keyframes v1SealPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(232, 197, 71, 0.55); }
  50% { transform: scale(1.15); box-shadow: 0 0 20px rgba(232, 197, 71, 0.85); }
}

.v1-hero__title {
  margin: 0 0 0.35rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #e8d9b0 0%, #c9a84a 48%, #8f7424 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}

.v1-hero__story-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.12), rgba(6, 5, 4, 0.88));
  font-size: 0.68rem;
  color: #f2e7c5;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.v1-hero__story-pill:hover {
  border-color: rgba(232, 197, 71, 0.65);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.22);
  transform: translateY(-1px);
}

.v1-hero__story-pill strong {
  color: #ffe9a8;
}

.v1-hero__copy .lead,
.v1-hero__lead {
  max-width: 48ch;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #c8bda8;
  text-shadow: 0 1px 14px rgba(2, 2, 1, 0.9);
}

.v1-hero .hero-trust-strip.v1-hero__trust {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.v1-hero__trust > li {
  flex: 0 0 auto;
  width: auto;
  display: block;
}

.v1-hero__trust .hero-trust-item {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.3rem;
  width: auto;
  min-height: 0;
  flex: 0 0 auto;
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(6, 5, 4, 0.72);
  backdrop-filter: none;
  white-space: nowrap;
}

.v1-hero__trust .hero-trust-item:hover {
  border-color: rgba(201, 162, 39, 0.38);
  transform: none;
  box-shadow: none;
  background: rgba(201, 162, 39, 0.06);
}

.v1-hero__trust .hero-trust-value {
  font-family: "Cinzel", serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e8c547;
  line-height: 1;
}

.v1-hero__trust .hero-trust-value.is-loading {
  display: inline-block;
  min-width: 1.6em;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.16),
    rgba(201, 162, 39, 0.4),
    rgba(201, 162, 39, 0.16)
  );
  background-size: 200% 100%;
  border-radius: 4px;
  animation: hero-trust-pulse 1.4s ease-in-out infinite;
}

@keyframes hero-trust-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v1-hero__trust .hero-trust-value.is-loading {
    animation: none;
    background: rgba(201, 162, 39, 0.24);
  }
}

.v1-hero__trust .hero-trust-label {
  font-size: 0.68rem;
  line-height: 1;
  color: #9a8b72;
}

.v1-hero__trust .hero-trust-sub {
  display: none !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.v1-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.v1-hero__actions .btn-primary {
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.2);
}

@keyframes v1CineFlicker {
  0%, 100% { opacity: 0.45; }
  25% { opacity: 0.75; }
  55% { opacity: 0.5; }
  70% { opacity: 0.85; }
}

@keyframes v1CineSweep {
  0% { transform: translateX(-30%) skewX(-8deg); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(30%) skewX(-8deg); opacity: 0; }
}

@keyframes v1EmberIcon {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.v1-hero__side .status-card,
.v1-hero__side .hero-status {
  border: 1px solid rgba(201, 162, 39, 0.24);
  background: linear-gradient(165deg, rgba(12, 10, 8, 0.94), rgba(6, 5, 4, 0.9));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  padding: 0.75rem 0.85rem !important;
  max-width: 260px;
}

.v1-hero__side .hero-status h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.v1-hero__side .hero-status p {
  margin: 0.2rem 0;
  font-size: 0.8rem;
}

.v1-hero__side .status-actions {
  margin-top: 0.5rem;
  gap: 0.4rem;
}

.v1-hero__side .status-actions .btn {
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
}

.v1-covenant-line {
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.16);
  background: rgba(6, 5, 4, 0.75);
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #a89878;
  line-height: 1.4;
}

/* Covenant under left copy — not a floating mid-hero chip */
.v1-covenant-line--hero {
  position: static;
  transform: none;
  left: auto;
  z-index: auto;
  max-width: 28rem;
  width: auto;
  margin: 0.85rem 0 0;
  padding: 0.55rem 0 0;
  font-size: clamp(0.68rem, 1.05vw, 0.78rem);
  line-height: 1.4;
  text-align: left;
  text-wrap: balance;
  pointer-events: auto;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .v1-covenant-line--hero {
    max-width: none;
    width: 100%;
  }
}

/* ── Five Houses ── */
.v1-houses {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.v1-houses-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.5vw, 0.85rem);
}

.v1-house-card {
  position: relative;
  overflow: hidden;
  padding: 1rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 88, 0.2);
  background: linear-gradient(165deg, rgba(20, 15, 12, 0.95), rgba(10, 8, 6, 0.9));
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}

.v1-house-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--house-accent, #c9a227), transparent);
  opacity: 0.7;
}

.v1-house-card:hover {
  transform: translateY(-6px);
  border-color: var(--house-accent, rgba(212, 175, 88, 0.45));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px color-mix(in srgb, var(--house-accent, #c9a227) 25%, transparent);
}

.v1-house-card--stone { --house-accent: #9a9a8f; }
.v1-house-card--ember { --house-accent: #e87a3a; }
.v1-house-card--thorn { --house-accent: #6faa5c; }
.v1-house-card--ash { --house-accent: #c94a4a; }
.v1-house-card--ink { --house-accent: #7a8fc9; }

.v1-house-card__icons {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
}

.v1-house-card__icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s;
}

.v1-house-card:hover .v1-house-card__icons img {
  transform: translateY(-3px) scale(1.05);
}

.v1-house-card h4 {
  margin: 0 0 0.35rem;
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f2e7c5;
}

.v1-house-card p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #a89880;
}

.v1-houses-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.v1-houses-head h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: #f5e6b8;
}

.v1-houses-head p {
  margin: 0;
  max-width: 42ch;
  font-size: 0.85rem;
  color: #a89880;
}

/* ── Covenant path strip ── */
.v1-path-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.25rem 0;
}

.v1-path-step {
  position: relative;
  padding: 1rem 1rem 1rem 2.75rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 88, 0.16);
  background: linear-gradient(135deg, rgba(18, 14, 11, 0.85), rgba(10, 8, 6, 0.75));
  transition: border-color 0.3s, transform 0.3s;
}

.v1-path-step:hover {
  border-color: rgba(212, 175, 88, 0.35);
  transform: translateX(4px);
}

.v1-path-step__num {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
}

.v1-path-step h4 {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
  color: #f2e7c5;
}

.v1-path-step p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #9a8b74;
}

/* ── Section chrome ── */
.v1-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.15rem;
}

.v1-section-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 88, 0.45), transparent);
}

.v1-section-head h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  white-space: nowrap;
}

.v1-section-head h3 i {
  margin-right: 0.4rem;
  color: #e8c547;
}

/* Enhanced panels on home */
.v1-home .panel {
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.v1-home .panel:hover {
  border-color: rgba(212, 175, 88, 0.32);
}

.v1-home .home-gallery-proof {
  overflow: hidden;
  border-color: rgba(212, 175, 88, 0.25);
  margin-top: clamp(1.25rem, 3.2vw, 2.35rem);
}

.v1-home .home-gallery-proof-head h3 {
  font-family: "Cinzel", serif;
}

.v1-home .wipe-timer .countdown-inline {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.06em;
  color: #f5e6b8;
  animation: v1CountdownGlow 3s ease-in-out infinite;
}

@keyframes v1CountdownGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 18px rgba(201, 162, 39, 0.35); }
}

.v1-home .category-card {
  position: relative;
  overflow: hidden;
}

.v1-home .category-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
  pointer-events: none;
}

.v1-home .category-card h4 {
  font-family: "Cinzel", serif;
}

/* Scroll reveal */
.v1-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.v1-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v1-reveal--delay-1 { transition-delay: 0.1s; }
.v1-reveal--delay-2 { transition-delay: 0.2s; }
.v1-reveal--delay-3 { transition-delay: 0.3s; }
.v1-reveal--delay-4 { transition-delay: 0.4s; }

@media (max-width: 1100px) {
  .v1-houses-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v1-path-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .v1-houses-grid,
  .v1-path-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .v1-hero__body {
    grid-template-columns: 1fr;
  }

  .v1-hero__side {
    order: 2;
    width: 100%;
    min-width: 0;
  }

  .v1-hero__side .hero-status,
  .v1-hero__side .status-card {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }

  .v1-hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  main.container.v1-home {
    min-width: 0;
    overflow-x: clip;
  }

  .v1-hero__bg-photo {
    object-position: center 42%;
  }

  .v1-hero__bg-shade {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(2, 2, 1, 0.92) 0%,
      rgba(2, 2, 1, 0.78) 55%,
      rgba(2, 2, 1, 0.4) 85%,
      transparent 100%
    );
  }
}

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

  .v1-path-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v1-hero__bg-photo,
  .v1-hero__bg-flicker,
  .v1-hero__bg-sweep,
  .v1-hero__lore-tag i {
    animation: none !important;
  }

  .v1-hero__bg--kenburns .v1-hero__bg-photo {
    transform: none !important;
    transition: none !important;
  }

  .v1-hero__bg--kenburns .v1-hero__slide:not(.is-active) {
    display: none;
  }

  .v1-hero__bg-embers {
    display: none;
  }

  .v1-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v1-hero::before,
  .v1-hero__embers,
  .v1-hero__float-item,
  .v1-seal-dot,
  .v1-home .wipe-timer .countdown-inline {
    animation: none !important;
  }
}

/* ?? Sanctuary chooser (first viewport when unset) ?? */
.v1-sanctuary-chooser {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 52rem);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.v1-sanctuary-chooser__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v1-sanctuary-chooser__bg picture,
.v1-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.v1-sanctuary-chooser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.v1-sanctuary-chooser__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 2, 0.55) 0%, rgba(4, 3, 2, 0.78) 45%, rgba(2, 2, 1, 0.92) 100%),
    radial-gradient(ellipse 70% 50% at 50% 20%, rgba(201, 162, 39, 0.12), transparent 60%);
}

.v1-sanctuary-chooser__inner {
  position: relative;
  z-index: 1;
  width: min(56rem, 100%);
  text-align: center;
}

.v1-sanctuary-chooser__brand {
  margin: 0 0 0.35rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.85rem, 5.5vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #f3e6c4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.v1-sanctuary-chooser__title {
  margin: 0 0 0.55rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: #e8c547;
}

.v1-sanctuary-chooser__lead {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  color: #cbbfa6;
  font-size: 0.98rem;
  line-height: 1.45;
}

.v1-sanctuary-chooser__hint {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  text-align: center;
  line-height: 1.4;
}

.v1-sanctuary-chooser__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.v1-sanctuary-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 39, 0.32);
  background: linear-gradient(165deg, rgba(18, 14, 10, 0.92), rgba(6, 5, 4, 0.96));
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.v1-sanctuary-pick:hover,
.v1-sanctuary-pick:focus-visible {
  border-color: rgba(232, 197, 71, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  outline: none;
}

.v1-sanctuary-pick__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c547;
}

.v1-sanctuary-pick__name {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: #f0e4c8;
}

.v1-sanctuary-pick__copy {
  color: #b8aa92;
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.v1-sanctuary-pick__cta {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8c547;
}

.v1-pure-path {
  border-color: rgba(201, 162, 39, 0.28) !important;
}

.v1-pure-path .tag {
  color: #e8c547;
}

.v1-hero__secondary-links {
  margin: 0.55rem 0 0;
  opacity: 0.9;
}

.v1-hero__secondary-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (max-width: 720px) {
  .v1-sanctuary-chooser {
    min-height: min(88vh, 44rem);
  }
  .v1-sanctuary-chooser__grid {
    grid-template-columns: 1fr;
  }
}
