/* ===================================================
   PMRC — Premium Art & Culture Theme
   =================================================== */

/* 1. Imports & Variables */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --gold:     #c8a96e;
  --gold-lt:  #e0c88a;
  --dark:     #0f0f0f;
  --navy:     #1a1a2e;
  --cream:    #f5f0e8;
  --cream-dk: #ede7da;
  --text:     #2d2d2d;
  --muted:    #6b6b6b;
  --white:    #ffffff;
  --border:   rgba(200,169,110,0.25);
  --shadow:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.18);
  --radius:   4px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
p { line-height: 1.8; }

/* 3. Utility */
.pmrc-gold       { color: var(--gold); }
.pmrc-bg-dark    { background: var(--dark); }
.pmrc-bg-navy    { background: var(--navy); }
.pmrc-bg-cream   { background: var(--cream); }
.pmrc-text-white { color: var(--white); }
.pmrc-section    { padding: 100px 0; }
.pmrc-section-sm { padding: 60px 0; }
.container-pmrc  { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* 4. Section Header */
.pmrc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pmrc-section-label::before,
.pmrc-section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.pmrc-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.pmrc-heading-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.pmrc-heading-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.pmrc-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.pmrc-divider-center { margin: 24px auto; }

/* ===================================================
   5. NAVBAR
   =================================================== */
.pmrc-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1300;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(16,20,45,0.93) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pmrc-navbar.scrolled {
  background: linear-gradient(135deg, rgba(26,26,46,0.98) 0%, rgba(14,17,38,0.98) 100%);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
  height: 68px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.pmrc-navbar.dark-nav {
  background: linear-gradient(135deg, #1a1a2e 0%, #0e1126 100%);
}
.pmrc-navbar.dark-nav.scrolled {
  background: linear-gradient(135deg, rgba(26,26,46,0.98) 0%, rgba(14,17,38,0.98) 100%);
}

.pmrc-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}
.pmrc-navbar.scrolled .pmrc-logo img { height: 100px; }
.pmrc-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pmrc-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}
.pmrc-nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition);
}
.pmrc-navbar.scrolled .pmrc-nav-links a { color: var(--white); }
.pmrc-navbar.dark-nav .pmrc-nav-links a { color: var(--white) !important; }

.pmrc-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.pmrc-nav-links a:hover::after,
.pmrc-nav-links a.active::after { transform: scaleX(1); }
.pmrc-nav-links a:hover,
.pmrc-nav-links a.active { color: var(--gold) !important; }

.pmrc-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}
.pmrc-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.pmrc-navbar.scrolled .pmrc-nav-hamburger span { background: var(--white); }
.pmrc-nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pmrc-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.pmrc-nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.pmrc-mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76,0,0.24,1);
}
.pmrc-mobile-drawer.open { transform: translateX(0); }
.pmrc-mobile-drawer ul { list-style: none; }
.pmrc-mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.pmrc-mobile-drawer ul li a {
  display: block;
  padding: 22px 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition), padding-left var(--transition);
}
.pmrc-mobile-drawer ul li a:hover {
  color: var(--gold);
  padding-left: 16px;
}
.pmrc-mobile-drawer-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none; border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition), transform var(--transition);
}
.pmrc-mobile-drawer-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ===================================================
   6. HERO / SLIDER
   =================================================== */
.pmrc-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.pmrc-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.pmrc-hero-slide.active { opacity: 1; }
.pmrc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.72) 0%, rgba(15,15,15,0.38) 60%, rgba(15,15,15,0.55) 100%);
}
.pmrc-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10%;
  padding-top: 80px;
}
.pmrc-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.pmrc-hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.pmrc-hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.pmrc-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.78);
  margin-top: 20px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}
.pmrc-hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}
.pmrc-hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.pmrc-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.pmrc-hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.pmrc-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.pmrc-hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: var(--white);
  animation: scrollLine 1.8s infinite;
}

/* No-image fallback hero */
.pmrc-hero-fallback {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 60%);
}

/* ===================================================
   7. BUTTONS
   =================================================== */
.btn-pmrc,
.btn-pmrc-outline,
.btn-pmrc-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-pmrc {
  background: var(--gold);
  color: var(--dark);
}
.btn-pmrc:hover {
  background: var(--gold-lt);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.btn-pmrc-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-pmrc-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-pmrc-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-pmrc-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-pmrc-dark {
  background: var(--dark);
  color: var(--white);
  border: none;
}
.btn-pmrc-dark:hover {
  background: #222;
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===================================================
   8. PAGE HERO (inner pages)
   =================================================== */
.pmrc-page-hero {
  height: 340px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
}
.pmrc-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.pmrc-page-hero:hover .pmrc-page-hero-bg { transform: scale(1); }
.pmrc-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.5) 100%);
}
.pmrc-page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}
.pmrc-page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.pmrc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.pmrc-breadcrumb a { color: var(--gold); }
.pmrc-breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===================================================
   9. ABOUT / FEATURE SECTIONS
   =================================================== */
.pmrc-about-section {
  padding: 100px 0;
  background: var(--white);
}
.pmrc-about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.pmrc-about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pmrc-about-img-wrap:hover img { transform: scale(1.04); }
.pmrc-about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}
.pmrc-about-text { padding-left: 48px; }

/* Focus / Highlight Band */
.pmrc-focus-band {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pmrc-focus-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.pmrc-focus-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.pmrc-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
}
.pmrc-focus-item {
  padding: 20px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}
.pmrc-focus-item:hover {
  color: var(--gold);
  background: rgba(200,169,110,0.06);
}
.pmrc-focus-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.pmrc-focus-item:hover::before { opacity: 1; }

/* ===================================================
   10. NEWS / POSTS
   =================================================== */
.pmrc-news-section { padding: 100px 0; background: var(--cream); }

.pmrc-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.pmrc-news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pmrc-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pmrc-news-card-img {
  overflow: hidden;
  height: 240px;
  position: relative;
}
.pmrc-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pmrc-news-card:hover .pmrc-news-card-img img { transform: scale(1.06); }
.pmrc-news-card-date {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.pmrc-news-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmrc-news-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.pmrc-news-card-title a { color: var(--dark); transition: color var(--transition); }
.pmrc-news-card-title a:hover { color: var(--gold); }
.pmrc-news-card-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.pmrc-news-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--cream-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Single Post */
.pmrc-post-hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.pmrc-post-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pmrc-post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px;
}
.pmrc-post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pmrc-post-meta span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pmrc-post-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}
.pmrc-post-body p { margin-bottom: 24px; }
.pmrc-post-body h2,h3 { margin: 40px 0 16px; }
.pmrc-post-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 48px 0;
}
.pmrc-post-images a img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.pmrc-post-images a:hover img { transform: scale(1.03); }

/* Sidebar */
.pmrc-sidebar { padding-left: 32px; }
.pmrc-sidebar-widget {
  margin-bottom: 40px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.pmrc-sidebar-widget h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dk);
}
.pmrc-sidebar-cats { list-style: none; }
.pmrc-sidebar-cats li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}
.pmrc-sidebar-cats li a {
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition), padding-left var(--transition);
}
.pmrc-sidebar-cats li a:hover { color: var(--gold); padding-left: 8px; }

.pmrc-recent-post {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pmrc-recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pmrc-recent-post-img {
  width: 80px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.pmrc-recent-post-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.pmrc-recent-post:hover .pmrc-recent-post-img img { transform: scale(1.08); }
.pmrc-recent-post-info h5 {
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.4;
}
.pmrc-recent-post-info time { font-size: 12px; color: var(--muted); }

/* News Listing */
.pmrc-news-listing { padding: 100px 0; }
.pmrc-news-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}
.pmrc-news-article:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pmrc-news-article:nth-child(even) { direction: rtl; }
.pmrc-news-article:nth-child(even) > * { direction: ltr; }
.pmrc-news-article-img {
  overflow: hidden;
  min-height: 360px;
}
.pmrc-news-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.pmrc-news-article:hover .pmrc-news-article-img img { transform: scale(1.05); }
.pmrc-news-article-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pmrc-news-article-time {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.pmrc-news-article-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.3;
}
.pmrc-news-article-title a { color: var(--dark); }
.pmrc-news-article-title a:hover { color: var(--gold); }
.pmrc-news-article-excerpt {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ===================================================
   11. GALLERY
   =================================================== */
.pmrc-gallery-section { padding: 80px 0; }

.pmrc-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pmrc-filter-btn {
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--cream-dk);
  color: var(--muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--transition);
}
.pmrc-filter-btn.active,
.pmrc-filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.pmrc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.pmrc-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.pmrc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pmrc-gallery-item:hover img { transform: scale(1.08); }
.pmrc-gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.pmrc-gallery-item:hover .pmrc-gallery-caption { opacity: 1; }
.pmrc-gallery-caption h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.pmrc-gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  opacity: 0;
  transition: all var(--transition);
}
.pmrc-gallery-item:hover .pmrc-gallery-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===================================================
   12. SHOP / ART GALLERY
   =================================================== */
.pmrc-shop-section { padding: 80px 0; background: var(--cream); }

.pmrc-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.pmrc-shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pmrc-shop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.pmrc-shop-card-img {
  overflow: hidden;
  height: 300px;
  position: relative;
}
.pmrc-shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pmrc-shop-card:hover .pmrc-shop-card-img img { transform: scale(1.06); }
.pmrc-shop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.pmrc-shop-card:hover .pmrc-shop-card-overlay { opacity: 1; }
.pmrc-shop-card-body { padding: 24px; }
.pmrc-shop-card-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.pmrc-shop-card-title a { color: var(--dark); }
.pmrc-shop-card-title a:hover { color: var(--gold); }
.pmrc-shop-card-artist {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.pmrc-status-badge {
  display: inline-block;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.pmrc-status-available { background: rgba(34,197,94,0.1); color: #16a34a; }
.pmrc-status-sold     { background: rgba(239,68,68,0.1);  color: #dc2626; }

/* Shop Single */
.pmrc-product-section { padding: 80px 0; }
.pmrc-product-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.pmrc-product-img-wrap img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: var(--cream);
}
.pmrc-product-info { padding-left: 48px; }
.pmrc-product-title { font-size: 2rem; margin-bottom: 8px; }
.pmrc-product-artist {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.pmrc-stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 20px; }
.pmrc-product-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 14px;
}
.pmrc-product-meta-row strong { font-weight: 600; min-width: 80px; }
.pmrc-product-form { margin-top: 32px; }
.pmrc-form-group { margin-bottom: 16px; }
.pmrc-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.pmrc-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.pmrc-form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}

/* Tabs */
.pmrc-tabs {
  display: flex;
  border-bottom: 2px solid var(--cream-dk);
  margin: 48px 0 32px;
  gap: 0;
}
.pmrc-tab-btn {
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  position: relative;
  transition: color var(--transition);
}
.pmrc-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pmrc-tab-btn.active { color: var(--dark); }
.pmrc-tab-btn.active::after { transform: scaleX(1); }
.pmrc-tab-pane { display: none; animation: fadeIn 0.4s ease; }
.pmrc-tab-pane.active { display: block; }

/* ===================================================
   13. ABOUT PAGE
   =================================================== */
.pmrc-team-section { padding: 80px 0; background: var(--cream); }
.pmrc-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.pmrc-team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pmrc-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pmrc-team-card-img {
  height: 300px;
  overflow: hidden;
}
.pmrc-team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pmrc-team-card:hover .pmrc-team-card-img img { transform: scale(1.05); }
.pmrc-team-card-info {
  padding: 24px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.pmrc-team-card:hover .pmrc-team-card-info { border-color: var(--gold); }
.pmrc-team-card-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.pmrc-team-card-info span { font-size: 13px; color: var(--gold); font-weight: 500; }

.pmrc-clients-section { padding: 60px 0; }
.pmrc-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}
.pmrc-client-card {
  padding: 24px;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.pmrc-client-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,169,110,0.15);
}
.pmrc-client-card img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--transition);
}
.pmrc-client-card:hover img { filter: none; }

/* ===================================================
   14. CONTACT
   =================================================== */
.pmrc-contact-section { padding: 100px 0; }
.pmrc-contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  height: 100%;
}
.pmrc-contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}
.pmrc-contact-info-item:last-child { margin-bottom: 0; }
.pmrc-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.pmrc-contact-info-item h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}
.pmrc-contact-info-item p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

.pmrc-contact-form-wrap {
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pmrc-contact-map iframe {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ===================================================
   15. FOOTER
   =================================================== */
.pmrc-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.pmrc-footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pmrc-footer-logo img {
  height: 52px;
  filter: brightness(1.1);
  object-fit: contain;
}
.pmrc-footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.pmrc-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.pmrc-footer-links { list-style: none; }
.pmrc-footer-links li { margin-bottom: 12px; }
.pmrc-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), padding-left var(--transition);
}
.pmrc-footer-links a::before {
  content: '→';
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 12px;
}
.pmrc-footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.pmrc-footer-links a:hover::before { opacity: 1; }

.pmrc-footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pmrc-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.pmrc-social-links {
  display: flex;
  gap: 12px;
  list-style: none;
}
.pmrc-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}
.pmrc-social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.1);
}

/* ===================================================
   16. PAGINATION
   =================================================== */
.pmrc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0 0;
  flex-wrap: wrap;
}
.pmrc-pagination .page-item .page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}
.pmrc-pagination .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.pmrc-pagination .page-item .page-link:hover:not(.disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ===================================================
   17. MISSION SECTION
   =================================================== */
.pmrc-mission {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.pmrc-mission::before {
  content: '"';
  position: absolute;
  top: 40px; left: 8%;
  font-family: 'Playfair Display', serif;
  font-size: 15rem;
  line-height: 1;
  color: var(--cream);
  z-index: 0;
  pointer-events: none;
}
.pmrc-mission-content { position: relative; z-index: 1; }
.pmrc-mission-slogan {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
  font-family: 'Cormorant Garamond', serif;
}
.pmrc-mission-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

/* ===================================================
   18. PRODUCT TABLE
   =================================================== */
.pmrc-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pmrc-data-table tr {
  border-bottom: 1px solid var(--cream-dk);
}
.pmrc-data-table td {
  padding: 16px 0;
  vertical-align: middle;
}
.pmrc-data-table td:first-child {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  width: 140px;
}
.pmrc-data-table td:last-child { color: var(--muted); }

/* ===================================================
   19. STORY SECTION
   =================================================== */
.pmrc-story-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pmrc-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.07) 0%, transparent 70%);
}

/* ===================================================
   20. ANIMATIONS
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { height: 60px; opacity: 0.7; }
  50%  { height: 20px; opacity: 1; }
  100% { height: 60px; opacity: 0.7; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* AOS overrides */
[data-aos] { transition-delay: 0ms !important; }

/* ===================================================
   21. RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .pmrc-about-text  { padding-left: 24px; }
  .pmrc-product-info { padding-left: 24px; }
  .pmrc-sidebar { padding-left: 0; margin-top: 40px; }
  .pmrc-news-article { grid-template-columns: 1fr; }
  .pmrc-news-article:nth-child(even) { direction: ltr; }
  .pmrc-news-article-img { min-height: 280px; }
}
@media (max-width: 768px) {
  .pmrc-navbar { padding: 0 24px; }
  .pmrc-nav-links { display: none; }
  .pmrc-nav-hamburger { display: flex; }
  .pmrc-hero-content { padding: 0 24px; padding-top: 80px; }
  .pmrc-page-hero-content { padding: 0 24px; }
  .pmrc-about-text { padding-left: 0; margin-top: 32px; }
  .pmrc-product-info { padding-left: 0; margin-top: 32px; }
  .pmrc-contact-form-wrap { padding: 32px 24px; }
  .pmrc-contact-info-card { padding: 32px 24px; }
  .pmrc-news-article-body { padding: 32px 24px; }
  .pmrc-section { padding: 64px 0; }
  .pmrc-footer-bottom { flex-direction: column; text-align: center; }
  .container-pmrc { padding: 0 20px; }
  .pmrc-mobile-drawer { padding: 80px 28px; }
  .pmrc-mobile-drawer ul li a { font-size: 1.6rem; }
  .pmrc-hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .pmrc-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .pmrc-shop-grid    { grid-template-columns: 1fr; }
  .pmrc-team-grid    { grid-template-columns: 1fr; }
}

/* ===================================================
   22. OVERRIDE LEGACY CLASSES
   =================================================== */
body.hClassViii { font-family: 'Inter', system-ui, sans-serif !important; }
#pageWrapper { padding-top: 0 !important; }
.phStickyWrap,
#pageHeader,
.hdHolder,
.navbarSide,
.page-direction,
.bsSlidViv > div:not(.pmrc-hero) > .introBannerBlock {
  /* we replace these with pmrc components */
}

/* ===================================================
   23. TOP BAR
   =================================================== */
.pmrc-topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  padding: 8px 0;
  font-size: 12px;
  position: relative;
  z-index: 1200;
}
.pmrc-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pmrc-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pmrc-topbar-left a,
.pmrc-topbar-right a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pmrc-topbar-left a:hover,
.pmrc-topbar-right a:hover { color: var(--gold); }
.pmrc-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===================================================
   24. STATS BAND
   =================================================== */
.pmrc-stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, #16213e 100%);
  padding: 40px 0;
  border-bottom: 2px solid rgba(200,169,110,0.2);
}
.pmrc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pmrc-stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pmrc-stat-item:last-child { border-right: none; }
.pmrc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pmrc-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 640px) {
  .pmrc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pmrc-stat-item:nth-child(2) { border-right: none; }
  .pmrc-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .pmrc-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
}

/* ===================================================
   25. FEATURED ARTWORKS (4-col grid)
   =================================================== */
.pmrc-featured-section {
  padding: 80px 0;
  background: var(--white);
}
.pmrc-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.pmrc-shop-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .pmrc-shop-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .pmrc-shop-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pmrc-shop-grid-4 { grid-template-columns: 1fr; } }

.pmrc-shop-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 4px 0 0;
}
.pmrc-badge-sold,
.pmrc-badge-reserved {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
}
.pmrc-badge-sold { background: #e74c3c; color: #fff; }
.pmrc-badge-reserved { background: #e67e22; color: #fff; }
.pmrc-badge-featured { background: var(--gold); color: var(--dark); }

.pmrc-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2rem;
}
.btn-pmrc-sm {
  display: inline-block;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--dark) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-pmrc-sm:hover { background: #fff; color: var(--dark) !important; }

.pmrc-status-reserved {
  background: rgba(230,126,34,0.12);
  color: #e67e22;
  border: 1px solid rgba(230,126,34,0.3);
}

/* ===================================================
   26. ART CATEGORIES GRID
   =================================================== */
.pmrc-categories-section {
  padding: 80px 0;
  background: var(--cream);
}
.pmrc-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.pmrc-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  text-align: center;
}
.pmrc-category-card:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,26,46,0.15);
}
.pmrc-category-icon {
  font-size: 1.8rem;
  color: var(--gold);
}
.pmrc-category-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===================================================
   27. ARTISTS SECTION (home)
   =================================================== */
.pmrc-artists-section {
  padding: 80px 0;
  background: var(--navy);
}
.pmrc-artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.pmrc-artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 12px;
  transition: transform var(--transition);
}
.pmrc-artist-card:hover { transform: translateY(-6px); }
.pmrc-artist-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(200,169,110,0.4);
  transition: border-color var(--transition);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pmrc-artist-card:hover .pmrc-artist-img { border-color: var(--gold); }
.pmrc-artist-img img { width: 100%; height: 100%; object-fit: cover; }
.pmrc-artist-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 2.5rem;
}
.pmrc-artist-info { color: var(--white); }
.pmrc-artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--white);
}
.pmrc-artist-specialty {
  font-size: 12px;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.05em;
}
.pmrc-artist-location {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 4px 0 0;
}
.pmrc-artist-location i { color: var(--gold); margin-right: 4px; }

/* ===================================================
   28. ARTISTS INDEX PAGE (full grid)
   =================================================== */
.pmrc-artists-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.pmrc-artist-card-lg {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition);
  display: block;
}
.pmrc-artist-card-lg:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(26,26,46,0.1);
  transform: translateY(-4px);
}
.pmrc-artist-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream);
}
.pmrc-artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pmrc-artist-card-lg:hover .pmrc-artist-card-img img { transform: scale(1.05); }
.pmrc-artist-placeholder-lg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 3rem;
  background: var(--cream);
}
.pmrc-badge-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.pmrc-artist-card-body {
  padding: 20px;
}
.pmrc-artist-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--dark);
}
.pmrc-artist-card-specialty {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.05em;
}
.pmrc-artist-card-location {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}
.pmrc-artist-card-location i { color: var(--gold); margin-right: 4px; }
.pmrc-artist-card-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 12px;
}
.pmrc-artist-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===================================================
   29. ARTIST SOCIAL LINKS
   =================================================== */
.pmrc-artist-social {
  display: flex;
  gap: 10px;
}
.pmrc-artist-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
}
.pmrc-artist-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ===================================================
   30. SERVICES SECTION (home band)
   =================================================== */
.pmrc-services-section {
  padding: 80px 0;
  background: var(--white);
}
.pmrc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.pmrc-service-card {
  padding: 32px 24px;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
}
.pmrc-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(26,26,46,0.08);
  transform: translateY(-4px);
}
.pmrc-service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.pmrc-service-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.pmrc-service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   31. NAVBAR DROPDOWN (categories)
   =================================================== */
.pmrc-dropdown { position: relative; }
.pmrc-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e8e0d4;
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 2000;
}
.pmrc-dropdown:hover .pmrc-dropdown-menu { display: block; }
/* Invisible bridge: covers the gap between nav link and dropdown so hover never breaks */
.pmrc-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.pmrc-dropdown-menu li a,
#pmrcNavbar .pmrc-dropdown-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #2d2d2d !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease !important;
  border: none !important;
  white-space: nowrap;
  background: transparent !important;
}
.pmrc-dropdown-menu li a::after,
#pmrcNavbar .pmrc-dropdown-menu li a::after { display: none !important; }
.pmrc-dropdown-menu li a:hover,
#pmrcNavbar .pmrc-dropdown-menu li a:hover {
  background: #f5f0e8 !important;
  color: #c8a96e !important;
  padding-left: 28px !important;
}
.pmrc-dropdown-menu li:first-child {
  border-bottom: 1px solid #e8e0d4;
  margin-bottom: 4px;
}
.pmrc-dropdown-menu li:first-child a,
#pmrcNavbar .pmrc-dropdown-menu li:first-child a {
  font-weight: 700 !important;
  color: #c8a96e !important;
}

/* ===================================================
   32. BTN VARIANTS
   =================================================== */
.btn-pmrc-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all var(--transition);
}
.btn-pmrc-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-pmrc-gold {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-pmrc-gold:hover { background: #b8955a; color: var(--dark) !important; }

/* ===================================================
   33. ABOUT SECTION
   =================================================== */
.pmrc-about-section {
  padding: 80px 0;
  background: var(--white);
}
.pmrc-about-img-wrap {
  position: relative;
}
.pmrc-about-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.pmrc-about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}

/* ===================================================
   34. NEWS SECTION (home)
   =================================================== */
.pmrc-news-section {
  padding: 80px 0;
  background: var(--cream);
}
.pmrc-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .pmrc-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pmrc-news-grid { grid-template-columns: 1fr; } }

.pmrc-news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dk);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pmrc-news-card:hover {
  box-shadow: 0 16px 48px rgba(26,26,46,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.pmrc-news-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-dk);
}
.pmrc-news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pmrc-news-card:hover .pmrc-news-card-img img { transform: scale(1.06); }
.pmrc-news-card-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.pmrc-news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmrc-news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0 10px;
  line-height: 1.4;
}
.pmrc-news-card-title a { color: var(--dark); text-decoration: none; }
.pmrc-news-card-title a:hover { color: var(--gold); }
.pmrc-news-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin: 0 0 16px;
}
.pmrc-news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--cream-dk);
  padding-top: 14px;
  margin-top: auto;
}

/* ===================================================
   35. CLIENTS STRIP
   =================================================== */
.pmrc-clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.pmrc-client-logo {
  opacity: 0.55;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pmrc-client-logo:hover { opacity: 1; }
.pmrc-client-logo img { max-height: 80px; max-width: 120px; object-fit: contain; }

/* ===================================================
   36. SERVICES FULL PAGE
   =================================================== */
.pmrc-services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .pmrc-services-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pmrc-services-grid-full { grid-template-columns: 1fr; } }

.pmrc-service-card-lg {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pmrc-service-card-lg:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(26,26,46,0.1);
  transform: translateY(-4px);
}
.pmrc-service-card-icon {
  background: linear-gradient(135deg, var(--navy) 0%, #16213e 100%);
  padding: 32px 28px 24px;
  font-size: 2.5rem;
  color: var(--gold);
}
.pmrc-service-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pmrc-service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.pmrc-service-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
  margin-bottom: 20px;
}
.pmrc-service-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.pmrc-service-card-link:hover { gap: 14px; }
.pmrc-service-card-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* ===================================================
   37. HEADING SMALL VARIANT
   =================================================== */
.pmrc-heading-sm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
}

