/* Maco Equity Partners — Trophy Asset design system */

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

:root{
  /* Backgrounds */
  --bg:#0d0c0a;
  --bg-deep:#080806;
  --bg-soft:#16140f;
  --bg-warm:#1a1812;
  --bg-card:#1c1a14;

  /* Text */
  --ivory:#f4f1ea;
  --ivory-soft:#e8e3d6;
  --muted:#8a8478;
  --faint:#5a554c;

  /* Brand */
  --bronze:#b89968;
  --bronze-soft:#d4b884;
  --bronze-deep:#8b6f47;
  --copper:#a87a4f;

  /* Lines */
  --rule:rgba(244,241,234,.10);
  --rule-strong:rgba(244,241,234,.20);
  --rule-bronze:rgba(184,153,104,.30);

  /* Containers */
  --container:1320px;
  --container-narrow:1100px;
  --container-text:720px;

  /* Shadow */
  --shadow-warm:0 30px 80px rgba(0,0,0,.5);
}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg);
  color:var(--ivory);
  line-height:1.7;
  font-weight:300;
  letter-spacing:.003em;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:"ss01","cv11";
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
::selection{background:var(--bronze);color:var(--bg)}

/* Subtle film grain over the whole site */
body::before{
  content:'';position:fixed;inset:0;z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 .95 0 0 0 0 .9 0 0 0 .04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;opacity:.45;pointer-events:none;
}
main,nav,footer,section,header{position:relative;z-index:2}

/* ===== Navigation ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  padding:1.6rem 5vw;
  display:flex;align-items:center;justify-content:space-between;
  transition:background .4s ease,backdrop-filter .4s ease,padding .3s ease;
}
.nav.scrolled{
  background:rgba(13,12,10,.78);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  padding:1.1rem 5vw;
  border-bottom:1px solid var(--rule);
}
.nav-logo{
  display:inline-flex;align-items:center;gap:.8rem;
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--ivory);
}
.nav-logo img{
  height:38px;width:auto;
  filter:invert(1) brightness(.95) sepia(.15) saturate(.7);
  opacity:.95;
}
.nav-logo .accent{color:var(--bronze)}
.nav-logo .text{display:inline-block}

.nav-toggle{
  display:none;background:transparent;border:none;cursor:pointer;
  width:36px;height:36px;flex-direction:column;
  justify-content:center;align-items:center;gap:5px;padding:0;
}
.nav-toggle span{
  display:block;width:24px;height:1.5px;
  background:var(--ivory);transition:transform .25s ease,opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-links{
  display:flex;gap:2.4rem;list-style:none;align-items:center;
  font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;
  font-weight:400;
}
.nav-links a{
  color:var(--ivory-soft);transition:color .3s;
  position:relative;padding:.3rem 0;
}
.nav-links a::after{
  content:'';position:absolute;left:0;right:0;bottom:0;
  height:1px;background:var(--bronze);
  transform:scaleX(0);transform-origin:left;
  transition:transform .4s ease;
}
.nav-links a:hover{color:var(--ivory)}
.nav-links a:hover::after,
.nav-links a.active::after{transform:scaleX(1)}
.nav-links a.active{color:var(--bronze)}

.nav-links a.nav-cta{
  background:transparent;
  color:var(--bronze);
  border:1px solid var(--bronze);
  padding:.6rem 1.3rem;
  letter-spacing:.25em;
  font-weight:500;
  transition:all .3s ease;
}
.nav-links a.nav-cta:hover{
  background:var(--bronze);color:var(--bg);
}
.nav-links a.nav-cta::after{display:none}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;gap:.7rem;
  padding:1rem 1.8rem;
  font-size:.72rem;font-weight:500;
  letter-spacing:.28em;text-transform:uppercase;
  border:1px solid transparent;
  cursor:pointer;transition:all .3s ease;
  font-family:inherit;
}
.btn svg{width:14px;height:14px;transition:transform .25s ease}
.btn:hover svg{transform:translateX(4px)}
.btn-primary{
  background:var(--bronze);color:var(--bg);border-color:var(--bronze);
}
.btn-primary:hover{background:var(--bronze-soft);border-color:var(--bronze-soft)}
.btn-ghost{
  background:transparent;color:var(--ivory);border-color:var(--rule-strong);
}
.btn-ghost:hover{border-color:var(--bronze);color:var(--bronze)}
.btn-outline{
  background:transparent;color:var(--bronze);border-color:var(--bronze);
}
.btn-outline:hover{background:var(--bronze);color:var(--bg)}

.text-link{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.7rem;font-weight:500;
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--bronze);
  padding-bottom:3px;border-bottom:1px solid var(--rule-bronze);
  transition:color .3s, border-color .3s;
}
.text-link svg{width:13px;height:13px;transition:transform .25s ease}
.text-link:hover{color:var(--bronze-soft);border-color:var(--bronze-soft)}
.text-link:hover svg{transform:translateX(3px)}

/* ===== Typography utilities ===== */
.eyebrow{
  display:inline-flex;align-items:center;gap:1rem;
  font-size:.7rem;letter-spacing:.4em;text-transform:uppercase;
  color:var(--bronze);font-weight:400;
  margin-bottom:2rem;
}
.eyebrow::before{
  content:'';width:30px;height:1px;background:var(--bronze);
}
.eyebrow.center{justify-content:center;display:flex}
.eyebrow.bookend{justify-content:center}
.eyebrow.bookend::after{
  content:'';width:30px;height:1px;background:var(--bronze);
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:clamp(2rem,4.5vw,4rem);
  line-height:1.08;letter-spacing:-.01em;
  color:var(--ivory);
  margin-bottom:1.3rem;
}
.section-title em{font-style:italic;color:var(--bronze-soft);font-weight:300}

.section-lede{
  font-size:1.08rem;color:var(--ivory-soft);
  line-height:1.7;font-weight:300;
  max-width:560px;margin-bottom:3rem;
}

.ornament{
  width:48px;height:1px;background:var(--bronze);
  margin:0 auto 3rem;position:relative;
}
.ornament::before{
  content:'';position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  width:7px;height:7px;background:var(--bronze);
}

/* ===== Page hero (non-landing) ===== */
.page-hero{
  padding:11rem 5vw 5rem;
  background:var(--bg);
  border-bottom:1px solid var(--rule);
  position:relative;
}
.page-hero-inner{
  max-width:var(--container);margin:0 auto;
}
.page-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:clamp(2.6rem,6vw,5.5rem);
  line-height:1;letter-spacing:-.015em;
  color:var(--ivory);
  margin-bottom:1.5rem;
  max-width:1000px;
}
.page-hero h1 em{font-style:italic;color:var(--bronze-soft);font-weight:300}
.page-hero p{
  font-size:1.15rem;color:var(--ivory-soft);
  max-width:640px;line-height:1.65;font-weight:300;
}

/* ===== Footer ===== */
.footer{
  background:var(--bg-deep);
  border-top:1px solid var(--rule);
  padding:5rem 5vw 2.5rem;
  color:var(--muted);
}
.footer-grid{
  max-width:var(--container);margin:0 auto;
  display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr;
  gap:3.5rem;
  padding-bottom:3rem;
  border-bottom:1px solid var(--rule);
}
.footer-brand .footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;font-size:1.3rem;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--ivory);
  margin-bottom:1.2rem;display:block;
}
.footer-brand .footer-logo .accent{color:var(--bronze)}
.footer-brand p{
  font-size:.92rem;color:var(--muted);
  line-height:1.7;max-width:380px;
  font-weight:300;
}
.footer-col h4{
  font-size:.65rem;font-weight:500;
  letter-spacing:.35em;text-transform:uppercase;
  color:var(--bronze);margin-bottom:1.3rem;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.8rem}
.footer-col a{
  font-size:.9rem;color:var(--ivory-soft);
  font-weight:300;
  transition:color .3s ease;
}
.footer-col a:hover{color:var(--bronze)}
.footer-bottom{
  max-width:var(--container);margin:2rem auto 0;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--faint);
}
.footer-bottom .meta{display:flex;gap:2rem}
.footer-bottom .meta a{color:var(--muted);transition:color .3s}
.footer-bottom .meta a:hover{color:var(--bronze)}

/* ===== Article (blog post) layout ===== */
.post-hero{
  padding:11rem 5vw 5rem;
  background:var(--bg);
  border-bottom:1px solid var(--rule);
}
.post-hero-inner{
  max-width:var(--container-text);margin:0 auto;
}
.post-cat{
  display:inline-block;
  background:transparent;border:1px solid var(--bronze);
  color:var(--bronze);
  font-size:.62rem;font-weight:500;
  letter-spacing:.35em;text-transform:uppercase;
  padding:.45rem 1rem;
  margin-bottom:2rem;
}
.post-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:clamp(2.4rem,5.5vw,4.6rem);
  line-height:1.05;letter-spacing:-.012em;
  color:var(--ivory);
  margin-bottom:2rem;
}
.post-hero h1 em{font-style:italic;color:var(--bronze-soft);font-weight:300}
.post-meta{
  display:flex;align-items:center;gap:1.1rem;
  font-size:.72rem;letter-spacing:.18em;
  text-transform:uppercase;color:var(--muted);
  flex-wrap:wrap;
}
.post-meta .author-avatar{
  width:34px;height:34px;border-radius:50%;
  background:linear-gradient(135deg,var(--bronze),var(--bronze-deep));
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--bg);
  font-family:'Cormorant Garamond',serif;
  font-weight:600;font-size:.75rem;letter-spacing:0;
}
.post-meta .author-name{color:var(--ivory)}
.post-meta .dot{width:3px;height:3px;background:var(--faint);border-radius:50%}

.post-body{
  padding:5rem 5vw 6rem;
  background:var(--bg);
}
.post-body-inner{
  max-width:var(--container-text);margin:0 auto;
  font-size:1.08rem;line-height:1.85;
  color:var(--ivory-soft);font-weight:300;
}
.post-body-inner p{margin-bottom:1.5rem}
.post-body-inner > p:first-of-type{
  font-size:1.25rem;color:var(--ivory);font-weight:300;
  line-height:1.65;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
}
.post-body-inner h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(1.7rem,3vw,2.4rem);
  color:var(--ivory);
  line-height:1.2;letter-spacing:-.005em;
  margin:3.5rem 0 1.2rem;
}
.post-body-inner h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;
  font-size:1.4rem;color:var(--ivory);
  margin:2.6rem 0 1rem;
  letter-spacing:.005em;
}
.post-body-inner ul,
.post-body-inner ol{
  padding-left:1.6rem;margin-bottom:1.8rem;
}
.post-body-inner li{margin-bottom:.7rem}
.post-body-inner strong{color:var(--ivory);font-weight:500}
.post-body-inner a{
  color:var(--bronze);font-weight:400;
  text-decoration:underline;
  text-decoration-color:var(--rule-bronze);
  text-underline-offset:4px;
  transition:text-decoration-color .3s;
}
.post-body-inner a:hover{text-decoration-color:var(--bronze)}
.post-body-inner blockquote{
  border-left:2px solid var(--bronze);
  padding:1rem 0 1rem 2rem;
  margin:2.5rem 0;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.4rem;
  color:var(--ivory);
  line-height:1.4;font-weight:300;
}
.post-callout{
  background:var(--bg-soft);
  border-left:2px solid var(--bronze);
  padding:1.6rem 1.8rem;
  margin:2.5rem 0;
}
.post-callout strong{
  color:var(--bronze);display:block;
  margin-bottom:.5rem;
  font-size:.7rem;letter-spacing:.3em;
  text-transform:uppercase;font-weight:500;
  font-family:'Inter',sans-serif;font-style:normal;
}
.post-callout p{margin-bottom:0;font-size:1rem;color:var(--ivory-soft)}
.post-divider{
  border:none;height:1px;background:var(--rule);
  margin:3.5rem auto;width:80px;position:relative;
}
.post-divider::after{
  content:'';position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%) rotate(45deg);
  width:6px;height:6px;background:var(--bronze);
}

.post-footer-cta{
  max-width:var(--container-text);margin:3.5rem auto 0;
  padding:2.5rem;
  background:var(--bg-soft);
  border:1px solid var(--rule);
  text-align:center;
}
.post-footer-cta p{
  font-size:1rem;color:var(--ivory-soft);
  margin-bottom:1.5rem;font-weight:300;
}

.related-posts{
  padding:5rem 5vw;
  background:var(--bg-deep);
  border-top:1px solid var(--rule);
}
.related-posts-inner{max-width:var(--container);margin:0 auto}
.related-posts h2{
  font-family:'Cormorant Garamond',serif;
  font-size:1.7rem;font-weight:400;
  color:var(--ivory);margin-bottom:2.5rem;
  letter-spacing:-.005em;
}
.related-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  border-top:1px solid var(--rule);
}
.related-card{
  padding:2rem 1.5rem 2rem 0;
  border-right:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  transition:padding .4s ease;
  display:block;
}
.related-card:nth-child(even){padding-left:1.5rem;padding-right:0}
.related-card:last-child{border-right:none}
.related-card:hover{padding-left:1rem}
.related-card:nth-child(even):hover{padding-left:2.5rem}
.related-cat{
  font-size:.62rem;font-weight:500;
  letter-spacing:.35em;text-transform:uppercase;
  color:var(--bronze);margin-bottom:.7rem;
}
.related-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:500;
  color:var(--ivory);line-height:1.3;
}

/* ===== Action buttons (export PDF / CSV) ===== */
.report-actions,
.post-actions{
  display:flex;gap:.6rem;flex-wrap:wrap;
  margin-top:2rem;
}
.report-action,
.post-action{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.65rem 1.2rem;
  font-family:'Inter',sans-serif;
  font-size:.65rem;font-weight:500;
  letter-spacing:.28em;text-transform:uppercase;
  background:transparent;
  color:var(--bronze);
  border:1px solid var(--bronze);
  cursor:pointer;
  transition:all .25s ease;
}
.report-action:hover,
.post-action:hover{
  background:var(--bronze);color:var(--bg);
}
.report-action svg,
.post-action svg{
  width:13px;height:13px;flex-shrink:0;
}

/* ===== Reports (market research PDFs styled as web) ===== */
.report-hero{
  padding:9rem 5vw 4rem;
  background:var(--bg);
  border-bottom:1px solid var(--rule);
}
.report-hero-inner{
  max-width:var(--container);margin:0 auto;
  display:grid;grid-template-columns:auto 1fr;
  gap:3rem;align-items:center;
}
.report-hero-mark{
  width:120px;flex-shrink:0;
}
.report-hero-mark img{
  width:100%;height:auto;
  filter:invert(1) brightness(.95) sepia(.2) saturate(.8);
  opacity:.95;
}
.report-hero-meta{
  display:flex;align-items:center;gap:1.2rem;
  font-size:.65rem;letter-spacing:.35em;
  text-transform:uppercase;color:var(--bronze);
  margin-bottom:1.5rem;font-weight:500;
}
.report-hero-meta .dot{
  width:4px;height:4px;background:var(--bronze);border-radius:50%;
}
.report-hero-meta .muted{color:var(--muted)}
.report-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:300;
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.05;letter-spacing:-.012em;
  color:var(--ivory);
  margin-bottom:1rem;
}
.report-hero h1 em{font-style:italic;color:var(--bronze-soft);font-weight:300}
.report-hero .subtitle{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;font-weight:300;
  font-size:1.3rem;color:var(--ivory-soft);
  line-height:1.5;max-width:780px;
}

.report-tldr{
  padding:4rem 5vw 0;
  background:var(--bg);
}
.report-tldr-inner{
  max-width:var(--container);margin:0 auto;
  background:var(--bg-soft);
  border-left:2px solid var(--bronze);
  padding:2.5rem 2.5rem 2rem;
}
.report-tldr-label{
  font-size:.62rem;font-weight:500;
  letter-spacing:.35em;text-transform:uppercase;
  color:var(--bronze);margin-bottom:1.2rem;
}
.report-tldr-inner h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;font-size:1.5rem;
  color:var(--ivory);line-height:1.3;
  margin-bottom:1.2rem;letter-spacing:-.005em;
}
.report-tldr-inner ul{
  list-style:none;padding:0;display:flex;
  flex-direction:column;gap:.8rem;
}
.report-tldr-inner li{
  display:flex;gap:.8rem;align-items:flex-start;
  font-size:.98rem;color:var(--ivory-soft);
  line-height:1.6;font-weight:300;
}
.report-tldr-inner li::before{
  content:'';flex-shrink:0;
  width:6px;height:6px;border-radius:50%;
  background:var(--bronze);margin-top:.55rem;
}

.report-kpi{padding:4rem 5vw 3rem;background:var(--bg)}
.report-kpi-band{
  max-width:var(--container);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
.report-kpi-band .kpi{
  padding:2.5rem 1.8rem;
  border-right:1px solid var(--rule);
  position:relative;
}
.report-kpi-band .kpi:last-child{border-right:none}
.report-kpi-band .kpi-label{
  font-size:.6rem;letter-spacing:.32em;
  text-transform:uppercase;color:var(--bronze);
  font-weight:500;margin-bottom:1rem;
}
.report-kpi-band .kpi-value{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,3.5vw,3.2rem);
  font-weight:300;color:var(--ivory);
  letter-spacing:-.015em;line-height:1;
  margin-bottom:.6rem;
}
.report-kpi-band .kpi-value .unit{
  font-size:.5em;color:var(--muted);margin-left:.15em;font-weight:400;
}
.report-kpi-band .kpi-delta{
  font-size:.78rem;color:var(--bronze);
  font-weight:400;letter-spacing:.04em;
}
.report-kpi-band .kpi-delta.down{color:#c97a6a}
.report-kpi-source{
  max-width:var(--container);margin:1.2rem auto 0;
  font-size:.65rem;letter-spacing:.2em;
  text-transform:uppercase;color:var(--muted);text-align:right;
}

.report-body{
  padding:5rem 5vw 6rem;background:var(--bg);
}
.report-body-inner{
  max-width:980px;margin:0 auto;
  font-size:1.05rem;line-height:1.8;
  color:var(--ivory-soft);font-weight:300;
}
.report-section{margin-bottom:6rem;position:relative}
.report-section:last-child{margin-bottom:0}

/* Editorial chapter marker — bold visual cue that a new section begins */
.report-section-num{
  display:flex;align-items:center;gap:1.4rem;
  margin:0 0 2.5rem;padding-top:2rem;
  font-family:'Cormorant Garamond',serif;
  color:var(--bronze);
  text-transform:none;letter-spacing:0;
}
.report-section-num::before{
  content:'Part';
  flex-shrink:0;
  font-family:'Inter',sans-serif;
  font-style:normal;
  font-size:.62rem;
  font-weight:500;
  letter-spacing:.36em;
  text-transform:uppercase;
  color:var(--bronze);
  padding-right:.3rem;
}
.report-section-num::after{
  content:'';
  flex:1;
  height:1px;
  background:linear-gradient(90deg,var(--bronze) 0%,var(--bronze) 35%,rgba(184,153,104,0) 100%);
  opacity:.55;
}
/* The Roman numeral text itself */
.report-section .report-section-num{
  font-size:1.9rem;
  font-style:italic;
  font-weight:400;
}
/* Inner number element styling — for browsers handling text directly */
.report-section-num{line-height:1}

/* Decorative drop-quote behind larger sections — adds editorial flourish */
.report-section h2{
  position:relative;
}
.report-section h2::before{
  content:'';
  position:absolute;
  left:-1.4rem;
  top:.4em;
  bottom:.2em;
  width:2px;
  background:linear-gradient(180deg,var(--bronze) 0%,rgba(184,153,104,0) 100%);
  opacity:.35;
}
.report-section h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  font-size:clamp(1.8rem,3.2vw,2.6rem);
  color:var(--ivory);line-height:1.15;
  letter-spacing:-.005em;margin-bottom:1.8rem;
}
.report-section h2 em{font-style:italic;color:var(--bronze-soft);font-weight:300}
.report-section h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;font-size:1.35rem;
  color:var(--ivory);margin:2.5rem 0 1rem;
  letter-spacing:.005em;
}
.report-section p{margin-bottom:1.4rem}
.report-section strong{color:var(--ivory);font-weight:500}
.report-section ul{padding-left:1.6rem;margin-bottom:1.6rem}
.report-section li{margin-bottom:.6rem}

.report-chart{
  background:var(--bg-soft);
  border:1px solid var(--rule);
  padding:2rem 2rem 1.5rem;
  margin:2.5rem 0;
}
.report-chart-head{
  display:flex;justify-content:space-between;align-items:flex-start;
  margin-bottom:1.5rem;flex-wrap:wrap;gap:1rem;
}
.report-chart-eyebrow{
  font-size:.6rem;letter-spacing:.32em;
  text-transform:uppercase;color:var(--bronze);
  font-weight:500;margin-bottom:.4rem;display:block;
}
.report-chart-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;font-size:1.25rem;
  color:var(--ivory);letter-spacing:-.005em;
}
.report-chart-source{
  font-size:.65rem;letter-spacing:.2em;
  text-transform:uppercase;color:var(--muted);
  text-align:right;
}
.report-chart svg{width:100%;height:auto;display:block;max-height:380px}
.report-chart-legend{
  display:flex;gap:1.5rem;flex-wrap:wrap;
  margin-top:1rem;
  font-size:.78rem;color:var(--ivory-soft);
}
.report-chart-legend-item{
  display:inline-flex;align-items:center;gap:.5rem;
}
.report-chart-legend-item .swatch{
  width:10px;height:10px;border-radius:1px;
}

.report-table-wrap{
  margin:2rem 0;overflow-x:auto;
}
.report-table{
  width:100%;border-collapse:collapse;
  font-size:.95rem;
}
.report-table th{
  text-align:left;
  padding:1rem .8rem;
  border-bottom:1px solid var(--rule-strong);
  color:var(--bronze);
  font-size:.62rem;font-weight:500;
  letter-spacing:.28em;text-transform:uppercase;
  white-space:nowrap;
}
.report-table th.num{text-align:right}
.report-table td{
  padding:1rem .8rem;
  border-bottom:1px solid var(--rule);
  color:var(--ivory-soft);font-weight:300;
}
.report-table td.num{
  text-align:right;
  font-variant-numeric:tabular-nums;
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;color:var(--ivory);
  font-weight:400;
}
.report-table td.bold{color:var(--ivory);font-weight:500}
.report-table tr:last-child td{border-bottom:none}
.report-table tr.total td{
  border-top:1px solid var(--rule-strong);
  background:var(--bg-soft);
  color:var(--ivory);font-weight:500;
}

.report-callout{
  background:var(--bg-soft);
  border-left:2px solid var(--bronze);
  padding:1.8rem 2rem;
  margin:2.5rem 0;
}
.report-callout-label{
  color:var(--bronze);display:block;
  margin-bottom:.6rem;
  font-size:.62rem;letter-spacing:.32em;
  text-transform:uppercase;font-weight:500;
}
.report-callout p{margin-bottom:0;font-size:1rem;color:var(--ivory)}

.report-deal-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1.5rem;margin:2rem 0;
}
.report-deal{
  background:var(--bg-soft);
  border:1px solid var(--rule);
  padding:1.8rem;
  transition:border-color .3s ease;
}
.report-deal:hover{border-color:var(--rule-bronze)}
.report-deal-tag{
  display:inline-block;
  font-size:.6rem;letter-spacing:.3em;
  text-transform:uppercase;color:var(--bronze);
  margin-bottom:.8rem;font-weight:500;
}
.report-deal h4{
  font-family:'Cormorant Garamond',serif;
  font-weight:500;font-size:1.2rem;
  color:var(--ivory);margin-bottom:.4rem;
  letter-spacing:-.005em;
}
.report-deal .submarket{
  font-size:.85rem;color:var(--muted);
  margin-bottom:1rem;font-style:italic;
}
.report-deal-stats{
  display:grid;grid-template-columns:1fr 1fr;
  gap:.8rem;padding-top:1rem;
  border-top:1px solid var(--rule);
}
.report-deal-stat .label{
  font-size:.58rem;letter-spacing:.28em;
  text-transform:uppercase;color:var(--bronze);
  margin-bottom:.2rem;
}
.report-deal-stat .value{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;color:var(--ivory);font-weight:400;
}

.report-blockquote{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;font-weight:300;
  font-size:1.55rem;color:var(--ivory);
  line-height:1.4;
  margin:3rem 0;padding-left:2rem;
  border-left:2px solid var(--bronze);
}
.report-blockquote em{color:var(--bronze-soft)}

.report-methodology{
  padding:5rem 5vw;
  background:var(--bg-deep);
  border-top:1px solid var(--rule);
}
.report-methodology-inner{
  max-width:var(--container);margin:0 auto;
  display:grid;grid-template-columns:1fr 1.5fr;gap:5vw;
}
.report-methodology p{
  color:var(--ivory-soft);font-weight:300;
  line-height:1.8;font-size:1rem;
  margin-bottom:1.2rem;
}
.report-methodology .source-list{
  display:grid;grid-template-columns:1fr 1fr;
  gap:.5rem;margin-top:1.5rem;
}
.report-methodology .source-list span{
  font-size:.85rem;color:var(--ivory-soft);
  padding:.7rem 1rem;border:1px solid var(--rule);
  font-weight:300;letter-spacing:.02em;
}

.report-disclaimer{
  padding:3rem 5vw;background:var(--bg-deep);
  border-top:1px solid var(--rule);
}
.report-disclaimer-inner{
  max-width:var(--container);margin:0 auto;
}
.report-disclaimer p{
  font-size:.78rem;color:var(--muted);
  line-height:1.7;font-weight:300;
  margin-bottom:.7rem;
}
.report-disclaimer strong{color:var(--ivory-soft)}
.report-disclaimer a{color:var(--bronze)}

@media(max-width:860px){
  .report-hero-inner{grid-template-columns:1fr;gap:2rem}
  .report-hero-mark{width:80px}
  .report-tldr-inner{padding:2rem 1.5rem 1.5rem}
  .report-kpi-band{grid-template-columns:repeat(2,1fr)}
  .report-kpi-band .kpi:nth-child(2){border-right:none}
  .report-kpi-band .kpi:nth-child(-n+2){border-bottom:1px solid var(--rule)}
  .report-deal-grid{grid-template-columns:1fr}
  .report-methodology-inner{grid-template-columns:1fr;gap:2.5rem}
  .report-methodology .source-list{grid-template-columns:1fr}
}

/* ===== Responsive ===== */
@media(max-width:960px){
  .nav-toggle{display:flex}
  .nav-links{
    position:fixed;top:68px;left:0;right:0;
    background:rgba(13,12,10,.97);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    flex-direction:column;gap:0;
    padding:1.2rem 5vw 2.5rem;
    border-bottom:1px solid var(--rule);
    transform:translateY(-12px);opacity:0;visibility:hidden;
    transition:transform .3s ease,opacity .25s ease,visibility 0s linear .3s;
    align-items:stretch;
  }
  .nav-links.open{
    transform:translateY(0);opacity:1;visibility:visible;
    transition:transform .3s ease,opacity .25s ease,visibility 0s linear 0s;
  }
  .nav-links li{border-bottom:1px solid var(--rule)}
  .nav-links li:last-child{border-bottom:none}
  .nav-links a{
    display:block;padding:1.2rem 0;
    font-size:.85rem;letter-spacing:.25em;
  }
  .nav-links a::after{display:none}
  .nav-links a.nav-cta{
    text-align:center;margin-top:.8rem;
    padding:1rem;
  }
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}
  .related-grid{grid-template-columns:1fr}
  .related-card,.related-card:nth-child(even){
    padding:1.5rem 0;border-right:none;
  }
  .related-card:hover,.related-card:nth-child(even):hover{padding-left:.5rem}
}
@media(max-width:640px){
  .nav{padding:1.2rem 5vw}
  .nav-logo{font-size:1.05rem}
  .nav-logo .text{display:none}
  .page-hero{padding:9rem 5vw 4rem}
  .post-hero{padding:9rem 5vw 4rem}
  .post-body{padding:3.5rem 5vw 4.5rem}
  .post-body-inner{font-size:1rem}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* Watermark — hidden on screen, shown only in print */
.print-watermark{display:none}

/* ===== Print styles (Save as PDF) ===== */
@media print{
  @page{
    size:letter;
    margin:.85in .7in .85in;
    @top-left{
      content:"Maco · Equity Partners";
      font-family:'Cormorant Garamond',Georgia,serif;
      font-size:10pt;font-weight:500;
      letter-spacing:.08em;text-transform:uppercase;
      color:#8b6f47;
    }
    @top-right{
      content:"Confidential · macoequitypartners.com";
      font-family:'Inter',sans-serif;
      font-size:8pt;font-weight:500;
      letter-spacing:.18em;text-transform:uppercase;
      color:#8b6f47;
    }
    @bottom-center{
      content:"Page " counter(page) " of " counter(pages);
      font-family:'Inter',sans-serif;
      font-size:8pt;font-weight:500;
      letter-spacing:.18em;text-transform:uppercase;
      color:#8b6f47;
    }
    @bottom-left{
      content:"Maco Equity Partners Research";
      font-family:'Inter',sans-serif;
      font-size:7pt;font-weight:400;
      letter-spacing:.15em;text-transform:uppercase;
      color:#aaa;
    }
    @bottom-right{
      content:"rmac@macoequitypartners.com";
      font-family:'Inter',sans-serif;
      font-size:7pt;font-weight:400;
      letter-spacing:.12em;
      color:#aaa;
    }
  }

  /* Diagonal confidentiality watermark — repeats on every page */
  .print-watermark{
    display:block !important;
    position:fixed;
    top:0;left:0;right:0;bottom:0;
    pointer-events:none;
    z-index:9999;
  }
  .print-watermark::before{
    content:"Maco Equity Partners  ·  Confidential";
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%,-50%) rotate(-30deg);
    transform-origin:center;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:5.5rem;
    font-weight:300;
    color:#8b6f47;
    opacity:.06;
    white-space:nowrap;
    letter-spacing:.08em;
    text-transform:uppercase;
  }

  /* Force light background + remove decorative effects so the PDF prints cleanly */
  body{background:#fff !important;color:#1a1a2e !important}
  body::before{display:none !important}

  /* Hide all interactive chrome */
  .nav,.nav-toggle,.footer,
  .scroll-indicator,.hero-scroll,
  .report-actions,.post-actions,
  .post-footer-cta,.report-disclaimer,
  .cta-section,.cta-strip,.subscribe,
  .editorial,.related-posts,
  .featured-section,.filters-bar,.posts-section,
  .nav-cta{display:none !important}

  /* Convert dark sections to light */
  section,
  .report-hero,.report-body,.report-tldr,.report-kpi,
  .report-methodology,
  .post-hero,.post-body{
    background:#fff !important;
    color:#1a1a2e !important;
    padding:.5rem 0 !important;
    border:none !important;
  }

  /* Page hero spacing */
  .report-hero{padding-top:0 !important}
  .post-hero{padding-top:0 !important}

  /* Logo */
  .report-hero-mark img,.nav-logo img{filter:none !important;opacity:1 !important}

  /* Type colors */
  h1,h2,h3,h4,.section-title{color:#0d0c0a !important}
  h1 em,h2 em,h3 em,.section-title em{color:#8b6f47 !important}
  p,li,td,.subtitle{color:#1a1a2e !important}
  strong{color:#0d0c0a !important}

  /* Eyebrows + meta */
  .eyebrow,.eyebrow::before,.eyebrow::after,
  .report-hero-meta,.post-meta,
  .report-section-num,.report-kpi-source,
  .report-chart-eyebrow,.report-chart-source,
  .post-cat{color:#8b6f47 !important}
  .eyebrow::before,.eyebrow::after{background:#8b6f47 !important}

  /* KPI band */
  .report-kpi-band{
    border-top:1px solid #ccc !important;
    border-bottom:1px solid #ccc !important;
    page-break-inside:avoid;
  }
  .report-kpi-band .kpi{border-right:1px solid #ddd !important}
  .report-kpi-band .kpi-value{color:#0d0c0a !important}
  .report-kpi-band .kpi-delta{color:#8b6f47 !important}

  /* TL;DR callout */
  .report-tldr-inner{
    background:#faf9f5 !important;
    border-left:2px solid #8b6f47 !important;
    page-break-inside:avoid;
  }
  .report-tldr-inner li::before{background:#8b6f47 !important}

  /* Charts — keep dark fill colors via inline SVG, only re-tint axis labels and grid */
  .report-chart{
    background:#faf9f5 !important;
    border:1px solid #ddd !important;
    page-break-inside:avoid;
  }
  .report-chart text[fill="#8a8478"]{fill:#666 !important}
  .report-chart line[stroke^="rgba(244"]{stroke:#ddd !important}

  /* Tables */
  .report-table th{
    color:#8b6f47 !important;
    border-bottom:1px solid #999 !important;
  }
  .report-table td{
    color:#1a1a2e !important;
    border-bottom:1px solid #e0e0e0 !important;
  }
  .report-table tr.total td{
    background:#faf9f5 !important;
    border-top:1px solid #999 !important;
  }
  .report-table-wrap{page-break-inside:avoid}

  /* Deal cards */
  .report-deal{
    background:#faf9f5 !important;
    border:1px solid #ddd !important;
    page-break-inside:avoid;
  }
  .report-deal .submarket{color:#555 !important}
  .report-deal-stat .label{color:#8b6f47 !important}
  .report-deal-stat .value{color:#0d0c0a !important}

  /* Callouts */
  .report-callout,.post-callout{
    background:#faf9f5 !important;
    border-left:2px solid #8b6f47 !important;
    page-break-inside:avoid;
  }
  .report-callout-label,.post-callout strong{color:#8b6f47 !important}
  .post-callout p{color:#1a1a2e !important}

  /* Blockquotes */
  .report-blockquote,
  .post-body-inner blockquote{
    color:#1a1a2e !important;
    border-left-color:#8b6f47 !important;
  }
  .report-blockquote em,
  .post-body-inner blockquote em{color:#8b6f47 !important}

  /* Article body */
  .post-body-inner > p:first-of-type{color:#0d0c0a !important}

  /* Methodology source list */
  .report-methodology .source-list span{
    border:1px solid #ddd !important;
    color:#1a1a2e !important;
  }

  /* Section page-break behavior */
  .report-section{page-break-inside:avoid}
  .report-section h2,.post-body-inner h2{
    page-break-after:avoid;
  }
  .report-section + .report-section{page-break-before:auto}

  /* Hide hero background images */
  .hero,.hero::before,.hero::after,
  .hero-image,.network-image,.network::before{display:none !important}

  /* Links — show URL after for context */
  a[href^="http"]::after{
    content:" (" attr(href) ")";
    font-size:.85em;color:#888;
  }
  a[href^="mailto:"]::after{content:""}
  a[href^="#"]::after,a[href^="index"]::after,a[href^="research"]::after,
  a[href^="blog"]::after,a[href^="post-"]::after,a[href^="Q1_"]::after{content:""}
}

