/* =========================================
   RHINO DESIGN BUILD — Bliize-Inspired
   Clean, elegant. Red + Black palette.
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color */
  --black: #0a0a0a;
  --dark: #161616;
  --dark-2: #1f1f1f;
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-soft: #e63346;
  --cream: #f7f4ef;
  --cream-2: #efeae1;
  --white: #ffffff;
  --text: #2c2c2c;
  --muted: #6f6f6f;
  --line: #e7e2d8;
  --line-dark: #2a2a2a;

  /* Type scale — modular, used across the site */
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-22: 1.375rem;
  --fs-28: 1.75rem;
  --fs-36: 2.25rem;

  /* Display scale — editorial / Bliize-style oversize */
  --type-hero:    clamp(3.5rem, 11vw, 10rem);    /* 56 → 160px */
  --type-display: clamp(2.8rem,  8vw,  7rem);    /* 45 → 112px — page banners + section displays */
  --type-section: clamp(2.2rem,  5vw,  4.5rem);  /* 35 → 72px — secondary section heads */
  --type-headline: clamp(1.8rem, 3.6vw, 3rem);   /* 29 → 48px — inline H2/H3 */

  /* Tight display tracking */
  --track-display: -0.02em;
  --track-headline: -0.015em;

  /* Vertical rhythm — generous editorial spacing */
  --space-section:    clamp(8rem, 14vw, 12rem);  /* full section padding */
  --space-block:      clamp(4rem,  8vw,  7rem);  /* between section heads and content */
  --space-eyebrow:    clamp(1.5rem, 3vw, 2.5rem); /* eyebrow → headline */
  --space-headline:   clamp(1.75rem, 3.2vw, 2.75rem); /* headline → body */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--black);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: var(--track-headline);
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }

/* ---- Utility ---- */
.section-padding { padding: var(--space-section) 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-eyebrow);
  position: relative;
  padding-left: 52px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--red);
}
.eyebrow.light { color: var(--cream-2); }
.eyebrow.light::before { background: var(--cream-2); }

.display-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: var(--type-display);
  line-height: 1.0;
  letter-spacing: var(--track-display);
  color: var(--black);
}
.display-heading.spaced { letter-spacing: 0; }
.display-heading.light { color: var(--white); }
.display-heading.headline { font-size: var(--type-headline); line-height: 1.1; }

.lede {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 640px;
}

/* ---- Buttons ---- */
.btn-rhino {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--red);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-rhino:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-rhino .arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}
.btn-rhino:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--white);
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---- NAVBAR (non-sticky — scrolls away with the page) ---- */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-logo { width: 160px; height: auto; }
.navbar-brand { padding-left: 50px; }
@media (max-width: 575px) { .navbar-brand { padding-left: 16px; } }

.navbar-nav .nav-link {
  color: var(--black) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.navbar.scrolled .navbar-nav .nav-link { color: var(--black) !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 20px; right: 20px;
  bottom: 4px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.navbar-nav .nav-link:hover { color: var(--red) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--red) !important; }
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red) !important;
  border: 1px solid var(--red);
  color: var(--white) !important;
  padding: 11px 28px !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  margin-left: 12px;
  transition: all 0.3s;
}
.nav-cta:hover,
.navbar-nav .nav-link.nav-cta:hover,
.navbar-nav .nav-link.nav-cta.active:hover {
  background: var(--black) !important;
  border-color: var(--black);
  color: var(--white) !important;
}
/* Contact pill must stay white-on-red even when it's the active page */
.navbar-nav .nav-link.nav-cta,
.navbar-nav .nav-link.nav-cta.active {
  color: var(--white) !important;
}
.navbar-nav .nav-link.nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1px solid var(--black);
  padding: 6px 10px;
  border-radius: 0;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    margin-top: 14px;
    border-top: 1px solid var(--line);
  }
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10,10,10,0.55), rgba(10,10,10,0.65)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  display: inline-block;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 48px; height: 1px;
  background: var(--red);
}
.hero-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: var(--type-hero);
  line-height: 0.98;
  letter-spacing: var(--track-display);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: none;
}
.hero-display .red { color: var(--red); }
.hero-display .stack { display: block; }
.hero-intro {
  max-width: 690px;   /* widened ~15% from 600px so the intro runs fewer lines */
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  margin: 30px 0 42px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ---- ABOUT ---- */
.about-section { background: var(--cream); }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: saturate(0.95);
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--red);
  z-index: -1;
}
.about-stat-floater {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--black);
  color: var(--white);
  padding: 30px 38px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.about-stat-floater .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.about-stat-floater .label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: var(--type-headline);
  letter-spacing: var(--track-headline);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: var(--space-headline);
  text-transform: none;
}
.about-heading .red { color: var(--red); }

.about-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.video-link .play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-link:hover .play { background: var(--black); transform: scale(1.08); }

/* ---- SERVICES ---- */
.services-section { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card {
  background: var(--cream);
  padding: 56px 38px 48px;
  text-align: left;
  border: 1px solid var(--line);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { border-color: var(--black); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover h4, .service-card:hover p, .service-card:hover .service-num, .service-card:hover .service-icon i { color: var(--white); }
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-card:hover .service-arrow { color: var(--red); transform: translateX(6px); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 4px;
  margin-bottom: 22px;
  transition: color 0.3s;
}
.service-icon {
  width: 70px; height: 70px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}
.service-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: var(--track-headline);
  line-height: 1.1;
  transition: color 0.3s;
}
.service-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
  transition: color 0.3s;
}
.service-arrow {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

/* ---- PORTFOLIO ---- */
.portfolio-section { background: var(--cream); }
.project-card {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 38px;
  transition: background 0.4s ease;
}
.project-card:hover .project-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.95) 100%);
}
.project-meta {
  color: var(--cream-2);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}
.project-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: var(--track-headline);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.project-title .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.project-card:hover .project-title .arrow { background: var(--white); color: var(--red); }

/* ---- STATS ---- */
.stats-section {
  background: var(--black);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  border-top: 4px solid var(--red);
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
}
.stat-item:last-child { border-right: none; }
@media (max-width: 767px) { .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; } }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px 42px;
  position: relative;
  height: 100%;
}
.testimonial-card.dark {
  background: var(--black);
  border-color: var(--line-dark);
  color: var(--white);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: var(--track-headline);
  color: var(--black);
  margin-bottom: 36px;
}
.testimonial-card.dark .testimonial-text { color: var(--white); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}
.author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-info h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 4px;
  letter-spacing: var(--track-headline);
  line-height: 1.1;
}
.testimonial-card.dark .author-info h6 { color: var(--white); }
.author-info span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-card.dark .author-info span { color: rgba(255,255,255,0.55); }
.stars { color: var(--red); margin-left: auto; font-size: 13px; letter-spacing: 2px; }

/* ---- HOA SECTION ---- */
.hoa-section { background: var(--cream-2); position: relative; }
.hoa-feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hoa-feature:last-child { border-bottom: none; }
.hoa-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--red);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hoa-feature h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 10px;
  letter-spacing: var(--track-headline);
  line-height: 1.1;
}
.hoa-feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover;
  opacity: 0.18;
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: var(--type-display);
  letter-spacing: var(--track-display);
  line-height: 1.0;
  text-transform: none;
  color: var(--white);
  margin-bottom: var(--space-headline);
}
.cta-section p {
  max-width: 720px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}
.cta-actions { display: inline-flex; flex-wrap: wrap; gap: 18px; justify-content: center; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-img {
  width: 160px;
  margin-bottom: 26px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: all 0.3s;
  font-size: 14px;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: var(--track-headline);
  line-height: 1.2;
  position: relative;
  padding-bottom: 14px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--red);
}
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}
.footer-list a:hover { color: var(--red); padding-left: 8px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer-contact-item i {
  color: var(--red);
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-newsletter {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button {
  background: var(--red);
  border: 0;
  color: var(--white);
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-newsletter button:hover { background: var(--red-dark); }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 22px;
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--red); }

/* ---- Page Banner (Bliize-style: light bg, pill tag, huge serif title) ---- */
.page-banner {
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fixed banner height — same on every page regardless of headline line count. */
  min-height: clamp(560px, 60vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;  /* clears fixed nav at top; minimum bottom buffer */
}
.page-banner .pill-tag {
  display: inline-block;
  background: var(--cream-2);
  color: var(--black);
  padding: 16px 44px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.8px;
  margin-bottom: var(--space-eyebrow);
}
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 76px;
  line-height: 1.05;
  letter-spacing: var(--track-display);
  color: var(--white);
  margin: 0 auto;
  max-width: 1400px;
  text-transform: none;
}
.page-banner h1 .red { color: var(--red); }
.page-banner .sub-line {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-top: 26px;
  text-transform: uppercase;
}
.page-banner .sub-line a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.page-banner .sub-line a:hover { color: var(--red); }
.page-banner .sub-line .sep { margin: 0 10px; color: var(--red); }

/* ---- Helpers ---- */
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: var(--space-block); }
.section-title-row.center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }

.divider-mini {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 20px 0;
}
.section-title-row.center .divider-mini { margin: 20px auto; }

/* ---- Wide-tracked serif section-label (Bliize signature motif) ---- */
.section-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 1.2em;
  text-indent: 1.2em;      /* compensate for the trailing space the tracking creates */
  color: var(--black);
  text-align: center;
  margin-bottom: var(--space-block);
  line-height: 1.4;
}
.section-label.muted { color: var(--muted); }
.section-label.light { color: var(--cream-2); }

/* ---- Wider container at large desktop (display-type needs the room) ---- */
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1480px;
  }
}

/* =========================================
   INNER-PAGE COMPONENTS
   ========================================= */

/* ---- Breadcrumb (works with old class name) ---- */
.page-banner .breadcrumb-nav {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.page-banner .breadcrumb-nav a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.page-banner .breadcrumb-nav a:hover { color: var(--red); }
.page-banner .breadcrumb-nav .sep { margin: 0 14px; color: var(--red); }
.page-banner .breadcrumb-nav .current { color: var(--white); }

/* ---- Text-block (generic content within inner-page sections) ---- */
.text-block h2,
.text-block h3,
.text-block h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: var(--track-headline);
  font-weight: 400;
}
.text-block h2 { font-size: var(--type-section); line-height: 1.05; }
.text-block h3 { font-size: var(--type-headline); line-height: 1.1; }
.text-block h4 { font-size: 1.4rem; line-height: 1.15; }
.text-block p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 15px;
}
.text-block strong { color: var(--black); }
.text-block ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}
.text-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}
.text-block ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0; top: 4px;
  color: var(--red);
  font-size: 12px;
}

/* ---- About-img (image with framed border, used on inner pages) ---- */
.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: saturate(0.95);
}

/* ---- Leadership card ---- */
.leader-card {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 60px 44px;
  position: relative;
}
.leader-card::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 1px solid var(--red);
  z-index: -1;
}
.leader-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.leader-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: var(--track-headline);
  line-height: 1.1;
}
.leader-card .role {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: block;
}
.leader-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.leader-socials {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.leader-socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--text);
  transition: all 0.3s;
  background: var(--white);
}
.leader-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---- Forms ---- */
.form-control,
input[type="text"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control,
textarea.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text);
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus {
  outline: none;
  border-color: var(--red);
}
textarea.form-control {
  min-height: 170px;
  resize: vertical;
}
button.btn-rhino-submit {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  padding: 18px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
button.btn-rhino-submit:hover {
  background: var(--black);
  border-color: var(--black);
}

/* ---- Contact info card (dark side panel) ---- */
.contact-info-card {
  background: var(--black);
  color: var(--white);
  padding: 60px 48px;
  height: 100%;
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: var(--track-headline);
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-info-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.info-item-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}
.info-item-text { flex: 1; }
.info-item-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.info-item-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.info-item-text p a { color: rgba(255,255,255,0.85); transition: color 0.3s; }
.info-item-text p a:hover { color: var(--red); }

.contact-socials {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-socials .label {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.contact-socials .row {
  display: flex;
  gap: 10px;
}
.contact-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s;
}
.contact-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---- Contact form wrap (light) ---- */
.contact-form-wrap {
  background: var(--white);
  padding: 60px 48px;
  height: 100%;
  border: 1px solid var(--line);
  border-left: none;
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.4vw, 36px);
  letter-spacing: var(--track-headline);
  margin: 10px 0 16px;
  font-weight: 400;
  line-height: 1.05;
}
.contact-form-wrap > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .contact-form-wrap { border-left: 1px solid var(--line); }
}

/* ---- Office location card ---- */
.location-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.location-card.dark {
  background: var(--black);
  border-color: var(--line-dark);
  color: var(--white);
}
.location-card .lc-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 20px;
  flex-shrink: 0;
}
.location-card.dark .lc-icon { background: rgba(255,255,255,0.04); }
.location-card .lc-body { flex: 1; }
.location-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--black);
  letter-spacing: var(--track-headline);
  line-height: 1.1;
}
.location-card.dark h5 { color: var(--white); }
.location-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; }
.location-card.dark p { color: rgba(255,255,255,0.65); }
.location-card .btn-mini {
  background: var(--red);
  color: var(--white);
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
  border: 1px solid var(--red);
}
.location-card .btn-mini:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.location-card.dark .btn-mini { background: var(--red); border-color: var(--red); }
.location-card.dark .btn-mini:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---- Gallery card ---- */
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  height: 100%;
  transition: all 0.4s ease;
}
.gallery-card:hover { border-color: var(--red); }
.gallery-card-img {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.gallery-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }
.gallery-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.3) 100%);
}
.gallery-card-body {
  padding: 28px 30px 30px;
}
.gallery-card-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: var(--track-headline);
  line-height: 1.1;
  color: var(--black);
}
.gallery-card-body p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.gallery-card[role='button'] { cursor: pointer; }
.gallery-card[role='button']:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---- Project gallery modal ---- */
.proj-modal .modal-content {
  border: none;
  border-radius: 0;
  background: var(--white);
}
.proj-modal .modal-header {
  border-bottom: 1px solid var(--line);
  padding: 22px 28px;
}
.proj-modal .modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
.proj-modal-loc {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.proj-modal .modal-body { padding: 0; }
.proj-preview {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-preview img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
}
.proj-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  padding: 16px 20px 22px;
}
.proj-thumb {
  padding: 0;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  overflow: hidden;
  height: 68px;
  transition: border-color 0.2s ease;
}
.proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-thumb:hover { border-color: var(--red); }
.proj-thumb.active { border-color: var(--red); border-width: 2px; }

/* ---- CTA Strip (smaller dark band used inside pages) ---- */
.cta-strip {
  background: var(--black);
  padding: 70px 0;
  color: var(--white);
}
.cta-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--type-headline);
  letter-spacing: var(--track-headline);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.05;
}
.cta-strip p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ---- Blog "coming soon" placeholder ---- */
.blog-placeholder {
  text-align: center;
  padding: 30px 0;
  max-width: 720px;
  margin: 0 auto;
}
.blog-placeholder .icon {
  font-size: 56px;
  color: var(--red);
  margin-bottom: 32px;
}
.blog-placeholder h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--type-section);
  letter-spacing: var(--track-display);
  margin-bottom: var(--space-headline);
  text-transform: none;
  font-weight: 400;
  line-height: 1.0;
}
.blog-placeholder p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 auto 28px;
  line-height: 1.85;
}

/* ---- Section utility backgrounds ---- */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-cream-2 { background: var(--cream-2); }

/* =========================================
   RESTRUCTURE ADDITIONS — three-pillar architecture,
   CIRS destination, Industries Served, landing pages.
   Red/black/gray are the spine. The former single accent
   blue (water / CIRS / environmental-health) was RETIRED
   2026-06-11 — these vars now hold RED so every
   .accent-blue / btn-blue / is-blue / .blue context reads
   red sitewide. Names kept so existing references work.
   ========================================= */

:root {
  --blue:      #C8102E;   /* was #1f6f8b — now brand red (blue accent retired) */
  --blue-dark: #A00D24;   /* was #185467 */
  --blue-soft: #E5405A;   /* was #2a89a8 — lighter red for accents on dark bands */
}

/* ---- Accent-blue scope (CIRS / water / healthy-building only) ---- */
.accent-blue .eyebrow { color: var(--blue); }
.accent-blue .eyebrow::before { background: var(--blue); }
.accent-blue .about-heading .red,
.accent-blue .display-heading .red,
.accent-blue h1 .red,
.accent-blue h2 .red { color: var(--blue); }
.accent-blue .service-card:hover .service-icon { background: var(--blue); }
.accent-blue .service-icon { color: var(--blue); }
.accent-blue .service-card:hover .service-arrow { color: var(--blue-soft); }
.btn-blue {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: var(--white);
  padding: 18px 36px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; border: 1px solid var(--blue);
  border-radius: 0; cursor: pointer; transition: all 0.35s ease;
}
.btn-blue:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.btn-blue .arrow { display: inline-block; transition: transform 0.35s ease; }
.btn-blue:hover .arrow { transform: translateX(6px); }
.page-banner.accent-blue h1 .red { color: var(--blue-soft); }

/* ---- Mega-menu ("What We Do") ---- */
.navbar-nav .nav-item.has-mega { position: static; }
.navbar-nav .mega-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 7px;
  vertical-align: middle;
  opacity: 0.6;
}
.mega-menu {
  border: 0; border-top: 3px solid var(--red); border-radius: 0;
  padding: 0; margin-top: 12px;
  box-shadow: 0 30px 60px rgba(10,10,10,0.18);
  background: var(--white);
  left: 50% !important; transform: translateX(-50%) !important;
  width: min(1180px, calc(100vw - 48px));
}
/* Anchor the panel flush to the navbar bottom (deterministic, no stray gap)
   and bridge the 12px visual gap with a transparent strip so the cursor never
   crosses a non-hovering dead zone on its way from the toggle to the panel. */
@media (min-width: 992px) {
  .mega-menu { top: 100%; }
  .mega-menu::before {
    content: '';
    position: absolute;
    top: -16px; left: 0; right: 0;
    height: 16px;
    background: transparent;
  }
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.mega-col { padding: 38px 36px; border-right: 1px solid var(--line); }
.mega-col:last-child { border-right: none; }
.mega-col .mega-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); display: block; margin-bottom: 4px;
}
.mega-col.is-blue .mega-eyebrow { color: var(--blue); }
.mega-col .mega-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; line-height: 1.1;
  letter-spacing: var(--track-headline); color: var(--black);
  margin: 0 0 18px; display: block;
}
.mega-col .mega-title:hover { color: var(--red); }
.mega-col.is-blue .mega-title:hover { color: var(--blue); }
.mega-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; line-height: 1.4; color: var(--text);
  padding: 9px 0; border-bottom: 1px solid var(--line);
  text-transform: none; letter-spacing: 0;
}
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { color: var(--red); padding-left: 8px; transition: all 0.25s; }
.mega-col.is-blue .mega-link:hover { color: var(--blue); }
@media (min-width: 992px) {
  /* Display is driven by the .show class (toggled by the hover-intent script
     in layout()) plus :focus-within for keyboard users. Hover open/close —
     including the buffer that crosses the gap to the panel — is handled in JS
     so it never blinks out mid-move. */
  .navbar-nav .nav-item.has-mega:focus-within .mega-menu { display: block; }
}
@media (max-width: 991px) {
  .mega-menu { width: 100%; box-shadow: none; border-top: 1px solid var(--line); margin-top: 8px; }
  .mega-inner { grid-template-columns: 1fr; }
  .mega-col { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 4px; }
}

/* ---- Industries Served gateway band (homepage + standalone) ---- */
.industries-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.industry-tile {
  display: block; height: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 38px 32px;
  transition: all 0.35s ease;
  position: relative;
}
.industry-tile:hover { background: var(--black); border-color: var(--black); }
.industry-tile .ind-icon {
  font-size: 28px; color: var(--red); margin-bottom: 20px; transition: color 0.3s;
}
.industry-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; line-height: 1.1;
  letter-spacing: var(--track-headline); color: var(--black);
  margin-bottom: 12px; transition: color 0.3s;
}
.industry-tile p {
  font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; transition: color 0.3s;
}
.industry-tile .ind-arrow {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; color: var(--black); transition: all 0.3s;
}
.industry-tile:hover h4,
.industry-tile:hover .ind-arrow { color: var(--white); }
.industry-tile:hover .ind-icon { color: var(--red); }
.industry-tile:hover .ind-arrow { transform: translateX(6px); }
.industry-tile:hover p { color: rgba(255,255,255,0.7); }

/* ---- CIRS spotlight band (homepage) ---- */
.cirs-spotlight {
  background: var(--dark);
  color: var(--white);
  position: relative;
  border-top: 4px solid var(--blue);
}
.cirs-spotlight .eyebrow { color: var(--blue-soft); }
.cirs-spotlight .eyebrow::before { background: var(--blue-soft); }
.cirs-spotlight h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: var(--type-section); line-height: 1.02;
  letter-spacing: var(--track-display); color: var(--white);
  margin-bottom: var(--space-headline);
}
.cirs-spotlight h2 .blue { color: var(--blue-soft); }
.cirs-spotlight p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.9; max-width: 620px; }

/* ---- CIRS-MIR credential badge (replaceable single asset) ---- */
.cirs-badge {
  display: inline-flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 28px; max-width: 320px;
  background: transparent; border: 1px solid #d9d9d9;   /* single light-grey border — no colored left accent */
}
.cirs-badge.on-dark { background: transparent; border: none; }   /* dark bands: bare badge + white wording, no box (like the landing page) */
.cirs-badge img { width: 150px; height: 150px; object-fit: contain; flex-shrink: 0; }
.cirs-badge .cb-fallback {
  width: 84px; height: 84px; flex-shrink: 0; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; line-height: 1.2;
}
.cirs-badge .cb-text .cb-title {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  color: var(--black); letter-spacing: var(--track-headline); line-height: 1.1; display: block; margin-bottom: 4px;
}
.cirs-badge.on-dark .cb-text .cb-title { color: var(--white); }
.cirs-badge .cb-text p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }
.cirs-badge.on-dark .cb-text p { color: rgba(255,255,255,0.7); }

/* ---- Trust band (credentials / licensures) ---- */
.trust-band { background: var(--cream-2); }
.trust-item { text-align: center; padding: 20px; }
.trust-item .ti-icon { font-size: 30px; color: var(--red); margin-bottom: 16px; }
.trust-item h5 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  letter-spacing: var(--track-headline); line-height: 1.15; color: var(--black); margin-bottom: 8px;
}
.trust-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ---- Sub-service / pillar "problem + approach" two-col blocks ---- */
.split-block { background: var(--white); }
.split-block.alt { background: var(--cream); }
.split-img { width: 100%; height: 460px; object-fit: cover; filter: saturate(0.95); }

/* ---- Video library grid (CIRS) ---- */
.video-card .gallery-card-img { height: auto; aspect-ratio: 16 / 9; background: var(--black); }
.video-card .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.video-card .play-badge i {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(200,16,46,0.92); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s;
}
.video-card:hover .play-badge i { background: var(--red); transform: scale(1.08); }

/* ---- Video player modal (Insights "Watch & Learn") ---- */
.video-modal .modal-content { background: #000; border: none; border-radius: 0; overflow: hidden; }
.video-modal .btn-close {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background-color: rgba(0,0,0,0.55); border-radius: 50%; padding: 11px; opacity: 0.9;
}
.video-modal .btn-close:hover { opacity: 1; }

/* ---- Video carousel nav (Insights "Watch & Learn" — next/prev + dots) ---- */
.video-carousel-nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 34px;
}
.video-carousel .carousel-control-prev,
.video-carousel .carousel-control-next {
  position: static; flex: 0 0 auto; width: 46px; height: 46px;
  border-radius: 50%; background: var(--black); opacity: 1; transition: background 0.25s ease;
}
.video-carousel .carousel-control-prev:hover,
.video-carousel .carousel-control-next:hover { background: var(--red); }
.video-carousel .carousel-control-prev-icon,
.video-carousel .carousel-control-next-icon { width: 17px; height: 17px; }
.video-carousel .carousel-indicators {
  position: static; margin: 0; display: flex; align-items: center; gap: 9px;
}
.video-carousel .carousel-indicators [data-bs-target] {
  width: 9px; height: 9px; box-sizing: border-box; border: 0; border-radius: 50%;
  background: var(--line); opacity: 1; text-indent: 0; margin: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.video-carousel .carousel-indicators [data-bs-target].active { background: var(--red); transform: scale(1.15); }

/* ---- Article cards (Insights "From the Field") — 16:9 to match video cards ---- */
.article-card { display: block; }
.article-card .gallery-card-img { height: auto; aspect-ratio: 16 / 9; }

/* ---- Article page prose (/insights/<slug>/) ---- */
.article-prose { max-width: 760px; margin: 0 auto; }
.article-prose .article-dek {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.55rem; line-height: 1.4; color: var(--black); margin-bottom: 2.2rem;
}
.article-prose h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.9rem; line-height: 1.2; letter-spacing: var(--track-headline);
  color: var(--black); margin: 2.6rem 0 0.8rem;
}
.article-prose h2:first-of-type { margin-top: 0; }
.article-prose p, .article-prose li {
  font-family: 'Inter', sans-serif; font-size: 1.02rem; line-height: 1.8; color: var(--text);
}
.article-prose p { margin-bottom: 1.1rem; }
.article-prose ul { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.article-prose li { margin-bottom: 0.5rem; }
.article-prose strong { color: var(--black); }

/* ---- Lead-magnet / conference landing form wrap ---- */
.lead-form-wrap {
  background: var(--white); border: 1px solid var(--line); padding: 48px 44px;
}
.lead-form-wrap.on-dark { background: var(--dark); border-color: var(--line-dark); }
.lead-form-wrap.on-dark h3 { color: var(--white); }
.lead-form-wrap.on-dark .form-control { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.16); color: var(--white); }
.lead-form-wrap.on-dark .form-control::placeholder { color: rgba(255,255,255,0.45); }
.lead-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 400; letter-spacing: var(--track-headline); line-height: 1.05; margin-bottom: 10px;
}
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.lead-form-wrap.on-dark .form-note { color: rgba(255,255,255,0.5); }
.form-success { display: none; color: var(--blue-soft); font-size: 15px; margin-top: 14px; }

/* ---- {{PLACEHOLDER}} / NEEDS_INPUT author markers (visible in draft only) ---- */
.needs-input {
  display: inline-block;
  background: rgba(200,16,46,0.08);
  border: 1px dashed var(--red);
  color: var(--red-dark);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; padding: 2px 8px; border-radius: 3px;
  text-transform: none;
}

/* ---- Filter bar (Projects) ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--space-block); }
.filter-chip {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--line);
  background: var(--white); color: var(--text); cursor: pointer; transition: all 0.3s;
}
.filter-chip:hover, .filter-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ---- Project / sub-page intro lede centered ---- */
.intro-narrow { max-width: 760px; margin: 0 auto var(--space-block); text-align: center; }
.intro-narrow .lede { margin: 0 auto; max-width: 760px; }
