/* ============================================================
   CHRISTIAN SMP - Dark Theme with Full Classical Artwork
   ============================================================ */

:root {
  /* Colors - Dark palette (softer, not pure black) */
  --color-bg: #141418;
  --color-bg-dark: #0e0e11;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-hover: rgba(255, 255, 255, 0.07);

  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(255, 255, 255, 0.18);

  --color-text: #e8e6e3;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.45);

  /* Typography */
  --font-serif: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-prose: 65ch;
  --header-height: 72px;

  /* Effects */
  --blur-sm: 10px;
  --blur-md: 20px;
  --blur-lg: 40px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.75;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 { font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl)); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { max-width: var(--max-width-prose); }

.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.font-serif { font-family: var(--font-serif); }
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-xs);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  position: relative;
  padding: var(--space-24) 0;
}

.section--lg {
  padding: var(--space-32) 0;
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Spacing */
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  letter-spacing: 0.02em;
}

.header__logo:hover {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  padding: var(--space-2) 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
  opacity: 1;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle__bar {
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: var(--text-2xl);
    font-family: var(--font-serif);
  }

  /* Close button for mobile nav */
  .nav--open ~ .nav-toggle,
  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 14px;
    right: var(--space-6);
    z-index: 1001;
  }
}

/* ============================================================
   FULL ARTWORK - Uncropped images with gradient blend and text
   ============================================================ */
.artwork {
  position: relative;
  width: 100%;
  background: var(--color-bg);
}

.artwork img {
  width: 100%;
  height: auto;
  display: block;
}

/* Smooth dark transitions between images and sections */
.artwork::before,
.artwork::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  pointer-events: none;
  z-index: 1;
}

.artwork::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), rgba(20, 20, 24, 0));
}

.artwork::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), rgba(20, 20, 24, 0));
}

/* Gradient fade for smoother transitions */

/* Centered text overlay on artwork */
.artwork__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: var(--space-8);
  z-index: 2;
  width: 100%;
  max-width: 700px;
}

.artwork__label {
  display: inline-block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.artwork__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9), 0 4px 60px rgba(0, 0, 0, 0.6);
}

.artwork__text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 4px 40px rgba(0, 0, 0, 0.6);
}

/* Add radial overlay when artwork has content */

/* ============================================================
   PAGE INTRO HERO - Full artwork with centered text overlay
   ============================================================ */
.page-intro-hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  background: var(--color-bg-dark);
}

/* Full artwork container */
.page-intro-hero__artwork {
  position: relative;
  width: 100%;
  background: var(--color-bg-dark);
}

.page-intro-hero__artwork::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(20, 20, 24, 0), var(--color-bg));
  pointer-events: none;
  z-index: 1;
}

.page-intro-hero__artwork img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text content centered on artwork */
.page-intro-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.page-intro-hero__card {
  display: inline-block;
  max-width: 720px;
  width: auto;
  padding: var(--space-6) var(--space-16);
  background: rgba(14, 14, 17, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.page-intro-hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}

.page-intro-hero__title {
  margin-bottom: var(--space-4);
}

.page-intro-hero__subtitle {
  color: rgba(255, 255, 255, 0.95);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.7;
}

.page-intro-hero--home .page-intro-hero__title {
  margin-bottom: var(--space-6);
}

.page-intro-hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .page-intro-hero__content {
    padding: var(--space-6) var(--space-4);
  }
}

/* Legacy page-intro for backwards compatibility */
.page-intro {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
}

.page-intro__label {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}

.page-intro__title {
  margin-bottom: var(--space-4);
}

.page-intro__subtitle {
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Home page hero intro - larger */
.page-intro--hero {
  padding: calc(var(--header-height) + var(--space-24)) 0 var(--space-20);
}

.page-intro--hero .page-intro__title {
  margin-bottom: var(--space-6);
}

.page-intro__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.btn--primary {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn--primary:hover {
  opacity: 1;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  opacity: 1;
  background: var(--color-surface-hover);
  border-color: var(--color-border-hover);
}

.btn--large {
  padding: var(--space-5) var(--space-10);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
}

.btn--ghost:hover {
  color: var(--color-text);
  opacity: 1;
}

/* ============================================================
   PANELS & CARDS
   ============================================================ */
.panel {
  background: var(--color-surface);
  backdrop-filter: blur(var(--blur-sm));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.panel--sm { padding: var(--space-6); }
.panel--lg { padding: var(--space-10); }

.panel:hover {
  border-color: var(--color-border-hover);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.card__number {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.card__list {
  margin-top: var(--space-5);
}

.card__list li {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  padding-left: var(--space-4);
  position: relative;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 1px;
  background: var(--color-text-muted);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-header__text {
  margin-left: auto;
  margin-right: auto;
}

.section-header__label {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}

.section-header__title {
  margin-bottom: var(--space-4);
}

.section-header__text {
  color: var(--color-text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}

/* ============================================================
   STATUS CARD
   ============================================================ */
.status-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  text-align: center;
}

.status-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.status-card__badge--online {
  background: rgba(46, 204, 113, 0.12);
  border-color: rgba(46, 204, 113, 0.4);
  color: #bff2d2;
}

.status-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-card__badge--online::before {
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.7);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-card__ip {
  font-family: var(--font-sans);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

.status-card__version {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.status-card__note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-6);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CONTENT
   ============================================================ */
.content-block {
  margin-bottom: var(--space-16);
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block__title {
  margin-bottom: var(--space-6);
}

.prose {
  max-width: var(--max-width-prose);
}

.prose p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

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

.prose strong {
  color: var(--color-text);
  font-weight: 500;
}

.prose ul {
  margin: var(--space-5) 0;
}

.prose li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  padding-left: var(--space-5);
  position: relative;
}

.prose li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 3px;
  height: 1px;
  background: var(--color-text-muted);
}

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  text-align: center;
}

.callout__title {
  margin-bottom: var(--space-3);
}

.callout__text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}

.faq__question {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.faq__answer {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: var(--max-width-prose);
}

/* ============================================================
   PRAYER LIST
   ============================================================ */
.prayer-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.prayer-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.prayer-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prayer-list__item:first-child {
  padding-top: 0;
}

.prayer-list__icon {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.prayer-list__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-16) 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-10) 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
}

.footer__left {
  text-align: left;
  justify-self: start;
}

.footer__social {
  justify-self: end;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.footer__tagline {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-style: italic;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #ffffff;
  color: var(--color-bg);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  border-color: var(--color-border-hover);
  color: var(--color-bg);
  opacity: 1;
}

.footer__social-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .footer__social {
    justify-self: flex-start;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 400ms; }

.reveal-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

main {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HERO - Home page full-screen intro
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-24) var(--space-6);
  padding-top: calc(var(--header-height) + var(--space-16));
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero__content {
  text-align: center;
  max-width: 800px;
}

.hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-6);
}

.hero__title {
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Page hero - smaller for inner pages */
.hero--page {
  min-height: 60vh;
}

/* ============================================================
   ARTWORK SECTION - Full-width mid-page artwork with overlay
   ============================================================ */
.artwork-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16);
  overflow: hidden;
}

.artwork-section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.artwork-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.artwork-section__shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.artwork-section__content {
  text-align: center;
  max-width: 600px;
}

.artwork-section__content h2 {
  margin-bottom: var(--space-4);
}

.artwork-section__content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}
