/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../home/quan-zou/repo-checkouts/maple-360/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!../../../../home/quan-zou/repo-checkouts/maple-360/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./src/app/isl/_components/isl-styles.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* ISL Design System -- IP Stewardship Lab */
/* Clean modern boxed layout, minimal color blocks */

/* ============================================================
   SITE WRAPPER
   ============================================================ */

.isl-site {
  background-color: #FDFCFA;
  min-height: 100vh;
  color: #3E2723;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.isl-heading {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #3E2723;
  line-height: 1.3;
}

.isl-heading-lg {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #3E2723;
  line-height: 1.3;
  font-size: 2.25rem;
}

.isl-heading-md {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #3E2723;
  line-height: 1.35;
  font-size: 1.5rem;
}

.isl-heading-sm {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3E2723;
  line-height: 1.4;
  font-size: 1.125rem;
}

.isl-body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.75;
  color: #5D4037;
  font-size: 1rem;
}

.isl-body-lg {
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.8;
  color: #5D4037;
  font-size: 1.125rem;
}

.isl-label {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-variant: small-caps;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8D6E63;
}

.isl-caption {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8125rem;
  color: #8D6E63;
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes islFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes islFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.isl-fade-up {
  animation: islFadeUp 0.6s ease-out both;
}

.isl-fade-up-delay-1 {
  animation: islFadeUp 0.6s ease-out 0.1s both;
}

.isl-fade-up-delay-2 {
  animation: islFadeUp 0.6s ease-out 0.2s both;
}

.isl-fade-up-delay-3 {
  animation: islFadeUp 0.6s ease-out 0.3s both;
}

/* ============================================================
   CARD
   ============================================================ */

.isl-card {
  background-color: #ffffff;
  border: 1px solid #E8E6E1;
  border-radius: 0;
  box-shadow: 0 1px 4px rgba(62, 39, 35, 0.06);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.isl-card:hover {
  box-shadow: 0 4px 16px rgba(62, 39, 35, 0.1);
  transform: translateY(-2px);
}

.isl-card-warm {
  background-color: #f5f0eb;
  border: 1px solid #e8e0d8;
  border-radius: 0;
  padding: 2rem;
  border-left: 4px solid #8D6E63;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */

.isl-divider {
  border: none;
  border-top: 1px solid #e8e0d8;
  margin: 3rem 0;
}

.isl-divider-warm {
  border: none;
  border-top: 2px solid rgba(141, 110, 99, 0.25);
  margin: 3rem 0;
}

/* ============================================================
   DECORATIVE ACCENTS
   ============================================================ */

/* Underline accent for section titles */
.isl-title-accent::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: #E8147F;
  margin-top: 0.75rem;
  border-radius: 2px;
}

/* ============================================================
   NAV
   ============================================================ */

.isl-nav {
  background-color: #FDFCFA;
  border-bottom: 1px solid #e8e0d8;
  position: sticky;
  top: 0;
  z-index: 50;
}

.isl-nav-link {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #5D4037;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
  position: relative;
}

.isl-nav-link:hover {
  color: #E91E8C;
}

.isl-nav-link.active {
  color: #3E2723;
  font-weight: 600;
}

.isl-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8147F;
  border-radius: 1px;
}

/* ============================================================
   SECTION VARIANTS
   ============================================================ */

.isl-section-dark {
  background: linear-gradient(180deg, #3E2723, #4A2C2A, #2C1810);
  color: #faf8f5;
}

.isl-section-dark .isl-heading,
.isl-section-dark .isl-heading-lg,
.isl-section-dark .isl-heading-md,
.isl-section-dark .isl-heading-sm {
  color: #faf8f5;
}

.isl-section-dark .isl-body,
.isl-section-dark .isl-body-lg {
  color: rgba(250, 248, 245, 0.85);
}

.isl-section-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.isl-section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62, 39, 35, 0.6);
  z-index: 0;
}

.isl-section-photo > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   MOBILE MENU SLIDE DOWN
   ============================================================ */

.isl-mobile-menu {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.isl-mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* ============================================================
   FOOTER LINKS
   ============================================================ */

.isl-footer-link {
  color: #6F4E37;
  transition: color 0.3s ease;
}

.isl-footer-link:hover {
  color: #E91E8C;
}

/* ============================================================
   UTILITY
   ============================================================ */

.isl-prose p + p {
  margin-top: 1.25rem;
}

.isl-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.isl-section-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.isl-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 6rem);
  padding-right: clamp(1.5rem, 5vw, 6rem);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.isl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms ease-out,
              transform 800ms ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}

.isl-reveal.isl-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

/* Variant: fade in from left */
.isl-reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.isl-reveal-left.isl-revealed {
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

/* Variant: scale up gently */
.isl-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.isl-reveal-scale.isl-revealed {
  opacity: 1;
  transform: scale(1);
  animation: none;
}

/* Reduced motion: disable transform, instant transition */
@media (prefers-reduced-motion: reduce) {
  .isl-reveal,
  .isl-reveal-left,
  .isl-reveal-scale {
    transform: none;
    transition: opacity 0ms;
    animation: none;
  }
  .isl-reveal.isl-revealed,
  .isl-reveal-left.isl-revealed,
  .isl-reveal-scale.isl-revealed {
    opacity: 1;
  }
}

/* ============================================================
   RESPONSIVE NAV HELPERS
   ============================================================ */

/* Controlled heading break: active on tablet/desktop, collapses on mobile so
   the heading wraps naturally on small screens (OWNER_DESIGN_RULES #23). */
.isl-br-desktop {
  display: none;
}
@media (min-width: 768px) {
  .isl-br-desktop {
    display: inline;
  }
}

.isl-desktop-nav {
  display: none;
}
.isl-mobile-toggle {
  display: flex;
}
.isl-mobile-menu-wrapper {
  display: block;
}
@media (min-width: 768px) {
  .isl-desktop-nav {
    display: flex;
  }
  .isl-mobile-toggle {
    display: none;
  }
  .isl-mobile-menu-wrapper {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE GRID OVERRIDES
   ============================================================ */

/* 7-layer framework grid: 3 cols on desktop, 2 on tablet, 1 on mobile */
.isl-framework-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .isl-framework-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .isl-framework-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Pricing grid: 4 cols on desktop, 2 on tablet, 1 on mobile */
.isl-pricing-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) {
  .isl-pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .isl-pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Trust commitments grid: 3 cols on desktop, 2 on tablet, 1 on mobile */
/* Cards keep consistent width — last row cards do NOT stretch */
.isl-trust-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .isl-trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .isl-trust-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Commitment grid: 2 cols on desktop and tablet, 1 on mobile */
/* 4 cards in a 2×2 layout — consistent widths */
.isl-commitment-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 560px) {
  .isl-commitment-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Contact page grid: form + info side-by-side on desktop, stacked on mobile */
.isl-contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  /* Fix 1: Contact form — symmetric full-width layout on mobile */
  .isl-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  /* Name + Email row — stack single column */
  .isl-contact-form .isl-name-email-row {
    grid-template-columns: 1fr !important;
  }
  /* Send Message button — full width */
  .isl-contact-form .isl-submit {
    width: 100%;
  }
  /* Info panel aside — release 280px cap so it matches form width */
  .isl-contact-info-aside {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Mobile CTA rows: equal FULL-WIDTH stacked buttons (owner rule 29).
   Not centered-with-mismatched-widths (the old "Fix 2" force-centered the hero
   row, which left-aligned rule 1 forbids AND made the two different-length
   buttons look ragged; Quan 2026-07-13). Stretched full-width = identical size,
   labels centered inside the button (which is correct, unlike centering the
   button in the row). */
/* Full-bleed hero image object-position, responsive via CSS vars set on the section
   (owner rule 28): at <=900px the wide hero image crops hard, so push the focal
   subject to the right edge (--hero-obj-sm) to keep the overlaid words clear of it. */
.isl-hero-img {
  object-position: var(--hero-obj, center);
}
@media (max-width: 900px) {
  .isl-hero-img {
    object-position: var(--hero-obj-sm, var(--hero-obj, center));
  }
}

@media (max-width: 900px) {
  .isl-hero-cta-row,
  .isl-programs-cta-close,
  .isl-cta-pair {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.875rem;
  }
  .isl-hero-cta-row > a,
  .isl-hero-cta-row > button,
  .isl-programs-cta-close > a,
  .isl-programs-cta-close > button,
  .isl-cta-pair > a,
  .isl-cta-pair > button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   CARD HOVER EFFECTS
   ============================================================ */

/* Framework layer cards (numbered 01-07) */
.isl-card-hover {
  transition: all 0.5s ease;
  border: 2px solid #E8E6E1;
}
.isl-card-hover:hover {
  border-color: #E91E8C;
  box-shadow: 0 25px 50px -12px rgba(233, 30, 140, 0.1);
}

/* Pricing / pathway cards */
.isl-pricing-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.isl-pricing-hover:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 24px rgba(62, 39, 35, 0.12);
}

/* Trust commitment cards (dark photo background) */
.isl-trust-hover {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.isl-trust-hover:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   HOVER INTERACTION CLASSES
   ============================================================ */

/* Content sections that subtly respond to hover */
.isl-section-hover {
  transition: background-color 0.3s ease;
}
.isl-section-hover:hover {
  background-color: rgba(233, 30, 140, 0.02);
}

/* Quote blocks — left-border color transition + subtle shift */
.isl-quote-hover {
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.isl-quote-hover:hover {
  border-color: #E91E8C;
  transform: translateX(4px);
}

/* List items with bullets — subtle background highlight */
.isl-list-hover {
  transition: all 0.3s ease;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: 4px;
}
.isl-list-hover:hover {
  background-color: rgba(233, 30, 140, 0.04);
}

/* Arrow links — color shift + arrow nudge right */
.isl-arrow-link {
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.isl-arrow-link:hover {
  color: #E91E8C;
  letter-spacing: 0.02em;
}
.isl-arrow-link .isl-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.isl-arrow-link:hover .isl-arrow {
  transform: translateX(4px);
}

/* ============================================================
   SYSTEMS DIVISION: expandable card toggle
   ============================================================ */

.isl-card-toggle:focus-visible {
  outline: 2px solid #0a7b7d;
  outline-offset: -2px;
}

/* ============================================================
   FORM INPUT FOCUS + SUBMIT HOVER
   ============================================================ */

.isl-input:focus {
  border-color: #C4167A;
  outline: none;
  box-shadow: 0 0 0 3px rgba(196, 22, 122, 0.8);
}

.isl-submit {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.isl-submit:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================================
   PHOTO HOVER
   ============================================================ */

.isl-photo-hover {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.isl-photo-hover:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   FOOTER FADE-UP
   ============================================================ */

.isl-footer-content {
  animation: islFadeUp 0.7s ease-out 0.2s both;
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */

.isl-footer-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .isl-footer-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* ============================================================
   SYSTEMS DIVISION: page layout (faithful to base44 /Systems)
   ============================================================ */

/* Hero: constellation + copy. Stacks on mobile, splits on desktop. */
.isl-systems-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.isl-systems-hero-art {
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 860px) {
  .isl-systems-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
  }
  .isl-systems-hero-art {
    max-width: none;
  }
}

/* Process: vertical on mobile, horizontal timeline with a connecting line on desktop. */
.isl-systems-process {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 820px) {
  .isl-systems-process {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
  .isl-systems-process::before {
    content: "";
    position: absolute;
    top: 1.625rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(62, 39, 35, 0.12);
    z-index: 0;
  }
  .isl-systems-process-step {
    flex: 1 1 0;
    position: relative;
    z-index: 1;
  }
}

/* Reality section: stewardship-gap callout (left) + smaller cost box (right).
   Stacks on mobile; on desktop the left half is wider than the cost box. */
.isl-reality-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 820px) {
  .isl-reality-split {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

/* Home "Stewardship Programs" 4-up grid (Jamila: all four cards on one line),
   responsive: 4 columns desktop, 2 tablet, 1 phone. */
.isl-programs-4up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .isl-programs-4up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .isl-programs-4up {
    grid-template-columns: 1fr;
  }
}

/* ── Base44 home-match additions (2026-07-12 Jamila revision pass) ────────── */

/* Tension rows: caps label | description */
.isl-tension-row {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}
@media (max-width: 700px) {
  .isl-tension-row {
    grid-template-columns: 1fr;
  }
}

/* Offerings: 2x2 expandable cards (Base44) */
.isl-offerings-2up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 760px) {
  .isl-offerings-2up {
    grid-template-columns: 1fr;
  }
}

/* The arc of the work: stepper in the dark framework band */
.isl-arc-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.isl-arc-connector {
  display: block;
  width: clamp(2.5rem, 7vw, 7rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 6px 0 0 1.5rem;
}
@media (max-width: 760px) {
  .isl-arc-connector {
    display: none;
  }
}

/* About: Core Distinction card | How Ideas Travel graphic, side by side */
.isl-about-distinction {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .isl-about-distinction {
    grid-template-columns: 1fr;
  }
}

/* Audit: Why This Audit Exists text | reflection photo */
.isl-audit-why {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .isl-audit-why {
    grid-template-columns: 1fr;
  }
}

