/* Samuel Productions GmbH - Premium Swiss Corporate Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-main: #F7F5F0;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1A1A;
  --bg-dark-card: #141414;
  
  --primary-gold: #B28343;
  --primary-gold-hover: #966C32;
  --gold-light: #CBA469;
  
  --text-main: #1C1C1C;
  --text-muted: #666666;
  --text-light: #A0A0A0;
  --text-white: #FFFFFF;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --border-light: #EBE8E1;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.mobile-nav-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 48px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.02);
}



.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.desktop-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

.desktop-nav-links a:hover {
  color: var(--primary-gold);
}

.desktop-nav-links a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle Hamburger Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
}

.mobile-nav-toggle:active {
  background-color: rgba(178, 131, 67, 0.1);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
  visibility: hidden;
  transition: visibility 0.35s ease;
}

.mobile-nav-drawer.active {
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-nav-drawer.active .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background-color: var(--bg-main);
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  flex-grow: 1;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:active {
  background-color: rgba(178, 131, 67, 0.12);
  color: var(--primary-gold);
}

.mobile-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.w-full {
  width: 100%;
  justify-content: center;
}

.mobile-drawer-contact-info {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-drawer-contact-info a {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Scroll to Top Floating Button */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  color: var(--primary-gold);
  border: 1px solid rgba(178, 131, 67, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover,
.scroll-top-btn:active {
  background-color: var(--primary-gold);
  color: var(--text-white);
  transform: translateY(-2px) scale(1.05);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* Touch active state feedback */
button:active, .btn-primary:active, .btn-gold-pill:active, .business-card:active {
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-white);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(178, 131, 67, 0.25);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #EFECE6;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 245, 240, 0.94) 0%, rgba(247, 245, 240, 0.85) 45%, rgba(247, 245, 240, 0.3) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-text-block {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}

.hero-body-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-body-paragraphs p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}

.hero-body-paragraphs strong {
  color: var(--primary-gold);
  font-weight: 700;
}

.hero-cta-block {
  padding-top: 18px;
  border-top: 1px solid rgba(178, 131, 67, 0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.hero-cta-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.hero-cta-btn {
  text-decoration: none;
}

/* ==========================================================================
   Business Areas Section (UNSERE GESCHÄFTSBEREICHE)
   ========================================================================== */
.section-business {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 6px;
}

/* Business Grid Layout */
.business-grid-row-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.business-grid-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.business-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.card-status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 5;
}

.card-domain-disabled {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--primary-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.card-link-disabled {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: auto;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #E2DEC9;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #EBEBEB;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.card-badge-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: #1C1C1C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2;
}

.card-badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 1.75;
}

.card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.launch-bracket {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-gold);
  font-style: italic;
  margin-left: 4px;
}

.card-domain {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.2px;
}

.card-lead {
  font-size: 12px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-gold);
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: auto;
}

.card-link:hover {
  color: var(--primary-gold-hover);
  transform: translateX(3px);
}

/* ==========================================================================
   About Section (ÜBER SAMUEL PRODUCTIONS)
   ========================================================================== */
.section-about {
  padding: 80px 0 90px;
  background-color: var(--bg-main);
}

.about-split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-content {
  padding-right: 20px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.about-paragraphs p {
  font-size: 14px;
  color: #333333;
  line-height: 1.65;
}

.about-paragraphs strong {
  color: var(--text-main);
  font-weight: 700;
}

.inline-gold-link {
  color: var(--primary-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.inline-gold-link:hover {
  color: var(--primary-gold-hover);
}

.btn-gold-pill {
  background-color: #A37435;
  color: var(--text-white);
  padding: 14px 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold-pill:hover {
  background-color: #8C6129;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(163, 116, 53, 0.3);
}

/* About Visual Container */
.about-visual-container {
  display: grid;
  grid-template-columns: 210px 1fr;
  background-color: transparent;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-features-card {
  background-color: #191919;
  color: var(--text-white);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon-wrapper {
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-wrapper svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-gold);
  fill: none;
  stroke-width: 1.8;
}

.feature-text {
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
  color: #E0E0E0;
}

.feature-text strong {
  display: block;
  font-weight: 700;
  color: #FFFFFF;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-image-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(178, 131, 67, 0.4);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.founder-image-caption strong {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #FFFFFF;
}

.founder-image-caption span {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding-top: 60px;
  padding-bottom: 30px;
  border-top: 1px solid #282828;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2B2B2B;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 64px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  font-size: 22px;
  border-color: var(--primary-gold);
}

.footer-logo-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.footer-logo-sub {
  font-size: 9px;
  color: #888888;
}

.footer-tagline {
  font-size: 11px;
  color: #999999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #444444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC;
  font-size: 11px;
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 11px;
  color: #BBBBBB;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 2px;
}

.footer-link-disabled {
  font-size: 11px;
  color: #777777;
  font-style: italic;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-heading {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}

.address-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.address-tag {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: none;
  letter-spacing: normal;
}

.address-item p {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 1.5;
}

.address-item a {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 600;
  transition: var(--transition);
}

.address-item a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 10px;
  color: #777777;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #777777;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--primary-gold);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  width: 90%;
  max-width: 500px;
  padding: 36px;
  border-radius: 6px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888888;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.direct-mailto-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.modal-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.modal-addr strong {
  display: block;
  font-size: 11px;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.modal-addr p {
  font-size: 12px;
  color: var(--text-main);
  line-height: 1.4;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

/* Form Input Styles & Mobile Zoom Fix */
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #DDD;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(178, 131, 67, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

/* ==========================================================================
   Responsive Media Queries Overhaul
   ========================================================================== */
@media (max-width: 992px) {
  .desktop-nav-links,
  .desktop-only-btn {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 4.5vw, 2.5rem);
  }

  .business-grid-row-1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual-container {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 12px 16px;
  }

  .logo-img {
    height: 38px;
  }

  /* Hero Mobile Enhancements */
  .hero {
    min-height: auto;
    padding: 48px 0 54px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(247, 245, 240, 0.97) 0%, rgba(247, 245, 240, 0.92) 65%, rgba(247, 245, 240, 0.8) 100%);
  }

  .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 16px;
    hyphens: auto;
    word-break: break-word;
  }

  .hero-body-paragraphs {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-body-paragraphs p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .hero-cta-block {
    padding-top: 16px;
  }

  .hero-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 11px;
    text-align: center;
  }

  /* Business Cards Mobile Enhancements */
  .section-business {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .business-grid-row-1, 
  .business-grid-row-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .business-card:active {
    transform: scale(0.985);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .card-image-wrapper {
    height: 190px;
  }

  .card-body {
    padding: 20px 20px 24px;
  }

  .card-num, 
  .card-name {
    font-size: 20px;
  }

  .card-lead {
    font-size: 12.5px;
  }

  .card-desc {
    font-size: 12.5px;
    margin-bottom: 20px;
  }

  .card-link {
    font-size: 11px;
    padding: 6px 0;
  }

  /* About Section Mobile Enhancements */
  .section-about {
    padding: 48px 0 54px;
  }

  .about-title {
    font-size: clamp(1.6rem, 5.5vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .about-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .btn-gold-pill {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    text-align: center;
  }

  .about-features-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 22px 16px;
  }

  .feature-item {
    gap: 8px;
  }

  .feature-text {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .about-image-wrapper {
    min-height: 200px;
    max-height: 260px;
  }

  /* Footer Mobile Enhancements */
  .footer {
    padding-top: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .legal-links {
    gap: 16px;
  }

  /* Modal Mobile Zoom Fix & Bottom Sheet Feel */
  .form-input {
    font-size: 16px; /* Critical iOS Safari zoom prevention */
    padding: 12px 14px;
  }

  .modal-card {
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 20px;
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .modal-title {
    font-size: 22px;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  /* Kingdom Impact Mobile Layout Fixes */
  .section-kingdom-impact-landing {
    padding: 44px 0;
  }

  .kingdom-landing-card {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .kingdom-landing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kingdom-landing-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .kingdom-landing-tagline {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .kingdom-landing-text,
  .kingdom-landing-subtext {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .kingdom-landing-quote {
    padding: 14px 16px;
    margin-bottom: 18px;
  }

  .kingdom-landing-quote p {
    font-size: 15px;
    line-height: 1.45;
  }

  .kingdom-landing-cta {
    align-items: stretch;
    width: 100%;
    padding-top: 14px;
  }

  .kingdom-landing-cta .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .kingdom-carousel-card {
    padding: 14px;
  }

  .carousel-viewport {
    height: 220px;
  }
}

/* ==========================================================================
   Kingdom Impact Charity Styles & Components
   ========================================================================== */

/* Active link indicator */
.desktop-nav-links a.active-nav-link {
  color: var(--primary-gold);
}

.desktop-nav-links a.active-nav-link::after {
  width: 100%;
}

.mobile-nav-link.active-nav-link {
  color: var(--primary-gold);
  background-color: rgba(178, 131, 67, 0.1);
}

/* Landing Page Kingdom Impact Section */
.section-kingdom-impact-landing {
  padding: 80px 0;
  background-color: #EFECE6;
}

.kingdom-landing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.kingdom-landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-gold) 0%, var(--gold-light) 100%);
}

.kingdom-landing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.kingdom-landing-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.kingdom-landing-tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.kingdom-landing-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.65;
  margin-bottom: 20px;
}

.kingdom-landing-quote {
  background-color: #F8F6F0;
  border-left: 3px solid var(--primary-gold);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 20px;
  position: relative;
}

.kingdom-landing-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.4;
}

.kingdom-landing-subtext {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.kingdom-landing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.slogan-highlight {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 700;
}

/* Small-sized Media Carousel / Slider Component */
.kingdom-carousel-card {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(178, 131, 67, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.carousel-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.carousel-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.carousel-counter {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 1px;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  background: #000000;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide.video-slide {
  cursor: default;
  background: #000000;
}

.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(178, 131, 67, 0.9);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 5;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
}

.carousel-slide:hover .slide-overlay {
  opacity: 1;
}

.carousel-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-dots .dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}

.mini-thumb-more {
  height: 80px;
  background: var(--bg-dark);
  color: var(--primary-gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(178, 131, 67, 0.3);
}

.mini-thumb-more:hover {
  background: var(--primary-gold);
  color: #FFFFFF;
}

.mini-thumb-more span {
  font-size: 16px;
  line-height: 1;
}

.mini-thumb-more small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Kingdom Impact Dedicated Page Styles
   ========================================================================== */

/* Hero Section */
.kingdom-hero {
  position: relative;
  min-height: 520px;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow: hidden;
}

.kingdom-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kingdom-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65);
}

.kingdom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.75) 50%, rgba(20, 20, 20, 0.88) 100%);
  z-index: 2;
}

.kingdom-hero-content {
  position: relative;
  z-index: 3;
}

.kingdom-hero-text {
  max-width: 760px;
}

.kingdom-hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.kingdom-hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.kingdom-hero-desc {
  font-size: 15px;
  color: #DDDDDD;
  line-height: 1.7;
  margin-bottom: 32px;
}

.kingdom-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quote Section */
.kingdom-quote-section {
  padding: 60px 0;
  background-color: var(--bg-main);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.kingdom-quote-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary-gold);
  opacity: 0.8;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 18px;
  font-style: italic;
}

.quote-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-gold);
  text-transform: uppercase;
}

/* Philosophy Section */
.kingdom-philosophy-section {
  padding: 70px 0 90px;
  background-color: var(--bg-main);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.section-title-left {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.25;
}

.philosophy-lead {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 16px;
}

.philosophy-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

.philosophy-slogan-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary-gold);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
}

.slogan-icon {
  font-size: 28px;
}

.slogan-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.slogan-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Impact Stats Grid */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Media Gallery Section */
.section-gallery {
  padding: 80px 0;
  background-color: #EFECE6;
}

.gallery-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
  background: var(--primary-gold);
  color: #FFFFFF;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(178, 131, 67, 0.25);
}

/* Featured Video Player */
.video-featured-card {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #FFFFFF;
  margin-bottom: 36px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(178, 131, 67, 0.3);
}

.video-featured-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.media-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(178, 131, 67, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(178, 131, 67, 0.4);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.video-featured-header h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-wrapper video {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: contain;
}

.video-caption {
  text-align: center;
  font-size: 13px;
  color: #BBBBBB;
  font-style: italic;
}

/* Photos Grid */
.gallery-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-card {
  position: relative;
  width: 100%;
  height: 260px;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px;
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.photo-card:hover img {
  transform: scale(1.08);
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

.photo-badge {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--primary-gold);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.zoom-icon {
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* CTA Banner Section */
.kingdom-cta-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.kingdom-cta-box {
  background: var(--bg-dark);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.kingdom-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 50%, var(--primary-gold) 100%);
}

.kingdom-cta-box h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.kingdom-cta-box p {
  font-size: 15px;
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-media-wrapper {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.lightbox-media-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.lightbox-caption {
  margin-top: 14px;
  color: #E0E0E0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Responsive Overhauls for Kingdom Impact
   ========================================================================== */
@media (max-width: 992px) {
  .kingdom-landing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kingdom-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 640px) {
  .section-kingdom-impact-landing {
    padding: 48px 0;
  }

  .kingdom-landing-card {
    padding: 28px 20px;
  }

  .kingdom-landing-title {
    font-size: 26px;
  }

  .kingdom-landing-tagline {
    font-size: 14px;
  }

  .kingdom-hero {
    min-height: auto;
    padding: 60px 0 50px;
  }

  .kingdom-hero-title {
    font-size: 32px;
  }

  .kingdom-hero-subtitle {
    font-size: 17px;
  }

  .kingdom-quote-card {
    padding: 32px 20px;
  }

  .quote-text {
    font-size: 20px;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-photos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-card {
    height: 220px;
  }

  .kingdom-cta-box {
    padding: 40px 20px;
  }

  .kingdom-cta-box h2 {
    font-size: 26px;
  }
}

