/* ===== NIVO AGENCY — GLOBAL STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&display=swap');

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

/* — Tokens — */
:root {
  --nb: #1B1717;
  --cr: #c41515;
  --dm: #a01010;
  --cw: #EDEBDD;
  --white: #ffffff;
  --pf: 'Playfair Display', Georgia, serif;
  --ds: 'DM Sans', system-ui, sans-serif;
  --cg: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ds); background: var(--white); color: var(--nb); overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--ds); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: var(--cr);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 52px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
}
.navbar-logo svg { flex-shrink: 0; }
.navbar-wordmark {
  font-family: var(--pf); font-weight: 700; font-size: 15px;
  letter-spacing: .12em; color: var(--white);
}
.navbar-nav { display: flex; align-items: center; gap: 36px; }
.navbar-nav a {
  font-family: var(--ds); font-size: 13px; font-weight: 500;
  color: var(--white); letter-spacing: .02em;
  transition: opacity .15s;
}
.navbar-nav a:hover { opacity: .7; }
.navbar-nav a.active { border-bottom: 1.5px solid var(--white); padding-bottom: 1px; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  padding-top: 52px;
}
.hero-video-wrap {
  position: absolute; inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.2) 40%,
    rgba(0,0,0,.55) 75%,
    rgba(0,0,0,.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 0px;
}
.hero-headline {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 1.08; color: var(--white);
  max-width: 780px;
  letter-spacing: -.01em;
}
.hero-headline em {
  font-family: var(--cg); font-style: italic; font-weight: 600;
  color: var(--white);
}
.hero-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 360px;
  margin-top: 20px;
}

/* Stats bar */
.stats-bar {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-top: .5px solid rgba(255,255,255,.15);
  display: flex; align-items: stretch;
  margin-top: 48px;
}
.stat-item {
  flex: 1; padding: 22px 28px;
  border-right: .5px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--pf); font-weight: 700; font-size: 28px;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-family: var(--ds); font-size: 11px;
  color: rgba(255,255,255,.5); letter-spacing: .04em;
}

/* ===== BENCHMARK SECTION ===== */
.benchmark {
  background: var(--cr);
  padding: 56px 60px;
  display: flex; flex-direction: column; gap: 36px;
}
.benchmark-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--white); line-height: 1.05;
}
.benchmark-heading em {
  font-family: var(--cg); font-style: italic;
  color: var(--white);
}
.benchmark-img {
  width: 100%; max-height: 420px;
  object-fit: cover; display: block;
  border-radius: 2px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--nb);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.services-left {
  padding: 72px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: .5px solid rgba(237,235,221,.1);
}
.services-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(42px, 5vw, 68px);
  color: var(--white); line-height: 1.05;
}
.services-heading em {
  font-family: var(--cg); font-style: italic;
  color: var(--cr);
}
.services-sub {
  font-size: 13px; line-height: 1.75;
  color: rgba(237,235,221,.5);
  max-width: 320px; margin-top: 24px;
}
.services-right {
  padding: 64px 40px 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: .5px solid rgba(237,235,221,.12);
  cursor: pointer;
  transition: background .15s;
}
.service-row:first-child { border-top: .5px solid rgba(237,235,221,.12); }
.service-row:hover .service-name { color: var(--white); }
.service-num {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  color: rgba(237,235,221,.3); letter-spacing: .1em;
  width: 28px; flex-shrink: 0;
}
.service-name {
  font-family: var(--ds); font-size: 14px; font-weight: 400;
  color: rgba(237,235,221,.65);
  flex: 1; margin-left: 16px;
  transition: color .15s;
}
.service-arrow {
  font-size: 18px; color: rgba(237,235,221,.25);
  transition: color .15s, transform .15s;
}
.service-row:hover .service-arrow {
  color: var(--cr); transform: translateX(4px);
}

/* ===== ABOUT SNIPPET SECTION ===== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
}
.about-split-image {
  position: relative; overflow: hidden; min-height: 520px;
}
.about-split-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-split-image .nivo-logo-overlay {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(27,23,23,.85);
  padding: 16px 20px; display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.about-split-text {
  background: var(--nb); color: var(--cw);
  padding: 72px 60px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.about-split-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr);
}
.about-split-quote {
  font-family: var(--pf); font-weight: 400; font-style: italic;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.25; color: var(--cw);
}
.about-split-body {
  font-family: var(--ds); font-size: 14px; line-height: 1.85;
  color: rgba(237,235,221,.62);
}
.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cr);
  margin-top: 8px;
  transition: gap .2s;
}
.about-link:hover { gap: 14px; }

/* ===== GRID PATTERN SECTION ===== */
.grid-section {
  background: var(--cw);
  padding: 0;
  aspect-ratio: 16/7;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  overflow: hidden;
}
.grid-cell {
  background: #D8D4C2;
}
.grid-cell.red { background: var(--cr); }
.grid-cell.light { background: var(--cw); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 80px 60px;
  gap: 80px;
  border-top: .5px solid rgba(27,23,23,.08);
}
.contact-left {}
.contact-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 16px;
}
.contact-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1; color: var(--nb);
}
.contact-heading em {
  font-family: var(--cg); font-style: italic; color: var(--cr);
}
.contact-sub {
  font-size: 13px; line-height: 1.75;
  color: rgba(27,23,23,.55);
  margin-top: 16px; max-width: 380px;
}
.contact-details {
  margin-top: 32px; display: flex; flex-direction: column; gap: 8px;
}
.contact-detail {
  font-size: 13px; color: rgba(27,23,23,.65);
}
.contact-detail a { color: var(--cr); }

.contact-right {}
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field input,
.form-field textarea {
  font-family: var(--ds); font-size: 13px;
  border: none; border-bottom: 1px solid rgba(27,23,23,.2);
  padding: 10px 0; background: transparent;
  color: var(--nb); outline: none;
  width: 100%;
  transition: border-color .2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(27,23,23,.35); }
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--cr); }
.form-field textarea { resize: none; min-height: 80px; }
.submit-btn {
  align-self: flex-end;
  background: var(--cr); color: var(--white);
  font-family: var(--ds); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px;
  transition: background .2s;
  margin-top: 8px;
}
.submit-btn:hover { background: var(--dm); }

/* ===== FOOTER ===== */
.footer {
  background: var(--nb);
  padding: 48px 60px 32px;
  display: flex; flex-direction: column; gap: 32px;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-wordmark {
  font-family: var(--pf); font-weight: 700; font-size: 16px;
  letter-spacing: .12em; color: var(--cw);
}
.footer-tagline {
  font-family: var(--cg); font-style: italic; font-size: 12px;
  color: var(--cr);
}
.footer-nav {
  display: flex; gap: 40px;
}
.footer-nav a {
  font-family: var(--ds); font-size: 12px; font-weight: 500;
  color: rgba(237,235,221,.45); letter-spacing: .04em;
  transition: color .15s;
}
.footer-nav a:hover { color: var(--cw); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: .5px solid rgba(237,235,221,.08);
  padding-top: 24px;
}
.footer-copy {
  font-family: var(--ds); font-size: 11px;
  color: rgba(237,235,221,.22);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 52px;
}

/* ===== WORKS PAGE ===== */
.works-intro {
  background: var(--nb); color: var(--cw);
  padding: 80px 60px 56px;
}
.works-intro-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 20px;
}
.works-intro-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0; color: var(--cw);
}
.works-intro-heading em {
  font-family: var(--cg); font-style: italic; color: var(--cr);
}
.works-intro-sub {
  font-size: 14px; line-height: 1.75;
  color: rgba(237,235,221,.52);
  max-width: 480px; margin-top: 20px;
}
.works-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.work-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.work-item:hover .work-item-overlay { opacity: 1; }
.work-item-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 8px;
}
.work-item-title {
  font-family: var(--pf); font-weight: 700; font-size: 22px;
  color: var(--white); line-height: 1.15;
}
.work-item-type {
  font-size: 12px; color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.work-item-full {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 52px);
}
.about-hero-image { position: relative; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-text {
  background: var(--nb); color: var(--cw);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.about-hero-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--cr);
}
.about-hero-quote {
  font-family: var(--pf); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px); line-height: 1.2; color: var(--cw);
}
.about-hero-body {
  font-size: 14px; line-height: 1.85;
  color: rgba(237,235,221,.6);
}
.meet-team {
  background: var(--nb); color: var(--white);
  padding: 64px 60px 0;
}
.meet-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(64px, 9vw, 120px);
  line-height: .95;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px;
}
.meet-heading em { font-family: var(--cg); font-style: italic; color: var(--cr); }
.meet-heading span { color: var(--white); }
.team-grid {
  background: var(--white);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 60px;
}
.team-member {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: #e8e8e8; overflow: hidden;
  border: 2px solid rgba(27,23,23,.08);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar svg { width: 60px; height: 60px; opacity: .3; }
.team-name {
  font-family: var(--ds); font-size: 14px; font-weight: 500;
  color: var(--nb); text-align: center;
}
.team-role {
  font-family: var(--cg); font-style: italic; font-size: 13px;
  color: rgba(27,23,23,.45); text-align: center;
}

/* ===== NEWS PAGE ===== */
.news-header {
  background: var(--nb); color: var(--cw);
  padding: 80px 60px 56px;
}
.news-pub-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 16px;
}
.news-pub-title {
  font-family: var(--pf); font-weight: 900;
  font-size: clamp(56px, 8vw, 100px);
  line-height: .95; color: var(--cw);
}
.news-pub-sub {
  font-family: var(--cg); font-style: italic; font-size: 16px;
  color: var(--cr); margin-top: 16px;
}
.news-divider {
  height: 1px; background: rgba(237,235,221,.1);
  margin-top: 40px;
}

/* Featured article */
.news-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 64px 60px;
  gap: 56px;
  border-bottom: .5px solid rgba(27,23,23,.08);
  background: var(--white);
}
.news-featured-image {
  overflow: hidden;
}
.news-featured-image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.news-featured-text {
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.news-cat {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cr);
}
.news-cat span { color: rgba(27,23,23,.35); margin: 0 6px; }
.news-featured-title {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.2; color: var(--nb);
}
.news-featured-excerpt {
  font-size: 13px; line-height: 1.8;
  color: rgba(27,23,23,.58);
}
.news-read-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cr);
  transition: gap .2s;
}
.news-read-link:hover { gap: 12px; }

/* News grid */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.news-card {
  display: flex; flex-direction: column;
  border-right: .5px solid rgba(27,23,23,.08);
  border-bottom: .5px solid rgba(27,23,23,.08);
}
.news-card:nth-child(3n) { border-right: none; }
.news-card-image {
  aspect-ratio: 4/3; overflow: hidden;
}
.news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-body { padding: 28px 32px 36px; }
.news-card-cat {
  font-family: var(--ds); font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--pf); font-weight: 700; font-size: 18px;
  line-height: 1.25; color: var(--nb);
  margin-bottom: 10px;
}
.news-card-excerpt {
  font-size: 12.5px; line-height: 1.7;
  color: rgba(27,23,23,.55);
  margin-bottom: 16px;
}
.news-card-date {
  font-family: var(--ds); font-size: 11px;
  color: rgba(27,23,23,.35);
}

/* ===== WHERE WE LEAD ===== */
.lead-header {
  padding: 80px 60px 56px;
  background: var(--white);
  border-bottom: .5px solid rgba(27,23,23,.08);
}
.lead-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 16px;
}
.lead-heading {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(52px, 7vw, 90px);
  line-height: .95; color: var(--nb);
}
.lead-sub {
  font-size: 13px; line-height: 1.75;
  color: rgba(27,23,23,.52);
  max-width: 480px; margin-top: 20px;
}
.lead-list { }
.lead-item {
  border-bottom: .5px solid rgba(27,23,23,.1);
  overflow: hidden;
}
.lead-item-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  cursor: pointer;
  transition: background .15s;
}
.lead-item-header:hover { background: rgba(27,23,23,.02); }
.lead-item-num {
  font-family: var(--ds); font-size: 12px; font-weight: 500;
  color: rgba(27,23,23,.35); letter-spacing: .1em;
  width: 36px; flex-shrink: 0;
}
.lead-item-title {
  font-family: var(--pf); font-weight: 700; font-size: 22px;
  color: var(--nb); flex: 1; margin-left: 16px;
}
.lead-item-plus {
  width: 32px; height: 32px;
  border: 1px solid rgba(27,23,23,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--nb);
  transition: transform .3s, background .2s, border-color .2s;
}
.lead-item.open .lead-item-plus {
  transform: rotate(45deg);
  background: var(--cr); border-color: var(--cr); color: var(--white);
}
.lead-item-body {
  display: none;
  padding: 0 60px 28px 112px;
  font-size: 13.5px; line-height: 1.8;
  color: rgba(27,23,23,.58);
  max-width: 700px;
}
.lead-item.open .lead-item-body { display: block; }

/* ===== NIVO LOGO SVG ===== */
.nivo-logo-svg { flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .hero-content { padding: 0 28px 0; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .benchmark { padding: 40px 28px; }
  .services { grid-template-columns: 1fr; }
  .services-left, .services-right { padding: 48px 28px; }
  .about-split, .about-hero, .news-featured { grid-template-columns: 1fr; }
  .about-split-image, .about-hero-image { min-height: 320px; }
  .about-split-text, .about-hero-text { padding: 48px 28px; }
  .contact-section { grid-template-columns: 1fr; padding: 56px 28px; gap: 40px; }
  .works-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { border-right: none; }
  .lead-item-header { padding: 22px 28px; }
  .lead-item-body { padding: 0 28px 22px 28px; }
  .works-intro, .news-header, .lead-header, .footer { padding-left: 28px; padding-right: 28px; }
}

/* ===== SERVICE ACCORDION ===== */
.service-body {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .35s ease, opacity .3s ease;
  font-family: var(--ds); font-size: 13px; line-height: 1.8;
  color: rgba(237,235,221,.5);
  padding: 0 0 0 44px;
  border-bottom: .5px solid rgba(237,235,221,.12);
}
.service-row.open + .service-body { padding-bottom: 18px; }
.service-row { cursor: pointer; }
.service-row .service-arrow {
  font-size: 20px; font-weight: 300;
  color: rgba(237,235,221,.3);
  transition: color .15s, transform .25s;
  width: 20px; text-align: center;
}
.service-row.open .service-arrow { color: var(--cr); }
.service-row.open .service-name { color: var(--white); }

/* ===== PROJECT BRIEF PAGE ===== */
.brief-hero {
  padding-top: 52px;
  background: var(--nb);
}
.brief-hero-img {
  width: 100%; max-height: 560px; object-fit: cover; display: block;
}
.brief-meta {
  padding: 56px 60px 0;
  display: flex; flex-direction: column; gap: 20px;
}
.brief-client-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--cr);
}
.brief-title {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0; color: var(--cw);
}
.brief-tags {
  display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 40px;
}
.brief-tag {
  font-family: var(--ds); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  border: .5px solid rgba(237,235,221,.2);
  color: rgba(237,235,221,.5);
  padding: 6px 14px;
}
.brief-divider { height: .5px; background: rgba(237,235,221,.1); margin: 0 60px; }
.brief-body {
  background: var(--white);
}
.brief-section {
  padding: 64px 60px;
  border-bottom: .5px solid rgba(27,23,23,.07);
  max-width: 860px;
}
.brief-section-label {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 20px;
}
.brief-section h2 {
  font-family: var(--pf); font-weight: 700; font-size: clamp(22px, 2.5vw, 30px);
  color: var(--nb); margin-bottom: 20px; line-height: 1.2;
}
.brief-section p {
  font-family: var(--ds); font-size: 14.5px; line-height: 1.9;
  color: rgba(27,23,23,.68);
  margin-bottom: 16px;
}
.brief-section p:last-child { margin-bottom: 0; }
.brief-media-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; background: var(--nb); padding: 0;
}
.brief-media-grid img { width: 100%; display: block; object-fit: cover; }
.brief-media-grid img:first-child:last-child { grid-column: 1 / -1; }
.brief-media-full { width: 100%; display: block; }
.brief-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ds); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(237,235,221,.5); padding: 32px 60px;
  transition: color .2s, gap .2s;
}
.brief-back:hover { color: var(--cr); gap: 14px; }

/* ===== BLOG POST PAGE ===== */
.blog-hero {
  padding-top: 52px;
  background: var(--nb);
  padding-bottom: 56px;
}
.blog-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ds); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(237,235,221,.4); padding: 28px 60px 0;
  transition: color .2s, gap .2s;
}
.blog-back:hover { color: var(--cr); gap: 14px; }
.blog-hero-inner { padding: 40px 60px 0; max-width: 820px; }
.blog-pub {
  font-family: var(--ds); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cr); margin-bottom: 16px;
}
.blog-pub span { color: rgba(237,235,221,.3); margin: 0 8px; }
.blog-title {
  font-family: var(--pf); font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1; color: var(--cw);
  margin-bottom: 20px;
}
.blog-lede {
  font-family: var(--cg); font-style: italic; font-size: 18px;
  line-height: 1.65; color: rgba(237,235,221,.65);
}
.blog-featured-img {
  width: 100%; max-height: 500px; object-fit: cover; display: block;
}
.blog-content {
  max-width: 780px; margin: 0 auto;
  padding: 64px 60px 80px;
}
.blog-content h2 {
  font-family: var(--pf); font-weight: 700; font-size: 24px;
  color: var(--nb); margin: 48px 0 16px; line-height: 1.2;
}
.blog-content h2:first-child { margin-top: 0; }
.blog-content p {
  font-family: var(--ds); font-size: 15px; line-height: 1.9;
  color: rgba(27,23,23,.72); margin-bottom: 20px;
}
.blog-content p:last-child { margin-bottom: 0; }
.blog-content .blog-cta {
  margin-top: 48px; padding: 32px;
  border-left: 3px solid var(--cr);
  background: rgba(196,21,21,.04);
  font-family: var(--cg); font-style: italic; font-size: 16px;
  line-height: 1.7; color: rgba(27,23,23,.65);
}
