/* No media queries — all responsive rules in responsive.css.
   about.css — IDF Kenya — About page styles. */

/* ================================================
   IDF Kenya — about.css  (v6 — synced to ourwork.css)
   Scoped styles for the About Us long-scroll page.
   Loaded only on about.html.

   REFACTOR NOTES (v6 — design-system sync):
     · Hero height:        420px  → 440px   (matches work-hero)
     · Hero margin-top:    none   → 72px    (matches work-hero; fixes
                                              navbar overlap)
     · Hero content pb:    44px   → 52px    (matches work-hero-content)
     · Hero p max-width:   560px  → 600px   (matches work-hero-content p)
     · Pills gap:          10px   → 8px     (matches work-hero-pills)
     · Pill font-size:     0.78rem → 0.76rem (matches work-hero-pill)
     · Pill inner gap:     7px    → 6px     (matches work-hero-pill)
     · Pill padding:       6px 14px → 5px 13px (matches work-hero-pill)
     · Pill transition:    multi  → all 0.25s  (matches work-hero-pill)
     · --section-gap:      56px   → 72px    (matches ourwork.css)
     · --section-gap-sm:   36px   → 44px    (matches ourwork.css)
     · Added --idf-shadow-xl and --r-2xl tokens (present in ourwork.css)
     · HTML change: mobile-tab-nav moved BEFORE <header> (matches
                    ourwork.html document order)
     · Responsive rules added for hero at ≤600px (mirrors ourwork.css)
   ================================================ */

/* ================================================
   1. BRAND TOKENS
   ================================================ */
:root {
  /* Core palette — extracted from IDF logo */
  --idf-navy:         #1B2E4B;
  --idf-navy-dark:    #0f1e33;
  --idf-navy-light:   #2a4470;
  --idf-blue:         #2E6DB4;
  --idf-blue-light:   #5B9BD5;
  --idf-blue-pale:    #EBF3FB;
  --idf-green:        #3A7D44;
  --idf-green-light:  #52a85f;
  --idf-green-pale:   #EAF4EB;
  --idf-cream:        #F8FAFF;
  --idf-cream-dark:   #F0EDE6;

  /* Text */
  --idf-text:         #1a1a2e;
  --idf-text-mid:     #3d4560;
  --idf-text-muted:   #6b7280;
  --idf-border:       rgba(27, 46, 75, 0.10);

  /* Elevation — includes xl level added in v6 to match ourwork.css */
  --idf-shadow-sm:    0 2px 10px rgba(27, 46, 75, 0.07);
  --idf-shadow-md:    0 8px 30px rgba(27, 46, 75, 0.13);
  --idf-shadow-lg:    0 20px 60px rgba(27, 46, 75, 0.18);
  --idf-shadow-xl:    0 32px 80px rgba(27, 46, 75, 0.26);

  /*
    VERTICAL RHYTHM — v6: restored to ourwork.css values.
    72px / 44px matches the visual rhythm of Our Work page.
  */
  --section-gap:      72px;
  --section-gap-sm:   44px;

  /* Side-nav column width */
  --sidenav-width:    240px;

  /* Navbar height — used by hero margin-top and anchor offsets */
  --navbar-height:    72px;

  /* Typography */
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'DM Sans', system-ui, sans-serif;

  /* Border radii — includes 2xl added in v6 to match ourwork.css */
  --r-sm:  4px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-2xl: 40px;
}

/* ================================================
   2. BASE RESET & GLOBALS
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--idf-text-mid);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--idf-text);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem);    font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem);  font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }

p            { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
img          { display: block; max-width: 100%; }
a            { color: inherit; text-decoration: none; transition: color 0.25s; }
ul           { list-style: none; }

/* ================================================
   3. PAGE LAYOUT WRAPPER
   ================================================ */
.about-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 56px;
}

/* ================================================
   4. PAGE HERO
   Synced to .work-hero in ourwork.css (v6).
   Changes: height 440px, margin-top 72px,
            content padding-bottom 52px,
            p max-width 600px.
   ================================================ */
.about-hero {
  position: relative;
  height: 440px;            /* ← was 420px */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;         /* ← was missing; offsets fixed navbar */
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11, 20, 38, 0.92) 0%,
    rgba(27, 46, 75, 0.72) 40%,
    rgba(27, 46, 75, 0.28) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px 52px;     /* ← was 44px */
}

.about-hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--idf-blue-light);
  margin-bottom: 14px;
}

.about-hero-content h1 {
  color: #fff;
  margin-bottom: 14px;
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  max-width: 600px;         /* ← was 560px */
  line-height: 1.75;
  margin: 0;
}

/* ── Nav pills — synced to .work-hero-pills / .work-hero-pill ── */
.about-hero-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;                 /* ← was 10px */
  margin-top: 28px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;                 /* ← was 7px */
  font-size: 0.76rem;       /* ← was 0.78rem */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 5px 13px;        /* ← was 6px 14px */
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: all 0.25s;    /* ← was multi-property list */
  cursor: pointer;
}

.hero-pill:hover,
.hero-pill.active {
  background: var(--idf-blue);
  border-color: var(--idf-blue);
  color: #fff;
}

/* ================================================
   5. MAIN CONTENT COLUMN
   ================================================ */
.about-main {
  flex: 1;
  min-width: 0;
  /* ↓ Reduced top gap: was --section-gap (72px); now 36px for tighter
       hero-to-content transition without affecting inter-section rhythm. */
  padding: 0 0 var(--section-gap);
}

/* ================================================
   6. SHARED SECTION STYLES
   ================================================ */
.about-section {
  padding-bottom: var(--section-gap);
  border-bottom: 1px solid var(--idf-border);
}

.about-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Anchor scroll offset — compensates for fixed navbar + mobile nav height */
.about-section::before {
  content: '';
  display: block;
  height: 48px;
  margin-top: -48px;
  pointer-events: none;
}

/* Section label tags */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-label-blue  { color: var(--idf-blue);  background: var(--idf-blue-pale); }
.section-label-green { color: var(--idf-green); background: var(--idf-green-pale); }
.section-label-navy  { color: var(--idf-navy);  background: rgba(27, 46, 75, 0.07); }

/* ================================================
   7. SECTION — OUR HISTORY  (v7 — stacked single-column)
   Layout order: section-label → h2 → image → body text → timeline
   ================================================ */

/* Heading — sits directly under the section label */
.history-heading {
  margin-bottom: 28px;
}

/* Image wrapper — full-width block, centred, between title and text */
.history-img-wrap {
  position: relative;
  margin-bottom: 32px;
}

.history-img {
  width: 100%;
  max-width: 100%;          /* ← requirement: max-width 100% */
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  box-shadow: var(--idf-shadow-lg);
  display: block;
  position: relative;
  z-index: 1;
}

.history-img-deco {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--idf-blue);
  border-radius: var(--r-xl);
  z-index: 0;
}

.history-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--idf-navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--idf-shadow-md);
  z-index: 3;
  text-align: center;
}

.history-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-display);
  color: var(--idf-blue-light);
}

.history-badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Body text — sits below the image */
.history-text {
  margin-bottom: 8px;
}

.history-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--idf-text-mid);
}

/* Timeline */
.history-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--idf-blue), var(--idf-green));
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--idf-blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--idf-blue);
}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--idf-blue);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 0.95rem;
  color: var(--idf-navy);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.timeline-item p {
  font-size: 0.87rem;
  color: var(--idf-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ================================================
   8. SECTION — MISSION & VISION
   ================================================ */
.mv-intro {
  max-width: 680px;
  margin-bottom: 32px;
}

.mv-intro h2 { margin-bottom: 16px; }

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.mv-card {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

.mv-card-vision {
  background: var(--idf-navy);
  color: #fff;
}

.mv-card-mission {
  background: var(--idf-blue-pale);
  border: 1px solid rgba(46, 109, 180, 0.2);
}

.mv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.mv-card-vision .mv-card-icon  { background: rgba(91, 155, 213, 0.2); color: var(--idf-blue-light); }
.mv-card-mission .mv-card-icon { background: var(--idf-blue); color: #fff; }

.mv-card h3              { font-size: 1.2rem; margin-bottom: 12px; }
.mv-card-vision h3       { color: #fff; }
.mv-card-mission h3      { color: var(--idf-navy); }
.mv-card p               { font-size: 0.95rem; line-height: 1.75; }
.mv-card-vision p        { color: rgba(255, 255, 255, 0.75); }
.mv-card-mission p       { color: var(--idf-text-mid); margin: 0; }

.mv-card-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.07;
  background: #fff;
}

/* Commitment box */
.commitment-box {
  background: var(--idf-green-pale);
  border-left: 4px solid var(--idf-green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
}

.commitment-box h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--idf-green);
  margin-bottom: 8px;
}

.commitment-box p {
  font-size: 0.9rem;
  color: var(--idf-text-mid);
  margin: 0;
  line-height: 1.7;
}

/* ================================================
   9. SECTION — CORE VALUES
   ================================================ */
.values-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.values-intro h2 { margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--idf-border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--idf-blue), var(--idf-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--idf-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(46, 109, 180, 0.2);
}

.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--idf-blue-pale);
  color: var(--idf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--idf-navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--idf-text-muted);
  line-height: 1.65;
  margin: 0;
}

.value-card--dark {
  background: var(--idf-navy);
  border-color: var(--idf-navy);
}

.value-card--dark h3 { color: #fff; }
.value-card--dark p  { color: rgba(255, 255, 255, 0.68); }

.value-card--dark .value-icon {
  background: rgba(91, 155, 213, 0.2);
  color: var(--idf-blue-light);
}

.value-card--dark::before {
  background: linear-gradient(90deg, var(--idf-blue-light), var(--idf-green-light));
}

/* ================================================
   10. SECTION — PARTNERS & NETWORKS
   ================================================ */
.partners-intro {
  max-width: 620px;
  margin-bottom: 32px;
}

.partners-intro h2 { margin-bottom: 16px; }

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--idf-cream);
  border: 1px solid var(--idf-border);
  border-radius: var(--r-md);
  padding: 16px 22px;
  height: 78px;
  min-width: 130px;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.partner-chip img {
  max-height: 40px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.28s ease;
}

.partner-chip:hover {
  box-shadow: var(--idf-shadow-md);
  transform: translateY(-3px);
  border-color: rgba(46, 109, 180, 0.2);
}

.partner-chip:hover img { filter: grayscale(0); }

/* Pull-quote */
.partner-quote {
  background: var(--idf-navy);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}

.partner-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(91, 155, 213, 0.1);
  line-height: 1;
}

.partner-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 16px;
}

.partner-quote-attr {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--idf-blue-light);
}

/* ================================================
   11. SECTION — OUR TEAM
   ================================================ */
.team-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.team-intro h2 { margin-bottom: 16px; }

.team-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.team-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.team-group-label h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--idf-navy);
  margin: 0;
  white-space: nowrap;
}

.team-group-line {
  flex: 1;
  height: 1px;
  background: var(--idf-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--idf-border);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.team-card:hover {
  box-shadow: var(--idf-shadow-md);
  transform: translateY(-4px);
  border-color: rgba(46, 109, 180, 0.2);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 14px;
  color: #fff;
}

.avatar-blue  { background: linear-gradient(135deg, var(--idf-blue),  var(--idf-navy)); }
.avatar-green { background: linear-gradient(135deg, var(--idf-green), var(--idf-navy)); }
.avatar-navy  { background: linear-gradient(135deg, var(--idf-navy),  var(--idf-blue-light)); }

.team-card h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--idf-navy);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.78rem;
  color: var(--idf-text-muted);
  margin: 0;
  line-height: 1.4;
}

.team-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--idf-blue-pale);
  border-radius: var(--r-md);
  border-left: 3px solid var(--idf-blue);
  font-size: 0.85rem;
  color: var(--idf-text-mid);
}

.team-note a { color: var(--idf-blue); font-weight: 500; }
.team-note a:hover { text-decoration: underline; }

/* ================================================
   12. SECTION — JOIN US (CAREERS)
   ================================================ */
.join-intro {
  max-width: 640px;
  margin-bottom: 32px;
}

.join-intro h2 { margin-bottom: 16px; }

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.join-reason {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--idf-cream);
  border-radius: var(--r-md);
  border: 1px solid var(--idf-border);
}

.join-reason-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--idf-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.join-reason-icon--green { background: var(--idf-green); }

.join-reason h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--idf-navy);
  margin-bottom: 5px;
}

.join-reason p {
  font-size: 0.83rem;
  color: var(--idf-text-muted);
  margin: 0;
  line-height: 1.6;
}

.join-cta-box {
  background: linear-gradient(135deg, var(--idf-navy) 0%, var(--idf-navy-light) 100%);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.join-cta-box h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  margin-bottom: 12px;
}

.join-cta-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.join-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================================================
   13. BUTTONS
   ================================================ */
.btn-idf-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--idf-blue);
  color: #fff;
  border: 2px solid var(--idf-blue);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.26s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-idf-primary:hover {
  background: var(--idf-navy);
  border-color: var(--idf-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46, 109, 180, 0.38);
}

.btn-idf-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.26s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-idf-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

/* ================================================
   14. SCROLL REVEAL UTILITY
   JS adds .visible via IntersectionObserver in main.js.
   Class name synced to ourwork.css (.visible not .revealed).
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Slide-up variant (available for gallery-style elements) */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   15. UTILITY
   ================================================ */
.hide-mobile { display: none; }

/* ================================================
   16. RESPONSIVE BREAKPOINTS
   Mirrors ourwork.css breakpoint structure.
   ================================================ */

/* ── ≤ 1100px — tighten layout gutters ── */

/* ── ≤ 960px — stack two-column section layouts ── */

/* ── ≤ 600px — mobile hero & section adjustments
        Mirrors ourwork.css