/* ═══════════════════════════════════════════════════════════════════════════════
   LINE OF PEARL™ — GUARDIANS OF THE BLOODLINE™
   Main Stylesheet — Parchment Scroll Aesthetic
   JESUS IS LORD™
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ===== Design Tokens ===== */
:root {
  --paper: #f7f1e3;
  --paper-2: #e8dcc4;
  --paper-3: #d9c9a8;
  --gold: #daa520;
  --gold-soft: #e7c96c;
  --ink: #2b2b2b;
  --ink-soft: #4a4a4a;
  --ink-light: #6b6b6b;
  --white: #fffdf8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.2s ease;
  --max-width: 1100px;
}

/* ===== Accessibility Overrides ===== */
:root[data-reduce-motion="true"] * {
  transition: none !important;
  animation: none !important;
}

:root[data-high-contrast="true"] {
  --paper: #ffffff;
  --paper-2: #f0f0f0;
  --ink: #000000;
  --ink-soft: #1a1a1a;
}

:root[data-high-contrast="true"] .lineage-tree svg {
  filter: contrast(140%) brightness(1.05);
}

/* ===== Global Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--ink);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
}

blockquote {
  margin: 1em 0;
  padding: 1em 1.5em;
  background: var(--paper-2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--ink-soft);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--paper-2);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 227, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-3);
  padding: 1rem 1.5rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-glyph {
  font-size: 2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--ink);
}

/* ===== Banner / Hero ===== */
.banner {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.banner h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.banner .mission {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.banner .verse {
  font-style: italic;
  color: var(--ink-light);
  font-size: 0.95rem;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Cards / Panels ===== */
.panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== Pathway Grid ===== */
#path-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.path-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.path-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.path-tile:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.path-tile h3 {
  font-size: 1.1rem;
  margin: 0;
}

.path-tile p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.path-tile .cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
  transition: transform var(--transition);
}

.path-tile:hover .cta {
  transform: translateX(0.25rem);
}

.path-tile.coming-soon {
  opacity: 0.7;
  position: relative;
}

.path-tile.coming-soon::after {
  content: "Soon";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.7rem;
  background: var(--paper-2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--ink-soft);
}

/* ===== Horizontal Gallery ===== */
.gallery-container {
  position: relative;
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0 2rem;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  text-align: center;
}

.gallery-slide .photo-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery-slide .photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gallery-slide h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-slide .spirit-role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.gallery-slide .verse {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.gallery-slide .lineage {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-btn {
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.gallery-btn:hover {
  background: var(--paper-2);
}

.gallery-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.gallery-dots {
  display: flex;
  gap: 0.5rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-3);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.gallery-dot.active,
.gallery-dot:hover {
  background: var(--gold);
}

/* ===== Covenant Accordion ===== */
.accordion details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.accordion summary {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion .details-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--paper-2);
}

.accordion h3 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  color: var(--ink);
}

.accordion ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.accordion li {
  margin-bottom: 0.5rem;
}

/* ===== Blessing Scroll ===== */
.blessing-form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
}

.blessing-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.blessing-form input,
.blessing-form select,
.blessing-form textarea {
  padding: 0.75rem;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.blessing-form input:focus,
.blessing-form select:focus,
.blessing-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.blessing-preview {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.blessing-scroll-output {
  text-align: center;
}

.blessing-scroll-output header {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.blessing-scroll-output h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.blessing-scroll-output .lineage {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.blessing-scroll-output section {
  padding: 1rem 0;
  text-align: left;
}

.blessing-scroll-output footer {
  border-top: 1px solid var(--paper-2);
  padding-top: 1rem;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blessing-scroll-output .seal {
  width: 48px;
  height: 48px;
}

/* ===== Lineage Tree ===== */
.lineage-tree {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.lineage-node {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lineage-node:hover,
.lineage-node:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lineage-node:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lineage-node .generation-badge {
  font-size: 0.7rem;
  background: var(--gold);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.lineage-node .name {
  font-family: var(--font-serif);
  font-weight: 700;
}

.lineage-node .spirit-name {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: #c9941a;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--paper-3);
}

.btn-secondary:hover {
  background: var(--paper);
}

/* ===== Apply Section ===== */
.apply-section {
  text-align: center;
}

.apply-section .apply-copy {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 1.5rem;
  text-align: center;
}

.site-footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer .brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.site-footer .tagline {
  font-size: 0.9rem;
  color: var(--paper-2);
  margin-bottom: 1rem;
}

.site-footer .verse {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--paper-3);
  margin-bottom: 1.5rem;
}

.site-footer .covenant-hash {
  font-size: 0.75rem;
  color: var(--paper-3);
  font-family: monospace;
}

.site-footer .accessibility-toggles {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer .accessibility-toggles label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.site-footer .accessibility-toggles input {
  cursor: pointer;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #c9941a;
}

.back-to-top:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ===== Coming Soon Card ===== */
.coming-soon-card {
  text-align: center;
  padding: 3rem;
  background: var(--paper-2);
  border-radius: var(--radius);
}

.coming-soon-card h3 {
  margin-bottom: 0.5rem;
}

.coming-soon-card p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .banner {
    padding: 3rem 1rem;
  }
  
  .banner h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .gallery-slide {
    flex: 0 0 260px;
  }
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ===== SR Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Lightbox Gallery ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.lightbox-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 200px;
}

.lightbox-loader {
  position: absolute;
  color: var(--paper);
  font-size: 1rem;
  display: none;
}

.lightbox-image {
  max-width: 85vw;
  max-height: 70vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  object-fit: contain;
}

.lightbox-info {
  text-align: center;
  color: var(--paper);
  max-width: 600px;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--paper);
}

.lightbox-description {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--paper-2);
  margin: 0 0 1rem;
}

.lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.lightbox-download span {
  font-size: 1.1rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--paper);
  font-size: 3rem;
  width: 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius-sm);
}

.lightbox-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

.lightbox-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* Lightbox responsive */
@media (max-width: 900px) {
  .lightbox-nav {
    width: 50px;
    height: 60px;
    font-size: 2rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-image {
    max-width: 95vw;
    max-height: 60vh;
  }

  .lightbox-close {
    top: -2rem;
    right: 0.5rem;
    font-size: 2rem;
  }
}

/* Gallery slide hover effect for clickable indication */
.gallery-slide {
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-slide:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Click hint on gallery slides */
.gallery-slide .photo-placeholder::after {
  content: "Click to view";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-slide:hover .photo-placeholder::after {
  opacity: 1;
}

.gallery-slide .photo-placeholder {
  position: relative;
  overflow: hidden;
}

/* ===== Founder Hero Section ===== */
.founder-hero {
  background: linear-gradient(180deg, #1a1410 0%, #2d2520 50%, var(--paper) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.founder-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.founder-hero-img {
  max-height: 350px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.founder-hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.founder-badge-img {
  width: 80px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition), opacity var(--transition);
}

.founder-badge-img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.founder-hero-caption {
  text-align: center;
  margin-top: 1.5rem;
}

.founder-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.founder-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--paper-2);
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}

/* ===== Logo Image in Header ===== */
.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
}

/* ===== Footer Seal ===== */
.footer-seal {
  margin-bottom: 1rem;
}

.wax-seal-img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transition: transform var(--transition);
}

.wax-seal-img:hover {
  transform: rotate(-5deg) scale(1.05);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .founder-hero-inner {
    min-height: 300px;
    padding: 1.5rem 1rem;
  }

  .founder-hero-img {
    max-height: 250px;
  }

  .founder-badge-img {
    width: 60px;
  }

  .founder-title {
    font-size: 1.75rem;
  }

  .logo-img {
    width: 48px;
    height: 48px;
  }

  .wax-seal-img {
    width: 90px;
  }
}
