:root {
  --navy:       #0D1B2A;
  --navy-mid:   #112235;
  --navy-dark:  #070F1A;
  --gold:       #C9A535;
  --gold-lt:    #E2C96B;
  --cream:      #F2E8D0;
  --cream-muted:#C8BAA0;
  --duck:       #F0C040;
  --red:        #C41E2E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'Marcellus', serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,15,26,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,165,53,0.35);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding: 5rem 2rem 7rem;
}

/* Sunburst */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 80vmin; height: 80vmin;
  background: repeating-conic-gradient(
    rgba(201,165,53,0.065) 0deg 7deg,
    transparent 7deg 14deg
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 55vmin; height: 55vmin;
  background: radial-gradient(circle, rgba(201,165,53,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative horizontal stripes, very faint */
.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 34px,
    rgba(201,165,53,0.022) 34px,
    rgba(201,165,53,0.022) 35px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.1s;
}

.hero-logo-ring {
  position: relative;
  width: min(200px, 38vw);
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.35s;
}

.hero-logo-ring::before,
.hero-logo-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,165,53,0.28);
  pointer-events: none;
}
.hero-logo-ring::before { inset: -16px; }
.hero-logo-ring::after  { inset: -30px; border-color: rgba(201,165,53,0.13); }

.hero-logo {
  width: 100%;
  display: block;
  border-radius: 50%;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cream);
  line-height: 0.9;
  text-transform: uppercase;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.6s;
}
.hero-title .gold { color: var(--gold); }

.deco-rule {
  display: flex;
  align-items: center;
  width: min(460px, 75vw);
  gap: 0.75rem;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.82s;
}
.deco-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.deco-d     { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.deco-d-sm  { width: 4px; height: 4px; background: var(--gold-lt); transform: rotate(45deg); flex-shrink: 0; }

.hero-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--cream-muted);
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.98s;
}

.hero-cta {
  position: relative;
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.88rem 2.8rem;
  border: 1px solid var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  animation: fadeUp 0.9s ease both;
  animation-delay: 1.15s;
}
/* corner brackets */
.hero-cta::before, .hero-cta::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-cta::before { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.hero-cta::after  { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.hero-cta:hover { background: var(--gold); color: var(--navy); }

/* wave at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}

/* ─── SECTION SHARED ──────────────────────────── */
.section-eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  opacity: 0.85;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.section-head {
  text-align: center;
  margin-bottom: 4.5rem;
}

/* ─── DESTINATIONS ────────────────────────────── */
.destinations {
  padding: 7rem 3rem 8rem;
  background: var(--navy);
  position: relative;
}

/* top ornament */
.destinations::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 0;
  position: absolute;
  top: 0; left: 50%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 2.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,165,53,0.45);
  outline: 1px solid rgba(201,165,53,0.15);
  outline-offset: -7px;
  padding: 3.5rem 2.5rem 3rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 24px rgba(201,165,53,0.08);
}

.card-numeral {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.58rem;
  letter-spacing: 0.6em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.6rem;
}

.card-emblem {
  width: 56px; height: 56px;
  margin: 0 auto 1.8rem;
  border: 1px solid rgba(201,165,53,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.card-subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.8rem;
}

.card-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--cream-muted);
  margin-bottom: 2.2rem;
}

.card-link {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid rgba(201,165,53,0.45);
  font-size: 0.63rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s;
}
.card-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ─── GALLERY ─────────────────────────────────── */
.gallery {
  padding: 7rem 3rem 8rem;
  background: var(--navy-dark);
  position: relative;
}
.gallery::before {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  position: absolute;
  top: 0; left: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-tile {
  display: block;
  text-decoration: none;
  background: var(--navy-mid);
  border: 1px solid rgba(201,165,53,0.4);
  outline: 1px solid rgba(201,165,53,0.13);
  outline-offset: -7px;
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.gallery-tile:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 24px rgba(201,165,53,0.08);
}
/* deco corner ticks */
.gallery-tile::before, .gallery-tile::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.gallery-tile::before { top: 5px; left: 5px; border-width: 1px 0 0 1px; }
.gallery-tile::after  { bottom: 5px; right: 5px; border-width: 0 1px 1px 0; }
.gallery-tile:hover::before, .gallery-tile:hover::after { opacity: 1; }

/* the framed image area, drop a photo in here */
.gallery-frame {
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 42%, var(--navy-mid), var(--navy-dark) 78%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201,165,53,0.18);
}
.gallery-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* wax-seal placeholder shown until a real photo is added */
.seal {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--gold-lt), var(--gold) 44%, #94701c 82%);
  box-shadow:
    inset 0 5px 12px rgba(255,255,255,0.28),
    inset 0 -9px 18px rgba(0,0,0,0.4),
    0 8px 22px rgba(0,0,0,0.45);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(7,15,26,0.32);
}
.seal-mark {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: rgba(7,15,26,0.62);
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.gallery-caption { text-align: center; }
.gallery-piece {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.gallery-series {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.gallery-foot {
  text-align: center;
  margin-top: 4rem;
}
.gallery-foot a {
  display: inline-block;
  padding: 0.82rem 2.6rem;
  border: 1px solid var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.gallery-foot a:hover { background: var(--gold); color: var(--navy); }

/* ─── DUCKS AT SEA (compact tradition band) ───── */
.ducks-section {
  padding: 4.5rem 3rem;
  background: var(--navy);
  border-top: 1px solid rgba(201,165,53,0.12);
  border-bottom: 1px solid rgba(201,165,53,0.12);
  position: relative;
}

.ducks-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
}

.ducks-text .section-eyebrow { margin-bottom: 0.4rem; }
.ducks-text .section-title { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }

.ducks-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--cream-muted);
  max-width: 620px;
}
.ducks-body em { color: var(--cream); font-style: normal; }

.ducks-hashtag {
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.duck-card-compact {
  width: 100%;
  max-width: 340px;
  margin-top: 0.6rem;
}

/* The CSS duck card */
.duck-card {
  background: var(--cream);
  color: var(--navy);
  padding: 2.5rem;
  border: 2px solid var(--gold);
  outline: 1px solid rgba(13,27,42,0.2);
  outline-offset: -8px;
  text-align: center;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.duck-card::before, .duck-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  border-style: solid;
}
.duck-card::before { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.duck-card::after  { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }

.duck-card-logo {
  width: 90px; height: 90px;
  margin: 0 auto 1.2rem;
  display: block;
  border-radius: 50%;
}

.duck-card-headline {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.duck-card-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0;
}
.duck-card-rule-line { flex: 1; height: 1px; background: rgba(13,27,42,0.2); }
.duck-card-rule-d    { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.duck-card-fan {
  display: block;
  width: 130px;
  height: auto;
  margin: 1.3rem auto -0.4rem;
}

.duck-card-meta {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: rgba(13,27,42,0.55);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.duck-card-meta strong { color: rgba(13,27,42,0.8); }

/* ─── ARTIST ──────────────────────────────────── */
.artist-section {
  padding: 8rem 3rem;
  background: var(--cream);
  text-align: center;
}

.artist-inner {
  max-width: 680px;
  margin: 0 auto;
}

.artist-eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.artist-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.artist-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.artist-rule-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(13,27,42,0.25), transparent); }
.artist-rule-d { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.artist-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.88;
  color: #2A1F0F;
}
.artist-body + .artist-body { margin-top: 1.2rem; }
.artist-body em { color: #8A6A10; font-style: normal; font-weight: 600; }

.artist-cta {
  display: inline-block;
  margin-top: 2.8rem;
  padding: 0.88rem 2.8rem;
  border: 1px solid var(--navy);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s;
}
.artist-cta:hover { background: var(--navy); color: var(--gold); }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,165,53,0.2);
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.footer-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-muted);
  opacity: 0.5;
  margin-bottom: 2.2rem;
}

.footer-rule {
  width: 240px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-rule-line { flex: 1; height: 1px; background: rgba(201,165,53,0.2); }
.footer-rule-d { width: 5px; height: 5px; background: rgba(201,165,53,0.4); transform: rotate(45deg); flex-shrink: 0; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  margin-bottom: 2.5rem;
}
.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-muted);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--cream-muted);
  opacity: 0.3;
}

/* ─── ANIMATION ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 860px) {
  .ducks-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ducks-text .section-title,
  .ducks-text .section-eyebrow { text-align: center; }
  .ducks-body { text-align: center; }
  .ducks-hashtag { display: block; text-align: center; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-title { font-size: 3rem; }
  .destinations, .gallery, .artist-section { padding: 5rem 1.5rem; }
  .ducks-section { padding: 3.5rem 1.5rem; }
}

/* ─── GALLERY PAGE ADDITIONS ──────────────────── */
.page-head {
  text-align: center;
  padding: 8rem 2rem 2rem;
}
.page-head .section-eyebrow { margin-bottom: 1rem; }
.page-head h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  font-weight: 700;
}
.page-intro {
  max-width: 620px;
  margin: 1.2rem auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-muted);
  line-height: 1.7;
}

.half-head {
  text-align: center;
  padding: 5rem 2rem 0.5rem;
  position: relative;
}
.half-head::before {
  content: '';
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  position: absolute; top: 0; left: 50%;
}
.half-head h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}
.half-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-muted);
  margin-top: 0.5rem;
}

.series {
  padding: 3.2rem 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.series-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.series-head h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
}
.series-head .line { flex: 1; height: 1px; background: rgba(201,165,53,0.35); }
.series-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.8;
  white-space: nowrap;
}

.series .gallery-grid { max-width: none; }

.tag-vary {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* pricing note in commissions half */
.price-card {
  max-width: 520px;
  margin: 1.5rem auto 0;
  border: 1px solid rgba(201,165,53,0.4);
  outline: 1px solid rgba(201,165,53,0.13);
  outline-offset: -6px;
  padding: 1.8rem 2rem;
  text-align: center;
}
.price-card .row {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: var(--cream);
  margin: 0.3rem 0;
}
.price-card .row span { color: var(--gold); }
.price-card .fine {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 1rem;
}

/* featured strip on home */
.featured { padding: 6rem 3rem 2rem; background: var(--navy-dark); }
.featured .gallery-grid { max-width: 1100px; }
.featured-foot { text-align: center; margin-top: 3rem; }
.featured-foot a {
  display: inline-block; padding: 0.85rem 2.8rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, color 0.3s;
}
.featured-foot a:hover { background: var(--gold); color: var(--navy); }

@media (max-width: 640px) {
  .series { padding: 2.5rem 1.5rem 1rem; }
  .featured { padding: 4rem 1.5rem 2rem; }
}


/* ─── LIGHTBOX ────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(7,15,26,0.94);
  backdrop-filter: blur(6px);
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lb-figure {
  max-width: min(78vw, 760px);
  text-align: center;
}
.lb-photo {
  max-width: 100%;
  max-height: 78vh;
  border: 1px solid rgba(201,165,53,0.55);
  outline: 6px solid var(--navy-mid);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
  margin: 0 auto;
}
.lb-caption {
  margin-top: 1.1rem;
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--gold-lt);
  text-transform: uppercase;
}

.lb-close, .lb-arrow {
  background: none;
  border: 1px solid rgba(201,165,53,0.45);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.lb-close:hover, .lb-arrow:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

.lb-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}
.lb-arrow {
  width: 48px;
  height: 72px;
  font-size: 2.2rem;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .lightbox { gap: 0.5rem; padding: 1rem; }
  .lb-figure { max-width: 92vw; }
  .lb-arrow { width: 38px; height: 58px; font-size: 1.8rem; }
  .lb-close { top: 0.8rem; right: 0.8rem; }
}


/* ─── CATALOG ADDITIONS ───────────────────────── */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}
.jump-nav a {
  font-family: 'Marcellus', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.jump-nav a:hover { border-color: var(--gold-lt); }
.series { scroll-margin-top: 90px; }
.rd-num {
  font-family: 'Marcellus', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: #7d8fa5;
  margin-bottom: 0.15rem;
}
