/* ================================================================
   MALLONWORKS, LLC — Shared Stylesheet
   Dark & Moody Photography Portfolio
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---- Variables ---- */
:root {
  --bg:          #0a0a0a;
  --bg-2:        #141414;
  --bg-3:        #1c1c1c;
  --text:        #ede8e0;
  --text-muted:  #7a7570;
  --text-dim:    #3a3530;
  --accent:      #b8965a;
  --accent-dim:  #8a6e3e;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.12);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
  --nav-h:       68px;
  --max-w:       1240px;
  --r:           3px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::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-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.15; }
p { color: var(--text-muted); line-height: 1.85; }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  font-weight: 300;
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  transition: background 0.4s var(--ease);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

/* Nav item base */
.nav-item {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.nav-item:hover { color: var(--text); }

/* Arrow */
.nav-arrow {
  font-size: 0.6rem;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.25s var(--ease);
  vertical-align: middle;
}
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  min-width: 210px;
  padding: 0.6rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover { color: var(--text); padding-left: 1.7rem; }

/* Wide dropdown (socials) */
.dropdown-menu.wide {
  min-width: 280px;
  left: auto;
  right: 0;
  transform: translateY(-6px);
}
.nav-item.has-dropdown:hover .dropdown-menu.wide { transform: translateY(0); }

.dropdown-label {
  display: block;
  padding: 0.9rem 1.4rem 0.3rem;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.dropdown-label:first-child { padding-top: 0.4rem; }
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

/* Contact CTA */
.nav-cta {
  background: transparent;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--accent) !important;
  border-radius: var(--r);
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover {
  background: rgba(184,150,90,0.1);
  border-color: var(--accent);
  color: var(--accent) !important;
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text);
  padding: 0.4rem;
  line-height: 1;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-mid);
  padding: 1.25rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.65rem 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.mobile-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 1.1rem 0 0.2rem;
  font-weight: 500;
}


/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* REPLACE: swap URL with your hero image path */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-image: url('images/hero-home.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 10s var(--ease);
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(237,232,224,0.6);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  opacity: 0.6;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ================================================================
   DBA TILES
   ================================================================ */
.dba-section {
  padding: 7rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.dba-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dba-tile {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--r);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.dba-tile-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.dba-tile:hover .dba-tile-bg { transform: scale(1.06); }

.dba-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.95) 0%,
    rgba(10,10,10,0.3) 55%,
    transparent 100%
  );
  transition: opacity 0.4s;
}
.dba-tile:hover .dba-tile-overlay { opacity: 0.85; }

.dba-tile-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
  width: 100%;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease);
}
.dba-tile:hover .dba-tile-content { transform: translateY(0); }

.dba-tile-label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.dba-tile-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.dba-tile-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(237,232,224,0.58);
  margin-bottom: 1.4rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
}
.dba-tile:hover .dba-tile-desc { max-height: 100px; opacity: 1; }

.dba-tile-link {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.dba-tile:hover .dba-tile-link { gap: 12px; }


/* ================================================================
   BLOG / LATEST UPDATES
   ================================================================ */
.blog-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 2.5rem;
}
.blog-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-section .section-header { margin-bottom: 4rem; }

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

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-3);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.blog-card:hover {
  border-color: rgba(184,150,90,0.28);
  transform: translateY(-4px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.blog-category {
  font-size: 0.63rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.blog-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
}

.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.84rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}
.read-more {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.blog-card:hover .read-more { gap: 12px; }


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
  padding: 7rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}
.about-text p {
  font-size: 0.92rem;
  line-height: 1.95;
  margin-bottom: 1rem;
}
.about-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.25rem;
  border: 1px solid rgba(184,150,90,0.45);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--r);
  transition: background 0.25s, border-color 0.25s;
}
.about-cta:hover {
  background: rgba(184,150,90,0.08);
  border-color: var(--accent);
}
.about-image-wrap {
  height: 560px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Placeholder shown until photo is added */
.about-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem;
}
.about-placeholder small { font-size: 0.72rem; color: var(--text-dim); }


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 2.5rem 2.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 230px;
}
.footer-col-label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: block;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text-muted); }


/* ================================================================
   DBA PAGE HERO
   ================================================================ */
.page-hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.25) 60%,
    rgba(10,10,10,0.1) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4rem 4.5rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  animation: heroFadeUp 1s var(--ease) both;
}
.page-hero-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.1rem;
  max-width: 760px;
  line-height: 1.1;
}
.page-hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237,232,224,0.6);
  max-width: 520px;
  font-style: italic;
  line-height: 1.7;
}


/* ================================================================
   PORTFOLIO GRID (DBA pages)
   ================================================================ */
.portfolio-section {
  padding: 6rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.portfolio-section .section-header { margin-bottom: 3.5rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-3);
}
.portfolio-item.tall  { aspect-ratio: 3 / 4; }
.portfolio-item.wide  { grid-column: span 2; aspect-ratio: 16 / 9; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px dashed rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.5;
}
.portfolio-placeholder small { font-size: 0.68rem; color: var(--text-dim); }


/* ================================================================
   BOOKING CTA
   ================================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 7rem 2.5rem;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--text);
  margin: 1rem 0;
  line-height: 1.15;
}
.cta-section p {
  max-width: 460px;
  margin: 0 auto 2.75rem;
  font-size: 0.9rem;
  line-height: 1.85;
}
.cta-btn {
  display: inline-block;
  padding: 0.95rem 2.75rem;
  background: transparent;
  border: 1px solid rgba(184,150,90,0.55);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: var(--r);
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}
.cta-btn:hover {
  background: rgba(184,150,90,0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}


/* ================================================================
   BLOG POST PAGE
   ================================================================ */

/* Hero */
.post-hero {
  position: relative;
  height: 75vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.4)  55%,
    rgba(10,10,10,0.1)  100%
  );
}
.post-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4rem 4.5rem;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  animation: heroFadeUp 1s var(--ease) both;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.post-hero-sep {
  color: var(--text-dim);
  font-size: 0.75rem;
}
.post-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.post-hero-lede {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(237,232,224,0.62);
  font-style: italic;
  line-height: 1.7;
  max-width: 580px;
}

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

.post-back {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  transition: color 0.2s;
}
.post-back:hover { color: var(--accent); }

.post-intro {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.post-body-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin: 3rem 0 1.1rem;
  line-height: 1.2;
}

.post-body-inner p {
  font-size: 0.97rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Inline figures */
.post-figure {
  margin: 3rem 0;
}
.post-figure img,
.post-figure-placeholder {
  width: 100%;
  border-radius: var(--r);
}
.post-figure-placeholder {
  aspect-ratio: 3 / 2;
  background: var(--bg-3);
  border: 1px dashed rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 1.5rem;
}
.post-figure-placeholder small { font-size: 0.68rem; color: var(--text-dim); }
figcaption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Side-by-side image pair */
.post-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 3rem 0;
}
.post-figure-pair .post-figure { margin: 0; }

/* Pull quote */
.post-pullquote {
  border-left: 2px solid var(--accent);
  margin: 3rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

/* Post footer: author + CTA */
.post-footer-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem;
}
.post-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.post-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.post-author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.post-author-avatar-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.post-author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.post-author-bio {
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .dba-grid  { grid-template-columns: 1fr; }
  .dba-tile  { height: 380px; }
  .dba-tile-desc { max-height: 100px; opacity: 1; }

  .blog-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { height: 380px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/3; }

  .page-hero-content { padding: 0 2rem 3rem; }
  .post-hero-content { padding: 0 2rem 3rem; }
  .post-figure-pair { grid-template-columns: 1fr; }
  .post-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 1.5rem; }
  .dba-section, .about-section, .portfolio-section { padding: 4rem 1.5rem; }
  .blog-section, .cta-section { padding: 4rem 1.5rem; }
  .footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.tall { aspect-ratio: 4/3; }
  .post-body { padding: 3.5rem 1.5rem 3rem; }
  .post-pullquote { padding-left: 1.25rem; }
  .post-footer-section { padding: 3rem 1.5rem; }
}
