﻿/* ============================================================
   FLORAL ALCHEMY — Global Styles
   floral-alchemy.com
   The Naturalist's Archive — Age of Discovery
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --bg-deep:        #120e08;
  --bg-surface:     #1a1510;
  --bg-card:        #211a11;
  --text-parchment: #e8d5a3;
  --text-muted:     #a8956e;
  --gold:           #c9a96e;
  --gold-light:     #e0c48a;
  --gold-dark:      #8a6f3e;
  --cream:          #f5edd8;
  --font-main:      'Cormorant Garamond', Georgia, serif;
  --transition:     all 0.4s ease;
  --letter-wide:    0.18em;
  --letter-med:     0.1em;
}

/* --- Skip navigation (accessibility) --- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0.12em;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.5rem;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-parchment);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 300;
  color: var(--text-parchment);
  line-height: 1.15;
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: var(--letter-med);
}

h3 {
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.08em;
}

h4 {
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

p {
  margin-bottom: 1.2em;
  font-size: 18px;
  line-height: 1.8;
}

.italic {
  font-style: italic;
}

.small-caps {
  font-variant: small-caps;
  letter-spacing: 0.12em;
}

.gold-text {
  color: var(--gold);
}

/* Decorative rule */
.rule {
  border: none;
  border-top: 1px solid var(--gold-dark);
  margin: 3rem auto;
  opacity: 0.5;
}

.rule-short {
  width: 80px;
  border: none;
  border-top: 1px solid var(--gold);
  margin: 1.5rem auto;
  opacity: 0.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(18, 14, 8, 0.95) 0%, rgba(18, 14, 8, 0) 100%);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(18, 14, 8, 0.98);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo a {
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-parchment);
  opacity: 0.85;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-sub-rosa {
  font-style: italic;
  color: var(--gold) !important;
  opacity: 0.72 !important;
  letter-spacing: 0.16em !important;
}
.nav-sub-rosa:hover {
  opacity: 1 !important;
}

/* ── FINE PRINT DROPDOWN ───────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-parchment);
  opacity: 0.85;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  color: var(--gold);
  opacity: 1;
}

.nav-dropdown-arrow {
  font-size: 8px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: rgba(18, 14, 8, 0.98);
  border: 1px solid rgba(201, 169, 110, 0.18);
  min-width: 210px;
  z-index: 200;
  padding: 0.6rem 0;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.5rem;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.8;
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  opacity: 1;
}

@media (max-width: 900px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-btn {
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    background: none;
    border: none;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 0.5rem 0 0.5rem 1rem;
    min-width: auto;
  }
  .nav-dropdown-menu a {
    font-size: 14px;
    padding: 0.4rem 0;
    opacity: 0.65;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 24px;
}

/* ============================================================
   HERO — HOMEPAGE SPLASH
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-garden-doorway.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 14, 8, 0.3) 0%,
    rgba(18, 14, 8, 0.2) 40%,
    rgba(18, 14, 8, 0.7) 100%
  );
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeInUp 1.8s ease forwards;
}

.hero-prelude {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(48px, 9vw, 110px);
  letter-spacing: 0.25em;
  color: var(--text-parchment);
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-shadow: 0 2px 40px rgba(18, 14, 8, 0.8);
}

.hero-tagline {
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  color: var(--text-parchment);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-enter {
  display: inline-block;
  padding: 0.9rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}

.hero-enter:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  opacity: 0.6;
  animation: pulse 2.5s ease infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   COLLECTIONS DIRECTORY
   ============================================================ */

.collections-directory {
  background: var(--bg-deep);
  padding: 6rem 4rem;
  text-align: center;
  position: relative;
}

.collections-directory::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: 0.4;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.collections-title {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-parchment);
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.collection-link {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-parchment);
  opacity: 0.75;
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.collection-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.collection-link:hover {
  color: var(--gold);
  opacity: 1;
}

.collection-link:hover::after {
  width: 100%;
}

/* ============================================================
   TREASURE TABLE IMAGE MAP
   ============================================================ */

.treasure-table {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.treasure-table img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   STATEMENT SECTION
   ============================================================ */

.statement {
  position: relative;
  padding: 8rem 4rem;
  text-align: center;
  overflow: hidden;
}

.statement-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/dutch-master-flowers.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.statement-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.statement-quote {
  font-size: clamp(24px, 4vw, 48px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-parchment);
  letter-spacing: 0.05em;
}

/* ============================================================
   BOTANICAL ILLUSTRATION DIVIDER
   ============================================================ */

.botanical-divider {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  opacity: 0.12;
  filter: sepia(1) brightness(0.8);
}

.botanical-divider img {
  width: 100%;
  object-fit: cover;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */

.collection-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.collection-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 14, 8, 0.1) 0%,
    rgba(18, 14, 8, 0.5) 60%,
    rgba(18, 14, 8, 0.85) 100%
  );
}

.collection-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.collection-name {
  font-size: clamp(40px, 7vw, 90px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-parchment);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.collection-subtitle {
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Collection story section */
.collection-lore {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 3rem;
  text-align: center;
}

.collection-lore p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--text-parchment);
  opacity: 0.9;
}

/* Pieces grid */
.pieces-section {
  padding: 4rem 4rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pieces-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pieces-section-title {
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.pieces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

/* ============================================================
   PIECE CARD
   ============================================================ */

.piece-card {
  display: block;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.piece-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1.2rem;
  background: var(--bg-card);
}

.piece-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.piece-card:hover .piece-card-image img {
  transform: scale(1.04);
}

.piece-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.piece-card:hover .piece-card-overlay {
  background: rgba(18, 14, 8, 0.4);
}

.piece-card-view {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-parchment);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.piece-card:hover .piece-card-view {
  opacity: 1;
}

.piece-card-name {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text-parchment);
  margin-bottom: 0.3rem;
  font-style: italic;
}

.piece-card-collection {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ============================================================
   PIECE PAGE (Individual Secret Page)
   ============================================================ */

.piece-page {
  padding-top: 8rem;
  min-height: 100vh;
}

.piece-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.piece-gallery-main {
  grid-column: 1 / -1;
}

.piece-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.piece-detail {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 3rem 6rem;
  text-align: center;
}

.piece-collection-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.piece-name {
  font-size: clamp(32px, 5vw, 60px);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.piece-story {
  margin: 2.5rem 0;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.9;
}

.piece-price {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.btn-acquire {
  display: inline-block;
  padding: 1rem 3.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-acquire:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 4rem 4rem 3rem;
  text-align: center;
  background: var(--bg-deep);
}

.footer-logo {
  font-size: 22px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201, 169, 110, 0.15);
  cursor: default;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  color: rgba(201, 169, 110, 0.55);
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.25s ease;
  padding: 0.4rem;
}
.lightbox-close:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
    z-index: 101;
  }

  .collections-directory {
    padding: 4rem 2rem;
  }

  .statement {
    padding: 5rem 2rem;
  }

  .piece-gallery {
    grid-template-columns: 1fr;
  }

  .pieces-section {
    padding: 3rem 1.5rem 4rem;
  }

  .pieces-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
}

/* ============================================================
   FEATURED WORK — Homepage single piece (the jewel in the window)
   ============================================================ */

.featured-work {
  padding: 7rem 2rem 6rem;
  background: var(--bg-deep);
  position: relative;
}

.featured-work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: 0.4;
}

.featured-work-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.featured-work-label {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 3rem;
}

.featured-work-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-work-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  min-height: 300px;
}

.featured-work-image img {
  width: 100%;
  display: block;
  transition: transform 0.9s ease;
}

.featured-work-image-link:hover .featured-work-image img {
  transform: scale(1.025);
}

.featured-work-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0);
  transition: border-color 0.5s ease;
  pointer-events: none;
}

.featured-work-image-link:hover .featured-work-image::after {
  border-color: rgba(201, 169, 110, 0.18);
}

.featured-work-text {
  padding: 3.5rem 0 0;
}

.featured-work-name {
  font-size: clamp(28px, 4.5vw, 54px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-parchment);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.featured-work-whisper {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.featured-work-enter {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  transition: var(--transition);
}

.featured-work-enter:hover {
  opacity: 1;
  color: var(--gold-light);
  letter-spacing: 0.5em;
}

/* ============================================================
   AVAILABLE WORKS PAGE
   ============================================================ */

.works-header {
  padding: 14rem 2rem 5rem;
  text-align: center;
  background: var(--bg-deep);
}

.works-header-label {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 1.5rem;
}

.works-header-title {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--text-parchment);
  margin-bottom: 2rem;
}

.works-header-note {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.85;
  opacity: 0.85;
}

.works-list {
  padding: 2rem 0 8rem;
  max-width: 960px;
  margin: 0 auto;
}

.work-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 7rem 2rem;
  align-items: center;
  position: relative;
}

.work-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: 0.25;
}

.work-entry:first-child::before {
  display: none;
}

/* Even entries flip image to the right */
.work-entry:nth-child(even) .work-entry-image {
  order: 2;
}
.work-entry:nth-child(even) .work-entry-text {
  order: 1;
}

.work-entry-image {
  position: relative;
  overflow: hidden;
}

.work-entry-image a {
  display: block;
  overflow: hidden;
}

.work-entry-image img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.work-entry-image a:hover img {
  transform: scale(1.035);
}

.work-entry-text {
  padding: 0.5rem 0;
}

.work-entry-lineage {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 1.2rem;
}

.work-entry-name {
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-parchment);
  line-height: 1.15;
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

.work-entry-excerpt {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.work-entry-price {
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.work-entry-link {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  transition: var(--transition);
}

.work-entry-link:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* Empty works state */
.works-empty {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 19px;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .work-entry {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 1.5rem;
  }

  .work-entry:nth-child(even) .work-entry-image,
  .work-entry:nth-child(even) .work-entry-text {
    order: unset;
  }

  .featured-work-image {
    min-height: 200px;
  }
}
