/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-nav.closed {
  display: none;
}

.main-nav.open {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f0f8ff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2, h3 {
  color: #ff4500;
  font-family: 'Comic Sans MS', sans-serif;
}

p {
  font-size: 16px;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s ease;
  min-width: 120px;
}

.btn:hover {
  background-color: #ff1493;
  color: #000000;
}

.btn:focus {
  outline: 3px solid #ff69b4;
  outline-offset: 2px;
}

/* Top Bar */
.top-bar {
  background: #002b49;
  color: white;
  padding: 0.45rem 0;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  }

  .top-bar a {
  color: white;
  text-decoration: none;
}

.container.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 20px;
    gap: 1.5rem;
    position: relative;
    min-height: auto;
    overflow: visible;
}

/* Header */
.main-header {
  background: white;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.logo-left {
  flex-shrink: 0;
  padding: 0;
  z-index: 100;
  position: relative;
}

.logo-left img {
  height: 64px;
  width: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
  position: relative;
  z-index: 100;
}

.logo-left img:hover {
  transform: scale(1.55) rotate(-2deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.site-name-center {
    text-align: center;
    padding: 0 1rem;
    flex: 2 1 auto;
    background: transparent;
    min-width: 0;
}

.site-name-link { display: inline-flex; align-items: center; background: transparent; }
.site-name-img {
  height: auto;
  width: 130px;
  display: block;
  background: transparent;
  transition: transform 0.3s ease;
}
.site-name-link:hover .site-name-img { transform: scale(1.04); }

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

#nav-toggle:checked ~ .main-nav {
  display: block;
}

.main-nav.closed {
  display: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  white-space: nowrap;
}

.nav-menu li a {
  text-decoration: none;
  color: #002b49;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 8px 16px;
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ff69b4;
}

.nav-menu li a:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
}

/* Medium screens */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 10px;
  }
  
  .nav-menu li a {
    font-size: 1.0rem;
    padding: 8px 12px;
  }
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
    display: none;
    width: 40px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background-color: #002b49;
  height: 5px;
  width: 100%;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -12px;
}

.nav-toggle-label span::after {
  top: 12px;
}

#nav-toggle:checked ~ .main-nav {
  display: block;
}

/* Primary icon control via class (JavaScript-driven) */
.nav-toggle-label.open span {
  background: transparent;
}

.nav-toggle-label.open span::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle-label.open span::after {
  transform: rotate(-45deg);
  top: 0;
}

.nav-toggle-label:not(.open) span {
  background: #002b49;
}

.nav-toggle-label:not(.open) span::before {
  transform: none;
  top: -7px;
}

.nav-toggle-label:not(.open) span::after {
  transform: none;
  top: 7px;
}

.nav-toggle:not(:checked) ~ .nav-toggle-label span {
  background: #002b49;
}

.nav-toggle:not(:checked) ~ .nav-toggle-label span::before {
  transform: none;
  top: -7px;
}

.nav-toggle:not(:checked) ~ .nav-toggle-label span::after {
  transform: none;
  top: -7px;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- HERO SECTION --- */
.hero-row {
    background: url('images/two.webp') no-repeat center center; 
    background-size: cover; 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-row::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4); 
    z-index: 1;
}

.hero-split-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-video-column {
    flex: 0 1 400px;
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 177.77%;
    height: 0;
    overflow: hidden;
    border: 12px solid white;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 5px 10px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(2deg) rotateX(-3deg) rotate(-2deg);
    transition: transform 0.5s ease;
    z-index: 5;
}

.video-aspect-ratio:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotate(0deg) scale(1.02);
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 0;
}

.hero-info-column {
    flex: 1;
    max-width: 500px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.record-tag {
    background: #fff;
    border-left: 5px solid #ff4500;
    padding: 10px;
    margin: 8px 0;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

/* Services Section (index page) */
.services {
  background-color: #f0f8ff;
  padding: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 15px;
  width: 200px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Blog Section */
.blog {
  background-color: #f0f8ff;
  padding: 20px;
}

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.post {
  background-color: #fff;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 15px;
  width: 200px;
  text-align: center;
}

.post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  background-color: #f0f8ff;
  padding: 3rem 0;
  text-align: center;
}

.testimonials blockquote {
  background-color: #fff;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 20px;
  margin: 15px auto;
  max-width: 600px;
  font-style: italic;
  font-size: 1.2rem;
  color: #333;
}

/* FAQ Section */
.faq-section {
  background: white;
  padding: 3rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 2rem auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid #ff69b4;
  border-radius: 8px;
}

.faq-item h3 {
  color: #002b49;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

/* Footer */
.footer {
  background: #002b49;
  color: white;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: #dddddd;
  text-decoration: underline;
}

.footer a:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
}

.footer p,
.footer li,
.footer span,
.footer h4,
.footer h5 {
  color: white;
}

/* Contact Section */
.contact-page {
  background: white;
  padding: 40px 0;
  text-align: center;
}

.contact-info,
.contact-form {
  margin-bottom: 40px;
}

.contact form,
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 2rem auto;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact label,
.contact-form label {
  font-family: 'Comic Sans MS', sans-serif;
  font-size: 1.1rem;
  color: #002b49;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.contact input,
.contact textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ffd700;
  border-radius: 5px;
  font-family: 'Comic Sans MS', sans-serif;
  font-size: 16px;
}

.contact input:focus,
.contact textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border: 3px solid #ff69b4;
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  box-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

.contact textarea,
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* main (pricing/contact/etc pages) */
main {
  padding: 3rem 1rem;
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main section {
  position: relative;
  z-index: 10;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 900px;
  width: 100%;
  margin: 2rem auto;
}

main section:hover,
main section:active {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 11;
}

main h2 {
  color: #ff4500;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
main h2::after {
  content: '';
  width: 50%;
  height: 3px;
  background-color: #ff4500;
  position: absolute;
  bottom: -5px;
  left: 25%;
}

main a {
  color: #ff69b4;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
main a:hover {
  text-decoration: underline;
  color: #ff1493;
}

main p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

main ul {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
}

main li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
  text-align: left;
}

main li::before {
  content: "✔";
  color: #ff4500;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

main img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight {
  background-color: #fff3cd;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
}

.pricing-tier {
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  background-color: #fffef0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-tier h3 {
  color: #ff4500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-tier .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #002b49;
  margin-bottom: 1rem;
}

.payment-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.payment-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to bottom, #ff69b4, #c71585);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.payment-btn:hover {
  background: linear-gradient(to bottom, #c71585, #9e0d66);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: white;
}

.we-accept-img {
   display: block;
   margin: 1rem auto;
   height: 105px;
   width: 300px;
   cursor: pointer;
   transition: transform 0.3s ease;
}

.we-accept-img:hover { transform: scale(1.05); }

.we-accept-container {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.we-accept-caption {
   font-size: 0.9rem;
   color: #333;
   margin-top: 0.5rem;
   text-align: center;
}

.card img.detective-img,
.post img.detective-img {
  position: relative;
  z-index: 10;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.card:hover img.detective-img,
.post:hover img.detective-img {
  transform: scale(1.1) translateY(-20px) rotate(-2deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.text-center { text-align: center; }

.sample-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.sample-image:hover {
  transform: scale(1.1) translateY(-20px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.payment-text { color: #333; text-align: center; }

.visually-hidden-seo {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.detective-frame {
  position: relative;
  display: inline-block;
}

/* Story Showcase Section */
.story-showcase {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.story-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,105,180,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.story-container-wide {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.story-grid-landscape {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-video-column-landscape { position: relative; width: 100%; }

.story-video-frame-landscape {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 16px solid white;
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.3),
    0 10px 20px rgba(0,0,0,0.15);
  transform: perspective(1500px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.story-video-frame-landscape:hover {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 15px 30px rgba(0,0,0,0.2);
}

.story-video-frame-landscape iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.story-message-column-landscape {
  display: flex; align-items: center; justify-content: center;
}

.message-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-left: 6px solid #ff4500;
  width: 100%;
}

.story-headline {
  font-size: 2.5rem; color: #ff4500; margin-bottom: 20px;
  line-height: 1.2; font-weight: 900;
}

.story-tagline {
  font-size: 1.25rem; color: #333; margin-bottom: 30px;
  line-height: 1.6; font-style: italic;
}

.story-features {
  display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px;
}

.feature-badge {
  display: flex; align-items: center; gap: 15px;
  background: #f9f9f9; padding: 15px 20px; border-radius: 12px;
  border-left: 4px solid #ff69b4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-badge:hover {
  transform: translateX(10px); box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-icon { font-size: 2rem; flex-shrink: 0; }

.badge-text { font-size: 1.1rem; font-weight: 600; color: #002b49; }

.message-card .signature {
  margin-top: 30px; margin-bottom: 20px;
  font-style: italic; font-weight: bold; color: #666; font-size: 1.1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; list-style: none;
}

.lang-btn {
  text-decoration: none; font-size: 0.95rem; font-weight: 700;
  color: #002b49; padding: 5px 10px; border-radius: 5px;
  border: 2px solid transparent; transition: all 0.3s ease; white-space: nowrap;
}

.lang-btn::before { display: none; content: none; }

.lang-btn:hover { color: #ff69b4; border-color: #ff69b4; }

.lang-btn.lang-active {
  color: white; background-color: #ff69b4; border-color: #ff69b4;
}

/* Active nav link */
.main-nav .nav-menu li a.active { font-weight: bold; color: #a44b73; }

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — shared
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1400px) { .story-grid-landscape { grid-template-columns: 1.5fr 1fr; } }
@media (max-width: 1200px) {
  .story-grid-landscape { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .story-headline { font-size: 2.2rem; }
}
@media (max-width: 968px) {
  .story-grid-landscape { grid-template-columns: 1fr; gap: 40px; }
  .story-video-frame-landscape { max-width: 800px; margin: 0 auto; }
  .story-headline { font-size: 2rem; }
  .story-tagline { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .story-showcase { padding: 40px 0; }
  .message-card { padding: 25px; }
  .story-headline { font-size: 1.6rem; }
  .story-tagline { font-size: 1rem; }
  .badge-text { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .lang-switcher { display: none; }

  .header-top, .container.header-top {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem;
    min-height: 60px;
  }

  .logo-left { order: 1; }
  .logo-left img { height: 48px; }

  .site-name-center { order: 2; flex: 1; text-align: left; padding-left: 1rem; }
  .site-name-img { width: 170px; height: auto; }

  .nav-toggle-label {
    display: flex;
    width: 15px;
    height: 25px;
    overflow: visible;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background-color: #002b49;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
  }

  .nav-toggle-label span { top: 50%; transform: translateY(-50%); width: 100%; }
  .nav-toggle-label span::before { top: -8px; content: ''; }
  .nav-toggle-label span::after { top: 8px; content: ''; }

  .nav-toggle-label.open span::before {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-toggle-label.open span::after {
    transform: rotate(-45deg) translate(-4px, -4px);
  }

  .main-nav {
    display: none;
    width: 100%;
    background: #002b49;
    padding: 1rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
  }

  #nav-toggle:checked ~ .main-nav,
  .main-nav.open { display: block !important; }

  .nav-menu { flex-direction: column; align-items: center; gap: 0.5rem; }
  .nav-menu li { display: block; }
  .nav-menu li a {
    font-size: 1.2rem; padding: 1rem; width: 100%; text-align: center; color: white;
  }
  .nav-menu li a:hover { background-color: #ff1493; color: white; }

  .main-nav .nav-menu li a.active {
    background-color: #ff69b4; color: white; font-weight: bold;
  }

  .service-cards, .blog-posts { flex-direction: column; align-items: center; }
  .card, .post { width: 100%; max-width: 300px; }
  .post img { height: 300px; object-position: top; }
  .top-bar { font-size: 0.95rem; }
  .btn { padding: 10px 20px; font-size: 16px; }

  .payment-buttons { flex-direction: column; gap: 0.5rem; }
}

.nav-toggle-label { z-index: 1002; }

@media (max-width: 480px) {
  .site-name-img { width: 140px; height: auto; }
  .top-bar { font-size: 13px; padding: 0.4rem; }
  .logo-left img { height: 42px; }
  .card, .post { max-width: 95%; }
  .btn { padding: 8px 16px; font-size: 14px; }
}

@media (max-width: 600px) {
  main section { padding: 1.25rem; }
  main h2 { font-size: 1.5rem; }
  main p, main li { font-size: 1rem; }
  .pricing-tier h3 { font-size: 1.3rem; }
  .pricing-tier .price { font-size: 1.1rem; }
}


/* ============================================================
   SERVICES PAGE — style-matched to index.html
   All rules below are ADDITIONS / OVERRIDES for services.html
   ============================================================ */

/* ── Reset the heavy-handed main overrides for services ── */
.services-page-main {
  display: block !important;
  padding: 0 !important;
  background: #f0f8ff;
  align-items: unset;
  flex-direction: unset;
}

/* Let sections on services page sit naturally (no card-hover lift) */
.services-page-main section,
.services-page-main section:hover,
.services-page-main section:active {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transform: none !important;
  z-index: auto;
}

/* Remove the h2 underline decoration on services page */
.services-page-main h2::after { display: none !important; }

/* Left-align body text, keep hero/cta centred */
.services-page-main p { text-align: left; }
.services-page-main .services-hero p,
.services-page-main .cta-banner p,
.services-page-main .services-grid-heading p { text-align: center; }

/* ── HERO ──────────────────────────────────────────────────── */
.services-hero {
  background: url('images/two.webp') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: unset;
  display: block;
  text-align: center;
}

/* Light scrim — matches index hero overlay */
.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

/* Remove the old dark-bg div entirely with CSS */
.services-hero-bg { display: none; }

.services-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-hero-content h1 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2.2rem;
  color: #ff4500;
  margin-bottom: 1rem;
}

.services-hero-content p {
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin-bottom: 0;
}

/* ── INTRO VIDEO ROW ───────────────────────────────────────── */
.intro-video-row {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 5%;
  flex-wrap: wrap;
}

.intro-video-row .vid-wrap {
  flex: 0 1 480px;
}

.intro-video-row .intro-text {
  flex: 1;
  min-width: 260px;
}

.intro-video-row .intro-text h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 1rem;
}

.intro-video-row .intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
  text-align: left;
}

/* ── 3D POLAROID FRAME — intro video ──────────────────────── */
.vid-frame-3d {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;

  /* White polaroid border */
  border: 14px solid white;
  border-radius: 20px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 8px 16px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);

  /* Tilted toward viewer — mirror the hero video tilt */
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg) rotate(1.5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 5;
}

.vid-frame-3d:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) rotate(0deg) scale(1.02);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.4),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Real iframe sits inside the frame */
.vid-frame-3d iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Placeholder fills the frame too */
.vid-frame-3d .placeholder-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  padding: 0;
  border-radius: 8px; /* inner corners */
}

/* Placeholder video box */
.placeholder-video {
  background: linear-gradient(135deg, #002b49 0%, #00446e 100%);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 30px;
  color: white;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.placeholder-video .ph-icon { font-size: 3rem; }

/* ── SERVICE GRID HEADING ──────────────────────────────────── */
.services-grid-heading {
  text-align: center;
  padding: 40px 5% 20px;
  background: white;
}

.services-grid-heading h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 0.5rem;
}

.services-grid-heading p {
  color: #666;
  font-size: 1.05rem;
}

/* ── SERVICE CARDS GRID ────────────────────────────────────── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 5% 60px;
  background: white;
}

/* Match the index .card look exactly */
.service-card {
  background: #fff;
  border: 2px solid #ffd700;
  border-radius: 10px;
  width: calc(33% - 20px);
  min-width: 260px;
  max-width: 360px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Placeholder image block inside card */
.service-card-media {
  position: relative;
  height: 160px;
  background: #f0f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-card-media .placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 0.85rem;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
}

.service-card-media .ph-icon { font-size: 2.5rem; }

.service-card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff69b4;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
}

.service-card-body {
  padding: 18px;
}

.service-card-body h3 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.15rem;
  color: #ff4500;
  margin-bottom: 8px;
}

.service-card-body > p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
  text-align: left;
}

/* Expandable details — hidden by default */
.service-card-details {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #ffd700;
}

.service-card.expanded .service-card-details { display: block; }

.service-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-details ul li {
  font-size: 0.9rem;
  color: #333;
  padding: 4px 0 4px 1.4rem;
  position: relative;
  line-height: 1.5;
  text-align: left;
}

.service-card-details ul li::before {
  content: '✦';
  color: #ff69b4;
  font-size: 0.7rem;
  position: absolute;
  left: 0;
  top: 6px;
}

/* Toggle button inside card */
.card-toggle-btn {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: none;
  color: #ff69b4;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: none !important;
}

.card-toggle-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card.expanded .card-toggle-btn .arrow {
  transform: rotate(180deg);
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.process-section {
  background: #f0f8ff;
  padding: 60px 5%;
  text-align: center;
}

.process-section h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: white;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 52px;
  height: 52px;
  background: #ff69b4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  color: #002b49;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.55;
  text-align: center;
}

/* ── GALLERY STRIP ─────────────────────────────────────────── */
.gallery-strip {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 20px 5%;
  background: white;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 3px;
}

.gallery-item {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.gallery-item .placeholder-img {
  height: 150px;
  background: #f0f8ff;
  border: 2px solid #ffd700;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #999;
  font-size: 0.8rem;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
}

.gallery-item .ph-icon { font-size: 2rem; }

.gallery-caption {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  margin-top: 6px;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
}

/* ── VIDEO SHOWCASE ────────────────────────────────────────── */
.video-showcase {
  background: #f0f8ff;
  padding: 60px 5%;
  text-align: center;
}

.video-showcase h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 36px;
}

.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.video-item {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
}

.video-item .vid-wrap {
  margin-bottom: 14px;
}

.vid-caption h4 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  color: #002b49;
  font-size: 1rem;
  margin-bottom: 4px;
}

.vid-caption p {
  font-size: 0.88rem;
  color: #666;
  text-align: center;
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #002b49 0%, #00446e 100%);
  padding: 60px 5%;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
}

.cta-banner .btn {
  margin: 8px;
}

/* White outline variant already defined inline in HTML — override cleanly */
.cta-banner .btn:last-child {
  background: white !important;
  color: #002b49 !important;
}

.cta-banner .btn:last-child:hover {
  background: #f0f8ff !important;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-card { width: calc(50% - 20px); }
  .intro-video-row { flex-direction: column; }
}

@media (max-width: 600px) {
  .service-card { width: 100%; max-width: 400px; }
  .services-hero-content { padding: 28px 20px; }
  .process-step { max-width: 100%; }
}

/* 
   INSTRUCTIONS FOR styles.css UPDATE
   ===================================
   Open your existing styles.css in VS Code.
   Scroll to the very bottom.
   Paste everything below this comment block at the end of the file.
   Save. Done.
*/


/* ============================================================
   SUPPORT THE CASE PAGE — support-the-case.html
   ============================================================ */

/* ── DONATION PAGE — page-specific styles only ── */

/* Reset main overrides for this page */
.donation-page-main {
  display: block !important;
  padding: 0 !important;
  background: #f0f8ff;
  align-items: unset;
  flex-direction: unset;
}
.donation-page-main section,
.donation-page-main section:hover,
.donation-page-main section:active {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
  transform: none !important;
}
.donation-page-main h2::after { display: none !important; }

/* ── HERO ── */
.donation-hero {
  background: url('images/two.webp') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.donation-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.45);
  z-index: 1;
}
.donation-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.donation-hero-content h1 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ff4500;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.donation-hero-content p {
  font-size: 1.15rem;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-fee-badge {
  display: inline-block;
  background: #ff4500;
  color: white;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255,69,0,0.35);
}

/* ── WHAT'S HAPPENING ── */
.what-happening {
  background: white;
  padding: 60px 5%;
}
.what-happening .container { max-width: 900px; margin: 0 auto; }
.what-happening h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ff4500;
  text-align: center;
  margin-bottom: 2rem;
}
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2rem;
}
.scenario-box {
  border-radius: 12px;
  padding: 28px;
  border: 2px solid #ffd700;
}
.scenario-box.wrong {
  background: #fff5f5;
  border-color: #ffcccc;
}
.scenario-box.right {
  background: #f0fff4;
  border-color: #b2f0c5;
}
.scenario-box h3 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.scenario-box.wrong h3 { color: #cc0000; }
.scenario-box.right h3 { color: #007a2f; }
.scenario-box ul { list-style: none; padding: 0; margin: 0; }
.scenario-box ul li {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
  padding-left: 1.6rem;
  position: relative;
  color: #333;
  text-align: left;
}
.scenario-box.wrong ul li::before { content: "✗"; color: #cc0000; position: absolute; left: 0; font-weight: bold; }
.scenario-box.right ul li::before { content: "✔"; color: #007a2f; position: absolute; left: 0; font-weight: bold; }

.bottom-line-box {
  background: #fff3cd;
  border-left: 5px solid #ff4500;
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}
.bottom-line-box strong { color: #ff4500; }

/* ── WHY IT MATTERS ── */
.why-matters {
  background: #f0f8ff;
  padding: 60px 5%;
  text-align: center;
}
.why-matters h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ff4500;
  margin-bottom: 2rem;
}
.matters-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.matters-card {
  background: white;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 28px 22px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.matters-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.matters-icon { font-size: 2.4rem; margin-bottom: 12px; }
.matters-card h3 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  color: #002b49;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.matters-card p { font-size: 0.95rem; color: #555; line-height: 1.6; text-align: center; }

/* ── WHAT WE'RE DOING ── */
.what-doing {
  background: white;
  padding: 60px 5%;
}
.what-doing .container { max-width: 860px; margin: 0 auto; text-align: center; }
.what-doing h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ff4500;
  margin-bottom: 1.5rem;
}
.action-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 2rem;
}
.action-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f9f9f9;
  border-left: 4px solid #ff69b4;
  border-radius: 10px;
  padding: 18px 22px;
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  text-align: left;
}
.action-step .step-icon { font-size: 1.8rem; flex-shrink: 0; }
.action-step p { font-size: 0.98rem; color: #333; line-height: 1.6; margin: 0; text-align: left; }

/* ── DONATE SECTION ── */
.donate-section {
  background: linear-gradient(135deg, #002b49 0%, #00446e 100%);
  padding: 70px 5%;
  text-align: center;
}
.donate-section h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  margin-bottom: 1rem;
}
.donate-section > .container > p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-align: center;
}
.donate-card {
  background: white;
  border-radius: 16px;
  padding: 44px 40px;
  max-width: 560px;
  margin: 0 auto 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.donate-card h3 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  color: #ff4500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.donate-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  text-align: center;
}

/* Amount picker */
.amount-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.amount-btn {
  background: #f0f8ff;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #002b49;
  cursor: pointer;
  transition: all 0.2s ease;
}
.amount-btn:hover,
.amount-btn.selected {
  background: #ff69b4;
  border-color: #ff69b4;
  color: white;
}

.donate-divider {
  font-size: 0.9rem;
  color: #aaa;
  margin: 1rem 0;
  text-align: center;
}
.donate-btn-paypal {
  display: inline-block;
  background: #0070ba;
  color: white;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin: 6px;
  box-shadow: 0 4px 14px rgba(0,112,186,0.35);
}
.donate-btn-paypal:hover {
  background: #005ea6;
  box-shadow: 0 6px 20px rgba(0,112,186,0.5);
  color: white;
}
.donate-btn-venmo {
  display: inline-block;
  background: #3d95ce;
  color: white;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 6px;
}
.donate-btn-venmo:hover { background: #2a7db5; color: white; }
.donate-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1.2rem;
  text-align: center;
  line-height: 1.5;
}

/* ── TRANSPARENCY ── */
.transparency {
  background: #f0f8ff;
  padding: 60px 5%;
  text-align: center;
}
.transparency h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ff4500;
  margin-bottom: 1.5rem;
}
.transparency-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}
.transparency-item {
  background: white;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 22px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
}
.transparency-item .t-icon { font-size: 2rem; margin-bottom: 8px; }
.transparency-item p { font-size: 0.95rem; color: #444; line-height: 1.55; margin: 0; text-align: center; }

.sig-block {
  margin-top: 2rem;
  font-style: italic;
  color: #666;
  font-size: 1rem;
}
.sig-block strong { color: #002b49; font-style: normal; }

/* ── SHARE SECTION ── */
.share-section {
  background: white;
  padding: 48px 5%;
  text-align: center;
}
.share-section h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1.6rem;
  color: #ff4500;
  margin-bottom: 0.75rem;
}
.share-section p { color: #555; font-size: 1rem; margin-bottom: 1.5rem; text-align: center; }
.share-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.share-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.share-btn:hover { opacity: 0.85; }
.share-btn.fb { background: #1877f2; color: white; }
.share-btn.tw { background: #1da1f2; color: white; }
.share-btn.email-share { background: #002b49; color: white; }
.share-btn.copy-link { background: #ffd700; color: #002b49; cursor: pointer; border: none; font-family: 'Comic Sans MS', 'Comic Neue', sans-serif; }

/* Responsive */
@media (max-width: 768px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .donation-hero-content { padding: 28px 20px; }
  .donate-card { padding: 28px 20px; }
}
/* ══════════════════════════════════════════
   SUPPORT THE CASE — ENHANCED STYLES
   ══════════════════════════════════════════ */

/* Case active badge */
.case-active-badge {
  display: inline-block;
  background: #cc0000;
  color: white;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0.5); }
  50% { box-shadow: 0 0 20px 6px rgba(204,0,0,0.25); }
}

/* ── 3D VIDEO FRAME ── */
.case-video-section {
  background: linear-gradient(160deg, #001a2e 0%, #002b49 40%, #003a5c 100%);
  padding: 70px 5%;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.case-video-section::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,105,180,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.case-video-section h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #ffd700;
  margin-bottom: 0.5rem;
}
.case-video-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.video-3d-frame {
  max-width: 1720px;
  margin: 0 auto;
  perspective: 1200px;
}
.video-3d-inner {
  position: relative;
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(145deg, #ffd700 0%, #ff69b4 50%, #ff4500 100%);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.55),
    0 0 80px rgba(255,105,180,0.15),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transform: rotateX(2deg) rotateY(-1deg);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.6s ease;
}
.video-3d-inner:hover {
  transform: rotateX(0deg) rotateY(0deg) scale(1.02);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 120px rgba(255,105,180,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}
.video-placeholder iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── STORY STRIP (image gallery) ── */
.story-strip {
  background: white;
  padding: 60px 5%;
  text-align: center;
}
.story-strip h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ff4500;
  margin-bottom: 2rem;
}
.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.story-card {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #ffd700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}
.story-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.story-card picture,
.story-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Lightbox overlay for clicked images */
.story-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.story-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.story-lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(255,215,0,0.25);
}

@media (max-width: 768px) {
  .story-gallery {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .video-3d-inner {
    padding: 8px;
    transform: none;
  }
}
/* ── CASE INTRO TOP: VIDEO + IMAGE SIDE BY SIDE ── */
.case-intro-top {
  background: linear-gradient(160deg, #001a2e 0%, #002b49 40%, #003a5c 100%);
  padding: 60px 5% 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.case-intro-top::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,105,180,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.case-intro-top .case-active-badge {
  margin-bottom: 0.6rem;
}
.case-intro-top .hero-fee-badge {
  margin-bottom: 0.75rem;
}
.intro-headline {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #ffd700;
  margin: 0 auto 0.6rem;
  max-width: 860px;
  line-height: 1.25;
}
.intro-subline {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.intro-split-grid {
  display: grid;
  grid-template-columns: 2.5fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.intro-video-col .case-video-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.intro-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.intro-banner-img {
  width: 100%;
  border-radius: 14px;
  box-shadow:
    0 24px 55px rgba(0,0,0,0.55),
    0 0 70px rgba(255,215,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.intro-banner-img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 34px 70px rgba(0,0,0,0.6),
    0 0 90px rgba(255,215,0,0.18);
}
.intro-donate-cta {
  display: inline-block;
  font-size: 1.1rem;
  padding: 14px 36px;
  background: #009246;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(0,146,70,0.45);
  transition: background 0.25s ease, transform 0.2s ease;
}
.intro-donate-cta:hover {
  background: #007a38;
  transform: translateY(-3px);
}
@media (max-width: 880px) {
  .intro-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .intro-video-col .case-video-subtitle {
    text-align: center;
  }
  .intro-image-col {
    order: -1;
  }
}
/* ════════════════════════════════════════════════════════════════════
   PORTFOLIO + "GLIMPSES INTO OUR WORK" REDESIGN
   Brand tokens reused: #ff4500 (orange), #ff69b4 (pink), #002b49 (navy),
   #ffd700 (gold), Comic Sans/Comic Neue display.
   ════════════════════════════════════════════════════════════════════ */

.portfolio-page-main h2::after { display: none !important; }

/* ── CINEMATIC HERO ─────────────────────────────────────────── */
.pf-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 5%;
}
.pf-hero-media { position: absolute; inset: 0; z-index: 0; }
.pf-hero-media img,
.pf-hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.25) saturate(1.05);
  animation: pfHeroPan 28s ease-in-out infinite alternate;
}
@keyframes pfHeroPan {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.18) translate(-2%, -2%); }
}
.pf-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,43,73,0.30) 0%, rgba(0,43,73,0.66) 100%),
    linear-gradient(to bottom, rgba(0,43,73,0.45), rgba(0,43,73,0.6));
}
.pf-hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  color: #fff;
  background: rgba(0, 25, 43, 0.34);
  backdrop-filter: blur(2px);
  padding: 36px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.35);
}
.pf-hero-kicker {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  letter-spacing: 2px; text-transform: uppercase;
  font-size: 0.8rem; color: #ffd700;
  margin-bottom: 0.7rem;
}
.pf-hero-content h1 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.pf-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #f3f3f3;
  margin-bottom: 1.6rem;
}
.pf-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-navy { background: #002b49 !important; }

/* ── SECTION HEAD ───────────────────────────────────────────── */
.pf-glimpses { background: #fff; padding: 56px 5% 30px; }
.pf-section-head { text-align: center; max-width: 760px; margin: 0 auto 26px; }
.pf-section-head h2 {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #ff4500; margin-bottom: 0.5rem;
}
.pf-section-head p { color: #555; font-size: 1.05rem; }

/* ── FILTER CHIPS ───────────────────────────────────────────── */
.pf-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 0 auto 34px; max-width: 900px;
}
.pf-chip {
  font-family: 'Comic Sans MS', 'Comic Neue', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: #002b49; background: #fff;
  border: 2px solid #ffd700; border-radius: 22px;
  padding: 7px 16px; cursor: pointer;
  transition: all 0.25s ease;
}
.pf-chip:hover { border-color: #ff69b4; color: #ff69b4; }
.pf-chip.is-active { background: #ff69b4; border-color: #ff69b4; color: #fff; }

/* ── CASE GRID ──────────────────────────────────────────────── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.pf-card {
  background: #fff;
  border: 2px solid #ffd700;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.pf-card:hover, .pf-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  outline: none;
}
.pf-card-media { position: relative; height: 200px; overflow: hidden; background: #f0f8ff; }
.pf-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: sepia(0.12);
}
.pf-card:hover .pf-card-media img { transform: scale(1.08); filter: sepia(0); }
.pf-card-flags {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 20px; padding: 3px 10px;
  font-size: 1rem; letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.pf-card-open {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,43,73,0.92), transparent);
  color: #fff; font-family: 'Comic Sans MS','Comic Neue',sans-serif;
  font-weight: 700; font-size: 0.9rem;
  padding: 26px 14px 10px;
  transform: translateY(8px); opacity: 0;
  transition: all 0.3s ease;
}
.pf-card:hover .pf-card-open, .pf-card:focus-visible .pf-card-open { transform: translateY(0); opacity: 1; }
.pf-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.pf-card-body h3 {
  font-family: 'Comic Sans MS','Comic Neue',sans-serif;
  font-size: 1.2rem; color: #ff4500; margin-bottom: 2px;
}
.pf-card-route {
  font-family: 'Comic Sans MS','Comic Neue',sans-serif;
  font-size: 0.85rem; color: #002b49; font-weight: 700;
  margin-bottom: 8px;
}
.pf-card-teaser { font-size: 0.95rem; color: #444; line-height: 1.5; margin-bottom: 12px; text-align: left; }
.pf-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.pf-tag {
  font-size: 0.72rem; font-weight: 700;
  background: #f0f8ff; color: #002b49;
  border: 1px solid #ffd700; border-radius: 14px;
  padding: 3px 9px;
  font-family: 'Comic Sans MS','Comic Neue',sans-serif;
}

/* ── MODAL ──────────────────────────────────────────────────── */
.pf-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.pf-modal.is-open { display: block; }
.pf-modal-backdrop { position: absolute; inset: 0; background: rgba(0,20,35,0.72); backdrop-filter: blur(3px); }
.pf-modal-panel {
  position: relative;
  max-width: 760px; width: 92%;
  max-height: 90vh;
  margin: 5vh auto;
  background: #fff;
  border-radius: 16px;
  border: 3px solid #ffd700;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: pfModalIn 0.32s cubic-bezier(0.16,1,0.3,1);
}
@keyframes pfModalIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
.pf-modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; background: rgba(0,43,73,0.85); color: #fff;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pf-modal-close:hover { background: #ff69b4; transform: rotate(90deg); }
.pf-modal-scroll { max-height: 90vh; overflow-y: auto; padding: 30px 32px 34px; }

.pf-m-head { margin-bottom: 18px; padding-right: 40px; }
.pf-m-flags { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-weight: 700; color: #002b49; font-size: 0.95rem; margin-bottom: 4px; }
.pf-m-head h2 { font-family:'Comic Sans MS','Comic Neue',sans-serif; color: #ff4500; font-size: 1.7rem; margin-bottom: 10px; }
.pf-m-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.pf-m-video {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 12px; overflow: hidden; margin: 4px 0 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.pf-m-video iframe, .pf-m-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.pf-m-video--poster { background-size: cover; background-position: center; filter: sepia(0.2); }
.pf-m-video--poster::after { content:''; position:absolute; inset:0; background: rgba(0,43,73,0.42); }
.pf-m-video-cta {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 0.95rem;
}
.pf-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: #ff4500;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; padding-left: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.pf-m-summary { font-size: 1.02rem; line-height: 1.65; color: #333; margin-bottom: 22px; }
.pf-m-h3 { font-family:'Comic Sans MS','Comic Neue',sans-serif; color: #002b49; font-size: 1.2rem; margin: 22px 0 10px; }
.pf-m-hint { font-size: 0.85rem; color: #888; margin-bottom: 10px; }

/* Timeline */
.pf-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.pf-timeline::before { content:''; position: absolute; left: 54px; top: 6px; bottom: 6px; width: 2px; background: #ffd700; }
.pf-tl-item { display: grid; grid-template-columns: 48px 18px 1fr; align-items: start; gap: 8px; padding: 8px 0; }
.pf-tl-year { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-weight: 700; font-size: 0.82rem; color: #ff4500; text-align: right; padding-top: 1px; }
.pf-tl-dot { width: 14px; height: 14px; border-radius: 50%; background: #ff69b4; border: 3px solid #fff; box-shadow: 0 0 0 2px #ffd700; margin-top: 3px; justify-self: center; z-index: 1; }
.pf-tl-label { font-size: 0.95rem; color: #333; line-height: 1.45; }

/* Records gallery */
.pf-records { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 12px; }
.pf-rec { margin: 0; cursor: zoom-in; border-radius: 10px; overflow: hidden; border: 2px solid #ffd700; background: #f0f8ff; transition: transform 0.25s ease; }
.pf-rec:hover, .pf-rec:focus-visible { transform: translateY(-3px); outline: none; box-shadow: 0 8px 18px rgba(0,0,0,0.15); }
.pf-rec img { width: 100%; height: 120px; object-fit: cover; display: block; filter: sepia(0.15); }
.pf-rec figcaption { font-size: 0.75rem; color: #555; padding: 6px 8px; text-align: center; font-family:'Comic Sans MS','Comic Neue',sans-serif; }

/* Outcomes */
.pf-outcomes { list-style: none; padding: 0; margin: 0; }
.pf-outcomes li { position: relative; padding: 5px 0 5px 26px; font-size: 0.97rem; color: #333; line-height: 1.5; }
.pf-outcomes li::before { content: '✓'; position: absolute; left: 0; top: 5px; color: #fff; background: #ff69b4; width: 18px; height: 18px; border-radius: 50%; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* Modal footer */
.pf-m-foot { margin-top: 26px; padding-top: 20px; border-top: 2px solid #ffd700; }
.pf-hours { display: inline-block; font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 0.85rem; color: #002b49; background: #f0f8ff; border-radius: 16px; padding: 4px 12px; margin-bottom: 14px; }
.pf-m-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pf-dl { background: #ff4500 !important; }
.pf-dl-soon { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 0.9rem; color: #777; align-self: center; }

/* Lightbox */
.pf-lightbox { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.88); padding: 4vw; }
.pf-lightbox.is-open { display: flex; }
.pf-lightbox img { max-width: 96vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.pf-lb-close { position: absolute; top: 18px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,0.15); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.pf-lb-close:hover { background: #ff69b4; }

/* ── CREDIBILITY STRIP ──────────────────────────────────────── */
.pf-cred { background: #f0f8ff; padding: 50px 5%; }
.pf-cred-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.pf-cred-inner h2 { font-family:'Comic Sans MS','Comic Neue',sans-serif; color: #ff4500; font-size: 1.8rem; margin-bottom: 12px; }
.pf-cred-inner p { color: #444; line-height: 1.65; margin-bottom: 22px; }
.pf-deliverables { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pf-deliverables span { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 0.9rem; font-weight: 700; color: #002b49; background: #fff; border: 2px solid #ffd700; border-radius: 22px; padding: 8px 16px; }

.pf-links { padding: 40px 20px; max-width: 900px; margin: 0 auto; }

/* ════════ SERVICES "GLIMPSE" CAROUSEL ════════ */
.glimpse-section { background: #fff; padding: 50px 5% 40px; }
.glimpse-carousel-wrap { position: relative; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 8px; }
.glimpse-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 8px 4px 18px; scroll-padding-left: 4px;
}
.glimpse-track::-webkit-scrollbar { height: 8px; }
.glimpse-track::-webkit-scrollbar-thumb { background: #ffd700; border-radius: 4px; }
.glimpse-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #fff; border: 2px solid #ffd700; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glimpse-card:hover, .glimpse-card:focus-visible { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.16); outline: none; }
.glimpse-card-media { position: relative; height: 180px; overflow: hidden; }
.glimpse-card-media img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.12); transition: transform 0.6s ease; }
.glimpse-card:hover .glimpse-card-media img { transform: scale(1.08); }
.glimpse-flags { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); border-radius: 18px; padding: 2px 9px; font-size: 0.95rem; }
.glimpse-open { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,43,73,0.9), transparent); color: #fff; font-family:'Comic Sans MS','Comic Neue',sans-serif; font-weight: 700; font-size: 0.85rem; padding: 22px 12px 8px; opacity: 0; transition: opacity 0.3s ease; }
.glimpse-card:hover .glimpse-open, .glimpse-card:focus-visible .glimpse-open { opacity: 1; }
.glimpse-card-body { padding: 14px 16px 18px; }
.glimpse-card-body h3 { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 1.1rem; color: #ff4500; margin-bottom: 2px; }
.glimpse-route { font-family:'Comic Sans MS','Comic Neue',sans-serif; font-size: 0.8rem; font-weight: 700; color: #002b49; margin-bottom: 6px; }
.glimpse-teaser { font-size: 0.9rem; color: #444; line-height: 1.45; text-align: left; }
.glimpse-arrow {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid #ffd700; background: #fff; color: #ff4500;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.glimpse-arrow:hover { background: #ff69b4; color: #fff; border-color: #ff69b4; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  .pf-hero { min-height: 420px; padding: 50px 4%; }
  .pf-hero-content { padding: 26px 22px; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-modal-scroll { padding: 24px 20px 28px; }
  .pf-tl-item { grid-template-columns: 44px 16px 1fr; }
  .pf-timeline::before { left: 50px; }
  .glimpse-arrow { display: none; }
  .glimpse-card { flex: 0 0 82%; }
}
