/* ==========================================================================
   Rusty Rabbit International — Design System
   ========================================================================== */

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

:root {
  --rri-red: #C8102E;          /* PMS 200 approx */
  --rri-red-deep: #A30D26;
  --rri-cream: #F8F4EC;
  --rri-paper: #FBF8F1;
  --rri-ink: #1A1A1A;
  --rri-ink-soft: #2C2C2C;
  --rri-charcoal: #222222;
  --rri-line: #D9D2C2;
  --rri-muted: #6B6B6B;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --radius: 2px;
  --shadow-soft: 0 20px 60px -20px rgba(26, 26, 26, 0.15);
  --shadow-card: 0 8px 30px -8px rgba(26, 26, 26, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--rri-ink);
  background: var(--rri-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   Topographic background (subtle, like the original)
   ========================================================================== */
.topo-bg {
  position: relative;
}
.topo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' opacity='0.5'><g fill='none' stroke='%23D9D2C2' stroke-width='0.6'><path d='M-50,200 Q150,150 350,220 T800,180' /><path d='M-50,260 Q150,210 380,280 T800,240' /><path d='M-50,320 Q170,270 400,340 T820,300' /><path d='M-50,380 Q190,330 420,400 T820,360' /><path d='M-50,440 Q210,390 440,460 T820,420' /><path d='M-50,500 Q230,450 460,520 T820,480' /><circle cx='100' cy='100' r='40' /><circle cx='100' cy='100' r='70' /><circle cx='700' cy='480' r='50' /><circle cx='700' cy='480' r='80' /></g></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.topo-bg > * { position: relative; z-index: 1; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.site-header .brand-mark {
  width: auto;
  height: 56px;
  display: block;
}
.footer-logo {
  width: 130px;
  height: auto;
  display: block;
}
.menu-btn {
  background: var(--rri-red);
  color: white;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}
.menu-btn:hover { background: var(--rri-red-deep); }

/* ==========================================================================
   Slide-out nav menu
   ========================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--rri-ink);
  color: var(--rri-cream);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay .close-btn {
  position: absolute;
  top: 1.5rem; right: var(--gutter);
  background: var(--rri-red);
  color: white;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-list {
  list-style: none;
  text-align: center;
}
.nav-list li {
  margin: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nav-overlay.open .nav-list li { opacity: 1; transform: translateY(0); }
.nav-overlay.open .nav-list li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-list li:nth-child(2) { transition-delay: 0.18s; }
.nav-overlay.open .nav-list li:nth-child(3) { transition-delay: 0.26s; }
.nav-overlay.open .nav-list li:nth-child(4) { transition-delay: 0.34s; }
.nav-overlay.open .nav-list li:nth-child(5) { transition-delay: 0.42s; }
.nav-overlay.open .nav-list li:nth-child(6) { transition-delay: 0.50s; }

.nav-list a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5rem;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--rri-red);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-list a:hover::after { width: 100%; left: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11rem var(--gutter) 6rem;
  text-align: center;
  background: var(--rri-paper);
}
.hero h1 {
  font-family: 'Marcellus', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--rri-ink);
  max-width: 13ch;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rri-red);
  font-weight: 600;
}
.hero .lede {
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--rri-ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero .cta {
  display: inline-block;
  background: var(--rri-ink);
  color: var(--rri-cream);
  padding: 0.95rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero .cta:hover { background: var(--rri-red); transform: translateY(-1px); }

/* ==========================================================================
   Carousel — "Financial Structures" style feature
   ========================================================================== */
.feature-carousel {
  background: var(--rri-charcoal);
  padding: 0 var(--gutter) 6rem;
}
.carousel-card {
  background: var(--rri-paper);
  max-width: var(--container);
  margin: -8rem auto 0;
  padding: 4rem clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.carousel-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rri-red);
  margin-bottom: 1rem;
  font-weight: 500;
}
.carousel-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--rri-red);
  margin-bottom: 1.25rem;
  letter-spacing: 0.005em;
}
.carousel-card .body {
  color: var(--rri-ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.carousel-card .illo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rri-line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.dot.active { background: var(--rri-red); transform: scale(1.2); }

/* ==========================================================================
   Question blocks — "What do you want to do?"
   ========================================================================== */
.question-block {
  padding: 7rem var(--gutter);
}
.question-block.dark {
  background: var(--rri-charcoal);
  color: var(--rri-cream);
}
.question-block.dark .label { color: rgba(248, 244, 236, 0.7); }
.question-block.dark .q-headline { color: var(--rri-cream); }
.question-block .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.question-block .illo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.question-block .label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--rri-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}
.question-block .q-headline {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: 2rem;
  color: var(--rri-ink);
}
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-red {
  background: var(--rri-red);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-red:hover { background: var(--rri-red-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--rri-red);
  border: 1.5px solid var(--rri-red);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  display: inline-block;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--rri-red); color: white; }

/* Reverse layout helper */
.question-block.reverse .inner > .illo { order: 2; }
.question-block.reverse .inner > .copy { order: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--rri-red);
  color: var(--rri-cream);
  padding: 4rem var(--gutter) 2rem;
  position: relative;
  overflow: hidden;
}
/* Footer rabbit watermark — centered in the footer, behind all content */
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 360px;
  background-image: url('../assets/img/rabbit-head-footer.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Reset the address column override since rabbit is now footer-wide */
.footer-addr {
  position: relative;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-grid .brand-mark { width: 50px; color: var(--rri-cream); }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.footer-nav a {
  transition: opacity 0.2s ease;
  font-weight: 300;
}
.footer-nav a:hover { opacity: 0.7; }
.footer-contact { font-size: 0.95rem; line-height: 1.7; font-weight: 300; }
.footer-contact a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 244, 236, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 22px; height: 22px; display: inline-block; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-social a:hover { opacity: 1; }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.page-hero {
  padding: 13rem var(--gutter) 4rem;
  text-align: center;
  background: var(--rri-paper);
}
.page-hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rri-red);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 28ch;
  margin: 0 auto 1.5rem;
}
.page-hero .lede {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--rri-ink-soft);
  line-height: 1.65;
}

.content-section {
  padding: 5rem var(--gutter);
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.005em;
  color: var(--rri-ink);
}
.content-section p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--rri-ink-soft);
  margin-bottom: 1.25rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--rri-red);
  margin: 2.5rem 0;
}

/* Service-card grid for "What we do" */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--container);
  margin: 4rem auto;
  padding: 0 var(--gutter);
}
.service-card {
  background: white;
  padding: 2.25rem 2rem;
  border-top: 3px solid var(--rri-red);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(26,26,26,0.12);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.service-card p { font-size: 0.95rem; color: var(--rri-muted); line-height: 1.6; }

/* Client archetype panels for "Who we serve" */
.archetype {
  padding: 5rem var(--gutter);
  border-bottom: 1px dashed var(--rri-line);
}
.archetype:last-child { border-bottom: none; }
.archetype .inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.archetype.reverse .inner > .illo { order: 2; }
.archetype.reverse .inner > .copy { order: 1; }
.archetype .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rri-muted);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.archetype h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--rri-ink);
  letter-spacing: 0.005em;
}
.archetype p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rri-ink-soft);
  margin-bottom: 1rem;
}
.archetype .illo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

/* Contact form */
.contact-wrap {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 3rem var(--gutter) 6rem;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rri-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rri-line);
  background: white;
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: border 0.2s ease;
  color: var(--rri-ink);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--rri-red);
}
.contact-form textarea { min-height: 160px; resize: vertical; }

.contact-info {
  background: var(--rri-cream);
  padding: 2.5rem;
  border-left: 3px solid var(--rri-red);
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.contact-info p { font-size: 0.95rem; line-height: 1.8; }
.contact-info a { color: var(--rri-red); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
/* Progressive enhancement: content is visible by default,
   only hidden once JS marks the page as ready to animate */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .carousel-card,
  .question-block .inner,
  .archetype .inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .question-block.reverse .inner > .illo,
  .archetype.reverse .inner > .illo {
    order: -1;
  }
  .carousel-card { margin-top: -4rem; padding: 2.5rem 1.75rem; }
  .question-block { padding: 4.5rem var(--gutter); }
  .archetype { padding: 3.5rem var(--gutter); }
  .contact-form { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer::before { width: 220px; height: 240px; opacity: 0.4; }
}

/* ==========================================================================
   v1.2 — Inner page components for verbatim copy rebuild
   ========================================================================== */

/* In-page pillar nav — used on What We Do */
.pillar-nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  border-top: 1px solid var(--rri-line);
  border-bottom: 1px solid var(--rri-line);
  background: var(--rri-paper);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
}
.pillar-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rri-ink-soft);
  padding: 0.4rem 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 200ms, border-color 200ms;
}
.pillar-nav a:hover { color: var(--rri-red); border-bottom-color: var(--rri-red); }

/* Pillar section (What We Do) */
.pillar {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  scroll-margin-top: 60px;
}
.pillar--alt { background: var(--rri-cream); }

.pillar__intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.pillar__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rri-red);
  margin-bottom: 1rem;
  font-weight: 500;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 1.25rem;
  color: var(--rri-ink);
}
.pillar__lede {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--rri-ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

.pillar__services {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.service-item {
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rri-line);
}
.service-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 0.85rem;
  color: var(--rri-red);
}
.service-item h3 .muted {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--rri-muted);
  font-size: 0.85rem;
}
.service-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--rri-ink-soft);
}

@media (max-width: 720px) {
  .pillar__services { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-nav { padding: 0.85rem var(--gutter); gap: 0.4rem 1rem; }
  .pillar-nav a { font-size: 0.7rem; }
}

/* Triad cards (How We Do It) */
.triad {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--gutter) 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.triad__card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--rri-cream);
  border: 1px solid var(--rri-line);
  text-align: center;
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
  position: relative;
  overflow: hidden;
}
.triad__card:hover {
  background: var(--rri-ink);
  border-color: var(--rri-ink);
  color: var(--rri-cream);
  transform: translateY(-4px);
}
.triad__card:hover .triad__num,
.triad__card:hover .triad__sub { color: var(--rri-red); }
.triad__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rri-red);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.triad__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.005em;
}
.triad__sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rri-muted);
}
@media (max-width: 720px) {
  .triad { grid-template-columns: 1fr; }
}

/* Phase sections (How We Do It) */
.phase {
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  scroll-margin-top: 60px;
}
.phase--alt { background: var(--rri-cream); }
.phase__inner {
  max-width: 760px;
  margin: 0 auto;
}
.phase__label { margin-bottom: 1.25rem; }
.phase__num {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rri-red);
  font-weight: 500;
}
.phase__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 2rem;
  color: var(--rri-ink);
}
.phase p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--rri-ink-soft);
  margin-bottom: 1.25rem;
}
.phase__pullquote {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-style: italic;
  font-weight: 500;
  color: var(--rri-red) !important;
  border-left: 3px solid var(--rri-red);
  padding-left: 1.5rem;
  margin: 2rem 0 0 !important;
  line-height: 1.3 !important;
  max-width: 32ch;
}
.inline-link {
  color: var(--rri-red);
  border-bottom: 1px solid var(--rri-red);
  transition: opacity 180ms;
}
.inline-link:hover { opacity: 0.7; }

/* Warren — Who We Are department grid */
.warren {
  padding: 2rem var(--gutter) 5rem;
}
.warren__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.warren__card {
  background: var(--rri-cream);
  border: 1px solid var(--rri-line);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.warren__card:hover {
  background: var(--rri-ink);
  border-color: var(--rri-ink);
  transform: translateY(-3px);
}
.warren__card:hover .warren__discipline { color: rgba(248,244,236,0.65); }
.warren__card:hover .warren__nickname { color: var(--rri-red); }
.warren__card--wide { grid-column: span 3; }
.warren__discipline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rri-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
  transition: color 280ms;
}
.warren__nickname {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--rri-ink);
  transition: color 280ms;
}
@media (max-width: 860px) {
  .warren__grid { grid-template-columns: repeat(2, 1fr); }
  .warren__card--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .warren__grid { grid-template-columns: 1fr; }
  .warren__card--wide { grid-column: span 1; }
}

/* ==========================================================================
   v1.2/v1.3 — Rabbit guide character (etched rabbit head)
   ========================================================================== */
.rabbit-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--gutter) 3.5rem;
  text-align: center;
}
.rabbit-guide__art {
  width: 110px;
  height: 110px;
  margin-bottom: 1rem;
  opacity: 0.85;
  display: block;
}
.rabbit-guide__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rri-muted);
  letter-spacing: 0.01em;
  max-width: 32ch;
  line-height: 1.4;
}
.rabbit-guide--dark { background: var(--rri-charcoal); }
.rabbit-guide--dark .rabbit-guide__caption { color: rgba(248, 244, 236, 0.6); }

/* Smaller rabbit divider for between-section use */
.rabbit-divider {
  text-align: center;
  padding: 2rem var(--gutter);
}
.rabbit-divider__rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.rabbit-divider__rule::before,
.rabbit-divider__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rri-line);
}
.rabbit-divider__art {
  width: 60px;
  height: 60px;
  display: block;
  opacity: 0.75;
  flex-shrink: 0;
}


