:root {
  /* Design Tokens - Minimalist Editorial Monograph */
  --bg-color: #FAF9F6;          /* Gallery plaster / soft paper white */
  --text-primary: #1C1A18;      /* Oil charcoal / soft black */
  --text-secondary: #4A4642;    /* Refined charcoal-brown for body copy */
  --accent-clay: #B85C42;       /* Terracotta clay */
  --accent-taupe: #8C7B70;      /* Soft editorial taupe */
  --border-color: rgba(28, 26, 24, 0.1);
  
  /* Typography */
  --font-serif-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif-body: 'Lora', Georgia, serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark Editorial Monograph */
    --bg-color: #121110;        /* Deep museum dark charcoal */
    --text-primary: #EAE6DF;    /* Warm plaster white */
    --text-secondary: #C7C2BA;  /* Warm grey body */
    --accent-clay: #D98B75;      /* Rose terracotta */
    --accent-taupe: #B5A89E;    /* Light taupe */
    --border-color: rgba(234, 230, 223, 0.1);
  }
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-secondary);
  font-family: var(--font-serif-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Borderless Monograph Layout */
.monograph-container {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  width: 90%;
  max-width: 960px;
  align-items: center;
  z-index: 10;
  padding: 20px;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Column: Portrait */
.photo-side {
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.03);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(101%);
  transition: transform 0.6s ease;
}

/* Right Column: Monograph Text Block */
.text-side {
  display: flex;
  flex-direction: column;
}

.curator-tagline {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-taupe);
  margin-bottom: 6px;
  display: block;
}

.curator-name {
  font-family: var(--font-serif-display);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.curator-bio {
  font-family: var(--font-serif-body);
  font-size: clamp(14px, 1.4vw, 15.5px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  text-align: justify;
}

/* Simple Inline Links (No corporate button boxes) */
.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.monograph-link {
  font-family: var(--font-serif-display);
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text-primary);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.monograph-link:hover {
  color: var(--accent-clay);
  border-bottom-color: var(--accent-clay);
  transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media screen and (max-width: 800px) {
  body, html {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    padding: 40px 20px;
    display: block;
  }

  .monograph-container {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    padding: 0;
  }

  .photo-frame {
    max-width: 250px;
  }

  .curator-name {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .curator-bio {
    font-size: 14px;
    margin-bottom: 28px;
    text-align: left;
  }

  .action-links {
    gap: 24px;
  }
}

/* Print Styling */
@media print {
  body, html {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .monograph-container {
    grid-template-columns: 1fr 1.5fr !important;
  }
}
