/* Meliman Investments — Formal brand theme (logo + Facebook aligned) */

:root {
  --primary: #FFD54F;
  --primary-dark: #FBC02D;
  --primary-light: #FFE082;
  --accent: #FFD54F;
  --gold: #FFD54F;
  --dark: #212121;
  --dark-2: #2A2640;
  --dark-3: #424242;
  --gray: #5C6470;
  --surface: #0D1F3C;
  --surface-2: #132847;
  --canvas: #0A1931;
  --brand-navy: #0A1931;
  --brand-navy-deep: #061224;
  --action-red: #E53935;
  --action-red-dark: #C62828;
  --highlight-yellow: #FFD54F;
  --text-charcoal: #212121;
  --shadow-glow: 0 8px 32px rgba(229, 57, 53, 0.28);
  --shadow-highlight: 0 8px 32px rgba(255, 213, 79, 0.28);
  --gradient-brand: linear-gradient(135deg, #FFD54F 0%, #FBC02D 100%);
  --gradient-dark: linear-gradient(135deg, #0A1931 0%, #061224 100%);
  --gradient-action: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  --header-stack-height: 148px;
  --hero-height: calc(100dvh - var(--header-stack-height));
  --hero-trust-offset: clamp(6.25rem, 17vh, 8.75rem);
}

.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0);
}

.site-header-wrap .header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.hero {
  padding-top: var(--header-stack-height);
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  min-height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: var(--hero-height);
  height: calc(100vh - var(--header-stack-height));
  min-height: min(420px, 70dvh);
}

::selection {
  background: rgba(255, 213, 79, 0.45);
  color: var(--text-charcoal);
}

.scroll-progress {
  background: linear-gradient(90deg, var(--highlight-yellow), var(--primary-light));
  box-shadow: 0 0 12px rgba(255, 213, 79, 0.45);
}

/* Top bar — cream utility band */
.top-bar {
  background: linear-gradient(180deg, #f8f9fa 0%, #f4f5f5 100%);
  border-bottom: 1px solid #e3e7ee;
  font-size: 0.78rem;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.top-bar-left {
  justify-self: start;
}

.top-bar-right {
  justify-self: end;
  justify-content: flex-end;
}

.top-bar-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-label--contact {
  display: none;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  text-decoration: none;
  color: var(--dark);
  line-height: 1.2;
  padding: 0 0.75rem;
  border-left: 1px solid #dde3eb;
  border-right: 1px solid #dde3eb;
}

.top-bar-brand strong {
  font-family: var(--font);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--brand-navy);
  line-height: 1.15;
}

.top-bar-brand .top-bar-tagline {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 500;
  font-style: italic;
  font-synthesis: style;
  letter-spacing: 0.025em;
  color: #424242;
  margin-top: 0.18rem;
  line-height: 1.35;
  max-width: 28rem;
  text-align: center;
}

.top-bar-brand:hover strong {
  color: var(--action-red);
}

.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  justify-content: flex-end;
}

.top-bar-divider {
  width: 1px;
  height: 18px;
  background: #d1d9e6;
  flex-shrink: 0;
}

.top-bar-contact-link {
  color: var(--text-charcoal);
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  white-space: nowrap;
}

.top-bar-contact-link span {
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-contact-link--phone {
  color: var(--action-red);
  font-weight: 700;
}

.top-bar-contact-link:hover {
  color: var(--action-red);
}

.top-bar-social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  background: #ffffff;
  border: 1px solid #e3e7ee;
  transition: var(--transition);
  flex-shrink: 0;
}

.top-bar-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 25, 49, 0.12);
}

.top-bar-social-link--facebook:hover {
  color: #1877f2;
  background: #eef4ff;
  border-color: #c8dcfa;
}

.top-bar-social-link--instagram:hover {
  color: #c13584;
  background: #fdf2f8;
  border-color: #f5c6e0;
}

.top-bar-social-link--whatsapp:hover {
  color: #128c7e;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

/* Header — 30% brand navy structure */
.site-header-wrap .header {
  background: rgba(10, 25, 49, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 213, 79, 0.16);
  padding: 1rem 0;
}

.site-header-wrap .header.scrolled {
  background: rgba(10, 25, 49, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 0.75rem 0;
}

.nav-link:hover,
.nav-link.active {
  background: var(--highlight-yellow);
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 1px rgba(255, 213, 79, 0.55);
}

.btn-primary {
  background: var(--gradient-action);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.42);
}

/* Formal section cards */
.section {
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag::before {
  background: var(--gradient-brand);
}

.formal-card,
.service-card,
.branch-card,
.distinct-item,
.product-card,
.news-feature,
.profile-card,
.speaker-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover,
.product-card:hover,
.branch-card:hover,
.distinct-item:hover,
.news-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42, 38, 64, 0.12);
  border-color: rgba(255, 213, 79, 0.45);
}

.service-card::after,
.branch-card::before {
  background: var(--gradient-brand);
}

.service-card,
.product-card,
.branch-card,
.distinct-item {
  background: #fff;
}

.about,
.products,
.distinct,
.photo-gallery {
  background: var(--surface);
}

/* Hero formal overlay — navy brand structure */
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(42, 38, 64, 0.93) 0%, rgba(42, 38, 64, 0.62) 45%, rgba(42, 38, 64, 0.35) 100%),
    linear-gradient(180deg, transparent 55%, rgba(30, 26, 48, 0.92) 100%);
}

.hero-tag {
  background: rgba(255, 213, 79, 0.14);
  border-color: rgba(255, 213, 79, 0.42);
  color: var(--highlight-yellow);
}

.hero-content h1 em {
  background: linear-gradient(135deg, #FFE082 0%, #FFD54F 50%, #FBC02D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stats formal strip */
.hero-stats {
  background: #fff;
  border-top: 3px solid var(--primary);
}

.stat strong {
  color: var(--brand-navy);
}

.stat strong::after {
  background: var(--gradient-brand);
}

/* Trust bar */
.trust-bar {
  background: var(--gradient-dark);
}

.trust-icon {
  background: rgba(255, 213, 79, 0.14);
  border-color: rgba(255, 213, 79, 0.32);
  color: var(--highlight-yellow);
}

/* Scroll reveal — VASTConnect-style */
.mi-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.mi-animate.mi-visible {
  opacity: 1;
  transform: translateY(0);
}

.mi-animate-delay-1 { transition-delay: 0.1s; }
.mi-animate-delay-2 { transition-delay: 0.2s; }
.mi-animate-delay-3 { transition-delay: 0.3s; }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--dark);
  border: none;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 9990;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* Meliman Live Chat — trust strip on home hero; floating elsewhere & after scroll */
body[data-page="home"] .meliman-chat-wrap,
body[data-page="home"] .wa-float-wrap {
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-page="home"].is-scrolled-past-hero .meliman-chat-wrap,
body[data-page="home"].is-scrolled-past-hero .wa-float-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

body[data-page="home"].is-scrolled-past-hero .meliman-chat-wrap {
  pointer-events: none;
}

body[data-page="home"].is-scrolled-past-hero .meliman-chat-launcher--float {
  pointer-events: auto;
}

body[data-page="home"].is-scrolled-past-hero .wa-float-wrap {
  pointer-events: auto;
}

body[data-page="home"] .meliman-chat-wrap,
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9991;
  pointer-events: none;
}

.meliman-chat-launcher--float {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(42, 38, 64, 0.42);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: melimanChatFloat 3.8s ease-in-out infinite;
  overflow: visible;
}

.meliman-chat-launcher--float::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 213, 79, 0.45);
  opacity: 0;
  animation: melimanChatAura 2.8s ease-in-out infinite;
  pointer-events: none;
}

.meliman-chat-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 213, 79, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meliman-chat-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid var(--brand-navy);
  animation: melimanChatDot 2.4s ease-in-out infinite;
}

.meliman-chat-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
  padding-right: 0.15rem;
}

.meliman-chat-label strong {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.meliman-chat-label em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 213, 79, 0.95);
  margin-top: 0.12rem;
}

.meliman-chat-launcher--float:hover,
.meliman-chat-launcher--float.is-open {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(42, 38, 64, 0.5);
  animation: none;
}

.meliman-chat-launcher--float:hover::after,
.meliman-chat-launcher--float.is-open::after,
.meliman-chat-launcher--float.is-loading::after {
  animation: none;
  opacity: 0;
}

.meliman-chat-launcher--float.is-loading .meliman-chat-icon svg {
  opacity: 0.35;
}

@keyframes melimanChatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes melimanChatAura {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 213, 79, 0);
  }
  45% {
    opacity: 0.55;
    transform: scale(1.02);
    box-shadow: 0 0 14px 2px rgba(255, 213, 79, 0.22);
  }
  70% {
    opacity: 0;
    transform: scale(1.04);
    box-shadow: 0 0 0 0 rgba(255, 213, 79, 0);
  }
}

@keyframes melimanChatDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  25% {
    transform: scale(1.55);
    opacity: 0.92;
    box-shadow: 0 0 8px 2px rgba(37, 211, 102, 0.28);
  }
  50% {
    transform: scale(0.82);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2);
  }
  75% {
    transform: scale(1.32);
    opacity: 0.95;
    box-shadow: 0 0 6px 1px rgba(37, 211, 102, 0.22);
  }
}

@keyframes melimanChatSpin {
  to { transform: rotate(360deg); }
}

/* Hide default Tawk bubble only — custom Meliman launcher opens the panel */
#tawk-bubble-container,
.tawk-button-circle,
button.tawk-button {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* WhatsApp float — bottom right, ringing gray wave rings */
.wa-float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  z-index: 9989;
  pointer-events: none;
}

.wa-float {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.48);
  transition: var(--transition);
  pointer-events: auto;
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

.wa-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.32);
  animation: waRingPulse 3.2s ease-out infinite;
  pointer-events: none;
}

.wa-ring--2 {
  animation-delay: 1.05s;
}

.wa-ring--3 {
  animation-delay: 2.1s;
}

@keyframes waRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.38;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.wa-float-wrap:hover .wa-ring {
  animation-play-state: paused;
  opacity: 0;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* Footer formal — brand navy */
.footer {
  background: var(--brand-navy);
  border-top: 4px solid var(--highlight-yellow);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--highlight-yellow);
  color: var(--brand-navy);
}

.footer-subscribe {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.1rem;
  align-items: center;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.footer-hours svg {
  flex-shrink: 0;
  margin-top: 0;
  width: 16px;
  height: 16px;
  color: var(--highlight-yellow);
}

.footer-hours strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.footer-hours span {
  display: block;
  font-size: 0.76rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  min-width: 0;
}

.footer-newsletter-copy {
  flex: 0 1 auto;
  min-width: min(100%, 200px);
  max-width: 280px;
}

.footer-newsletter-copy strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.08rem;
  line-height: 1.2;
}

.footer-newsletter-copy p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.68);
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 420px;
  margin-left: auto;
}

.footer-newsletter-form input {
  flex: 1 1 140px;
  min-width: 0;
  padding: 0.48rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--highlight-yellow);
  box-shadow: 0 0 0 3px rgba(255, 213, 79, 0.25);
}

.footer-newsletter-form .btn-sm {
  padding: 0.48rem 0.95rem;
  font-size: 0.76rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-newsletter-note {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fca5a5;
  min-height: 0;
  line-height: 1.3;
}

.footer-newsletter-note.is-success {
  color: #6ee7b7;
}

@media (max-width: 768px) {
  .footer-subscribe {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
  }

  .footer-hours {
    padding-right: 0;
    padding-bottom: 0.4rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    gap: 0.45rem;
  }

  .footer-hours svg {
    width: 14px;
    height: 14px;
  }

  .footer-hours div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.35rem;
    row-gap: 0.1rem;
    min-width: 0;
  }

  .footer-hours strong {
    display: inline;
    font-size: 0.72rem;
    margin-bottom: 0;
  }

  .footer-hours span {
    display: inline;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .footer-hours strong::after {
    content: '·';
    margin: 0 0.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .footer-newsletter-copy {
    max-width: none;
    min-width: 0;
  }

  .footer-newsletter-copy strong {
    font-size: 0.72rem;
    margin-bottom: 0;
  }

  .footer-newsletter-copy p {
    display: none;
  }

  .footer-newsletter-form {
    max-width: none;
    margin-left: 0;
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .footer-newsletter-form input {
    padding: 0.38rem 0.65rem;
    font-size: 0.74rem;
    min-height: 34px;
  }

  .footer-newsletter-form .btn-sm {
    padding: 0.38rem 0.7rem;
    font-size: 0.7rem;
    min-height: 34px;
  }

  .footer-newsletter-note {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .meliman-chat-wrap {
    left: 20px;
    bottom: 20px;
  }

  .meliman-chat-label {
    display: none;
  }

  .meliman-chat-launcher--float {
    padding: 0.5rem;
    border-radius: 50%;
  }

  .wa-float-wrap {
    right: 20px;
    bottom: 20px;
  }

  .back-top {
    right: 20px;
    bottom: 88px;
  }
}

@media (max-width: 400px) {
  .footer-subscribe {
    padding: 0.5rem 0.55rem;
    gap: 0.4rem;
  }

  .footer-hours span {
    font-size: 0.65rem;
  }

  .footer-newsletter-form .btn-sm {
    padding: 0.38rem 0.55rem;
    font-size: 0.68rem;
  }
}

/* Inner page banner */
.page-banner {
  padding: calc(var(--header-stack-height) + 2.5rem) 0 2.5rem;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.75rem auto 1rem;
  max-width: 720px;
}

.page-banner .section-tag {
  color: var(--highlight-yellow);
}

.page-banner .section-tag::before {
  background: var(--highlight-yellow);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Header — responsive across devices */
@media (max-width: 1100px) {
  .top-bar-brand .top-bar-tagline {
    max-width: 22rem;
  }

  .top-bar-contact-link {
    font-size: 0.76rem;
  }
}

@media (max-width: 1200px) {
  .top-bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 0.55rem 0;
  }

  .top-bar-brand {
    order: -1;
    width: 100%;
    padding: 0.15rem 0 0.3rem;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #dde3eb;
    margin-bottom: 0.1rem;
  }

  .top-bar-left,
  .top-bar-right {
    justify-self: center;
    justify-content: center;
    width: 100%;
  }

  .top-bar-left {
    order: 0;
  }

  .top-bar-right {
    order: 1;
  }

  .top-bar-brand .top-bar-tagline {
    display: block;
    font-size: clamp(0.68rem, 1vw, 0.78rem);
  }

  .top-bar-brand strong {
    font-size: 0.95rem;
  }

  .site-header-wrap .header {
    padding: 0.85rem 0;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-trust-offset: clamp(7.5rem, 22vh, 10.5rem);
  }

  .top-bar-label {
    font-size: 0.58rem;
  }

  .top-bar-email {
    display: none;
  }

  .top-bar-divider {
    display: none;
  }

  .top-bar-contact-link--phone {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 0.72rem;
  }

  .top-bar-inner {
    padding: 0.45rem 0;
    gap: 0.35rem;
  }

  .top-bar-social-link {
    width: 30px;
    height: 30px;
  }

  .top-bar-brand strong {
    font-size: 0.88rem;
  }

  .top-bar-brand .top-bar-tagline {
    font-size: 0.68rem;
    max-width: 18rem;
  }

  .site-header-wrap .header {
    padding: 0.65rem 0;
  }
}

@media (max-width: 380px) {
  .top-bar-contact {
    flex-direction: column;
    gap: 0.25rem;
  }

  .logo-img {
    height: 46px !important;
  }
}
