/* ============================================
   AERTSEN LIVING — Content Pages CSS
   Shared: Blog, Projects, Careers
   Extends main.css design system
============================================ */

/* ── HERO (shared) ─────────────────────────── */
.content-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}
.ch-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #2d2b5c 50%, var(--deep-navy) 100%);
  z-index: 0;
}
.ch-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,124,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(200,146,42,.05) 0%, transparent 50%);
}
.content-hero .container { position: relative; z-index: 1; }

.ch-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(201,168,124,.7);
  margin-bottom: 20px;
}
.eyebrow-line {
  display: block; width: 32px; height: 1px;
  background: rgba(201,168,124,.3);
}
.ch-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}
.ch-title em { color: var(--blush); font-style: normal; }
.ch-sub {
  font-size: 16px; color: rgba(255,255,255,.55);
  max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* Blog hero accent */
.blog-hero .ch-bg::before {
  content: '"';
  position: absolute; top: -20px; right: 8%;
  font-family: var(--font-serif); font-size: 300px;
  color: rgba(201,168,124,.04); line-height: 1;
  pointer-events: none;
}

/* Projects hero stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 14px 32px;
  margin-top: 36px; flex-wrap: wrap; justify-content: center;
  width: fit-content; margin-left: auto; margin-right: auto;
  clear: both;
}
.hs-item { text-align: center; padding: 0 20px; }
.hs-num { display: block; font-size: 20px; font-weight: 700; color: var(--blush); }
.hs-label { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .06em; }
.hs-div { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

/* Careers hero gradient */
.careers-hero .ch-bg {
  background: linear-gradient(135deg, #1a1a30 0%, #1A1612 40%, #2a1a2e 100%);
}

/* ── CONTAINER ──────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HEADER ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.sh-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.sh-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; color: var(--deep-navy);
  line-height: 1.2;
}

/* ── FILTER BAR ─────────────────────────────── */
.filter-section {
  background: var(--deep-navy);
  padding: 0;
  position: sticky; top: 64px; z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.filter-section--light {
  background: #fff;
  border-bottom: 1px solid var(--border);
  top: 64px;
}
.filter-bar {
  display: flex; align-items: center;
  gap: 4px; padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar--centered { justify-content: center; flex-wrap: wrap; }
.fcat {
  display: inline-flex; align-items: center;
  padding: 7px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  white-space: nowrap; text-decoration: none;
  transition: all .2s;
  color: rgba(255,255,255,.5);
  border: 1px solid transparent;
}
.filter-section--light .fcat { color: var(--text-mid); }
.fcat:hover { color: #fff; }
.filter-section--light .fcat:hover { color: var(--deep-navy); }
.fcat.active {
  background: rgba(201,168,124,.12);
  border-color: rgba(201,168,124,.25);
  color: var(--blush);
}
.filter-section--light .fcat.active {
  background: var(--deep-navy); color: #fff; border-color: var(--deep-navy);
}
.filter-search {
  margin-left: auto; display: flex; align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; overflow: hidden;
  flex-shrink: 0;
}
.filter-search input {
  background: none; border: none; outline: none;
  padding: 7px 16px; font-size: 13px;
  color: #fff; font-family: var(--font-sans);
  width: 180px;
}
.filter-search input::placeholder { color: rgba(255,255,255,.35); }
.filter-search button {
  background: none; border: none; cursor: pointer;
  padding: 7px 14px; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.filter-search button:hover { color: var(--blush); }

/* ── FEATURED POST ──────────────────────────── */
.featured-post-section { padding: 56px 0 0; background: var(--warm-white); }
.featured-post-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-md);
  text-decoration: none; color: inherit;
  transition: box-shadow .3s, transform .3s;
}
.featured-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.fp-image {
  position: relative; min-height: 380px; overflow: hidden;
}
.fp-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.featured-post-card:hover .fp-image img { transform: scale(1.04); }
.fp-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--deep-navy), #3d3a6e); }
.fp-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.2), transparent); }
.fp-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--blush); color: var(--deep-navy);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.fp-body {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.fp-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-light);
  margin-bottom: 14px;
}
.fp-cat {
  background: rgba(26,22,18,.07);
  color: var(--deep-navy); font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
}
.fp-dot { color: var(--border); }
.fp-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600; color: var(--deep-navy);
  line-height: 1.25; margin-bottom: 14px;
}
.fp-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.fp-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--deep-navy);
  border-bottom: 1.5px solid var(--deep-navy); padding-bottom: 2px;
  width: fit-content; transition: gap .2s;
}
.featured-post-card:hover .fp-read-more { gap: 12px; }

/* ── POSTS GRID ─────────────────────────────── */
.posts-section { padding: 48px 0 72px; background: var(--warm-white); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card-link { display: block; text-decoration: none; color: inherit; }
.pc-image {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
}
.pc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .pc-image img { transform: scale(1.05); }
.pc-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #3d3a6e 100%);
  display: flex; align-items: center; justify-content: center;
}
.pc-img-placeholder span {
  font-size: 48px; opacity: .3;
  font-family: var(--font-serif); color: #fff;
}
.pc-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--deep-navy); color: var(--blush);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.pc-body { padding: 22px; }
.pc-meta { font-size: 11px; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 6px; }
.pc-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  color: var(--deep-navy); line-height: 1.3;
  margin-bottom: 8px;
}
.pc-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.read-more-link { font-size: 12px; font-weight: 600; color: var(--deep-navy); }
.pc-tags { display: flex; gap: 5px; }
.pc-tag {
  font-size: 10px; font-weight: 500;
  background: var(--soft-grey); color: var(--text-mid);
  padding: 2px 8px; border-radius: 100px;
}

/* ── BLOG POST DETAIL ────────────────────────── */
.post-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  padding-top: 80px; /* offset fixed header */
  padding-bottom: 48px; overflow: hidden;
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.post-hero-gradient { background: linear-gradient(135deg, var(--deep-navy), #2d2b5c); }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,18,.85) 0%, rgba(26,22,18,.3) 100%); }
.post-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--blush); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.post-cat-badge {
  display: inline-block;
  background: rgba(201,168,124,.15); color: var(--blush);
  border: 1px solid rgba(201,168,124,.25);
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.post-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 52px);
  color: #fff; font-weight: 600; line-height: 1.15;
  margin-bottom: 16px; max-width: 800px;
}
.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.pm-sep { opacity: .4; }
.pm-tag {
  background: rgba(255,255,255,.08);
  padding: 2px 8px; border-radius: 100px; font-size: 11px;
}

.post-content-section { padding: 64px 0 80px; }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }

.post-article { min-width: 0; }
.post-lead {
  font-size: 18px; color: var(--text-dark); line-height: 1.75;
  font-family: var(--font-serif); font-style: italic;
  border-left: 3px solid var(--blush); padding-left: 20px;
  margin-bottom: 32px;
}
.post-body {
  font-size: 15px; line-height: 1.85; color: var(--text-mid);
}
.post-body h2 { font-family: var(--font-serif); font-size: 26px; color: var(--deep-navy); margin: 36px 0 14px; }
.post-body h3 { font-family: var(--font-serif); font-size: 20px; color: var(--deep-navy); margin: 28px 0 10px; }
.post-body p { margin-bottom: 16px; }
.post-body img { border-radius: 12px; margin: 24px 0; }
.post-body ul, .post-body ol { margin: 16px 0 16px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--text-dark); }
.post-body blockquote {
  background: var(--warm-off); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0;
  font-style: italic; color: var(--text-dark);
}
.post-share {
  display: flex; align-items: center; gap: 10px;
  padding-top: 32px; margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-light); flex-wrap: wrap;
}
.share-btn {
  padding: 7px 16px; border-radius: 100px; font-size: 12px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.share-wa { background: #e7f8ef; color: #25d366; }
.share-wa:hover { background: #25d366; color: #fff; }
.share-fb { background: #e7eeff; color: #1877f2; }
.share-fb:hover { background: #1877f2; color: #fff; }

.post-sidebar { position: sticky; top: 100px; }
.sidebar-cta-card {
  background: var(--deep-navy);
  border-radius: 16px; padding: 28px;
  text-align: center; margin-bottom: 24px;
}
.scc-icon { font-size: 36px; margin-bottom: 12px; }
.sidebar-cta-card h3 { font-family: var(--font-serif); font-size: 22px; color: #fff; margin-bottom: 8px; }
.sidebar-cta-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 18px; }
.btn-sidebar-cta {
  width: 100%; padding: 11px; background: var(--blush); color: var(--deep-navy);
  border: none; border-radius: 8px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; cursor: pointer; transition: filter .2s;
}
.btn-sidebar-cta:hover { filter: brightness(1.07); }
.sidebar-phone { display: block; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; }
.sidebar-phone:hover { color: var(--blush); }

.sidebar-related { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid var(--border); }
.sidebar-section-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.related-item { display: flex; gap: 12px; text-decoration: none; color: inherit; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.related-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.related-item img, .related-img-placeholder { width: 64px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.related-img-placeholder { background: linear-gradient(135deg,var(--deep-navy),#3d3a6e); display:flex;align-items:center;justify-content:center;color:#fff;font-family:var(--font-serif);font-size:18px;opacity:.8; }
.related-title { font-size: 13px; font-weight: 500; color: var(--deep-navy); line-height: 1.4; margin-bottom: 4px; }
.related-date { font-size: 11px; color: var(--text-light); }

/* ── PROJECTS MASONRY ────────────────────────── */
.projects-section { padding: 48px 0 72px; background: var(--warm-white); }
.projects-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.proj-card { overflow: hidden; border-radius: 14px; }
.proj-card--large { grid-column: span 2; grid-row: span 2; }
.proj-card-inner { display: block; width: 100%; height: 100%; position: relative; text-decoration: none; }
.pc-img { width: 100%; height: 100%; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proj-card:hover .pc-img img { transform: scale(1.07); }
.pc-img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #3d3a6e 100%);
  display: flex; align-items: center; justify-content: center;
}
.pc-img-fallback span { font-size: 14px; color: rgba(255,255,255,.3); font-weight: 500; }
.proj-featured-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,.9) 0%, rgba(26,22,18,.1) 60%, transparent 100%);
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity .3s ease;
}
.proj-card:hover .pc-overlay { opacity: 1; }
.pco-content { padding: 20px; width: 100%; }
.pco-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blush); margin-bottom: 4px; display: block; }
.pco-title { font-family: var(--font-serif); font-size: 18px; color: #fff; font-weight: 600; margin-bottom: 6px; line-height: 1.2; }
.pco-meta { display: flex; gap: 12px; font-size: 11px; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.pco-view { font-size: 12px; font-weight: 600; color: var(--blush); }

/* ── CAREERS ─────────────────────────────────── */
.why-section { padding: 80px 0; background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: all .3s;
}
.why-card:hover { border-color: rgba(26,22,18,.2); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.wc-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--deep-navy); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; }

.jobs-section { padding: 80px 0; background: var(--warm-white); }
.jobs-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }

.job-card {
  background: #fff; border-radius: 14px;
  border: 1.5px solid var(--border);
  overflow: hidden; transition: border-color .2s;
}
.job-card:hover { border-color: rgba(26,22,18,.2); }
.job-card.open { border-color: var(--deep-navy); }

.jc-header {
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 16px;
}
.jc-title { font-size: 17px; font-weight: 600; color: var(--deep-navy); margin-bottom: 10px; }
.jc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.jc-tag {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 100px;
}
.jc-tag-dept { background: rgba(26,22,18,.07); color: var(--deep-navy); }
.jc-tag-type { background: rgba(200,146,42,.1); color: var(--gold); }
.jc-tag-loc  { background: var(--soft-grey); color: var(--text-mid); }
.jc-tag-exp  { background: rgba(74,222,128,.1); color: #16a34a; }
.jc-tag-sal  { background: rgba(201,168,124,.15); color: #b45a3a; }

.jc-toggle {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 12px; font-weight: 600; color: var(--text-light);
  transition: color .2s;
}
.jc-toggle svg { transition: transform .3s; }
.job-card.open .jc-toggle svg { transform: rotate(180deg); }
.job-card.open .jc-toggle { color: var(--deep-navy); }

.jc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  border-top: 1px solid transparent;
}
.job-card.open .jc-body {
  max-height: 600px;
  border-top-color: var(--border);
}
.jc-section { padding: 20px 24px 0; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.jcs-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.jc-req-list { list-style: none; padding: 0; }
.jc-req-list li { padding: 4px 0 4px 18px; position: relative; }
.jc-req-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 11px; }
.jc-apply { padding: 20px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-apply {
  background: var(--deep-navy); color: #fff;
  border: none; border-radius: 8px;
  padding: 11px 24px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-apply:hover { background: var(--gold); }
.jc-apply-note { font-size: 12px; color: var(--text-light); }
.jc-apply-note a { color: var(--deep-navy); font-weight: 500; }

.spontaneous-section { padding: 80px 0; background: #fff; }
.spontaneous-card {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #2d2b5c 100%);
  border-radius: 20px; padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.sc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blush); display: block; margin-bottom: 8px; }
.spontaneous-card h2 { font-family: var(--font-serif); font-size: 32px; color: #fff; margin-bottom: 10px; }
.spontaneous-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 500px; }

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-section { padding: 80px 0; background: var(--warm-white); }
.newsletter-card {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #2d2b5c 100%);
  border-radius: 20px; padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.nlc-content { max-width: 460px; }
.nlc-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blush); margin-bottom: 8px; }
.newsletter-card h2 { font-family: var(--font-serif); font-size: 32px; color: #fff; margin-bottom: 8px; }
.newsletter-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
.nlc-form { display: flex; gap: 8px; flex-shrink: 0; min-width: 300px; }
.nlc-form input {
  flex: 1; padding: 13px 18px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; background: rgba(255,255,255,.08);
  color: #fff; font-family: var(--font-sans); font-size: 14px; outline: none;
  transition: border-color .2s;
}
.nlc-form input:focus { border-color: rgba(201,168,124,.4); }
.nlc-form input::placeholder { color: rgba(255,255,255,.35); }
.nlc-form button {
  padding: 13px 22px; background: var(--blush); color: var(--deep-navy);
  border: none; border-radius: 10px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: filter .2s;
}
.nlc-form button:hover { filter: brightness(1.07); }

/* ── CTA BAND ────────────────────────────────── */
.cta-band { padding: 80px 0; background: var(--soft-grey); }
.cta-band-inner {
  background: var(--deep-navy); border-radius: 20px;
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band-inner h2 { font-family: var(--font-serif); font-size: 34px; color: #fff; margin-bottom: 8px; }
.cta-band-inner p { font-size: 14px; color: rgba(255,255,255,.55); max-width: 500px; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── SHARED BUTTONS ──────────────────────────── */
.btn-cta-primary {
  padding: 13px 28px; background: var(--blush); color: var(--deep-navy);
  border: none; border-radius: 10px; font-family: var(--font-sans);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-cta-primary:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn-cta-secondary {
  padding: 13px 24px; background: transparent;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  border-radius: 10px; font-family: var(--font-sans);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-cta-secondary:hover { border-color: var(--blush); color: var(--blush); }
.btn-primary-outline {
  display: inline-block; padding: 11px 24px;
  border: 1.5px solid var(--deep-navy); color: var(--deep-navy);
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .2s; margin-top: 16px;
}
.btn-primary-outline:hover { background: var(--deep-navy); color: #fff; }

/* ── EMPTY STATE ─────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 24px;
}
.es-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-serif); font-size: 24px; color: var(--deep-navy); margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--text-light); }

/* ── PAGINATION ──────────────────────────────── */
.pagination-bar {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.pag-btn {
  width: 38px; height: 38px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-mid);
  text-decoration: none; transition: all .2s;
}
.pag-btn:hover { border-color: var(--deep-navy); color: var(--deep-navy); }
.pag-btn.active { background: var(--deep-navy); color: #fff; border-color: var(--deep-navy); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .projects-masonry { grid-template-columns: repeat(3,1fr); }
  .proj-card--large { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 900px) {
  .featured-post-card { grid-template-columns: 1fr; }
  .fp-image { min-height: 240px; }
  .posts-grid { grid-template-columns: repeat(2,1fr); }
  .projects-masonry { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .newsletter-card, .cta-band-inner, .spontaneous-card { flex-direction: column; }
  .nlc-form { width: 100%; min-width: unset; }
}
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .projects-masonry { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; border-radius: 16px; gap: 16px; }
  .hs-div { width: 80px; height: 1px; }
  .newsletter-card, .cta-band-inner, .spontaneous-card { padding: 32px 24px; }
}