/* ============================================================
   CHASING CÉZANNE — Global Stylesheet
   ============================================================ */

@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&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500&display=swap');

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

:root {
  --bg:          #0d0c0b;
  --bg-mid:      #131210;
  --bg-card:     #1a1815;
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --cream:       #f0ead8;
  --cream-dim:   #c8bfa8;
  --rust:        #8b3a2a;
  --text:        #e8dfc8;
  --text-dim:    #9a9080;
  --border:      #2e2b25;
  --border-gold: rgba(201,168,76,.35);

  --serif:   'Cormorant Garamond', 'Georgia', serif;
  --sans:    'Montserrat', sans-serif;
  --baskerville: 'Libre Baskerville', serif;

  --max:  1100px;
  --nav-h: 72px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Typography helpers ───────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
}

/* ── Gold rule ───────────────────────────────────────────── */
.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .85em 2.2em;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn:hover { background: var(--gold); color: var(--bg); }

.btn--solid {
  background: var(--gold);
  color: var(--bg);
}
.btn--solid:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(13,12,11,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--cream);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.nav__links a {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,12,11,.97);
    padding: 2rem 0 3rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links a { padding: 1rem 0; font-size: .7rem; }
}

/* ── Page wrapper ─────────────────────────────────────────── */
.page { padding-top: var(--nav-h); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.section--top { padding-top: clamp(5rem, 12vw, 10rem); }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── HOMEPAGE ─────────────────────────────────────────────── */

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 2rem 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(139,58,42,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(201,168,76,.07) 0%, transparent 60%),
    linear-gradient(160deg, #0d0c0b 0%, #1a1410 50%, #0d0c0b 100%);
}

/* Painting fills the background — no decorative overlays needed */

.hero__inner {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: .3em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: var(--baskerville);
  font-size: clamp(.85rem, 1.5vw, 1rem);
  font-style: italic;
  color: var(--cream-dim);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}

.hero__hook {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: fadeInUp 1.5s 1.5s both;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Synopsis strip */
.synopsis {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.synopsis__inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0;
  align-items: center;
}
@media (max-width: 680px) {
  .synopsis__inner { grid-template-columns: 1fr; }
  .synopsis__divider { display: none; }
}
.synopsis__panel { padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 4rem); }
.synopsis__divider { background: var(--border); align-self: stretch; }

.synopsis__quote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
}
.synopsis__quote cite {
  display: block;
  margin-top: 1rem;
  font-size: .75rem;
  font-style: normal;
  font-family: var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Book reveal */
.book-feature {
  overflow: hidden;
}
.book-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
@media (max-width: 760px) {
  .book-feature__inner { grid-template-columns: 1fr; }
  .book-feature__visual { order: -1; }
}

.book-feature__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-mockup {
  width: clamp(200px, 35vw, 280px);
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #1a1208 0%, #2a1f0e 40%, #1a1208 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-left: 6px solid var(--gold);
  box-shadow:
    -8px 8px 40px rgba(0,0,0,.7),
    inset 2px 0 8px rgba(201,168,76,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  gap: 1rem;
  position: relative;
  transform: perspective(800px) rotateY(8deg);
  transition: transform .5s ease;
}
.book-mockup:hover { transform: perspective(800px) rotateY(2deg); }

.book-mockup__ornament {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.book-mockup__title {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: .03em;
}
.book-mockup__title em { color: var(--gold-light); }
.book-mockup__author {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-mockup__genre {
  font-family: var(--baskerville);
  font-size: .75rem;
  font-style: italic;
  color: var(--text-dim);
}

.book-feature__content { }
.book-feature__content p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

/* Themes strip */
.themes {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
}
.theme-card {
  background: var(--bg-mid);
  padding: clamp(2rem, 4vw, 3rem) 2rem;
  text-align: center;
  transition: background var(--transition);
}
.theme-card:hover { background: var(--bg-card); }
.theme-card__icon {
  font-family: var(--baskerville);
  font-size: .75rem;
  font-style: italic;
  letter-spacing: .2em;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: block;
}
.theme-card__title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.theme-card__desc {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--text-dim);
  line-height: 1.7;
}

/* CTA email strip */
.cta-strip {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 2rem;
}
.cta-strip .section-title { margin-bottom: .8rem; }
.cta-strip .lead { max-width: 520px; margin: 0 auto 2.5rem; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(to bottom, transparent 40%, var(--bg) 100%),
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(139,58,42,.15) 0%, transparent 70%),
    var(--bg);
}
.about-hero__inner { max-width: var(--max); margin: 0 auto; width: 100%; }

.about-bio {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 820px) {
  .about-bio { grid-template-columns: 1fr; }
}

.about-portrait {
  position: relative;
}
.about-portrait__frame {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--bg-card) 0%, #221c14 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-portrait__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}
.about-portrait__frame .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  color: var(--text-dim);
}
.about-portrait__frame .placeholder .icon {
  font-size: 3rem;
  opacity: .4;
}
.about-portrait__frame .placeholder p {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-portrait__caption {
  margin-top: 1rem;
  font-family: var(--baskerville);
  font-size: .8rem;
  font-style: italic;
  color: var(--text-dim);
}

.about-body p {
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
  font-weight: 300;
  font-size: 1.05rem;
}
.about-body p:first-of-type {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--cream);
}

.about-credentials {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.credential { }
.credential__label {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.credential__value {
  font-size: .95rem;
  color: var(--cream-dim);
}

/* ── GALLERY PAGE ─────────────────────────────────────────── */
.gallery-hero {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
  margin: 0 auto 3rem;
}
.gallery-tab {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .8em 2.2em;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-dim);
  transition: background var(--transition), color var(--transition);
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--gold);
  color: var(--bg);
}

.gallery-grid {
  columns: 3;
  column-gap: 3px;
}
@media (max-width: 820px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  display: inline-block;
  width: 100%;
  margin-bottom: 3px;
  break-inside: avoid;
}
.gallery-item:nth-child(3n+1):nth-last-child(1) { grid-column: unset; }

.gallery-item__media {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.7) brightness(.9);
}
.gallery-item:hover .gallery-item__media {
  transform: scale(1.04);
  filter: saturate(.9) brightness(1);
}

.gallery-item__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__placeholder { background: var(--bg-mid); }
.gallery-item__placeholder .ph-icon { font-size: 2.5rem; opacity: .25; }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  font-size: .85rem;
  font-style: italic;
  color: var(--cream);
}

/* Video section */
.video-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}
.video-embed {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto 0;
}
.video-embed__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.video-embed__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition);
}
.video-embed__play:hover { background: var(--gold); color: var(--bg); }
.video-embed__label {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── PRESS PAGE ───────────────────────────────────────────── */
.press-hero {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.press-intro {
  max-width: 620px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.press-card {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 2.8rem);
  transition: background var(--transition);
  border: none;
}
.press-card:hover { background: var(--bg-card); }

.press-card__outlet {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.press-card__quote {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.press-card__quote::before { content: '\201C'; }
.press-card__quote::after  { content: '\201D'; }

.press-card__attribution {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--text-dim);
}

/* Press kit download */
.press-kit {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.press-kit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}
.press-kit__text h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .4rem;
}
.press-kit__text p {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .05em;
  color: var(--text-dim);
}

.contact-strip {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
}
.contact-strip h3 {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .4rem;
}
.contact-strip p {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--text-dim);
  letter-spacing: .04em;
}
.contact-strip a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.3); }
.contact-strip a:hover { border-color: var(--gold); }

/* ── EMAIL SIGNUP (shared component) ─────────────────────── */
.signup-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.signup-form input[type="email"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-right: none;
  color: var(--cream);
  padding: .85em 1.4em;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .06em;
  outline: none;
  transition: border-color var(--transition);
}
.signup-form input[type="email"]::placeholder { color: var(--text-dim); }
.signup-form input[type="email"]:focus { border-color: var(--gold); }
.signup-form button { flex-shrink: 0; }

.signup-note {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-top: .8rem;
  text-align: center;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
}
.footer__brand {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.footer__brand span { color: var(--gold); }
.footer__tagline {
  font-family: var(--baskerville);
  font-size: .8rem;
  font-style: italic;
  color: var(--text-dim);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-align: right;
}
@media (max-width: 600px) { .footer__links { text-align: left; } }
.footer__links a {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── ORNAMENTAL ELEMENTS ──────────────────────────────────── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .4em;
  margin: 1.5rem 0;
  opacity: .5;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  width: 44px; height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* ── SUCCESS MESSAGE ──────────────────────────────────────── */
.success-msg {
  display: none;
  text-align: center;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--gold);
  padding: 1rem;
}
