/*
Theme Name: Lumora Gallery
Theme URI: https://lumoragallery.art
Author: Lumora Gallery
Description: Theme nghệ thuật cao cấp cho Lumora Gallery — tone vàng gold sang trọng
Version: 1.0
License: Private
Text Domain: lumora
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --cream: #F5EFE0;
  --ivory: #FAF6EE;
  --charcoal: #1A1714;
  --dark: #0E0C0A;
  --warm-gray: #6B6157;
  --border: rgba(201,168,76,0.25);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .15s; mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .08s, top .08s, width .3s, height .3s, opacity .3s;
  opacity: .6;
}

/* ═══════════════════════════════════════
   NOISE TEXTURE
═══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9990; opacity: .4;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: linear-gradient(to bottom, rgba(14,12,10,.95), transparent);
  border-bottom: 1px solid rgba(201,168,76,.08);
  backdrop-filter: blur(2px);
  transition: background .4s;
}
#site-nav.scrolled { background: rgba(14,12,10,.97); }

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; letter-spacing: .25em;
  color: var(--gold); cursor: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo span {
  font-size: .55rem; letter-spacing: .35em;
  color: var(--warm-gray); display: block; margin-top: 2px;
}

#site-nav ul { display: flex; gap: 2.8rem; list-style: none; }
#site-nav ul li a {
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .18em;
  color: var(--cream); cursor: none;
  opacity: .75; transition: color .3s, opacity .3s;
  position: relative; padding-bottom: 5px;
}
#site-nav ul li a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width .5s, left .5s;
}
#site-nav ul li a:hover { color: var(--gold-light); opacity: 1; }
#site-nav ul li a:hover::after { width: 100%; left: 0; }
#site-nav ul li.current-menu-item a { color: var(--gold); opacity: 1; }

/* ═══════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════ */
.lumora-wrap { min-height: 100vh; }

/* ═══════════════════════════════════════
   HERO — TRANG CHỦ
═══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(150,100,50,.08) 0%, transparent 50%),
    var(--dark);
}
.hero-strokes { position: absolute; inset: 0; overflow: hidden; }
.stroke {
  position: absolute; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
  animation: strokeFloat 12s ease-in-out infinite;
}
.stroke:nth-child(1) { width: 900px; height: 600px; top: -200px; left: -300px; }
.stroke:nth-child(2) { width: 700px; height: 500px; bottom: -150px; right: -200px; animation-delay: -4s; }
.stroke:nth-child(3) { width: 500px; height: 800px; top: 20%; left: 40%; animation-delay: -8s; }
@keyframes strokeFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.05); }
}
.hero-frames { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-frame {
  position: absolute; border: 1px solid rgba(201,168,76,.12);
  animation: frameDrift 20s ease-in-out infinite;
}
.hero-frame:nth-child(1) { width: 180px; height: 220px; top: 15%; left: 8%; }
.hero-frame:nth-child(2) { width: 120px; height: 160px; top: 60%; left: 5%; animation-delay: -6s; }
.hero-frame:nth-child(3) { width: 200px; height: 150px; top: 20%; right: 7%; animation-delay: -3s; }
.hero-frame:nth-child(4) { width: 90px; height: 120px; bottom: 20%; right: 10%; animation-delay: -9s; }
.hero-frame::before { content: ''; position: absolute; inset: 6px; border: 1px solid rgba(201,168,76,.07); }
@keyframes frameDrift {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .4; }
  33% { transform: translateY(-15px) rotate(.5deg); opacity: .7; }
  66% { transform: translateY(8px) rotate(-.3deg); opacity: .5; }
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.hero-eyebrow {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .5em;
  color: var(--gold); margin-bottom: 2rem;
  animation: fadeUp 1.2s ease both; animation-delay: .3s;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem,9vw,8rem);
  font-weight: 600; line-height: .88; letter-spacing: .04em;
  color: var(--ivory); margin-bottom: .3em;
  animation: fadeUp 1.2s ease both; animation-delay: .6s;
}
.hero-title em {
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; color: var(--gold-light);
  display: block; font-size: 1.12em; letter-spacing: .01em; margin-top: .1em;
}
.hero-subtitle {
  font-size: clamp(1rem,1.8vw,1.3rem); font-style: italic;
  color: var(--warm-gray); max-width: 520px; margin: 1.5rem auto;
  line-height: 1.8; animation: fadeUp 1.2s ease both; animation-delay: .9s;
}
.hero-divider {
  width: 80px; height: 1px; margin: 2rem auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: scaleIn 1.2s ease both; animation-delay: 1.1s;
}
.hero-cta-group {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  animation: fadeUp 1.2s ease both; animation-delay: 1.3s;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  opacity: .5; animation: fadeIn 2s ease both; animation-delay: 2s;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text { font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em; color: var(--gold); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .25em;
  color: var(--dark); background: var(--gold);
  border: none; padding: 14px 36px; text-transform: uppercase;
  cursor: none; transition: all .3s; display: inline-block;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light); transform: translateX(-100%); transition: transform .4s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; }
.btn-primary:hover { transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .25em;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 13px 35px; text-transform: uppercase;
  cursor: none; transition: all .3s; display: inline-block;
}
.btn-ghost:hover { background: rgba(201,168,76,.08); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-section {
  padding: 2rem 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; gap: 4rem; animation: marquee 25s linear infinite; width: max-content; }
.marquee-item {
  font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .3em;
  color: var(--warm-gray); white-space: nowrap; display: flex; align-items: center; gap: 1rem;
}
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 4.5rem; position: relative; }
.section-header::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}
.section-label {
  font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: .55em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.2rem; display: block;
}
.section-title {
  font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 300;
  color: var(--ivory); line-height: 1.15; font-family: 'Cormorant Garamond', serif;
}
.section-title em { font-style: italic; color: var(--gold-light); font-weight: 400; }

/* ═══════════════════════════════════════
   GALLERY — PAINTINGS GRID
═══════════════════════════════════════ */
.gallery-hero {
  padding: 160px 5vw 5rem; text-align: center; position: relative;
}
.gallery-hero::before {
  content: 'GALLERY'; position: absolute; top: 120px; left: 50%; transform: translateX(-50%);
  font-family: 'Cinzel', serif; font-size: clamp(5rem,15vw,14rem); font-weight: 700;
  color: rgba(201,168,76,.04); letter-spacing: .15em; white-space: nowrap; pointer-events: none;
}
.gallery-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,7vw,6rem);
  font-weight: 300; color: var(--ivory); letter-spacing: .06em; margin-bottom: 1rem; position: relative;
}
.gallery-hero h1 strong { font-weight: 600; font-style: italic; color: var(--gold-light); }
.gallery-hero p { font-size: 1.15rem; font-style: italic; color: var(--warm-gray); max-width: 540px; margin: 0 auto; line-height: 1.9; }

.paintings-grid { padding: 3rem 5vw 6rem; columns: 3; column-gap: 1.5rem; }
.painting-card {
  break-inside: avoid; margin-bottom: 1.5rem;
  position: relative; cursor: none; overflow: hidden;
  border: 1px solid transparent; transition: border-color .4s;
  background: var(--charcoal);
}
.painting-card:hover { border-color: var(--border); }
.painting-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: linear-gradient(to bottom, var(--gold), transparent);
  transition: height .6s; z-index: 1;
}
.painting-card:hover::before { height: 100%; }

.painting-img-wrap { overflow: hidden; position: relative; }
.painting-img-wrap img {
  width: 100%; display: block; object-fit: cover;
  filter: sepia(.1) brightness(.9); transition: transform .8s, filter .6s;
}
.painting-card:hover .painting-img-wrap img { transform: scale(1.04); filter: sepia(0) brightness(1); }

.painting-info { padding: 1rem; }
.painting-num { font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em; color: rgba(201,168,76,.6); margin-bottom: .4rem; display: block; }
.painting-title { font-size: 1rem; color: var(--ivory); margin-bottom: .2rem; }
.painting-artist { font-size: .85rem; font-style: italic; color: var(--warm-gray); margin-bottom: .5rem; }
.painting-excerpt { font-size: .85rem; color: var(--warm-gray); line-height: 1.7; font-style: italic; }
.painting-footer { display: flex; justify-content: space-between; align-items: center; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid rgba(201,168,76,.1); }
.painting-price { font-family: 'Cinzel', serif; font-size: .75rem; color: var(--gold-light); }
.painting-inquire {
  font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .2em;
  color: var(--gold); border: 1px solid var(--border); padding: 4px 12px;
  cursor: none; background: none; transition: all .3s;
}
.painting-inquire:hover { background: var(--gold); color: var(--dark); }

/* SINGLE PAINTING */
.single-painting { padding: 140px 5vw 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.single-painting-img img { width: 100%; border: 1px solid var(--border); }
.single-painting-info h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--ivory); margin-bottom: .5rem; }
.painting-meta { margin: 1.5rem 0; padding: 1.5rem; border: 1px solid var(--border); background: var(--charcoal); }
.painting-meta-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid rgba(201,168,76,.08); font-size: .9rem; }
.painting-meta-row:last-child { border: none; }
.painting-meta-row span:first-child { font-family: 'Cinzel', serif; font-size: .6rem; letter-spacing: .2em; color: var(--warm-gray); }
.painting-meta-row span:last-child { color: var(--ivory); }
.painting-story-title { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .3em; color: var(--gold); margin: 2rem 0 .8rem; }
.painting-story { font-size: 1rem; color: var(--warm-gray); line-height: 2; margin-bottom: 2rem; font-style: italic; }
.painting-price-large { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 2rem; }

/* ═══════════════════════════════════════
   GALLERY FILTERS
═══════════════════════════════════════ */
.gallery-filters { padding: 2rem 5vw; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.filter-label { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .3em; color: var(--cream); margin-right: .5rem; opacity: .65; }
.filter-btn {
  font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .18em;
  color: var(--cream); background: none; border: 1px solid transparent;
  padding: 7px 18px; cursor: pointer; transition: all .35s; opacity: .6;
}
.filter-btn:hover, .filter-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,.07); opacity: 1; }

/* ═══════════════════════════════════════
   ARTICLES / DECOR PAGE
═══════════════════════════════════════ */
.decor-hero { padding: 160px 5vw 5rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; min-height: 70vh; }
.decor-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 300; color: var(--ivory); margin-bottom: 1.5rem; line-height: 1.15; }
.decor-hero h1 em { font-style: italic; color: var(--gold-light); }
.decor-hero p { font-size: 1.1rem; color: var(--warm-gray); line-height: 2.1; }
.decor-hero-visual {
  aspect-ratio: 3/4; background: linear-gradient(135deg,#1A1A2E,#16213E 50%,#0F3460);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}

.articles-grid { padding: 2rem 5vw 6rem; columns: 3; column-gap: 1.5rem; }
.article-card {
  break-inside: avoid; margin-bottom: 1.5rem;
  border: 1px solid var(--border); cursor: pointer;
  transition: all .4s; overflow: hidden;
  background: var(--charcoal); position: relative;
}
.article-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  transition: height .5s;
}
.article-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.article-card:hover::before { height: 100%; }
.article-thumb { aspect-ratio: 16/9; overflow: hidden; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.2) brightness(.7); transition: filter .5s, transform .6s; }
.article-card:hover .article-thumb img { filter: sepia(0) brightness(.85); transform: scale(1.03); }
.article-body { padding: 1.5rem; }
.article-tag {
  font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .35em;
  color: var(--gold); text-transform: uppercase; margin-bottom: .9rem;
  display: inline-block; border: 1px solid rgba(201,168,76,.25); padding: 4px 12px;
  background: rgba(201,168,76,.04);
}
.article-body h2 { font-size: 1.05rem; color: var(--ivory); margin-bottom: .8rem; line-height: 1.5; }
.article-body p { font-size: .9rem; color: var(--warm-gray); line-height: 1.9; }
.article-read-more { margin-top: 1.2rem; font-family: 'Cinzel', serif; font-size: .55rem; letter-spacing: .2em; color: var(--gold); display: inline-block; transition: all .3s; }

/* SINGLE ARTICLE */
.single-article { padding: 140px 0 6rem; }
.article-inner { max-width: 760px; margin: 0 auto; padding: 0 5vw; }
.article-inner .article-tag { margin-bottom: 1.5rem; }
.article-inner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--ivory); margin-bottom: 1rem; line-height: 1.3; }
.article-meta { font-size: .85rem; font-style: italic; color: var(--warm-gray); margin-bottom: 2rem; }
.article-featured-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--border); margin-bottom: 2.5rem; }
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-content { font-size: 1.05rem; color: var(--cream); line-height: 2.1; }
.article-content p { margin-bottom: 1.5rem; }
.article-content h2, .article-content h3 { font-family: 'Cinzel', serif; font-size: .85rem; letter-spacing: .15em; color: var(--gold); margin: 2rem 0 .8rem; }
.article-content ul { margin: 0 0 1.5rem 1.5rem; }
.article-content ul li { margin-bottom: .6rem; }
.article-content strong { color: var(--ivory); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-page { padding: 160px 5vw 6rem; }
.about-page-header { text-align: center; margin-bottom: 7rem; position: relative; }
.about-page-header::before {
  content: 'LUMORA'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-family: 'Cinzel', serif; font-size: clamp(4rem,12vw,10rem); font-weight: 700;
  color: rgba(201,168,76,.035); letter-spacing: .2em; white-space: nowrap; pointer-events: none;
}
.about-page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,7vw,6rem); font-weight: 300; color: var(--ivory); margin-bottom: 1.5rem; position: relative; letter-spacing: .05em; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; margin-bottom: 8rem; }
.about-story-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 300; color: var(--ivory); margin-bottom: 2rem; line-height: 1.35; }
.about-story-text h2 em { font-style: italic; color: var(--gold-light); }
.about-story-text p { font-size: 1.05rem; color: var(--warm-gray); line-height: 2; margin-bottom: 1.2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 6rem; }
.value-card { padding: 2.5rem; border: 1px solid var(--border); background: var(--charcoal); }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-style: italic; color: rgba(201,168,76,.12); margin-bottom: .8rem; line-height: 1; }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--ivory); margin-bottom: .8rem; }
.value-card p { font-size: .9rem; color: var(--warm-gray); line-height: 1.9; }

/* TEAM */
.team-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 300; color: var(--ivory); text-align: center; margin-bottom: .8rem; }
.team-subtitle { text-align: center; font-style: italic; color: var(--warm-gray); margin-bottom: 3.5rem; font-size: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 3/4; margin-bottom: 1.4rem; background: var(--charcoal); border: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 3rem; color: rgba(201,168,76,.2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.1) brightness(.9); }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--ivory); margin-bottom: .3rem; }
.team-role { font-size: .85rem; font-style: italic; color: var(--gold); }
.team-bio { font-size: .9rem; color: var(--warm-gray); line-height: 1.9; margin-top: .9rem; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page { padding: 160px 5vw 6rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; min-height: 80vh; align-items: start; }
.contact-left h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 300; color: var(--ivory); margin-bottom: 1.5rem; letter-spacing: .04em; }
.contact-left p { font-size: 1.05rem; color: var(--warm-gray); line-height: 2.1; margin-bottom: 3rem; }
.contact-info-item { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(201,168,76,.1); }
.contact-icon { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--gold); background: rgba(201,168,76,.04); }
.contact-info-text strong { display: block; font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .2em; color: var(--ivory); margin-bottom: .4rem; }
.contact-info-text span { font-size: .95rem; color: var(--warm-gray); line-height: 1.7; }
.contact-form-wrap { background: var(--charcoal); padding: 3rem; border: 1px solid var(--border); }
.contact-form-wrap h2 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--ivory); margin-bottom: 2rem; letter-spacing: .2em; }
.contact-form-wrap .wpcf7-form-control-wrap { display: block; margin-bottom: 1.5rem; }
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); color: var(--cream);
  padding: 12px 16px; font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  outline: none; transition: border-color .3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--gold); }
.contact-form-wrap textarea { min-height: 120px; resize: vertical; }
.contact-form-wrap label { display: block; font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: .25em; color: var(--warm-gray); text-transform: uppercase; margin-bottom: .6rem; }
.contact-form-wrap .wpcf7-submit { background: var(--gold); color: var(--dark); font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .25em; border: none; padding: 14px 36px; cursor: pointer; width: 100%; transition: background .3s; }
.contact-form-wrap .wpcf7-submit:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer {
  padding: 4rem 5vw 0;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; letter-spacing: .25em; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-tagline { font-size: .95rem; font-style: italic; color: var(--warm-gray); line-height: 2; margin-bottom: 1.8rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--warm-gray); font-size: .7rem; cursor: none; transition: all .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
#site-footer .footer-col h4 { font-family: 'Cinzel', serif; font-size: .58rem; letter-spacing: .35em; color: var(--gold); margin-bottom: 1.4rem; opacity: .8; }
#site-footer .footer-col ul { list-style: none; }
#site-footer .footer-col ul li { margin-bottom: .7rem; }
#site-footer .footer-col ul li a { font-size: .9rem; color: rgba(107,97,87,.7); cursor: none; transition: color .3s; }
#site-footer .footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { padding: 2rem 5vw 1.5rem; border-top: 1px solid rgba(201,168,76,.06); display: flex; justify-content: space-between; align-items: center; margin-top: 4rem; }
.footer-copy { font-size: .75rem; color: rgba(107,97,87,.5); }

/* ═══════════════════════════════════════
   HOME — FEATURED GRID
═══════════════════════════════════════ */
.featured-strip { padding: 6rem 5vw; position: relative; overflow: hidden; }
.featured-strip::before { content: ''; position: absolute; top: 0; left: 5vw; right: 5vw; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }
.featured-strip::after { content: 'LUMORA'; position: absolute; bottom: -20px; right: -20px; font-family: 'Cinzel', serif; font-size: 12rem; font-weight: 700; color: rgba(201,168,76,.025); letter-spacing: .15em; pointer-events: none; line-height: 1; }
.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 1.5rem; align-items: end; }
.feat-card { position: relative; overflow: hidden; cursor: none; background: var(--charcoal); }
.feat-card:nth-child(2) { margin-top: 60px; }
.feat-card:nth-child(3) { margin-top: 20px; }
.feat-card-img { width: 100%; object-fit: cover; display: block; filter: sepia(.15) brightness(.9); transition: transform .8s, filter .6s; }
.feat-card:hover .feat-card-img { transform: scale(1.04); filter: sepia(0) brightness(1); }
.feat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,10,.95) 0%, rgba(14,12,10,.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.feat-number { font-family: 'Cinzel', serif; font-size: .5rem; letter-spacing: .4em; color: rgba(201,168,76,.7); margin-bottom: .6rem; display: block; }
.feat-title { font-size: 1.1rem; color: var(--ivory); margin-bottom: .3rem; }
.feat-artist { font-size: .85rem; font-style: italic; color: var(--warm-gray); }
.feat-price { font-family: 'Cinzel', serif; font-size: .75rem; color: var(--gold-light); margin-top: .7rem; }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lumora-lightbox { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,.95); align-items: center; justify-content: center; padding: 2rem; }
.lumora-lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .3em; color: var(--warm-gray); background: none; border: none; cursor: pointer; transition: color .3s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-content { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; max-width: 1100px; max-height: 90vh; align-items: center; }
.lightbox-img { border: 1px solid var(--border); overflow: hidden; }
.lightbox-img img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-info h2 { font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--ivory); margin-bottom: .5rem; }
.lightbox-artist { font-size: 1.1rem; font-style: italic; color: var(--gold-light); margin-bottom: 1.5rem; }
.lightbox-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.lightbox-story { font-size: 1rem; color: var(--warm-gray); line-height: 2; margin-bottom: 2rem; }
.lightbox-price { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 2rem; }

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .featured-grid, .about-story, .contact-page, .decor-hero, .lightbox-content { grid-template-columns: 1fr; }
  .paintings-grid, .articles-grid { columns: 2; }
  .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  #site-footer { grid-template-columns: 1fr 1fr; }
  #site-nav ul { gap: 1.5rem; }
  .featured-strip::after { display: none; }
}
@media (max-width: 600px) {
  .paintings-grid, .articles-grid { columns: 1; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  #site-footer { grid-template-columns: 1fr; }
  #site-nav ul { display: none; }
}
