@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary: #030637; /* Deep midnight navy */
  --accent: #8A1248;  /* Deep raspberry wine */
  
  /* Neutrals */
  --bg-color: #F7F7F4;
  --surface: #EFEFE9;
  --text-main: #2F3942;
  --text-muted: #6E7680;
  --border: #E2E2DE;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 12px rgba(3, 6, 55, 0.04);
  --shadow-md: 0 8px 24px rgba(3, 6, 55, 0.08);
  --shadow-lg: 0 20px 40px rgba(3, 6, 55, 0.15);
}

/* Mobile Spacing Overrides */
@media (max-width: 768px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }
}

/* Ambient Background (Native zero-cost CSS radial gradients, 60fps/120fps ultra-smooth scrolling) */
.bg-aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 90% 90%, rgba(226, 226, 222, 0.65) 0%, rgba(226, 226, 222, 0) 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
}

.aurora-blob {
  display: none !important;
}

/* Noise Texture Overlay */
.noise-overlay {
  display: none !important;
}

/* Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: transparent;
  color: var(--text-main);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  line-height: 1.65;
}

li {
  font-size: 1.125rem;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* Image Overlay System */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.image-wrapper:hover::after {
  opacity: 0.05;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center center;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

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

ul {
  list-style-position: inside;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, background-color 0.3s ease;
  border: 1px solid transparent;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: rgba(3, 6, 55, 0.95);
  color: var(--white);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-accent {
  background-color: rgba(138, 18, 72, 0.95);
  color: var(--white);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-accent:hover {
  background-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Button Reflection (Triggered on hover for peak smoothness) */
.btn-primary::after, .btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover::after, .btn-accent:hover::after {
  left: 150%;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(3, 6, 55, 0.3);
  color: var(--primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: rgba(243, 238, 235, 0.9);
  color: var(--primary);
}

/* Layout Blocks */
.section {
  padding: clamp(3.5rem, 6.5vw, 5.5rem) 0;
}

/* Layout Utilities */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.editorial-quote {
  position: relative;
  width: 100%;
  padding: 1rem; /* Massive vertical whitespace */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: transparent;
}

.editorial-quote h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1.5rem;
  max-width: 900px;
  line-height: 1.2;
}

.editorial-quote p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

.editorial-quote::before {
  content: '';
  display: block;
  width: 2px;
  height: 60px;
  background-color: var(--accent);
  margin-bottom: 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4,
.services-grid,
.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .grid-4,
  .services-grid,
  .services-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .grid-4,
  .services-grid,
  .services-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Service Card Component */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(3, 6, 55, 0.04);
  padding: 2.75rem 1.6rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(138, 18, 72, 0.1);
  border-color: rgba(138, 18, 72, 0.3);
}

.service-card .icon-large {
  margin: 0 auto 1.5rem;
  display: block;
  font-size: 2.75rem;
  color: var(--accent);
}

.service-card .card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
  text-align: center;
}

.service-card .btn {
  width: 100%;
  margin-top: auto;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(3, 6, 55, 0.25);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.service-card .btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 6, 55, 0.15);
}

.icon-large {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.icon-medium {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Sections - optimized for fast rendering and ultra-smooth scrolling */
.section-light {
  background-color: var(--white);
}

.section-surface {
  background-color: var(--surface);
}

/* Top Bar */
.top-bar {
  background-color: #01031A;
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--accent);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 1.5rem;
}

.top-bar-contact a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-contact a:hover {
  color: var(--white);
}

.top-bar-social {
  display: flex;
  gap: 1rem;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-social a:hover {
  color: var(--white);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(3, 6, 55, 0.05);
  z-index: 1000;
  padding: 0.9rem 0;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.btn,
.nav-links .btn,
.nav-links .btn-primary,
.nav-links .btn-accent {
  color: var(--white) !important;
}

.nav-links a.btn:hover,
.nav-links .btn:hover,
.nav-links .btn-primary:hover,
.nav-links .btn-accent:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--white) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(138, 18, 72, 0.4);
}

.menu-trigger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-header {
  display: none;
}

.card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.card-icon i {
  color: var(--accent);
}

.card-header-row {
  display: block;
  margin-bottom: 0.5rem;
}

.card-header-row .icon-large,
.card-header-row .card-icon {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.card-header-row .card-icon {
  font-size: 2rem;
}

.card-header-row .card-title {
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-image {
  aspect-ratio: 4/3;
  width: 100%;
  margin-bottom: -4rem;
  z-index: 10;
  background-color: var(--primary);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-overlap-section {
  padding-top: 6rem;
}

/* Modern Minimalist Cards */
.card {
  background-color: var(--white);
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(138, 18, 72, 0.3);
}

.card.clickable {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.card-title,
.card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: var(--space-xs);
  color: var(--primary);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

/* FAQ Accordion */
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  box-shadow: var(--shadow-sm);
}

summary {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

summary::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  font-size: 1.2rem;
  color: var(--accent);
}

details[open] summary::after {
  content: '−';
}

details p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background-color: #01031A;
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 4px solid var(--accent);
}

.footer img,
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  text-align: right;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-grid > div:nth-child(2) a:hover,
.footer-grid > div:nth-child(3) a:hover {
  padding-left: 0;
  padding-right: 4px;
}

/* Footer Location Title */
.footer-location-title {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin-bottom: 1.25rem !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-location-title i {
  color: var(--accent);
  font-size: 1rem;
}

.footer-location-title:hover {
  color: var(--white) !important;
  padding-left: 0 !important;
}

/* Footer Social Icons (Horizontal Row) */
.footer-social {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  font-size: 0.95rem !important;
}

.footer-social a:hover {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(138, 18, 72, 0.4);
  padding-left: 0 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  display: inline !important;
  color: inherit !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
  font-size: inherit !important;
  transition: color 0.2s ease !important;
}

.footer-bottom a:hover {
  color: var(--white) !important;
  padding-left: 0 !important;
}

/* Responsive Breakpoints & Mobile Navigation */
@media (max-width: 992px) {
  .header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff;
  }

  .menu-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.2s ease;
    border: none;
    outline: none;
  }

  .menu-trigger:hover,
  .menu-trigger:focus {
    color: var(--accent);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2.5rem;
    gap: 0.25rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2005;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid var(--border);
  }

  .mobile-nav-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-nav-logo img {
    height: 38px;
    width: auto;
    display: block;
  }

  .mobile-nav-close {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--accent);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav-close:hover {
    color: var(--primary);
    transform: scale(1.1);
  }

  .nav-links.active {
    right: 0 !important;
  }

  .nav-links a:not(.mobile-nav-logo) {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
  }

  .nav-links a:not(.mobile-nav-logo):hover {
    color: var(--accent);
    padding-left: 0.75rem;
    background: rgba(138, 18, 72, 0.04);
    border-radius: var(--radius-sm);
  }

  .nav-links a.btn,
  .nav-links .btn-primary {
    margin-top: 1.25rem;
    width: 100%;
    text-align: center;
    border-bottom: none !important;
    padding: 0.85rem 1.5rem;
    color: var(--white) !important;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
  }

  .nav-links a.btn:hover,
  .nav-links .btn-primary:hover {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    padding-left: 1.5rem;
  }

  body.menu-open .menu-trigger {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .card-header-row {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .card-header-row .icon-large,
  .card-header-row .card-icon {
    margin-bottom: 0 !important;
    font-size: 1.85rem !important;
    min-width: 2.25rem !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .card-header-row .card-title {
    margin-bottom: 0 !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
  }
  .top-bar {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .top-bar-social {
    justify-content: center;
    gap: 1.25rem;
  }

  .top-bar-contact {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 1rem;
    font-size: 0.78rem;
  }

  .top-bar-contact a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .logo img {
    height: 38px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-md);
    padding-bottom: 0;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
  }
  
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .hero-content p {
    margin: 0 auto var(--space-md);
    font-size: 1.05rem;
  }

  .hero-content div[style*="display: flex"],
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem !important;
  }

  .hero-image {
    order: -1;
    max-width: 100%;
    margin: 0 auto 1.5rem !important;
    z-index: 1;
  }

  .hero-overlap-section {
    padding-top: var(--space-lg);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }

  .split-layout {
    grid-template-columns: 1fr !important;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: left;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    text-align: left;
  }

  .footer-grid > div:nth-child(2) a:hover,
  .footer-grid > div:nth-child(3) a:hover {
    padding-left: 4px;
    padding-right: 0;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .editorial-quote h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .top-bar-contact {
    gap: 0.35rem 0.65rem;
    font-size: 0.72rem;
  }

  .container {
    padding: 0 1rem;
  }

  .card {
    padding: 1.25rem 1rem;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* Affiliation Capsules */
.affiliation-capsule {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(138, 18, 72, 0.25);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  width: fit-content;
}

.affiliation-capsule:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(138, 18, 72, 0.1);
  border-color: var(--accent);
}

.affiliation-capsule img {
  height: 55px;
  max-width: 175px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.affiliation-capsule span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .affiliation-capsule {
    padding: 0.6rem 1.2rem;
    gap: 1rem;
  }
  .affiliation-capsule img {
    height: 35px;
  }
  .affiliation-capsule span {
    font-size: 0.75rem;
  }
}

/* Form Validation & Status Styles */
.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e53e3e !important;
  background-color: rgba(229, 62, 62, 0.02);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.form-group .error-msg {
  display: none;
  color: #e53e3e;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-weight: 500;
  line-height: 1.4;
}

.form-group.has-error .error-msg {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}

.form-status.success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Single Blog Post & Article System
   ========================================================================== */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 600;
}

.article-hero {
  padding: 3rem 0 1.5rem;
  position: relative;
}

.article-category-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(144, 41, 62, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-author-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.article-featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-featured-img img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.article-content {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #334155;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

.article-content h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.article-content strong {
  color: var(--primary);
}

.callout-box {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.callout-box h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.callout-box p:last-child {
  margin-bottom: 0;
}

.takeaways-card {
  background: linear-gradient(135deg, rgba(6, 51, 75, 0.04), rgba(144, 41, 62, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin: 2.5rem 0;
}

.takeaways-card h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.takeaways-card ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.takeaways-card li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

.takeaways-card li:last-child {
  margin-bottom: 0;
}

/* Modern Unified Author & Share Section */
.article-footer-card {
  background: var(--white);
  border: 1px solid #8c174c;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 3.5rem;
  box-shadow: 0 10px 30px rgba(6, 51, 75, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.article-author-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.author-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(144, 41, 62, 0.25);
}

.author-details {
  flex-grow: 1;
}

.author-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.author-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 800;
}

.author-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.author-name {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.author-role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.article-share-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.share-action-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.share-pill i {
  font-size: 1rem;
}

.share-pill.share-wa {
  color: #128c7e;
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.08);
}
.share-pill.share-wa:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.share-pill.share-li {
  color: #0077b5;
  border-color: rgba(0, 119, 181, 0.3);
  background: rgba(0, 119, 181, 0.08);
}
.share-pill.share-li:hover {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.share-pill.share-tw {
  color: #0f1419;
  border-color: rgba(15, 20, 25, 0.3);
  background: rgba(15, 20, 25, 0.06);
}
.share-pill.share-tw:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .article-author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-meta-top {
    justify-content: center;
  }
  .article-share-block {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .share-action-buttons {
    justify-content: center;
  }
}

/* Sidebar Elements */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.sidebar-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-toc li {
  margin-bottom: 0.6rem;
}

.sidebar-toc a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.sidebar-toc a:hover {
  color: var(--accent);
}

.sidebar-cta-card {
  background: linear-gradient(135deg, var(--primary), #0c4866);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(6, 51, 75, 0.2);
}

.sidebar-cta-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.sidebar-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
