/* ═══════════════════════════════════════════════════════════
   BORDO — PROJECT DETAIL PAGE STYLES (shared)
   ═══════════════════════════════════════════════════════════ */
:root {
  --burgundy: #4A0E0E;
  --burgundy-deep: #2D0808;
  --burgundy-light: #6B1818;
  --ivory: #FAF8F5;
  --ivory-warm: #F5F0E8;
  --champagne: #C9A962;
  --champagne-light: #D4BC7D;
  --charcoal: #1A1614;
  --charcoal-soft: #2A2422;
  --stone: #8A8279;
  --white: #FFFFFF;
  --black: #0A0908;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Syne', sans-serif;

  --ease-luxe: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);

  --shadow-soft: 0 4px 40px rgba(45, 8, 8, 0.08);
  --shadow-elevated: 0 20px 80px rgba(45, 8, 8, 0.12);
  --shadow-dramatic: 0 40px 120px rgba(45, 8, 8, 0.2);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

body.no-scroll { overflow: hidden; }

::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s var(--ease-luxe);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.display-lg { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
.display-md { font-size: clamp(1.75rem, 4vw, 3rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 2rem 5%;
  transition: all 0.6s var(--ease-luxe);
}

.header.scrolled {
  padding: 1.25rem 5%;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 14, 14, 0.08);
}

.header-inner {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.6s var(--ease-luxe);
}

.header.scrolled .logo { color: var(--burgundy); }

.logo img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.6s var(--ease-luxe);
}

.header.scrolled .logo img { filter: none; }

.nav-desktop { display: flex; gap: 3rem; align-items: center; }

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
}

.header.scrolled .nav-link { color: var(--charcoal); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.5s var(--ease-luxe);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--ivory);
  padding: 1rem 2rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--burgundy);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-luxe);
}

.nav-cta span { position: relative; z-index: 1; transition: color 0.5s var(--ease-luxe); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta:hover span { color: var(--white); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px; height: 1px;
  background: var(--white);
  transition: all 0.4s var(--ease-luxe);
}

.header.scrolled .menu-toggle span { background: var(--charcoal); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--burgundy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease-luxe);
}

.mobile-menu.active { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s var(--ease-luxe);
}

.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* ─── PROJECT HERO ───────────────────────────────────────── */
.pd-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--burgundy-deep);
  padding: 0 5% 5rem;
}

.pd-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pd-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 6s var(--ease-luxe) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.pd-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, transparent 30%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.15) 55%, transparent 100%);
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: pdUp 1s var(--ease-luxe) 0.2s forwards;
}

.pd-breadcrumb a { color: rgba(250, 248, 245, 0.65); }
.pd-breadcrumb a:hover { color: var(--champagne); }
.pd-breadcrumb .sep { color: var(--champagne); }
.pd-breadcrumb .current { color: var(--ivory); }

.pd-hero-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  background: var(--champagne);
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: pdUp 1s var(--ease-luxe) 0.35s forwards;
}

.pd-hero-title {
  color: var(--ivory);
  max-width: 900px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: pdUp 1.1s var(--ease-luxe) 0.5s forwards;
}

.pd-hero-title em { font-style: italic; color: var(--champagne); }

.pd-hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(250, 248, 245, 0.8);
  max-width: 620px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: pdUp 1s var(--ease-luxe) 0.65s forwards;
}

.pd-hero-scroll {
  position: absolute;
  right: 5%;
  bottom: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: pdFade 1s var(--ease-luxe) 1s forwards;
}

.pd-hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  writing-mode: vertical-rl;
}

.pd-hero-scroll-line {
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
}

@keyframes pdUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pdFade { to { opacity: 1; } }

@media (max-width: 768px) {
  .pd-hero { min-height: 80vh; padding-bottom: 3rem; }
  .pd-hero-scroll { display: none; }
}

/* ─── META BAR (stats) ───────────────────────────────────── */
.pd-meta-bar {
  background: var(--burgundy);
  color: var(--ivory);
}

.pd-meta-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pd-meta-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(250, 248, 245, 0.12);
}

.pd-meta-item:last-child { border-right: none; }

.pd-meta-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.65rem;
}

.pd-meta-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--ivory);
}

@media (max-width: 768px) {
  .pd-meta-inner { grid-template-columns: repeat(2, 1fr); }
  .pd-meta-item:nth-child(2) { border-right: none; }
  .pd-meta-item:nth-child(1), .pd-meta-item:nth-child(2) {
    border-bottom: 1px solid rgba(250, 248, 245, 0.12);
  }
}

/* ─── OVERVIEW ───────────────────────────────────────────── */
.pd-section { padding: 7rem 5%; }
.pd-section-inner { max-width: 1600px; margin: 0 auto; }

.pd-overview {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pd-overview-text .eyebrow { margin-bottom: 1.5rem; display: block; }

.pd-overview-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.pd-overview-text h2 em { font-style: italic; color: var(--burgundy); }

.pd-overview-text p {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.pd-specs {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--champagne);
}

.pd-specs h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74, 14, 14, 0.1);
}

.pd-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(74, 14, 14, 0.07);
}

.pd-spec-item:last-child { border-bottom: none; }

.pd-spec-label { font-size: 0.82rem; font-weight: 500; color: var(--stone); }
.pd-spec-value { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); text-align: right; }

@media (max-width: 900px) {
  .pd-overview { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── FEATURES ───────────────────────────────────────────── */
.pd-features { background: var(--ivory-warm); }

.pd-section-head { text-align: center; margin-bottom: 4rem; }
.pd-section-head .eyebrow { display: block; margin-bottom: 1rem; }
.pd-section-head h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--charcoal); }

.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pd-feature {
  background: var(--white);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.5s var(--ease-luxe);
  border-bottom: 2px solid transparent;
}

.pd-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-bottom-color: var(--champagne);
}

.pd-feature-icon {
  width: 52px; height: 52px;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-luxe);
}

.pd-feature:hover .pd-feature-icon { background: var(--champagne); }
.pd-feature-icon i { color: var(--champagne); font-size: 1.1rem; transition: color 0.5s var(--ease-luxe); }
.pd-feature:hover .pd-feature-icon i { color: var(--burgundy-deep); }

.pd-feature p { font-size: 0.98rem; color: var(--charcoal-soft); line-height: 1.6; }

@media (max-width: 1024px) { .pd-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pd-features-grid { grid-template-columns: 1fr; } }

/* ─── GALLERY ────────────────────────────────────────────── */
.pd-gallery { background: var(--ivory); }

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 1.25rem;
}

.pd-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  grid-column: span 2;
}

/* Editorial rhythm — feature certain tiles */
.pd-gallery-item:nth-child(6n+1) { grid-column: span 3; grid-row: span 2; }
.pd-gallery-item:nth-child(6n+4) { grid-column: span 3; grid-row: span 2; }

.pd-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 14, 14, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
  z-index: 1;
}

.pd-gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.5s var(--ease-luxe);
  z-index: 2;
}

.pd-gallery-item:hover::before { opacity: 1; }
.pd-gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.pd-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-luxe);
}

.pd-gallery-item:hover img { transform: scale(1.08); }

@media (max-width: 900px) {
  .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .pd-gallery-item, .pd-gallery-item:nth-child(6n+1), .pd-gallery-item:nth-child(6n+4) {
    grid-column: span 1; grid-row: span 1;
  }
  .pd-gallery-item:nth-child(6n+1) { grid-column: span 2; }
}

@media (max-width: 560px) {
  .pd-gallery-grid { grid-template-columns: 1fr; }
  .pd-gallery-item, .pd-gallery-item:nth-child(6n+1) { grid-column: span 1; }
}

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-luxe);
  padding: 4rem;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-luxe);
}

.lightbox.active img { transform: scale(1); }

.lightbox-close, .lightbox-nav {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.4s var(--ease-luxe);
  z-index: 10001;
}

.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-close:hover { background: var(--white); color: var(--burgundy); transform: rotate(90deg); }

.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-nav:hover { background: var(--champagne); border-color: var(--champagne); color: var(--burgundy-deep); }

.lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  z-index: 10001;
}

@media (max-width: 768px) {
  .lightbox { padding: 1.5rem; }
  .lightbox-nav { width: 46px; height: 46px; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

/* ─── PROJECT NAV (prev / next) ──────────────────────────── */
.pd-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(74, 14, 14, 0.1);
}

.pd-nav-link {
  padding: 3.5rem 5%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: background 0.5s var(--ease-luxe);
}

.pd-nav-link:hover { background: var(--ivory-warm); }
.pd-nav-link.next { text-align: right; align-items: flex-end; border-left: 1px solid rgba(74, 14, 14, 0.1); }

.pd-nav-dir {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pd-nav-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.4s var(--ease-luxe);
}

.pd-nav-link:hover .pd-nav-title { color: var(--burgundy); }

@media (max-width: 600px) {
  .pd-nav { grid-template-columns: 1fr; }
  .pd-nav-link.next { border-left: none; border-top: 1px solid rgba(74, 14, 14, 0.1); }
}

/* ─── CTA ────────────────────────────────────────────────── */
.pd-cta {
  background: var(--burgundy);
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.pd-cta-inner { max-width: 700px; margin: 0 auto; position: relative; }
.pd-cta .eyebrow { margin-bottom: 1.5rem; display: block; }
.pd-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ivory); margin-bottom: 1.5rem; line-height: 1.15; }
.pd-cta p { font-size: 1rem; color: rgba(250, 248, 245, 0.7); margin-bottom: 2.5rem; line-height: 1.8; }

.pd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  background: var(--ivory);
  padding: 1.25rem 2.5rem;
  transition: all 0.5s var(--ease-luxe);
}

.pd-cta-btn:hover { background: var(--champagne); transform: translateY(-2px); }
.pd-cta-btn i { transition: transform 0.3s var(--ease-luxe); }
.pd-cta-btn:hover i { transform: translateX(5px); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 6rem 5% 2rem;
}

.footer-inner { max-width: 1600px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.6);
  margin-top: 1.5rem;
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ivory);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--champagne);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a { font-size: 0.9rem; color: rgba(250, 248, 245, 0.6); transition: all 0.4s var(--ease-luxe); }
.footer-col a:hover { color: var(--ivory); padding-left: 0.5rem; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright { font-size: 0.75rem; color: rgba(250, 248, 245, 0.4); }
.footer-socials { display: flex; gap: 1rem; }

.footer-socials a {
  width: 45px; height: 45px;
  border: 1px solid rgba(250, 248, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ivory);
  transition: all 0.4s var(--ease-luxe);
}

.footer-socials a:hover { background: var(--champagne); border-color: var(--champagne); color: var(--burgundy-deep); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease-luxe);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── BLOG POST (article) ────────────────────────────────── */
.post-hero {
  position: relative;
  background: var(--burgundy-deep);
  overflow: hidden;
  padding: 12rem 5% 4.5rem;
}

.post-hero::after {
  content: 'BORDO';
  position: absolute;
  bottom: -8%;
  right: 3%;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 20rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.08);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 1.75rem;
}

.post-breadcrumb a { color: rgba(250, 248, 245, 0.6); }
.post-breadcrumb a:hover { color: var(--champagne); }
.post-breadcrumb .sep { color: var(--champagne); }
.post-breadcrumb .current { color: var(--ivory); }

.post-cat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  background: var(--champagne);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 1.75rem;
}

.post-title em { font-style: italic; color: var(--champagne); }

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(250, 248, 245, 0.7);
}

.post-meta strong { color: var(--ivory); font-weight: 600; }
.post-meta .dot { color: var(--champagne); }

/* Featured media */
.post-featured {
  max-width: 1000px;
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.post-featured img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-elevated);
}

.post-featured.is-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-featured.is-logo .post-featured-panel {
  width: 100%;
  background: var(--ivory-warm);
  border-top: 4px solid var(--champagne);
  box-shadow: var(--shadow-elevated);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-featured.is-logo img {
  width: auto;
  max-height: 160px;
  max-width: 60%;
  object-fit: contain;
  box-shadow: none;
}

/* Article body */
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 5% 5rem;
}

.post-body > p {
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--charcoal-soft);
  margin-bottom: 1.6rem;
}

.post-body > p.lead {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.post-body > p strong { color: var(--burgundy); font-weight: 600; }

.post-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--burgundy);
  margin: 3rem 0 1.5rem;
  line-height: 1.2;
}

.post-list {
  list-style: none;
  margin: 1.5rem 0 2.25rem;
}

.post-list li {
  position: relative;
  padding-left: 2.25rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}

.post-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--champagne);
  font-weight: 700;
  font-size: 1.2rem;
}

.post-pull {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.3;
  margin: 2.5rem 0;
  padding-left: 1.75rem;
  border-left: 3px solid var(--champagne);
}

.post-signature {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--charcoal);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 14, 14, 0.1);
}

.post-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .post-hero { padding-top: 10rem; }
  .post-featured { margin-top: -1.5rem; }
  .post-featured.is-logo .post-featured-panel { padding: 2.5rem; }
}
