/* ============================================================
   PCA Designs — Main Stylesheet
   Dark & Dramatic Theme | Gold Accents
   ============================================================ */

/* ── Google Fonts loaded in HTML ───────────────────────────── */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --bg:          #0c0c0c;
  --surface:     #161616;
  --surface2:    #1e1e1e;
  --border:      #2a2a2a;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #a07a2a;
  --white:       #ffffff;
  --text:        #e0e0e0;
  --muted:       #888888;
  --overlay:     rgba(0,0,0,0.55);
  --overlay-heavy: rgba(0,0,0,0.75);

  --font-serif:  'Montserrat', system-ui, sans-serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 200; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 500; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }

p { color: var(--text); margin-bottom: 1rem; }
.muted { color: var(--muted); font-size: 0.9rem; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.container--wide {
  width: min(1440px, 96vw);
  margin-inline: auto;
}
.section { padding: 6rem 0; }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 90px;
  width: auto;
  filter: brightness(1);
  padding-left: 15px;
  padding-top: 10px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

/* Mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── Hero Slider ─────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide.prev   { opacity: 0; z-index: 0; }

/* Parallax effect via background-attachment on desktop */
@media (min-width: 768px) {
  .hero-slide { background-attachment: fixed; }
}
/* Video background inside a hero slide */
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-category {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease;
  margin-bottom: 1.5rem;
}
.hero-cta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.7s ease, transform 0.8s 0.7s ease;
}
.hero-slide.active .hero-category,
.hero-slide.active .hero-title,
.hero-slide.active .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.hero-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.6);
}
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Categories Section ─────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: background var(--transition);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%);
}
.category-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.category-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.category-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateX(-8px);
  opacity: 0;
  transition: all var(--transition);
}
.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Parallax Banner ─────────────────────────────────────────── */
.parallax-banner {
  position: relative;
  height: 480px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .parallax-banner { background-attachment: scroll; }
}
.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.parallax-banner-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 700px;
}
.parallax-banner-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.parallax-banner-content cite {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Featured Grid (Home) ───────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.featured-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-item:hover .featured-item-img { transform: scale(1.06); }
.featured-item-info {
  padding: 1.25rem;
}
.featured-item-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.featured-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}

/* ── About Strip ─────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Portfolio Page ─────────────────────────────────────────── */
.portfolio-header {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* Sub-category row */
.filter-bar--sub {
  margin-top: -0.75rem;
  margin-bottom: 2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.filter-bar--sub .filter-btn {
  font-size: 0.73rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border-color: var(--border);
  color: var(--muted);
}
.filter-bar--sub .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-bar--sub .filter-btn.active {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

/* Masonry grid */
.portfolio-grid {
  columns: 3;
  column-gap: 1.25rem;
}
@media (max-width: 900px)  { .portfolio-grid { columns: 2; } }
@media (max-width: 540px)  { .portfolio-grid { columns: 1; } }

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 1.5rem;
  text-align: center;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.portfolio-item-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.portfolio-item-overlay .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.portfolio-item.hidden { display: none; }
.portfolio-item.video-item .portfolio-item-overlay .icon { background: var(--gold); }

/* ── Lightbox ───────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox.lb-png .lightbox-inner { background: #fff; }
.lightbox-inner {
  position: relative;
  max-width: min(900px, 94vw);
  width: 100%;
  max-height: 92vh;
  height: auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.lightbox-caption:empty,
.lightbox-caption:has(h4:empty):has(p:empty) {
  display: none;
}
.lightbox-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.lightbox-close:hover { background: var(--gold); color: #000; }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2010;
  line-height: 1;
}
.lightbox-arrow:hover { background: var(--gold); color: #000; }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-arrow.hidden { display: none; }
.pdf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.pdf-nav-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}
.pdf-nav-btn:hover { background: var(--gold); color: #000; }
.pdf-nav-btn:disabled { opacity: 0.3; cursor: default; }
.pdf-nav-info { color: var(--white); font-size: 0.9rem; min-width: 90px; text-align: center; }
#lightbox-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#lightbox-media img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 88vh;
  object-fit: contain;
}
#lightbox-media iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
}
.lightbox-caption {
  margin-top: 1.25rem;
  text-align: center;
}
.lightbox-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.lightbox-caption p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-form-group {
  margin-bottom: 1.5rem;
}
.contact-form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form-group textarea { resize: vertical; min-height: 140px; }
.recaptcha-wrap { margin-bottom: 1.5rem; }
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  text-align: center;
  margin-top: 1rem;
}

/* ── Login Page ─────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg);
}
.login-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
}
.login-card .nav-logo { justify-content: center; margin-bottom: 2rem; }
.login-card img { margin: 0 auto 2rem; height: 50px; }
.login-card h2 { margin-bottom: 0.5rem; }
.login-card p { color: var(--muted); margin-bottom: 2rem; font-size: 0.9rem; }
.login-error {
  display: none;
  color: #e05555;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 40px; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 260px; }
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: 0.8rem; margin: 0; }
/* Hidden login link — subtle */
.footer-login-link {
  font-size: 0.72rem;
  color: #333 !important;
  letter-spacing: 0.05em;
}
.footer-login-link:hover { color: var(--muted) !important; }

/* ── Fade-in animations ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.3s; }
.fade-delay-3 { transition-delay: 0.45s; }

/* ── Divider ─────────────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}
.gold-divider--left { margin-left: 0; }

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--surface) 0%, var(--bg) 100%);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-strip        { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap   { max-width: 520px; }
  .contact-layout     { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .categories-grid    { grid-template-columns: 1fr; }
  .category-card      { aspect-ratio: 16/9; }
  .featured-grid      { grid-template-columns: 1fr 1fr; }
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .hero-arrow         { display: none; }
}
@media (max-width: 540px) {
  .featured-grid      { grid-template-columns: 1fr; }
  .about-stats        { grid-template-columns: 1fr 1fr; }
  .login-card         { padding: 2rem 1.5rem; }
}

/* ── Protected badge ────────────────────────────────────────── */
.protected-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  z-index: 5;
}

/* ── Placeholder tiles (when images not yet added) ──────────── */
.img-placeholder {
  width: 100%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.img-placeholder.tall  { aspect-ratio: 3/4; }
.img-placeholder.wide  { aspect-ratio: 4/3; }
.img-placeholder.square { aspect-ratio: 1; }
ct-ratio: 1; }
